From ca985d7af712b45963de16536788d4d6727de791 Mon Sep 17 00:00:00 2001 From: Spencer Ofwiti Date: Wed, 12 May 2021 09:40:21 +0300 Subject: [PATCH] Add documentation to models. --- docs/compodoc/classes/Settings.html | 23 +- .../components/AccountDetailsComponent.html | 2 +- .../components/TransactionsComponent.html | 4 +- docs/compodoc/coverage.html | 144 +++--- .../images/coverage-badge-documentation.svg | 2 +- docs/compodoc/interfaces/AccountDetails.html | 14 +- docs/compodoc/interfaces/Action.html | 23 +- docs/compodoc/interfaces/AreaName.html | 23 +- docs/compodoc/interfaces/AreaType.html | 23 +- docs/compodoc/interfaces/BlocksBloom.html | 375 ++++++++++++++ docs/compodoc/interfaces/Category.html | 23 +- docs/compodoc/interfaces/Conversion.html | 439 ++++++++++++++++ docs/compodoc/interfaces/Meta.html | 14 +- docs/compodoc/interfaces/MetaResponse.html | 14 +- docs/compodoc/interfaces/Signature.html | 14 +- docs/compodoc/interfaces/Staff.html | 8 + docs/compodoc/interfaces/Token.html | 8 + docs/compodoc/interfaces/Transaction.html | 477 ++++++++++++++++++ docs/compodoc/interfaces/Tx.html | 375 ++++++++++++++ docs/compodoc/interfaces/TxToken.html | 311 ++++++++++++ docs/compodoc/interfaces/W3.html | 249 +++++++++ docs/compodoc/js/menu-wc.js | 36 +- docs/compodoc/js/search/search_index.js | 4 +- docs/compodoc/miscellaneous/variables.html | 6 + docs/compodoc/modules/AppModule.html | 82 +-- .../modules/AppModule/dependencies.svg | 82 +-- docs/compodoc/modules/SettingsModule.html | 46 +- .../modules/SettingsModule/dependencies.svg | 46 +- docs/compodoc/modules/SharedModule.html | 8 +- .../modules/SharedModule/dependencies.svg | 8 +- docs/compodoc/overview.html | 4 +- docs/typedoc/assets/js/search.js | 2 +- .../app__models_settings.settings.html | 24 +- ...ils_component.accountdetailscomponent.html | 2 +- ...tions_component.transactionscomponent.html | 4 +- .../app__models_account.accountdetails.html | 28 +- .../interfaces/app__models_account.meta.html | 14 +- .../app__models_account.metaresponse.html | 12 +- .../app__models_account.signature.html | 16 +- .../app__models_mappings.action.html | 18 +- .../app__models_mappings.areaname.html | 12 +- .../app__models_mappings.areatype.html | 12 +- .../app__models_mappings.category.html | 12 +- .../app__models_settings.w3.html | 65 +-- .../interfaces/app__models_staff.staff.html | 18 +- .../interfaces/app__models_token.token.html | 24 +- .../app__models_transaction.blocksbloom.html | 123 ++--- .../app__models_transaction.conversion.html | 119 ++--- .../app__models_transaction.transaction.html | 111 ++-- .../app__models_transaction.tx.html | 95 ++-- .../app__models_transaction.txtoken.html | 79 ++- docs/typedoc/modules/app__models.html | 12 +- docs/typedoc/modules/app__models_account.html | 8 +- .../typedoc/modules/app__models_settings.html | 11 +- .../modules/app__models_transaction.html | 32 +- src/app/_models/account.ts | 8 +- src/app/_models/index.ts | 6 +- src/app/_models/mappings.ts | 17 +- src/app/_models/settings.ts | 5 +- src/app/_models/staff.ts | 2 + src/app/_models/token.ts | 2 + src/app/_models/transaction.ts | 53 +- 62 files changed, 3096 insertions(+), 737 deletions(-) create mode 100644 docs/compodoc/interfaces/BlocksBloom.html create mode 100644 docs/compodoc/interfaces/Conversion.html create mode 100644 docs/compodoc/interfaces/Transaction.html create mode 100644 docs/compodoc/interfaces/Tx.html create mode 100644 docs/compodoc/interfaces/TxToken.html create mode 100644 docs/compodoc/interfaces/W3.html rename docs/typedoc/{classes => interfaces}/app__models_settings.w3.html (70%) rename docs/typedoc/{classes => interfaces}/app__models_transaction.blocksbloom.html (69%) rename docs/typedoc/{classes => interfaces}/app__models_transaction.conversion.html (65%) rename docs/typedoc/{classes => interfaces}/app__models_transaction.transaction.html (67%) rename docs/typedoc/{classes => interfaces}/app__models_transaction.tx.html (68%) rename docs/typedoc/{classes => interfaces}/app__models_transaction.txtoken.html (69%) diff --git a/docs/compodoc/classes/Settings.html b/docs/compodoc/classes/Settings.html index cc2127c..f6b0cc6 100644 --- a/docs/compodoc/classes/Settings.html +++ b/docs/compodoc/classes/Settings.html @@ -63,6 +63,13 @@ src/app/_models/settings.ts

+

+

Description

+

+

+

Settings class

+ +

@@ -115,7 +122,7 @@ -
Defined in src/app/_models/settings.ts:8
+
Defined in src/app/_models/settings.ts:9
@@ -178,7 +185,7 @@ -
Defined in src/app/_models/settings.ts:7
+
Defined in src/app/_models/settings.ts:8
@@ -205,7 +212,7 @@ -
Defined in src/app/_models/settings.ts:6
+
Defined in src/app/_models/settings.ts:7
@@ -232,7 +239,7 @@ -
Defined in src/app/_models/settings.ts:8
+
Defined in src/app/_models/settings.ts:9
@@ -253,7 +260,7 @@ - Type : W3 + Type : W3 @@ -267,7 +274,7 @@ -
Defined in src/app/_models/settings.ts:2
+
Defined in src/app/_models/settings.ts:3
@@ -300,11 +307,13 @@ } } -class W3 { +/** Web3 object interface */ +interface W3 { engine: any; provider: any; } +/** @exports */ export { Settings, W3 }; diff --git a/docs/compodoc/components/AccountDetailsComponent.html b/docs/compodoc/components/AccountDetailsComponent.html index 77bca29..e1a63a6 100644 --- a/docs/compodoc/components/AccountDetailsComponent.html +++ b/docs/compodoc/components/AccountDetailsComponent.html @@ -1508,7 +1508,7 @@ - Type : Array<Transaction> + Type : Array<Transaction> diff --git a/docs/compodoc/components/TransactionsComponent.html b/docs/compodoc/components/TransactionsComponent.html index 765753f..a2ddfb4 100644 --- a/docs/compodoc/components/TransactionsComponent.html +++ b/docs/compodoc/components/TransactionsComponent.html @@ -747,7 +747,7 @@ - Type : Transaction + Type : Transaction @@ -833,7 +833,7 @@ - Type : Array<Transaction> + Type : Array<Transaction> diff --git a/docs/compodoc/coverage.html b/docs/compodoc/coverage.html index f9a8115..189fea3 100644 --- a/docs/compodoc/coverage.html +++ b/docs/compodoc/coverage.html @@ -479,9 +479,9 @@ interface AccountDetails - - 0 % - (0/11) + + 9 % + (1/11) @@ -491,21 +491,21 @@ interface Meta - - 0 % - (0/4) + + 25 % + (1/4) - + src/app/_models/account.ts interface MetaResponse - - 0 % - (0/3) + + 33 % + (1/3) @@ -515,21 +515,21 @@ interface Signature - - 0 % - (0/5) + + 20 % + (1/5) - + src/app/_models/account.ts variable defaultAccount - - 0 % - (0/1) + + 100 % + (1/1) @@ -539,45 +539,45 @@ interface Action - - 0 % - (0/6) + + 16 % + (1/6) - + src/app/_models/mappings.ts interface AreaName - - 0 % - (0/3) + + 33 % + (1/3) - + src/app/_models/mappings.ts interface AreaType - - 0 % - (0/3) + + 33 % + (1/3) - + src/app/_models/mappings.ts interface Category - - 0 % - (0/3) + + 33 % + (1/3) @@ -587,21 +587,21 @@ class Settings - - 0 % - (0/6) + + 16 % + (1/6) - + - src/app/_models/settings.ts + src/app/_models/settings.ts - class + interface W3 - - 0 % - (0/3) + + 33 % + (1/3) @@ -611,9 +611,9 @@ interface Staff - - 0 % - (0/6) + + 16 % + (1/6) @@ -623,69 +623,69 @@ interface Token - - 0 % - (0/9) + + 11 % + (1/9) - src/app/_models/transaction.ts + src/app/_models/transaction.ts - class + interface BlocksBloom - - 0 % - (0/6) + + 16 % + (1/6) - src/app/_models/transaction.ts + src/app/_models/transaction.ts - class + interface Conversion - - 0 % - (0/8) + + 12 % + (1/8) - src/app/_models/transaction.ts + src/app/_models/transaction.ts - class + interface Transaction - - 0 % - (0/9) + + 11 % + (1/9) - src/app/_models/transaction.ts + src/app/_models/transaction.ts - class + interface Tx - - 0 % - (0/6) + + 16 % + (1/6) - src/app/_models/transaction.ts + src/app/_models/transaction.ts - class + interface TxToken - - 0 % - (0/4) + + 25 % + (1/4) diff --git a/docs/compodoc/images/coverage-badge-documentation.svg b/docs/compodoc/images/coverage-badge-documentation.svg index 91a19af..6f76fa9 100644 --- a/docs/compodoc/images/coverage-badge-documentation.svg +++ b/docs/compodoc/images/coverage-badge-documentation.svg @@ -4,6 +4,6 @@ documentation - 32% + 36% diff --git a/docs/compodoc/interfaces/AccountDetails.html b/docs/compodoc/interfaces/AccountDetails.html index 3e901bc..3d1c720 100644 --- a/docs/compodoc/interfaces/AccountDetails.html +++ b/docs/compodoc/interfaces/AccountDetails.html @@ -64,6 +64,13 @@ src/app/_models/account.ts

+

+

Description

+

+

+

Account data interface

+ +

@@ -491,6 +498,7 @@ }; } +/** Meta signature interface */ interface Signature { algo: string; data: string; @@ -498,17 +506,20 @@ interface Signature { engine: string; } +/** Meta object interface */ interface Meta { data: AccountDetails; id: string; signature: Signature; } +/** Meta response interface */ interface MetaResponse { id: string; m: Meta; } +/** Default account data object */ const defaultAccount: AccountDetails = { date_registered: Date.now(), gender: 'other', @@ -556,7 +567,8 @@ const defaultAccount: AccountDetails = { }, }; -export { AccountDetails, Signature, Meta, MetaResponse, defaultAccount }; +/** @exports */ +export { AccountDetails, Meta, MetaResponse, Signature, defaultAccount }; diff --git a/docs/compodoc/interfaces/Action.html b/docs/compodoc/interfaces/Action.html index 83c87e0..3b18afe 100644 --- a/docs/compodoc/interfaces/Action.html +++ b/docs/compodoc/interfaces/Action.html @@ -64,6 +64,13 @@ src/app/_models/mappings.ts

+

+

Description

+

+

+

Action object interface

+ +

@@ -262,22 +269,26 @@ approval: boolean; } -interface Category { - name: string; - products: Array<string>; -} - +/** Area name object interface */ interface AreaName { name: string; locations: Array<string>; } +/** Area type object interface */ interface AreaType { name: string; area: Array<string>; } -export { Action, Category, AreaName, AreaType }; +/** Category object interface */ +interface Category { + name: string; + products: Array<string>; +} + +/** @exports */ +export { Action, AreaName, AreaType, Category }; diff --git a/docs/compodoc/interfaces/AreaName.html b/docs/compodoc/interfaces/AreaName.html index 9c9a4c9..a764a3a 100644 --- a/docs/compodoc/interfaces/AreaName.html +++ b/docs/compodoc/interfaces/AreaName.html @@ -64,6 +64,13 @@ src/app/_models/mappings.ts

+

+

Description

+

+

+

Area name object interface

+ +

@@ -166,22 +173,26 @@ approval: boolean; } -interface Category { - name: string; - products: Array<string>; -} - +/** Area name object interface */ interface AreaName { name: string; locations: Array<string>; } +/** Area type object interface */ interface AreaType { name: string; area: Array<string>; } -export { Action, Category, AreaName, AreaType }; +/** Category object interface */ +interface Category { + name: string; + products: Array<string>; +} + +/** @exports */ +export { Action, AreaName, AreaType, Category }; diff --git a/docs/compodoc/interfaces/AreaType.html b/docs/compodoc/interfaces/AreaType.html index 5e4ef57..0f4c198 100644 --- a/docs/compodoc/interfaces/AreaType.html +++ b/docs/compodoc/interfaces/AreaType.html @@ -64,6 +64,13 @@ src/app/_models/mappings.ts

+

+

Description

+

+

+

Area type object interface

+ +

@@ -166,22 +173,26 @@ approval: boolean; } -interface Category { - name: string; - products: Array<string>; -} - +/** Area name object interface */ interface AreaName { name: string; locations: Array<string>; } +/** Area type object interface */ interface AreaType { name: string; area: Array<string>; } -export { Action, Category, AreaName, AreaType }; +/** Category object interface */ +interface Category { + name: string; + products: Array<string>; +} + +/** @exports */ +export { Action, AreaName, AreaType, Category }; diff --git a/docs/compodoc/interfaces/BlocksBloom.html b/docs/compodoc/interfaces/BlocksBloom.html new file mode 100644 index 0000000..4e8169c --- /dev/null +++ b/docs/compodoc/interfaces/BlocksBloom.html @@ -0,0 +1,375 @@ + + + + + + CICADA + + + + + + + + + + + + +
+
+ + +
+
+ + + + + + + + + + + + + + + + +
+
+

+

File

+

+

+ src/app/_models/transaction.ts +

+ +

+

Description

+

+

+

BlocksBloom object interface

+ +

+ + +
+

Index

+ + + + + + + + + +
+
Properties
+
+ +
+
+ + + +
+

Properties

+ + + + + + + + + + + + + + + + + + + +
+ + alg +
+ alg: string + +
+ Type : string + +
+ + + + + + + + + + + + + + + + + + + +
+ + blockFilter +
+ blockFilter: string + +
+ Type : string + +
+ + + + + + + + + + + + + + + + + + + +
+ + blocktxFilter +
+ blocktxFilter: string + +
+ Type : string + +
+ + + + + + + + + + + + + + + + + + + +
+ + filterRounds +
+ filterRounds: number + +
+ Type : number + +
+ + + + + + + + + + + + + + + + + + + +
+ + low +
+ low: number + +
+ Type : number + +
+
+
+ + +
+
import { AccountDetails } from '@app/_models/account';
+
+/** BlocksBloom object interface */
+interface BlocksBloom {
+  low: number;
+  blockFilter: string;
+  blocktxFilter: string;
+  alg: string;
+  filterRounds: number;
+}
+
+/** Conversion object interface */
+interface Conversion {
+  destinationToken: TxToken;
+  fromValue: number;
+  sourceToken: TxToken;
+  toValue: number;
+  trader: string;
+  user: AccountDetails;
+  tx: Tx;
+}
+
+/** Transaction object interface */
+interface Transaction {
+  from: string;
+  sender: AccountDetails;
+  to: string;
+  recipient: AccountDetails;
+  token: TxToken;
+  tx: Tx;
+  value: number;
+  type?: string;
+}
+
+/** Transaction data interface */
+interface Tx {
+  block: number;
+  success: boolean;
+  timestamp: number;
+  txHash: string;
+  txIndex: number;
+}
+
+/** Transaction token object interface */
+interface TxToken {
+  address: string;
+  name: string;
+  symbol: string;
+}
+
+/** @exports */
+export { BlocksBloom, Conversion, Transaction, Tx, TxToken };
+
+
+
+ + + + + + + +
+
+

result-matching ""

+
    +
    +
    +

    No results matching ""

    +
    +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/compodoc/interfaces/Category.html b/docs/compodoc/interfaces/Category.html index e664d8c..5ab1295 100644 --- a/docs/compodoc/interfaces/Category.html +++ b/docs/compodoc/interfaces/Category.html @@ -64,6 +64,13 @@ src/app/_models/mappings.ts

    +

    +

    Description

    +

    +

    +

    Category object interface

    + +

    @@ -166,22 +173,26 @@ approval: boolean; } -interface Category { - name: string; - products: Array<string>; -} - +/** Area name object interface */ interface AreaName { name: string; locations: Array<string>; } +/** Area type object interface */ interface AreaType { name: string; area: Array<string>; } -export { Action, Category, AreaName, AreaType }; +/** Category object interface */ +interface Category { + name: string; + products: Array<string>; +} + +/** @exports */ +export { Action, AreaName, AreaType, Category }; diff --git a/docs/compodoc/interfaces/Conversion.html b/docs/compodoc/interfaces/Conversion.html new file mode 100644 index 0000000..df0f2b4 --- /dev/null +++ b/docs/compodoc/interfaces/Conversion.html @@ -0,0 +1,439 @@ + + + + + + CICADA + + + + + + + + + + + + +
    +
    + + +
    +
    + + + + + + + + + + + + + + + + +
    +
    +

    +

    File

    +

    +

    + src/app/_models/transaction.ts +

    + +

    +

    Description

    +

    +

    +

    Conversion object interface

    + +

    + + +
    +

    Index

    + + + + + + + + + +
    +
    Properties
    +
    + +
    +
    + + + +
    +

    Properties

    + + + + + + + + + + + + + + + + + + + +
    + + destinationToken +
    + destinationToken: TxToken + +
    + Type : TxToken + +
    + + + + + + + + + + + + + + + + + + + +
    + + fromValue +
    + fromValue: number + +
    + Type : number + +
    + + + + + + + + + + + + + + + + + + + +
    + + sourceToken +
    + sourceToken: TxToken + +
    + Type : TxToken + +
    + + + + + + + + + + + + + + + + + + + +
    + + toValue +
    + toValue: number + +
    + Type : number + +
    + + + + + + + + + + + + + + + + + + + +
    + + trader +
    + trader: string + +
    + Type : string + +
    + + + + + + + + + + + + + + + + + + + +
    + + tx +
    + tx: Tx + +
    + Type : Tx + +
    + + + + + + + + + + + + + + + + + + + +
    + + user +
    + user: AccountDetails + +
    + Type : AccountDetails + +
    +
    +
    + + +
    +
    import { AccountDetails } from '@app/_models/account';
    +
    +/** BlocksBloom object interface */
    +interface BlocksBloom {
    +  low: number;
    +  blockFilter: string;
    +  blocktxFilter: string;
    +  alg: string;
    +  filterRounds: number;
    +}
    +
    +/** Conversion object interface */
    +interface Conversion {
    +  destinationToken: TxToken;
    +  fromValue: number;
    +  sourceToken: TxToken;
    +  toValue: number;
    +  trader: string;
    +  user: AccountDetails;
    +  tx: Tx;
    +}
    +
    +/** Transaction object interface */
    +interface Transaction {
    +  from: string;
    +  sender: AccountDetails;
    +  to: string;
    +  recipient: AccountDetails;
    +  token: TxToken;
    +  tx: Tx;
    +  value: number;
    +  type?: string;
    +}
    +
    +/** Transaction data interface */
    +interface Tx {
    +  block: number;
    +  success: boolean;
    +  timestamp: number;
    +  txHash: string;
    +  txIndex: number;
    +}
    +
    +/** Transaction token object interface */
    +interface TxToken {
    +  address: string;
    +  name: string;
    +  symbol: string;
    +}
    +
    +/** @exports */
    +export { BlocksBloom, Conversion, Transaction, Tx, TxToken };
    +
    +
    +
    + + + + + + + +
    +
    +

    result-matching ""

    +
      +
      +
      +

      No results matching ""

      +
      +
      +
      + +
      +
      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/compodoc/interfaces/Meta.html b/docs/compodoc/interfaces/Meta.html index 837adbc..b9041f0 100644 --- a/docs/compodoc/interfaces/Meta.html +++ b/docs/compodoc/interfaces/Meta.html @@ -64,6 +64,13 @@ src/app/_models/account.ts

      +

      +

      Description

      +

      +

      +

      Meta object interface

      + +

      @@ -243,6 +250,7 @@ }; } +/** Meta signature interface */ interface Signature { algo: string; data: string; @@ -250,17 +258,20 @@ interface Signature { engine: string; } +/** Meta object interface */ interface Meta { data: AccountDetails; id: string; signature: Signature; } +/** Meta response interface */ interface MetaResponse { id: string; m: Meta; } +/** Default account data object */ const defaultAccount: AccountDetails = { date_registered: Date.now(), gender: 'other', @@ -308,7 +319,8 @@ const defaultAccount: AccountDetails = { }, }; -export { AccountDetails, Signature, Meta, MetaResponse, defaultAccount }; +/** @exports */ +export { AccountDetails, Meta, MetaResponse, Signature, defaultAccount }; diff --git a/docs/compodoc/interfaces/MetaResponse.html b/docs/compodoc/interfaces/MetaResponse.html index ddb8564..a3a58df 100644 --- a/docs/compodoc/interfaces/MetaResponse.html +++ b/docs/compodoc/interfaces/MetaResponse.html @@ -64,6 +64,13 @@ src/app/_models/account.ts

      +

      +

      Description

      +

      +

      +

      Meta response interface

      + +

      @@ -211,6 +218,7 @@ }; } +/** Meta signature interface */ interface Signature { algo: string; data: string; @@ -218,17 +226,20 @@ interface Signature { engine: string; } +/** Meta object interface */ interface Meta { data: AccountDetails; id: string; signature: Signature; } +/** Meta response interface */ interface MetaResponse { id: string; m: Meta; } +/** Default account data object */ const defaultAccount: AccountDetails = { date_registered: Date.now(), gender: 'other', @@ -276,7 +287,8 @@ const defaultAccount: AccountDetails = { }, }; -export { AccountDetails, Signature, Meta, MetaResponse, defaultAccount }; +/** @exports */ +export { AccountDetails, Meta, MetaResponse, Signature, defaultAccount }; diff --git a/docs/compodoc/interfaces/Signature.html b/docs/compodoc/interfaces/Signature.html index a68f675..59cff10 100644 --- a/docs/compodoc/interfaces/Signature.html +++ b/docs/compodoc/interfaces/Signature.html @@ -64,6 +64,13 @@ src/app/_models/account.ts

      +

      +

      Description

      +

      +

      +

      Meta signature interface

      + +

      @@ -275,6 +282,7 @@ }; } +/** Meta signature interface */ interface Signature { algo: string; data: string; @@ -282,17 +290,20 @@ interface Signature { engine: string; } +/** Meta object interface */ interface Meta { data: AccountDetails; id: string; signature: Signature; } +/** Meta response interface */ interface MetaResponse { id: string; m: Meta; } +/** Default account data object */ const defaultAccount: AccountDetails = { date_registered: Date.now(), gender: 'other', @@ -340,7 +351,8 @@ const defaultAccount: AccountDetails = { }, }; -export { AccountDetails, Signature, Meta, MetaResponse, defaultAccount }; +/** @exports */ +export { AccountDetails, Meta, MetaResponse, Signature, defaultAccount }; diff --git a/docs/compodoc/interfaces/Staff.html b/docs/compodoc/interfaces/Staff.html index 753825a..8eb11fc 100644 --- a/docs/compodoc/interfaces/Staff.html +++ b/docs/compodoc/interfaces/Staff.html @@ -64,6 +64,13 @@ src/app/_models/staff.ts

      +

      +

      Description

      +

      +

      +

      Staff object interface

      + +

      @@ -262,6 +269,7 @@ userid: string; } +/** @exports */ export { Staff }; diff --git a/docs/compodoc/interfaces/Token.html b/docs/compodoc/interfaces/Token.html index 25104c9..1b95e29 100644 --- a/docs/compodoc/interfaces/Token.html +++ b/docs/compodoc/interfaces/Token.html @@ -64,6 +64,13 @@ src/app/_models/token.ts

      +

      +

      Description

      +

      +

      +

      Token object interface

      + +

      @@ -378,6 +385,7 @@ owner?: string; } +/** @exports */ export { Token }; diff --git a/docs/compodoc/interfaces/Transaction.html b/docs/compodoc/interfaces/Transaction.html new file mode 100644 index 0000000..c66351e --- /dev/null +++ b/docs/compodoc/interfaces/Transaction.html @@ -0,0 +1,477 @@ + + + + + + CICADA + + + + + + + + + + + + +
      +
      + + +
      +
      + + + + + + + + + + + + + + + + +
      +
      +

      +

      File

      +

      +

      + src/app/_models/transaction.ts +

      + +

      +

      Description

      +

      +

      +

      Transaction object interface

      + +

      + + +
      +

      Index

      + + + + + + + + + +
      +
      Properties
      +
      + +
      +
      + + + +
      +

      Properties

      + + + + + + + + + + + + + + + + + + + +
      + + from +
      + from: string + +
      + Type : string + +
      + + + + + + + + + + + + + + + + + + + +
      + + recipient +
      + recipient: AccountDetails + +
      + Type : AccountDetails + +
      + + + + + + + + + + + + + + + + + + + +
      + + sender +
      + sender: AccountDetails + +
      + Type : AccountDetails + +
      + + + + + + + + + + + + + + + + + + + +
      + + to +
      + to: string + +
      + Type : string + +
      + + + + + + + + + + + + + + + + + + + +
      + + token +
      + token: TxToken + +
      + Type : TxToken + +
      + + + + + + + + + + + + + + + + + + + +
      + + tx +
      + tx: Tx + +
      + Type : Tx + +
      + + + + + + + + + + + + + + + + + + + + + + +
      + + type +
      + type: string + +
      + Type : string + +
      + Optional +
      + + + + + + + + + + + + + + + + + + + +
      + + value +
      + value: number + +
      + Type : number + +
      +
      +
      + + +
      +
      import { AccountDetails } from '@app/_models/account';
      +
      +/** BlocksBloom object interface */
      +interface BlocksBloom {
      +  low: number;
      +  blockFilter: string;
      +  blocktxFilter: string;
      +  alg: string;
      +  filterRounds: number;
      +}
      +
      +/** Conversion object interface */
      +interface Conversion {
      +  destinationToken: TxToken;
      +  fromValue: number;
      +  sourceToken: TxToken;
      +  toValue: number;
      +  trader: string;
      +  user: AccountDetails;
      +  tx: Tx;
      +}
      +
      +/** Transaction object interface */
      +interface Transaction {
      +  from: string;
      +  sender: AccountDetails;
      +  to: string;
      +  recipient: AccountDetails;
      +  token: TxToken;
      +  tx: Tx;
      +  value: number;
      +  type?: string;
      +}
      +
      +/** Transaction data interface */
      +interface Tx {
      +  block: number;
      +  success: boolean;
      +  timestamp: number;
      +  txHash: string;
      +  txIndex: number;
      +}
      +
      +/** Transaction token object interface */
      +interface TxToken {
      +  address: string;
      +  name: string;
      +  symbol: string;
      +}
      +
      +/** @exports */
      +export { BlocksBloom, Conversion, Transaction, Tx, TxToken };
      +
      +
      +
      + + + + + + + +
      +
      +

      result-matching ""

      +
        +
        +
        +

        No results matching ""

        +
        +
        +
        + +
        +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/compodoc/interfaces/Tx.html b/docs/compodoc/interfaces/Tx.html new file mode 100644 index 0000000..ebf7292 --- /dev/null +++ b/docs/compodoc/interfaces/Tx.html @@ -0,0 +1,375 @@ + + + + + + CICADA + + + + + + + + + + + + +
        +
        + + +
        +
        + + + + + + + + + + + + + + + + +
        +
        +

        +

        File

        +

        +

        + src/app/_models/transaction.ts +

        + +

        +

        Description

        +

        +

        +

        Transaction data interface

        + +

        + + +
        +

        Index

        + + + + + + + + + +
        +
        Properties
        +
        + +
        +
        + + + +
        +

        Properties

        + + + + + + + + + + + + + + + + + + + +
        + + block +
        + block: number + +
        + Type : number + +
        + + + + + + + + + + + + + + + + + + + +
        + + success +
        + success: boolean + +
        + Type : boolean + +
        + + + + + + + + + + + + + + + + + + + +
        + + timestamp +
        + timestamp: number + +
        + Type : number + +
        + + + + + + + + + + + + + + + + + + + +
        + + txHash +
        + txHash: string + +
        + Type : string + +
        + + + + + + + + + + + + + + + + + + + +
        + + txIndex +
        + txIndex: number + +
        + Type : number + +
        +
        +
        + + +
        +
        import { AccountDetails } from '@app/_models/account';
        +
        +/** BlocksBloom object interface */
        +interface BlocksBloom {
        +  low: number;
        +  blockFilter: string;
        +  blocktxFilter: string;
        +  alg: string;
        +  filterRounds: number;
        +}
        +
        +/** Conversion object interface */
        +interface Conversion {
        +  destinationToken: TxToken;
        +  fromValue: number;
        +  sourceToken: TxToken;
        +  toValue: number;
        +  trader: string;
        +  user: AccountDetails;
        +  tx: Tx;
        +}
        +
        +/** Transaction object interface */
        +interface Transaction {
        +  from: string;
        +  sender: AccountDetails;
        +  to: string;
        +  recipient: AccountDetails;
        +  token: TxToken;
        +  tx: Tx;
        +  value: number;
        +  type?: string;
        +}
        +
        +/** Transaction data interface */
        +interface Tx {
        +  block: number;
        +  success: boolean;
        +  timestamp: number;
        +  txHash: string;
        +  txIndex: number;
        +}
        +
        +/** Transaction token object interface */
        +interface TxToken {
        +  address: string;
        +  name: string;
        +  symbol: string;
        +}
        +
        +/** @exports */
        +export { BlocksBloom, Conversion, Transaction, Tx, TxToken };
        +
        +
        +
        + + + + + + + +
        +
        +

        result-matching ""

        +
          +
          +
          +

          No results matching ""

          +
          +
          +
          + +
          +
          + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/compodoc/interfaces/TxToken.html b/docs/compodoc/interfaces/TxToken.html new file mode 100644 index 0000000..c02ede9 --- /dev/null +++ b/docs/compodoc/interfaces/TxToken.html @@ -0,0 +1,311 @@ + + + + + + CICADA + + + + + + + + + + + + +
          +
          + + +
          +
          + + + + + + + + + + + + + + + + +
          +
          +

          +

          File

          +

          +

          + src/app/_models/transaction.ts +

          + +

          +

          Description

          +

          +

          +

          Transaction token object interface

          + +

          + + +
          +

          Index

          + + + + + + + + + +
          +
          Properties
          +
          + +
          +
          + + + +
          +

          Properties

          + + + + + + + + + + + + + + + + + + + +
          + + address +
          + address: string + +
          + Type : string + +
          + + + + + + + + + + + + + + + + + + + +
          + + name +
          + name: string + +
          + Type : string + +
          + + + + + + + + + + + + + + + + + + + +
          + + symbol +
          + symbol: string + +
          + Type : string + +
          +
          +
          + + +
          +
          import { AccountDetails } from '@app/_models/account';
          +
          +/** BlocksBloom object interface */
          +interface BlocksBloom {
          +  low: number;
          +  blockFilter: string;
          +  blocktxFilter: string;
          +  alg: string;
          +  filterRounds: number;
          +}
          +
          +/** Conversion object interface */
          +interface Conversion {
          +  destinationToken: TxToken;
          +  fromValue: number;
          +  sourceToken: TxToken;
          +  toValue: number;
          +  trader: string;
          +  user: AccountDetails;
          +  tx: Tx;
          +}
          +
          +/** Transaction object interface */
          +interface Transaction {
          +  from: string;
          +  sender: AccountDetails;
          +  to: string;
          +  recipient: AccountDetails;
          +  token: TxToken;
          +  tx: Tx;
          +  value: number;
          +  type?: string;
          +}
          +
          +/** Transaction data interface */
          +interface Tx {
          +  block: number;
          +  success: boolean;
          +  timestamp: number;
          +  txHash: string;
          +  txIndex: number;
          +}
          +
          +/** Transaction token object interface */
          +interface TxToken {
          +  address: string;
          +  name: string;
          +  symbol: string;
          +}
          +
          +/** @exports */
          +export { BlocksBloom, Conversion, Transaction, Tx, TxToken };
          +
          +
          +
          + + + + + + + +
          +
          +

          result-matching ""

          +
            +
            +
            +

            No results matching ""

            +
            +
            +
            + +
            +
            + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/compodoc/interfaces/W3.html b/docs/compodoc/interfaces/W3.html new file mode 100644 index 0000000..fdea849 --- /dev/null +++ b/docs/compodoc/interfaces/W3.html @@ -0,0 +1,249 @@ + + + + + + CICADA + + + + + + + + + + + + +
            +
            + + +
            +
            + + + + + + + + + + + + + + + + +
            +
            +

            +

            File

            +

            +

            + src/app/_models/settings.ts +

            + +

            +

            Description

            +

            +

            +

            Web3 object interface

            + +

            + + +
            +

            Index

            + + + + + + + + + +
            +
            Properties
            +
            + +
            +
            + + + +
            +

            Properties

            + + + + + + + + + + + + + + + + + + + +
            + + engine +
            + engine: any + +
            + Type : any + +
            + + + + + + + + + + + + + + + + + + + +
            + + provider +
            + provider: any + +
            + Type : any + +
            +
            +
            + + +
            +
            class Settings {
            +  w3: W3 = {
            +    engine: undefined,
            +    provider: undefined,
            +  };
            +  scanFilter: any;
            +  registry: any;
            +  txHelper: any;
            +
            +  constructor(scanFilter: any) {
            +    this.scanFilter = scanFilter;
            +  }
            +}
            +
            +/** Web3 object interface */
            +interface W3 {
            +  engine: any;
            +  provider: any;
            +}
            +
            +/** @exports */
            +export { Settings, W3 };
            +
            +
            +
            + + + + + + + +
            +
            +

            result-matching ""

            +
              +
              +
              +

              No results matching ""

              +
              +
              +
              + +
              +
              + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/compodoc/js/menu-wc.js b/docs/compodoc/js/menu-wc.js index fb98456..40236d0 100644 --- a/docs/compodoc/js/menu-wc.js +++ b/docs/compodoc/js/menu-wc.js @@ -434,12 +434,6 @@ customElements.define('compodoc-menu', class extends HTMLElement { - - @@ -464,24 +458,12 @@ customElements.define('compodoc-menu', class extends HTMLElement { - - - -
            • @@ -582,9 +564,15 @@ customElements.define('compodoc-menu', class extends HTMLElement {
            • + + @@ -612,6 +600,18 @@ customElements.define('compodoc-menu', class extends HTMLElement { + + + +
            • diff --git a/docs/compodoc/js/search/search_index.js b/docs/compodoc/js/search/search_index.js index 771af18..321565c 100644 --- a/docs/compodoc/js/search/search_index.js +++ b/docs/compodoc/js/search/search_index.js @@ -1,4 +1,4 @@ var COMPODOC_SEARCH_INDEX = { - "index": {"version":"2.3.9","fields":["title","body"],"fieldVectors":[["title/interfaces/AccountDetails.html",[0,1.058,1,2.037]],["body/interfaces/AccountDetails.html",[0,1.8,1,3.622,2,1.887,3,0.103,4,0.08,5,0.058,6,2.857,7,0.345,8,1.008,9,1.301,10,5.355,11,4.069,12,3.597,13,5.238,14,4.679,15,5.238,16,4.254,17,3.91,18,0.72,19,4.074,20,1.516,21,0.011,22,2.075,23,5.774,24,4.115,25,4.115,26,4.115,27,3.878,28,3.878,29,2.096,30,4.115,31,3.24,32,3.676,33,1.962,34,4.115,35,4.115,36,4.115,37,3.76,38,4.115,39,3.499,40,3.74,41,2.578,42,2.561,43,2.578,44,2.358,45,2.478,46,3.878,47,2.263,48,0.978,49,3.676,50,2.857,51,2.478,52,2.857,53,3.676,54,3.676,55,3.031,56,0.103,57,0.005,58,0.007,59,0.005]],["title/classes/AccountIndex.html",[60,0.005,61,3.403]],["body/classes/AccountIndex.html",[0,0.725,3,0.069,4,0.054,5,0.039,7,0.23,8,0.752,9,0.96,18,0.58,20,1.391,21,0.011,22,2.064,48,1.339,51,1.216,54,5.037,56,0.069,57,0.003,58,0.005,59,0.003,60,0.003,61,3.546,62,1.141,63,2.332,64,2.875,65,2.292,66,5.274,67,5.628,68,5.025,69,3.901,70,3.901,71,7.406,72,3.281,73,1.888,74,4.862,75,5.975,76,6.556,77,0.731,78,3.892,79,3.288,80,4.44,81,4.44,82,4.44,83,6.8,84,0.617,85,3.901,86,0.83,87,4.44,88,1.452,89,3.97,90,6.686,91,2.69,92,1.046,93,0.554,94,5.157,95,3.098,96,2.332,97,2.92,98,2.92,99,4.44,100,2.92,101,4.44,102,3.901,103,4.44,104,2.743,105,5.818,106,3.901,107,6.002,108,4.44,109,5.818,110,6.4,111,2.92,112,1.283,113,2.677,114,2.51,115,3.901,116,3.901,117,4.44,118,2.92,119,2.743,120,4.15,121,3.281,122,3.281,123,2.237,124,3.901,125,3.546,126,2.92,127,3.546,128,2.92,129,4.44,130,2.92,131,3.281,132,4.44,133,5.372,134,1.709,135,2.446,136,4.44,137,4.44,138,2.92,139,5.975,140,0.252,141,3.708,142,1.804,143,0.902,144,1.257,145,1.507,146,2.332,147,3.07,148,2.332,149,2.566,150,2.332,151,2.332,152,1.411,153,2.158,154,2.566,155,3.087,156,3.901,157,2.566,158,2.566,159,4.72,160,2.566,161,4.44,162,2.92,163,2.832,164,2.92,165,2.92,166,2.92,167,2.92,168,4.72,169,2.92,170,5.372,171,2.493,172,2.92,173,2.92,174,2.92]],["title/components/AccountSearchComponent.html",[175,0.624,176,1.354]],["body/components/AccountSearchComponent.html",[3,0.07,4,0.054,5,0.039,7,0.233,8,0.761,9,0.474,18,0.637,21,0.011,22,1.543,33,1.672,56,0.07,57,0.003,58,0.005,59,0.003,60,0.003,67,3.941,73,0.866,77,0.739,79,2.758,84,0.949,86,0.944,88,0.969,91,2.46,92,0.516,93,0.599,95,2.388,112,0.968,113,2.223,114,2.301,123,3.378,134,1.654,140,0.404,144,1.275,145,1.53,152,1.427,163,2.518,175,0.794,176,1.922,177,1.602,178,1.057,179,1.195,180,1.057,181,0.969,182,7.319,183,6.156,184,2.604,185,1.243,186,2.333,187,0.916,188,1.811,189,1.811,190,2.815,191,3.035,192,4.86,193,1.811,194,5.421,195,1.811,196,4.49,197,5.421,198,5.421,199,5.421,200,4.006,201,5.421,202,5.421,203,5.421,204,5.421,205,5.421,206,5.421,207,2.603,208,6.048,209,6.048,210,6.048,211,3.318,212,5.421,213,5.421,214,5.421,215,2.367,216,5.054,217,4.388,218,3.82,219,4.49,220,2.964,221,1.423,222,2.964,223,2.964,224,2.964,225,4.912,226,2.964,227,2.3,228,2.196,229,2.964,230,2.964,231,4.014,232,2.964,233,2.964,234,2.964,235,2.964,236,2.964,237,2.964,238,2.964,239,2.964,240,2.964,241,2.964,242,2.964,243,2.964,244,1.195,245,0.349,246,2.19,247,1.594,248,1.471,249,1.471,250,1.057,251,2.19,252,2.19,253,1.878,254,2.964,255,4.006,256,4.006,257,2.964,258,2.604,259,2.964,260,2.964,261,2.964,262,2.964,263,2.964,264,2.964,265,4.49,266,2.964,267,2.964,268,2.964,269,4.49,270,2.964,271,2.521,272,4.49,273,3.736,274,3.104,275,3.945,276,4.49,277,4.49,278,3.587,279,2.964,280,2.964,281,4.49,282,2.964,283,2.229,284,4.457,285,3.941,286,4.49,287,0.82,288,1.65,289,1.602,290,0.843,291,2.223,292,1.089,293,0.969,294,1.992,295,0.942,296,1.089,297,1.089,298,0.942,299,1.089,300,0.969,301,1.089,302,0.942,303,1.089,304,0.942,305,1.089,306,0.942,307,0.717,308,1.089,309,0.969,310,1.65,311,1.027,312,0.969,313,1.089,314,0.942,315,1.089,316,0.942,317,1.089,318,0.942,319,1.089,320,0.969,321,1.65,322,1.027,323,0.942,324,0.736,325,0.942,326,1.089,327,0.969,328,1.65,329,1.027,330,0.969,331,0.756,332,0.942,333,0.969,334,0.942,335,0.942,336,1.089,337,0.942,338,1.089,339,0.942,340,1.089,341,0.997,342,1.057,343,1.089]],["title/components/AccountsComponent.html",[175,0.624,295,1.354]],["body/components/AccountsComponent.html",[1,1.45,3,0.071,4,0.056,5,0.04,7,0.239,8,0.774,9,0.88,11,3.436,16,3.436,18,0.656,20,1.112,21,0.011,22,1.561,33,1.624,56,0.129,57,0.004,58,0.005,59,0.004,60,0.004,67,5.263,73,0.887,77,0.752,79,2.467,84,0.965,86,0.936,88,0.992,91,2.029,92,0.958,93,0.709,112,1.104,113,1.679,135,2.792,140,0.444,144,1.305,145,1.565,152,0.964,163,1.903,175,0.806,176,0.964,177,1.63,178,1.082,179,1.223,180,1.082,181,0.992,185,1.265,186,2.634,187,0.937,188,1.842,189,1.842,190,2.821,191,3.043,192,3.78,193,1.842,195,1.842,207,2.634,217,4.262,218,3.851,221,1.808,228,2.029,244,1.223,245,0.357,248,1.505,249,1.505,250,1.082,251,2.241,252,2.241,253,1.904,271,2.566,273,1.873,275,2.665,283,2.268,284,3.988,287,0.839,288,1.679,289,1.63,290,0.863,291,2.249,292,1.115,293,0.992,294,2.02,295,1.945,296,1.115,297,1.115,298,0.964,299,1.115,300,0.992,301,1.115,302,0.964,303,1.115,304,0.964,305,1.115,306,0.964,307,1.329,308,1.115,309,0.992,310,1.679,311,1.051,312,0.992,313,1.115,314,0.964,315,1.115,316,0.964,317,1.115,318,0.964,319,1.115,320,0.992,321,1.679,322,1.051,323,0.964,324,0.753,325,0.964,326,1.115,327,0.992,328,1.679,329,1.051,330,0.992,331,0.774,332,0.964,333,0.992,334,0.964,335,0.964,336,1.115,337,0.964,338,1.115,339,0.964,340,1.115,341,1.02,342,1.082,343,1.115,344,2.665,345,5.498,346,4.569,347,5.498,348,3.801,349,3.801,350,4.831,351,4.391,352,4.831,353,3.801,354,3.801,355,3.159,356,4.231,357,6.119,358,6.119,359,4.569,360,2.665,361,2.887,362,4.569,363,3.159,364,3.033,365,3.033,366,3.033,367,3.033,368,3.033,369,4.569,370,3.033,371,3.033,372,3.033,373,3.033,374,3.801,375,3.033,376,4.231,377,3.033,378,4.888,379,3.033,380,3.65,381,4.015,382,3.033,383,3.801,384,2.978,385,3.159,386,3.033,387,3.801,388,3.159,389,2.097,390,1.565,391,1.631,392,1.631,393,1.873,394,1.703,395,1.505,396,1.976,397,2.241,398,1.565,399,3.033,400,1.783,401,3.033,402,2.422,403,3.033,404,2.665,405,2.097,406,2.422,407,1.783,408,1.976,409,2.665,410,4.569,411,2.241,412,3.033,413,4.063,414,3.159,415,2.241,416,2.097,417,4.569,418,2.241,419,2.097,420,3.033,421,4.569,422,4.569,423,3.033,424,3.033,425,3.033,426,3.033,427,4.015,428,3.65,429,3.159,430,4.569,431,4.569,432,4.569,433,3.159,434,4.569,435,2.978,436,4.569]],["title/modules/AccountsModule.html",[437,1.148,438,3.149]],["body/modules/AccountsModule.html",[3,0.109,4,0.085,5,0.062,21,0.011,56,0.109,57,0.005,58,0.007,59,0.005,60,0.005,91,1.439,140,0.507,143,1.915,176,2.527,183,3.441,245,0.549,247,2.504,287,1.289,293,2.6,295,2.527,304,2.527,390,2.403,391,2.504,392,2.504,437,1.254,438,6.488,439,1.711,440,2.311,441,3.746,442,2.403,443,2.504,444,1.711,445,4.092,446,4.092,447,4.092,448,5.497,449,4.104,450,5.497,451,3.333,452,2.504,453,2.226,454,4.657,455,2.581,456,3.644,457,2.615,458,4.657,459,2.738,460,4.092,461,2.876,462,4.092,463,3.719,464,3.219,465,4.95,466,2.504,467,3.441,468,4.092,469,3.441,470,4.092,471,4.039,472,4.285,473,4.58,474,3.441,475,4.285,476,3.828,477,2.876,478,4.039,479,3.035,480,2.876,481,3.828,482,2.876,483,3.828,484,2.876,485,4.039,486,3.035,487,4.285,488,3.219,489,4.657,490,6.197,491,4.657,492,4.285,493,3.035,494,6.197,495,4.657,496,4.657,497,4.95,498,4.092,499,5.445,500,3.719,501,3.219]],["title/modules/AccountsRoutingModule.html",[437,1.148,448,2.945]],["body/modules/AccountsRoutingModule.html",[3,0.138,4,0.108,5,0.078,21,0.011,45,2.454,48,1.314,56,0.138,57,0.007,58,0.008,59,0.007,60,0.007,88,1.927,140,0.481,143,1.821,175,1.188,176,2.289,183,4.355,192,3.64,245,0.694,250,2.102,293,2.355,295,2.289,304,2.289,439,2.166,444,2.166,448,4.979,455,2.999,460,5.178,462,6.328,463,4.707,464,4.074,468,5.178,469,4.355,470,5.178,498,5.178,502,5.893,503,3.465,504,3.719,505,4.044,506,4.886,507,4.074,508,4.074,509,3.84,510,3.64]],["title/interfaces/Action.html",[0,1.058,511,2.291]],["body/interfaces/Action.html",[0,2.017,2,2.554,3,0.139,4,0.109,5,0.079,7,0.467,8,1.225,12,3.59,17,3.063,18,0.683,20,1.499,21,0.011,22,1.991,29,2.837,45,3.382,56,0.139,57,0.007,58,0.009,59,0.007,93,0.72,135,2.956,227,2.281,511,4.611,512,4.103,513,4.776,514,4.561,515,2.985,516,4.253,517,3.867,518,4.468]],["title/classes/ActivatedRouteStub.html",[60,0.005,519,3.403]],["body/classes/ActivatedRouteStub.html",[3,0.122,4,0.095,5,0.069,7,0.408,8,1.126,9,1.064,18,0.546,21,0.011,33,1.927,56,0.122,57,0.006,58,0.008,59,0.006,60,0.006,62,2.026,64,2.309,77,1.095,84,1.096,86,0.883,92,1.159,93,0.613,96,5.311,112,0.83,140,0.378,152,2.333,221,1.565,228,2.055,250,1.85,253,2.542,519,5.311,520,7.032,521,4.494,522,2.912,523,6.649,524,6.649,525,6.649,526,8.733,527,3.972,528,5.424,529,7.741,530,4.914,531,5.311,532,4.551,533,7.339,534,6.448,535,6.649,536,7.41,537,6.649,538,5.186,539,6.649,540,5.186,541,5.311,542,7.741,543,6.649,544,4.557,545,4.597,546,6.649,547,5.186,548,2.479,549,4.557,550,4.557,551,5.842,552,5.186,553,5.186,554,5.186,555,5.186]],["title/components/AdminComponent.html",[175,0.624,298,1.354]],["body/components/AdminComponent.html",[3,0.073,4,0.057,5,0.041,7,0.245,8,0.79,9,1.115,18,0.644,20,1.125,21,0.011,33,1.097,51,1.297,56,0.131,57,0.004,58,0.005,59,0.004,60,0.004,73,0.91,77,0.767,84,0.658,86,0.925,88,1.018,91,1.44,92,1.214,93,0.742,112,1.156,134,1.351,135,2.349,140,0.432,152,0.99,171,1.749,175,0.819,176,0.99,177,1.663,178,1.111,179,1.256,180,1.111,181,1.018,185,1.29,186,2.404,187,0.962,188,1.879,189,1.879,190,2.829,191,3.052,192,2.879,193,1.879,195,1.879,207,2.669,217,4.304,221,1.872,227,1.633,228,0.962,244,1.256,245,0.367,248,1.546,249,1.546,253,1.079,283,2.313,287,0.862,288,1.713,289,1.663,290,0.886,291,2.279,292,1.144,293,1.018,294,2.053,295,0.99,296,1.144,297,1.144,298,1.971,299,1.144,300,1.018,301,1.144,302,0.99,303,1.144,304,0.99,305,1.144,306,0.99,307,0.753,308,1.144,309,1.018,310,1.713,311,1.079,312,1.018,313,1.144,314,0.99,315,1.144,316,0.99,317,1.144,318,0.99,319,1.144,320,1.018,321,1.713,322,1.079,323,0.99,324,0.773,325,0.99,326,1.144,327,1.018,328,1.713,329,1.079,330,1.018,331,0.795,332,0.99,333,1.018,334,0.99,335,0.99,336,1.144,337,0.99,338,1.144,339,0.99,340,1.144,341,1.048,342,1.111,343,1.144,349,3.862,351,4.461,353,3.862,354,3.862,355,3.222,356,4.287,360,2.736,361,2.913,363,3.222,374,3.862,383,3.862,384,3.037,385,3.222,387,3.862,388,3.222,389,2.153,390,1.607,391,1.675,392,1.675,393,1.923,394,1.749,395,1.546,405,3.222,407,2.74,408,3.037,411,2.301,413,2.301,414,2.153,415,2.301,416,2.153,418,2.301,419,2.153,429,3.222,511,4.433,513,2.74,514,3.913,515,1.713,556,2.736,557,3.646,558,5.586,559,4.661,560,4.708,561,4.661,562,3.723,563,4.661,564,4.661,565,4.661,566,4.661,567,3.114,568,3.834,569,4.661,570,3.114,571,4.661,572,3.114,573,3.114,574,3.114,575,4.661,576,3.114,577,3.114,578,3.114,579,3.114,580,3.114,581,3.114,582,6.201,583,6.969,584,3.114,585,3.114,586,3.114,587,2.029,588,4.908,589,3.114,590,2.736,591,2.736,592,2.487,593,3.114,594,3.114,595,3.114,596,4.661,597,3.114,598,3.114,599,4.661,600,3.114,601,3.114,602,2.736,603,3.114,604,3.114,605,3.114,606,3.114,607,3.114,608,3.114,609,3.114,610,1.297,611,5.586,612,3.114,613,3.114,614,3.114,615,2.736,616,2.736,617,3.114,618,3.114,619,4.661,620,3.114,621,3.114,622,4.661,623,3.114,624,6.201,625,6.201,626,6.201,627,6.201,628,4.661,629,2.617,630,3.445,631,4.661,632,2.736,633,2.301,634,3.114]],["title/modules/AdminModule.html",[437,1.148,635,3.149]],["body/modules/AdminModule.html",[3,0.128,4,0.1,5,0.072,21,0.011,56,0.128,57,0.006,58,0.008,59,0.006,60,0.006,140,0.502,143,2.12,245,0.642,287,1.507,298,2.636,390,2.811,391,2.928,392,2.928,437,1.467,439,2.001,440,2.703,441,4.037,442,2.811,443,2.928,444,2.001,449,4.28,451,3.688,452,2.928,453,2.603,455,2.856,456,4.032,457,3.058,459,3.202,461,3.364,471,4.469,472,4.742,475,4.742,476,4.236,477,3.364,478,4.469,479,3.549,480,3.364,481,4.236,482,3.364,483,4.236,484,3.364,485,4.469,486,3.549,492,4.742,493,3.549,635,6.396,636,4.785,637,4.785,638,4.785,639,5.733,640,5.446,641,5.446,642,4.785]],["title/modules/AdminRoutingModule.html",[437,1.148,639,2.945]],["body/modules/AdminRoutingModule.html",[3,0.151,4,0.118,5,0.086,21,0.011,48,1.44,56,0.151,57,0.008,58,0.009,59,0.008,60,0.008,140,0.46,143,1.995,175,0.946,245,0.761,250,2.303,298,2.418,439,2.373,444,2.373,455,3.168,503,3.796,504,3.867,505,4.272,506,3.796,510,3.988,639,5.26,642,5.673,643,6.456]],["title/components/AppComponent.html",[175,0.624,300,1.393]],["body/components/AppComponent.html",[3,0.079,4,0.062,5,0.045,7,0.265,8,0.836,9,0.789,18,0.563,20,0.57,21,0.011,22,1.643,33,1.515,39,2.901,48,1.598,51,2.054,56,0.079,57,0.004,58,0.006,59,0.004,60,0.004,73,0.983,77,0.812,78,1.669,79,2.356,84,1.042,86,0.884,88,1.099,91,1.525,92,0.86,93,0.632,112,0.789,113,1.813,122,2.485,140,0.366,152,1.069,163,2.855,175,0.856,176,1.069,177,1.76,178,1.199,179,1.356,180,1.199,181,1.099,185,1.365,186,2.515,187,1.039,188,1.989,189,1.989,190,2.85,191,3.078,193,1.989,195,1.989,207,2.771,221,1.515,228,1.989,244,1.356,245,0.396,249,1.669,253,2.375,271,2.77,287,0.931,288,1.813,289,1.76,290,0.956,291,2.366,292,1.236,293,1.099,294,2.148,295,1.069,296,1.236,297,1.236,298,1.069,299,1.236,300,2.105,301,1.236,302,1.069,303,1.236,304,1.069,305,1.236,306,1.069,307,1.556,308,1.236,309,1.099,310,1.813,311,1.165,312,1.099,313,1.236,314,1.069,315,1.236,316,1.069,317,1.236,318,1.069,319,1.236,320,1.099,321,1.813,322,1.165,323,1.069,324,0.835,325,1.069,326,1.236,327,1.099,328,1.813,329,1.165,330,1.099,331,1.259,332,1.069,333,1.099,334,1.069,335,1.069,336,1.236,337,1.069,338,1.236,339,1.069,340,1.236,341,1.131,342,1.199,343,1.236,361,2.986,395,1.669,397,4.319,398,1.735,402,2.686,404,5.135,515,1.236,633,3.646,644,2.954,645,2.546,646,5.844,647,4.933,648,5.135,649,5.135,650,5.135,651,5.844,652,4.933,653,4.335,654,4.933,655,4.933,656,2.686,657,4.426,658,4.574,659,4.826,660,7.405,661,4.933,662,4.933,663,5.142,664,3.362,665,6.438,666,3.362,667,3.362,668,3.362,669,3.362,670,4.933,671,3.362,672,2.077,673,4.933,674,4.335,675,4.335,676,3.362,677,3.215,678,3.362,679,4.319,680,3.362,681,2.954,682,2.954,683,2.686,684,2.191,685,2.954,686,4.933,687,3.362,688,3.362,689,5.135,690,4.319,691,3.362,692,4.933,693,3.362,694,4.933,695,3.94,696,4.933,697,3.215,698,3.362,699,2.325,700,3.362,701,2.954,702,1.497,703,2.686,704,3.362,705,3.362,706,3.362,707,2.954,708,3.362,709,3.362,710,3.362,711,3.362,712,3.362,713,3.362,714,2.954,715,3.362,716,2.077,717,4.04,718,2.686,719,2.485,720,2.686,721,2.686,722,2.686,723,2.954,724,2.954,725,3.362,726,4.335,727,2.954,728,4.335,729,2.954,730,3.362,731,3.362,732,3.362,733,3.362,734,4.933,735,3.362,736,3.362,737,3.362,738,1.735,739,3.362]],["title/modules/AppModule.html",[437,1.148,740,3.149]],["body/modules/AppModule.html",[3,0.109,4,0.085,5,0.062,21,0.011,56,0.109,57,0.005,58,0.007,59,0.005,60,0.005,114,2.339,123,1.931,140,0.496,143,1.91,144,1.996,145,2.394,245,0.546,248,2.302,287,1.284,300,2.796,390,2.394,437,1.249,439,1.704,440,2.302,441,3.738,442,3.588,443,3.738,444,1.704,449,4.099,451,3.323,452,2.494,453,2.217,455,2.573,459,2.727,461,2.864,465,4.936,466,2.494,467,3.427,471,4.027,683,3.704,684,3.022,740,6.503,741,4.075,742,4.075,743,4.075,744,4.075,745,4.075,746,5.49,747,5.49,748,5.283,749,5.49,750,5.49,751,4.637,752,6.18,753,4.936,754,2.604,755,4.936,756,4.637,757,4.637,758,6.18,759,4.637,760,5.921,761,6.18,762,2.394,763,4.567,764,4.273,765,4.075,766,4.637,767,3.704,768,3.704,769,4.637,770,4.027,771,4.075,772,4.637,773,4.637,774,4.637,775,4.637,776,4.075,777,4.637,778,4.637,779,4.637,780,4.637,781,4.637,782,4.637,783,4.637,784,4.637,785,5.479,786,5.921,787,5.552]],["title/modules/AppRoutingModule.html",[437,1.148,746,2.945]],["body/modules/AppRoutingModule.html",[3,0.143,4,0.111,5,0.081,21,0.011,48,1.354,56,0.143,57,0.007,58,0.009,59,0.007,60,0.007,140,0.448,143,1.877,245,0.716,250,2.166,439,2.232,444,2.232,455,3.055,503,3.57,504,3.768,505,4.119,506,4.634,507,4.198,508,4.198,509,3.957,746,5.071,764,5.071,765,5.336,788,6.073,789,7.336,790,4.851,791,6.445,792,6.073,793,6.073,794,6.073,795,6.073,796,4.851,797,6.073,798,6.073]],["title/interfaces/AreaName.html",[0,1.058,516,2.505]],["body/interfaces/AreaName.html",[0,2.043,2,2.652,3,0.145,4,0.113,5,0.082,7,0.485,8,1.254,12,3.673,17,3.18,18,0.607,20,1.476,21,0.011,22,1.572,29,2.946,45,2.566,56,0.145,57,0.007,58,0.009,59,0.007,93,0.788,135,3.188,227,1.801,511,4.265,512,4.26,513,3.623,514,3.46,515,2.264,516,4.663,517,5.361,518,4.571]],["title/interfaces/AreaType.html",[0,1.058,518,2.632]],["body/interfaces/AreaType.html",[0,2.043,2,2.652,3,0.145,4,0.113,5,0.082,7,0.485,8,1.254,12,3.673,17,3.18,18,0.607,20,1.476,21,0.011,22,1.572,29,3.933,45,2.566,56,0.145,57,0.007,58,0.009,59,0.007,93,0.788,135,3.188,227,1.801,511,4.265,512,4.26,513,3.623,514,3.46,515,2.264,516,4.351,517,4.015,518,4.899]],["title/components/AuthComponent.html",[175,0.624,302,1.354]],["body/components/AuthComponent.html",[3,0.08,4,0.062,5,0.045,7,0.268,8,0.843,9,0.796,18,0.59,20,0.576,21,0.011,33,1.384,37,1.687,48,1.443,56,0.08,57,0.004,58,0.006,59,0.004,60,0.004,73,0.994,77,0.819,79,2.901,84,1.051,86,0.913,88,1.112,91,1.537,92,0.867,93,0.635,112,1.102,113,2.378,114,1.673,123,2.868,134,1.202,140,0.392,152,1.581,163,2.449,175,0.862,176,1.08,177,1.774,178,1.213,179,1.371,180,1.213,181,1.112,185,1.377,186,2.531,187,1.051,188,2.005,189,2.005,190,2.853,191,3.082,193,2.005,195,2.005,200,4.346,207,2.785,211,3.675,216,5.492,218,3.996,221,1.693,225,4.066,227,1.892,228,1.817,231,4.254,244,1.371,245,0.401,246,2.512,247,1.828,248,1.687,249,1.687,250,1.213,253,2.856,255,2.512,256,2.512,274,3.438,283,2.468,285,3.241,287,0.941,288,1.828,289,2.098,290,0.967,291,2.378,292,1.249,293,1.112,294,2.161,295,1.08,296,1.249,297,1.249,298,1.08,299,1.249,300,1.112,301,1.249,302,2.057,303,1.249,304,1.08,305,1.249,306,1.08,307,1.202,308,1.249,309,1.112,310,1.828,311,1.177,312,1.112,313,1.249,314,1.08,315,1.249,316,1.08,317,1.249,318,1.08,319,1.249,320,1.112,321,1.828,322,1.177,323,1.08,324,0.844,325,1.08,326,1.249,327,1.112,328,1.828,329,1.177,330,1.112,331,0.867,332,1.08,333,1.112,334,1.08,335,1.08,336,1.249,337,1.08,338,1.249,339,1.08,340,1.249,341,1.144,342,1.213,343,1.249,398,1.755,531,5.169,588,4.37,656,2.715,657,4.443,679,3.675,685,2.987,717,3.438,790,3.972,799,2.987,800,5.881,801,4.973,802,5.881,803,5.167,804,4.697,805,6.321,806,5.169,807,6.472,808,4.973,809,5.881,810,4.973,811,3.399,812,3.399,813,3.399,814,3.399,815,4.973,816,3.399,817,3.399,818,3.399,819,3.399,820,3.399,821,3.399,822,3.399,823,3.802,824,3.399,825,2.987,826,3.399,827,3.399,828,2.715,829,3.399,830,4.973,831,3.399,832,2.987,833,2.512,834,2.987,835,3.399,836,3.399,837,1.909,838,3.399,839,2.35,840,2.35,841,2.987,842,3.399,843,3.399,844,3.399,845,3.399,846,3.399,847,3.399,848,3.399,849,3.399,850,3.399,851,3.399,852,2.793,853,4.973,854,2.512,855,3.072,856,4.973]],["title/guards/AuthGuard.html",[764,2.945,857,2.632]],["body/guards/AuthGuard.html",[3,0.108,4,0.085,5,0.061,7,0.363,9,0.985,18,0.505,21,0.011,56,0.108,57,0.005,58,0.007,59,0.005,60,0.008,64,3.086,65,3.178,77,1.014,84,0.974,86,0.702,92,1.073,93,0.568,112,1.184,113,2.263,114,2.332,119,3.803,120,4.257,121,4.551,123,1.92,127,4.918,134,1.489,140,0.394,143,1.425,155,3.314,175,0.902,181,2.013,185,1.277,218,4.562,227,1.8,245,0.544,250,1.645,253,2.562,504,2.944,515,2.263,521,4.546,527,3.441,548,2.205,568,3.178,587,5.36,610,1.92,645,2.38,764,4.257,790,5.908,796,6.156,823,3.411,857,4.569,858,3.684,859,4.052,860,4.918,861,5.41,862,4.551,863,5.41,864,3.684,865,4.612,866,5.41,867,2.839,868,5.114,869,4.257,870,3.62,871,4.257,872,4.013,873,4.052,874,6.967,875,6.499,876,4.612,877,5.41,878,6.158,879,4.551,880,3.803,881,4.918,882,4.918,883,5.41,884,4.918,885,6.499,886,5.908,887,4.551,888,5.41,889,5.41,890,6.091,891,6.158,892,4.551,893,6.158,894,1.957,895,2.849,896,2.849,897,2.48,898,4.052,899,4.052]],["title/modules/AuthModule.html",[437,1.148,900,3.149]],["body/modules/AuthModule.html",[3,0.132,4,0.103,5,0.075,21,0.011,56,0.132,57,0.007,58,0.008,59,0.007,60,0.007,140,0.497,143,2.159,245,0.661,247,3.016,287,1.552,302,2.655,339,2.655,437,1.511,439,2.061,440,2.784,441,4.092,442,2.895,443,3.016,444,2.061,451,3.757,452,3.016,453,2.681,455,2.909,456,4.108,457,3.149,459,3.298,476,4.315,477,3.464,481,4.315,482,3.464,483,4.315,484,3.464,487,4.83,488,3.878,492,4.83,493,3.655,497,5.58,900,6.426,901,4.928,902,4.928,903,4.928,904,5.776,905,5.609,906,5.609,907,4.928,908,5.609,909,4.928]],["title/modules/AuthRoutingModule.html",[437,1.148,904,2.945]],["body/modules/AuthRoutingModule.html",[3,0.149,4,0.116,5,0.084,21,0.011,48,1.413,56,0.149,57,0.007,58,0.009,59,0.007,60,0.007,140,0.456,143,1.958,175,0.928,245,0.747,250,2.26,302,2.391,439,2.328,444,2.328,455,3.133,503,3.725,504,3.837,505,4.225,506,4.423,507,4.38,508,4.38,509,4.128,510,3.913,904,5.201,907,5.566,910,6.335]],["title/injectables/AuthService.html",[657,2.632,894,1.354]],["body/injectables/AuthService.html",[0,0.671,3,0.063,4,0.049,5,0.036,7,0.213,8,0.708,9,0.997,18,0.611,20,0.457,21,0.011,22,1.067,23,3.09,33,0.636,48,1.718,51,1.741,56,0.063,57,0.003,58,0.005,59,0.003,60,0.003,64,1.202,77,0.689,79,3.146,84,0.883,86,0.924,92,1.086,93,0.575,112,1.248,113,2.738,114,1.407,123,1.741,134,1.887,135,1.023,140,0.415,144,1.162,145,1.394,152,2.258,155,1.291,163,2.958,221,1.754,227,1.496,228,0.835,245,0.318,253,2.381,274,2.891,307,1.763,324,0.671,361,2.772,397,4.258,398,3.217,400,1.588,402,4.602,453,1.291,466,1.452,528,1.996,545,3.538,629,1.516,632,4.496,645,1.394,657,2.583,659,4.48,672,4.247,695,2.157,701,5.062,702,2.565,714,2.373,762,1.394,770,2.725,771,2.373,805,5.062,823,3.362,825,3.674,834,2.373,840,1.867,852,1.516,854,3.782,862,1.996,867,1.245,894,1.329,897,1.452,898,2.373,911,1.452,912,2.373,913,3.702,914,5.117,915,5.117,916,5.762,917,4.602,918,4.602,919,5.762,920,5.762,921,5.762,922,4.182,923,5.762,924,5.062,925,4.182,926,4.182,927,1.996,928,4.872,929,4.182,930,2.7,931,2.7,932,2.7,933,2.7,934,2.7,935,2.7,936,2.7,937,4.182,938,2.7,939,4.182,940,2.7,941,2.7,942,4.182,943,2.7,944,4.182,945,4.182,946,2.7,947,5.117,948,4.182,949,2.7,950,3.674,951,2.7,952,2.7,953,2.7,954,2.7,955,4.182,956,2.7,957,2.7,958,1.452,959,2.7,960,2.7,961,2.891,962,2.7,963,4.182,964,2.7,965,2.373,966,2.7,967,2.7,968,3.674,969,6.592,970,2.7,971,2.7,972,5.117,973,6.592,974,5.117,975,3.34,976,5.117,977,5.762,978,5.117,979,4.182,980,2.373,981,4.182,982,4.182,983,4.182,984,2.249,985,4.182,986,4.182,987,5.762,988,4.496,989,4.602,990,2.7,991,2.7,992,4.182,993,5.117,994,5.117,995,5.117,996,2.373,997,2.7,998,5.117,999,2.7,1000,2.373,1001,2.373,1002,2.7,1003,4.182,1004,2.7,1005,2.7,1006,2.7,1007,2.7,1008,2.7,1009,2.7,1010,2.7,1011,2.7,1012,2.7,1013,2.7,1014,4.182,1015,2.7,1016,2.7,1017,2.7,1018,4.182,1019,4.602,1020,2.7,1021,2.7,1022,2.7,1023,2.7,1024,2.373,1025,2.7,1026,2.7,1027,2.7,1028,2.7,1029,1.867,1030,3.34,1031,2.373,1032,2.373,1033,1.996,1034,2.7,1035,2.373,1036,2.157,1037,2.157,1038,2.7,1039,2.7,1040,2.7,1041,2.7,1042,2.7,1043,2.7,1044,2.7,1045,2.7,1046,1.867,1047,2.7,1048,2.7,1049,4.182,1050,2.7,1051,4.182,1052,2.373,1053,2.7,1054,2.7,1055,4.182,1056,2.7,1057,2.7,1058,1.34,1059,2.7,1060,2.7,1061,3.674,1062,2.157,1063,4.182,1064,4.182,1065,2.7,1066,2.7,1067,3.674,1068,2.7,1069,2.7,1070,2.7,1071,2.7,1072,2.7,1073,2.7,1074,2.7,1075,2.7,1076,2.7]],["title/injectables/BlockSyncService.html",[894,1.354,1077,3.149]],["body/injectables/BlockSyncService.html",[3,0.077,4,0.06,5,0.044,7,0.259,8,0.822,9,1.176,18,0.632,20,1.278,21,0.011,22,2.214,33,1.357,47,2.504,48,1.683,51,2.652,56,0.077,57,0.004,58,0.006,59,0.004,60,0.004,73,1.686,77,0.799,79,2.739,84,1.025,86,0.878,92,1.281,93,0.678,95,2.612,112,1.137,113,2.34,134,1.173,140,0.429,144,1.415,145,1.697,152,2.399,221,1.73,228,1.782,245,0.387,253,1.998,271,2.724,273,2.997,331,1.238,361,2.964,394,1.846,395,1.631,396,2.142,407,2.853,408,3.162,532,1.933,645,1.697,649,5.067,650,5.067,658,4.39,684,3.162,894,1.542,897,1.768,911,1.768,958,1.768,984,1.768,1077,3.586,1078,6.886,1079,2.888,1080,4.852,1081,4.852,1082,4.852,1083,4.852,1084,5.767,1085,5.767,1086,3.287,1087,4.791,1088,4.852,1089,4.852,1090,6.028,1091,5.694,1092,3.287,1093,4.262,1094,4.852,1095,4.723,1096,5.767,1097,3.287,1098,4.852,1099,3.287,1100,3.424,1101,4.852,1102,3.287,1103,3.287,1104,6.368,1105,3.287,1106,3.287,1107,6.368,1108,6.368,1109,6.368,1110,7.547,1111,6.368,1112,6.368,1113,3.287,1114,3.391,1115,3.287,1116,3.287,1117,1.768,1118,3.287,1119,2.625,1120,3.287,1121,3.287,1122,3.287,1123,5.767,1124,3.287,1125,3.287,1126,2.888,1127,4.852,1128,3.287,1129,3.287,1130,3.287,1131,3.287,1132,3.287,1133,3.287,1134,3.287,1135,3.287,1136,4.852,1137,3.287,1138,3.287,1139,3.287,1140,3.287,1141,3.287,1142,2.888,1143,2.888,1144,3.287,1145,4.852,1146,4.852,1147,3.287,1148,4.852,1149,3.287,1150,3.287,1151,4.852,1152,3.287,1153,4.852,1154,4.852,1155,2.625,1156,4.852,1157,2.888,1158,3.287,1159,4.263,1160,3.287,1161,2.888,1162,3.287,1163,3.287,1164,3.287,1165,3.287,1166,3.287,1167,3.287,1168,3.287,1169,4.852,1170,3.287,1171,3.287,1172,3.875,1173,4.852,1174,3.287,1175,3.287,1176,3.287,1177,4.852,1178,3.287,1179,3.287,1180,3.287,1181,3.287,1182,3.287,1183,3.287,1184,3.287]],["title/classes/BlocksBloom.html",[60,0.005,1185,2.632]],["body/classes/BlocksBloom.html",[1,3.787,3,0.13,4,0.101,5,0.074,7,0.435,8,1.173,18,0.683,20,1.497,21,0.011,22,2.214,33,1.301,56,0.13,57,0.007,58,0.008,59,0.007,60,0.01,62,2.159,86,0.93,93,0.51,95,2.031,140,0.314,227,1.616,324,1.373,331,1.766,515,2.031,738,3.573,852,3.103,1100,4.476,1185,4.669,1186,3.601,1187,5.225,1188,5.225,1189,5.225,1190,5.225,1191,5.225,1192,5.526,1193,5.526,1194,5.526,1195,5.526,1196,5.526,1197,3.82,1198,5.039,1199,2.642,1200,3.601,1201,3.601,1202,3.82,1203,3.82,1204,3.413,1205,3.249,1206,3.82,1207,3.82,1208,3.82,1209,3.601,1210,3.601]],["title/interfaces/Category.html",[0,1.058,12,2.115]],["body/interfaces/Category.html",[0,2.043,2,2.652,3,0.145,4,0.113,5,0.082,7,0.485,8,1.254,12,3.937,17,4.246,18,0.607,20,1.476,21,0.011,22,1.572,29,2.946,45,2.566,56,0.145,57,0.007,58,0.009,59,0.007,93,0.788,135,3.188,227,1.801,511,4.265,512,4.26,513,3.623,514,3.46,515,2.264,516,4.351,517,4.015,518,4.571]],["title/classes/Conversion.html",[60,0.005,738,2.199]],["body/classes/Conversion.html",[1,3.874,3,0.127,4,0.099,5,0.072,7,0.425,8,1.156,18,0.698,20,1.481,21,0.011,22,2.206,33,1.271,56,0.127,57,0.006,58,0.008,59,0.006,60,0.009,62,2.111,86,0.958,93,0.498,95,1.985,140,0.307,227,1.579,324,1.342,331,1.741,515,2.749,738,3.861,852,3.033,1100,4.614,1185,4.215,1186,3.52,1187,3.735,1188,3.735,1189,3.735,1190,3.735,1191,3.735,1197,3.735,1198,5.191,1199,2.582,1200,3.52,1201,3.52,1202,3.735,1203,3.735,1204,3.337,1205,3.176,1206,5.171,1207,5.171,1208,5.171,1209,4.875,1210,4.875,1211,5.402,1212,5.402,1213,5.402,1214,5.402,1215,5.402,1216,5.402,1217,5.402]],["title/components/CreateAccountComponent.html",[175,0.624,304,1.354]],["body/components/CreateAccountComponent.html",[3,0.074,4,0.057,5,0.042,7,0.247,8,0.793,9,0.501,12,3.593,14,4.472,16,3.739,18,0.653,21,0.011,22,1.977,29,2.239,33,1.102,45,2.59,56,0.074,57,0.004,58,0.006,59,0.004,60,0.004,67,3.052,73,0.916,77,0.771,84,0.99,86,0.897,88,2.604,91,2.488,92,0.546,93,0.574,112,0.749,114,1.055,123,2.335,134,1.132,135,2.819,140,0.397,152,1.489,175,0.822,176,0.996,177,1.671,178,1.118,179,1.264,180,1.118,181,1.025,185,1.296,186,2.413,187,0.969,188,1.888,189,1.888,190,2.831,191,3.055,193,1.888,195,1.888,200,4.144,207,2.677,211,3.461,215,2.503,216,5.162,217,4.472,221,1.464,225,3.877,227,1.369,228,1.447,231,4.113,244,1.264,245,0.369,246,2.316,247,1.685,248,1.556,249,1.556,253,1.942,255,2.316,256,5.725,258,2.754,273,3.843,283,2.325,284,4.552,285,5.498,287,0.867,288,1.721,289,1.671,290,0.892,291,2.286,292,1.152,293,1.025,294,2.061,295,0.996,296,1.152,297,1.152,298,0.996,299,1.152,300,1.025,301,1.152,302,0.996,303,1.152,304,1.977,305,1.152,306,0.996,307,0.758,308,1.152,309,1.025,310,1.721,311,1.086,312,1.025,313,1.152,314,0.996,315,1.152,316,0.996,317,1.152,318,0.996,319,1.152,320,1.025,321,1.721,322,1.086,323,0.996,324,0.778,325,0.996,326,1.152,327,1.025,328,1.721,329,1.086,330,1.025,331,0.8,332,0.996,333,1.025,334,0.996,335,0.996,336,1.152,337,0.996,338,1.152,339,0.996,340,1.152,341,1.055,342,1.118,343,1.152,348,3.877,394,1.76,395,1.556,396,2.043,405,3.877,406,2.503,407,3.658,408,4.054,409,2.754,427,4.927,428,5.579,469,5.886,515,1.721,516,1.843,804,4.479,806,4.969,828,3.741,1218,6.998,1219,2.754,1220,5.607,1221,4.684,1222,4.144,1223,4.144,1224,5.607,1225,4.144,1226,5.607,1227,5.35,1228,4.684,1229,3.134,1230,3.134,1231,3.134,1232,3.134,1233,3.134,1234,3.134,1235,3.134,1236,3.134,1237,3.134,1238,3.134,1239,3.134,1240,3.134,1241,3.134,1242,5.607,1243,3.134,1244,6.658,1245,3.134,1246,2.754,1247,3.134,1248,3.134,1249,2.503,1250,3.134,1251,2.754,1252,3.134,1253,3.134,1254,3.134,1255,3.134,1256,4.054,1257,4.684,1258,3.461,1259,4.684,1260,5.466,1261,5.466,1262,4.597,1263,4.684,1264,4.115]],["title/classes/CustomErrorStateMatcher.html",[60,0.005,231,2.632]],["body/classes/CustomErrorStateMatcher.html",[3,0.119,4,0.093,5,0.067,7,0.399,9,0.811,18,0.416,21,0.011,33,1.542,48,1.131,56,0.119,57,0.006,58,0.008,59,0.006,60,0.006,62,1.981,64,2.917,77,1.079,86,0.578,92,0.883,93,0.468,112,1.048,114,2.205,119,4.047,120,4.53,134,1.226,140,0.373,155,3.132,180,2.337,185,1.813,225,4.53,227,2.123,231,4.047,247,2.726,289,2.337,307,1.968,493,3.304,568,3.382,587,4.27,1052,6.743,1093,6.015,1265,5.757,1266,4.454,1267,5.757,1268,4.53,1269,5.757,1270,6.88,1271,6.552,1272,6.552,1273,6.552,1274,5.757,1275,6.552,1276,7.26,1277,6.552,1278,6.552,1279,7.675,1280,7.675,1281,7.675,1282,5.069,1283,5.001,1284,6.015,1285,6.616,1286,6.552,1287,5.757,1288,5.757,1289,6.552,1290,6.552,1291,6.552,1292,5.069,1293,5.069,1294,5.069,1295,5.069]],["title/classes/CustomValidator.html",[60,0.005,1296,3.403]],["body/classes/CustomValidator.html",[3,0.109,4,0.085,5,0.062,7,0.366,9,0.991,18,0.508,20,1.179,21,0.011,33,1.457,48,1.552,56,0.109,57,0.005,58,0.007,59,0.005,60,0.005,62,1.817,64,3.099,65,3.196,72,4.576,77,1.222,86,0.706,92,1.079,93,0.571,112,1.114,114,1.565,119,4.584,125,4.945,134,1.869,140,0.264,155,3.328,221,1.457,227,1.36,247,2.501,307,1.869,480,5.09,823,2.144,1019,5.928,1058,3.945,1093,5.485,1256,4.035,1267,5.44,1269,5.44,1270,6.581,1283,4.836,1285,6.173,1287,6.983,1296,4.945,1297,4.086,1298,6.192,1299,4.576,1300,7.948,1301,6.192,1302,6.192,1303,6.192,1304,7.729,1305,4.65,1306,7.422,1307,6.09,1308,6.192,1309,7.948,1310,4.035,1311,5.44,1312,6.192,1313,6.961,1314,7.948,1315,4.65,1316,7.422,1317,7.422,1318,6.192,1319,7.422,1320,5.44,1321,4.65,1322,6.192,1323,4.65,1324,4.65,1325,4.65,1326,4.65,1327,4.65]],["title/components/ErrorDialogComponent.html",[175,0.624,306,1.354]],["body/components/ErrorDialogComponent.html",[3,0.11,4,0.086,5,0.063,7,0.37,8,1.057,9,0.752,18,0.512,21,0.011,42,3.208,56,0.11,57,0.006,58,0.007,59,0.006,60,0.005,73,1.375,78,3.474,84,0.993,86,0.711,88,1.537,91,1.928,92,0.819,93,0.688,140,0.355,175,1.026,176,1.494,177,2.225,178,1.677,179,1.896,180,1.677,181,1.537,187,1.453,188,2.515,189,2.515,190,2.927,191,3.175,193,2.515,195,2.515,244,1.896,245,0.554,287,1.301,288,2.292,289,2.225,290,1.337,291,2.739,292,1.728,293,1.537,294,2.572,295,1.494,296,1.728,297,1.728,298,1.494,299,1.728,300,1.537,301,1.728,302,1.494,303,1.728,304,1.494,305,1.728,306,2.369,307,1.997,308,1.728,309,1.537,310,2.292,311,1.629,312,1.537,313,1.728,314,1.494,315,1.728,316,1.494,317,1.728,318,1.494,319,1.728,320,1.537,321,2.292,322,1.629,323,1.494,324,1.168,325,1.494,326,1.728,327,1.537,328,2.292,329,1.629,330,1.537,331,1.2,332,1.494,333,1.537,334,1.494,335,1.494,336,1.728,337,1.494,338,1.728,339,1.494,340,1.728,341,1.582,342,1.677,343,1.728,384,3.064,568,3.219,702,2.777,1328,6.15,1329,5.173,1330,4.131,1331,4.982,1332,6.999,1333,6.237,1334,4.702,1335,4.702,1336,4.702,1337,4.702,1338,4.702,1339,4.702,1340,3.756,1341,4.702,1342,6.237,1343,6.237]],["title/injectables/ErrorDialogService.html",[659,2.776,894,1.354]],["body/injectables/ErrorDialogService.html",[3,0.131,4,0.102,5,0.074,7,0.44,8,1.181,9,1.115,18,0.623,21,0.011,33,1.316,42,3.001,48,1.247,56,0.131,57,0.007,58,0.008,59,0.007,60,0.007,77,1.148,78,4.063,84,1.181,86,0.907,92,1.215,93,0.643,112,0.894,114,1.881,123,3.313,134,1.352,140,0.432,227,2.038,228,1.728,245,0.659,306,1.777,633,4.131,645,2.885,659,4.543,894,2.216,897,3.006,911,3.006,1329,4.131,1331,6.354,1340,4.465,1344,7.193,1345,4.912,1346,7.598,1347,6.972,1348,5.59,1349,8.186,1350,6.972,1351,6.972,1352,5.59,1353,5.59,1354,6.972,1355,4.912,1356,4.912,1357,5.59,1358,7.598,1359,5.59,1360,5.59,1361,5.59,1362,5.59]],["title/interceptors/ErrorInterceptor.html",[747,2.945,837,2.392]],["body/interceptors/ErrorInterceptor.html",[3,0.099,4,0.077,5,0.056,7,0.331,9,1.139,18,0.474,20,0.711,21,0.011,56,0.099,57,0.005,58,0.007,59,0.005,60,0.005,64,2.941,65,3.98,73,1.228,77,0.951,84,1.221,86,0.659,92,1.007,93,0.533,112,0.924,134,1.597,140,0.438,142,2.594,143,1.786,155,3.567,185,1.162,218,4.328,245,0.495,249,2.084,250,1.498,253,2.288,307,1.946,361,3.245,395,2.084,400,3.397,515,2.428,527,3.532,532,4.534,548,2.007,659,5.149,682,3.689,702,1.869,747,3.995,762,2.167,837,3.245,839,2.903,867,3.556,868,3.995,869,3.995,870,3.397,871,3.995,872,4.638,894,1.836,895,2.594,896,2.594,988,3.689,1029,2.903,1031,3.689,1061,3.689,1117,2.258,1274,5.077,1307,5.259,1320,5.077,1331,4.615,1363,3.103,1364,3.689,1365,5.259,1366,3.765,1367,5.699,1368,4.732,1369,6.108,1370,4.27,1371,4.199,1372,4.199,1373,3.995,1374,5.077,1375,4.27,1376,4.27,1377,5.259,1378,5.259,1379,4.199,1380,4.27,1381,4.27,1382,4.92,1383,4.27,1384,5.778,1385,4.615,1386,3.103,1387,4.27,1388,3.689,1389,4.199,1390,4.199,1391,6.606,1392,5.778,1393,4.199,1394,4.199,1395,5.778,1396,4.199,1397,4.199,1398,5.077,1399,4.199,1400,3.995,1401,3.765,1402,3.689,1403,4.199,1404,4.199,1405,4.199,1406,5.778,1407,4.199,1408,4.199,1409,3.689,1410,4.615,1411,4.199,1412,4.199,1413,5.778,1414,4.199,1415,4.199,1416,4.199,1417,3.689,1418,4.199,1419,4.199]],["title/components/FooterComponent.html",[175,0.624,309,1.393]],["body/components/FooterComponent.html",[3,0.115,4,0.09,5,0.065,7,0.387,21,0.01,56,0.115,57,0.006,58,0.008,59,0.006,60,0.006,73,1.437,77,1.057,84,1.511,86,0.732,88,1.607,91,1.984,93,0.66,112,0.786,140,0.279,175,1.048,176,1.562,177,2.291,178,1.753,179,1.981,180,1.753,181,1.607,185,1.777,186,3.078,187,1.519,188,2.589,189,2.589,190,2.935,191,3.186,193,2.589,195,2.589,207,3.264,221,1.511,244,1.981,245,0.579,287,1.36,288,2.36,289,2.291,290,1.398,291,2.787,292,1.806,293,1.607,294,2.629,295,1.562,296,1.806,297,1.806,298,1.562,299,1.806,300,1.607,301,1.806,302,1.562,303,1.806,304,1.562,305,1.806,306,1.562,307,1.188,308,1.806,309,2.48,310,2.36,311,1.702,312,1.607,313,1.806,314,1.562,315,1.806,316,1.562,317,1.806,318,1.562,319,1.806,320,1.607,321,2.36,322,1.702,323,1.562,324,1.221,325,1.562,326,1.806,327,1.607,328,2.36,329,1.702,330,1.607,331,1.254,332,1.562,333,1.607,334,1.562,335,1.562,336,1.806,337,1.562,338,1.806,339,1.562,340,1.806,341,1.654,342,1.753,343,1.806,1036,5.129,1037,5.129,1420,4.318,1421,4.746,1422,7.152,1423,6.421,1424,4.914,1425,4.914,1426,6.421]],["title/components/FooterStubComponent.html",[175,0.624,311,1.476]],["body/components/FooterStubComponent.html",[3,0.121,4,0.094,5,0.069,21,0.01,56,0.172,57,0.006,58,0.008,59,0.006,60,0.009,73,1.507,88,1.685,91,2.047,93,0.675,140,0.293,175,0.971,176,1.638,177,2.362,178,2.61,180,1.839,181,1.685,187,1.593,190,2.941,191,3.205,245,0.607,287,1.427,288,2.434,289,2.362,290,1.466,291,2.838,292,1.894,293,1.685,294,2.689,295,1.638,296,1.894,297,1.894,298,1.638,299,1.894,300,1.685,301,1.894,302,1.638,303,1.894,304,1.638,305,1.894,306,1.638,307,1.246,308,1.894,309,1.685,310,2.434,311,2.675,312,1.685,313,1.894,314,1.638,315,1.894,316,1.638,317,1.894,318,1.638,319,1.894,320,1.685,321,2.434,322,2.294,323,1.638,324,1.28,325,1.638,326,1.894,327,1.685,328,2.434,329,2.294,330,1.685,331,1.315,332,1.638,333,1.685,334,1.638,335,1.638,336,1.894,337,1.638,338,1.894,339,1.638,340,1.894,341,1.734,342,1.839,343,1.894,437,1.388,522,2.894,716,3.184,1421,4.895,1427,3.809,1428,5.845,1429,3.809]],["title/injectables/GlobalErrorHandler.html",[748,2.776,894,1.354]],["body/injectables/GlobalErrorHandler.html",[3,0.079,4,0.061,5,0.045,7,0.264,8,0.833,9,1.028,18,0.662,20,1.285,21,0.011,22,1.255,33,0.788,48,1.433,56,0.115,57,0.004,58,0.006,59,0.004,60,0.007,64,3.293,65,3.693,74,2.182,77,0.81,78,1.662,84,0.708,86,0.78,92,1.12,93,0.593,112,1.028,114,2.162,119,3.038,123,1.394,134,0.81,135,2.434,140,0.365,142,2.069,143,1.035,152,1.064,155,3.536,218,4.08,221,1.512,227,1.878,228,1.035,245,0.395,250,1.195,253,2.562,307,2.163,361,2.982,400,2.892,521,4.018,568,3.693,610,1.394,702,2.596,703,2.675,748,3.206,755,5.132,762,1.728,867,2.963,868,3.401,869,3.401,870,2.892,871,3.401,872,4.187,894,1.563,911,1.801,958,1.801,961,4.031,989,2.675,1029,4.031,1030,2.675,1062,5.132,1256,3.206,1307,5.288,1366,3.206,1368,2.892,1373,3.401,1375,3.635,1385,3.929,1400,2.315,1401,3.799,1430,5.715,1431,2.675,1432,4.322,1433,4.322,1434,4.322,1435,4.322,1436,5.058,1437,5.123,1438,4.919,1439,6.666,1440,4.919,1441,2.943,1442,4.919,1443,4.322,1444,4.322,1445,3.349,1446,3.929,1447,3.635,1448,5.646,1449,5.132,1450,5.646,1451,5.132,1452,4.322,1453,3.349,1454,5.646,1455,5.123,1456,4.322,1457,4.322,1458,5.123,1459,4.322,1460,3.349,1461,4.322,1462,3.929,1463,4.322,1464,3.929,1465,4.322,1466,3.929,1467,4.322,1468,4.322,1469,2.943,1470,2.943,1471,2.943,1472,2.943,1473,2.943,1474,2.943,1475,2.943,1476,2.943,1477,2.943,1478,4.322,1479,2.943,1480,2.675,1481,2.943,1482,2.943,1483,2.943,1484,2.943,1485,2.943,1486,2.943,1487,2.943,1488,2.943,1489,2.943,1490,2.943,1491,2.943,1492,2.943,1493,4.322,1494,2.675,1495,2.943,1496,2.943,1497,2.943]],["title/interceptors/HttpConfigInterceptor.html",[749,2.945,837,2.392]],["body/interceptors/HttpConfigInterceptor.html",[3,0.122,4,0.095,5,0.069,7,0.408,9,1.174,18,0.426,20,0.879,21,0.011,48,1.157,56,0.122,57,0.006,58,0.008,59,0.006,60,0.006,64,2.96,77,1.095,84,1.551,86,0.758,92,0.904,93,0.478,112,1.064,134,1.254,140,0.417,143,1.603,155,3.179,185,1.435,245,0.611,324,1.823,400,3.909,527,3.643,532,4.815,548,2.479,749,4.597,762,2.677,837,3.734,894,2.113,895,3.203,896,3.203,965,5.842,968,4.557,980,4.557,1363,3.833,1365,5.721,1366,4.333,1367,6.052,1368,5.048,1369,6.388,1370,4.914,1373,4.597,1376,4.914,1377,5.721,1378,5.721,1380,4.914,1381,4.914,1382,4.597,1383,4.914,1386,3.833,1387,4.914,1498,6.448,1499,4.557,1500,6.649,1501,5.186,1502,6.649,1503,5.186,1504,5.842,1505,5.186,1506,5.186,1507,4.142]],["title/classes/HttpError.html",[60,0.005,961,2.945]],["body/classes/HttpError.html",[3,0.088,4,0.069,5,0.05,7,0.295,8,0.903,9,0.599,18,0.61,20,1.325,21,0.011,22,1.825,48,1.509,56,0.125,57,0.004,58,0.006,59,0.004,60,0.008,62,1.462,64,2.765,65,3.205,74,2.439,78,3.082,84,0.791,86,0.608,92,0.652,93,0.345,112,0.599,114,2.089,119,2.312,123,1.558,134,0.905,135,2.019,140,0.385,142,2.312,143,1.157,152,1.19,155,3.657,218,3.639,221,1.255,227,1.815,245,0.441,250,1.335,253,2.151,307,2.16,361,2.728,400,2.2,521,4.174,568,4.257,610,1.558,702,3.184,703,2.989,748,2.439,755,4.959,762,1.932,867,2.458,868,2.587,869,2.587,870,2.2,871,2.587,872,3.474,894,1.694,958,2.013,961,4.945,989,2.989,1029,4.293,1030,2.989,1062,5.405,1256,4.41,1307,4.589,1366,2.439,1368,3.651,1373,2.587,1375,2.766,1385,4.258,1400,3.686,1401,4.661,1430,4.959,1431,2.989,1432,3.288,1433,3.288,1434,3.288,1435,3.288,1436,5.286,1437,3.288,1439,6.532,1443,3.288,1444,3.288,1446,2.989,1447,2.766,1448,4.684,1449,4.258,1450,4.684,1451,4.258,1452,3.288,1454,4.684,1455,4.684,1456,3.288,1457,3.288,1458,4.684,1459,3.288,1461,3.288,1462,2.989,1463,3.288,1464,2.989,1465,3.288,1466,2.989,1467,3.288,1468,3.288,1469,4.684,1470,4.684,1471,4.684,1472,4.684,1473,3.288,1474,3.288,1475,3.288,1476,3.288,1477,3.288,1478,4.684,1479,3.288,1480,2.989,1481,3.288,1482,3.288,1483,3.288,1484,3.288,1485,3.288,1486,3.288,1487,3.288,1488,3.288,1489,3.288,1490,3.288,1491,3.288,1492,3.288,1493,4.684,1494,2.989,1495,3.288,1496,3.288,1497,3.288,1508,5.331]],["title/injectables/LocationService.html",[894,1.354,1227,3.149]],["body/injectables/LocationService.html",[3,0.129,4,0.101,5,0.073,7,0.432,9,1.206,16,3.083,18,0.618,20,1.408,21,0.011,29,2.624,56,0.129,57,0.006,58,0.008,59,0.006,60,0.006,77,1.135,84,1.16,86,0.928,92,1.313,93,0.695,112,1.265,134,1.911,140,0.463,144,2.363,145,2.834,245,0.647,394,3.083,395,2.725,407,3.228,527,4.271,548,2.624,610,2.286,645,2.834,762,2.834,894,2.191,897,2.952,911,2.952,927,4.057,928,6.141,1227,5.094,1249,6.313,1509,4.824,1510,6.057,1511,6.057,1512,6.945,1513,5.49,1514,6.893,1515,5.49,1516,5.49,1517,6.893,1518,5.49,1519,5.49,1520,5.49,1521,5.49,1522,5.49,1523,5.49,1524,5.49]],["title/interceptors/LoggingInterceptor.html",[750,2.945,837,2.392]],["body/interceptors/LoggingInterceptor.html",[3,0.109,4,0.085,5,0.062,7,0.365,9,1.186,18,0.507,20,1.047,21,0.011,22,1.577,48,1.55,50,4.027,56,0.109,57,0.005,58,0.007,59,0.005,60,0.005,64,3.095,65,3.19,77,1.018,84,0.98,86,0.705,92,1.077,93,0.57,112,0.989,134,1.494,140,0.439,142,2.864,143,1.91,155,3.323,185,1.284,245,0.546,307,1.121,361,3.269,395,2.302,400,3.634,527,3.45,532,4.669,548,2.217,568,3.985,610,1.931,663,3.704,702,2.065,750,4.273,762,2.394,837,3.47,867,2.85,872,4.027,894,1.964,895,2.864,896,2.864,958,2.494,1019,3.704,1029,3.206,1363,3.427,1365,5.479,1366,4.027,1367,5.869,1368,4.842,1369,6.275,1370,4.567,1373,4.273,1375,5.479,1376,4.567,1377,5.479,1378,5.479,1380,4.567,1381,4.567,1382,4.273,1383,4.567,1386,3.427,1387,4.567,1441,4.075,1504,5.43,1507,3.704,1525,4.075,1526,6.18,1527,4.637,1528,4.637,1529,5.43,1530,6.18,1531,4.637,1532,4.637,1533,6.18,1534,4.637,1535,4.637,1536,6.18,1537,4.637,1538,4.637,1539,4.637,1540,4.637]],["title/injectables/LoggingService.html",[361,1.718,894,1.354]],["body/injectables/LoggingService.html",[3,0.108,4,0.162,5,0.061,7,0.363,8,1.043,9,1.316,18,0.69,20,1.043,21,0.011,56,0.108,57,0.005,58,0.007,59,0.005,60,0.005,77,1.014,84,0.974,86,0.959,92,1.433,93,0.759,112,1.295,140,0.35,221,2.033,227,1.8,245,0.544,307,2.149,361,2.483,610,1.92,645,2.38,702,3.604,767,3.684,768,5.537,894,1.957,897,2.48,911,2.48,1541,4.052,1542,6.932,1543,6.091,1544,6.158,1545,6.158,1546,6.158,1547,6.158,1548,6.158,1549,6.158,1550,6.158,1551,4.612,1552,7.397,1553,6.158,1554,6.158,1555,4.612,1556,6.158,1557,4.612,1558,6.158,1559,4.612,1560,6.158,1561,4.612,1562,6.158,1563,4.612,1564,6.158,1565,4.612,1566,6.158,1567,4.612,1568,4.612,1569,6.158,1570,4.612,1571,4.612,1572,4.612,1573,4.052,1574,4.612,1575,4.612,1576,4.612,1577,4.612,1578,4.612,1579,4.612,1580,4.612]],["title/directives/MenuSelectionDirective.html",[290,1.212,335,1.354]],["body/directives/MenuSelectionDirective.html",[3,0.134,4,0.105,5,0.076,7,0.451,9,0.916,18,0.47,21,0.011,48,1.789,56,0.134,57,0.007,58,0.008,59,0.007,60,0.007,77,1.165,84,1.209,86,0.807,92,0.997,93,0.528,112,0.916,140,0.325,187,1.769,190,2.313,221,1.665,245,0.674,253,1.982,290,2.012,334,1.819,335,2.248,610,2.383,633,4.229,648,5.028,674,5.028,675,5.028,716,3.535,717,5.309,718,4.571,719,4.229,720,4.571,721,4.571,722,4.571,723,5.028,724,5.028,726,5.028,727,5.028,728,5.028,729,5.028,1581,6.133,1582,5.028,1583,7.074,1584,8.021,1585,4.571,1586,6.706,1587,6.133,1588,6.407,1589,5.723,1590,5.723,1591,4.571,1592,4.229,1593,5.723,1594,5.723]],["title/directives/MenuToggleDirective.html",[290,1.212,337,1.354]],["body/directives/MenuToggleDirective.html",[3,0.138,4,0.108,5,0.078,7,0.462,9,0.94,18,0.482,21,0.011,48,1.732,56,0.138,57,0.007,58,0.008,59,0.007,60,0.007,77,1.183,84,1.241,86,0.819,92,1.023,93,0.542,112,0.94,140,0.334,187,1.815,190,2.35,221,1.692,245,0.692,253,2.034,290,2.044,334,1.866,337,2.284,590,5.159,610,2.445,716,3.627,717,5.37,718,4.69,719,4.34,720,4.69,721,4.69,722,4.69,1581,6.204,1585,4.69,1586,6.748,1587,6.204,1588,6.464,1591,4.69,1592,4.34,1595,4.69,1596,7.187,1597,8.093,1598,5.872,1599,5.872,1600,5.872,1601,5.159,1602,5.872,1603,5.872,1604,5.872]],["title/interfaces/Meta.html",[0,1.058,37,2.115]],["body/interfaces/Meta.html",[0,1.863,1,3.828,2,2.055,3,0.112,4,0.088,5,0.064,6,3.112,7,0.376,8,1.068,10,3.529,11,2.681,12,2.37,13,4.357,14,3.892,15,4.357,16,3.538,17,3.252,18,0.615,19,3.389,20,1.51,21,0.011,22,1.914,24,4.357,25,4.357,26,4.357,27,4.106,28,4.106,29,2.283,30,4.357,31,3.529,32,3.892,33,1.993,34,4.357,35,4.357,36,4.357,37,3.974,38,4.357,39,3.705,40,4.328,41,2.808,42,3.355,43,2.808,44,2.568,45,3.246,46,4.106,47,2.465,48,1.065,49,3.892,50,3.112,51,2.624,52,3.112,53,3.892,54,3.892,55,3.301,56,0.112,57,0.006,58,0.007,59,0.006]],["title/interfaces/MetaResponse.html",[0,1.058,46,2.776]],["body/interfaces/MetaResponse.html",[0,1.87,1,3.599,2,2.076,3,0.113,4,0.088,5,0.064,6,3.143,7,0.38,8,1.075,10,3.564,11,2.708,12,2.394,13,4.385,14,3.918,15,4.385,16,3.562,17,3.274,18,0.582,19,3.411,20,1.511,21,0.011,22,1.921,24,4.385,25,4.385,26,4.385,27,4.133,28,4.133,29,2.306,30,4.385,31,3.564,32,3.918,33,1.996,34,4.385,35,4.385,36,4.385,37,4.063,38,4.385,39,3.729,40,3.886,41,2.836,42,2.73,43,2.836,44,2.594,45,3.257,46,4.619,47,3.886,48,1.076,49,3.918,50,3.143,51,2.641,52,3.143,53,3.918,54,3.918,55,3.334,56,0.113,57,0.006,58,0.007,59,0.006]],["title/interceptors/MockBackendInterceptor.html",[837,2.392,1605,3.149]],["body/interceptors/MockBackendInterceptor.html",[3,0.032,4,0.025,5,0.018,7,0.108,9,0.507,11,2.416,12,1.184,17,3.453,18,0.112,20,0.404,21,0.011,22,0.609,29,2.258,42,1.364,45,1.967,47,0.707,48,1.637,52,2.066,56,0.056,57,0.002,58,0.003,59,0.002,60,0.002,64,1.062,65,1.231,77,0.393,86,0.156,91,0.423,92,0.239,93,0.739,95,1.736,112,0.382,114,1.448,123,1.32,131,1.763,134,1.915,135,2.431,140,0.245,142,0.846,143,0.737,144,0.589,155,1.14,171,1.78,181,0.448,185,0.379,228,0.423,245,0.161,271,0.769,284,2.066,307,0.331,324,0.942,331,0.349,333,0.448,348,0.947,376,0.947,395,0.68,396,0.892,400,1.403,406,1.906,444,0.503,466,0.736,501,0.947,504,0.655,511,3.159,513,2.986,514,2.652,515,2.159,516,1.403,517,3.96,518,1.474,521,0.769,527,3.607,530,4.944,532,2.777,541,4.299,545,0.947,548,0.655,557,1.864,560,1.555,562,1.906,568,1.636,629,1.34,677,0.892,684,1.555,702,1.062,760,1.906,762,0.707,763,1.012,785,1.012,786,1.094,787,1.094,839,1.649,840,1.649,854,2.343,855,1.474,857,0.846,867,0.631,870,0.805,880,0.846,892,1.012,894,0.758,895,0.846,896,0.846,1033,2.343,1114,0.805,1199,2.258,1222,1.012,1223,1.763,1225,1.763,1246,2.096,1249,1.906,1251,2.096,1258,1.012,1262,1.763,1268,0.947,1284,1.012,1363,1.012,1365,2.804,1366,1.555,1367,2.804,1368,3.165,1369,4.172,1370,1.763,1376,1.763,1377,2.804,1378,2.804,1380,4.342,1381,1.763,1382,2.623,1383,1.763,1386,1.012,1387,1.763,1388,2.096,1398,2.096,1400,2.192,1409,1.203,1410,5.24,1447,2.343,1449,1.094,1480,1.094,1507,1.094,1510,2.096,1511,2.096,1512,2.096,1529,2.096,1605,2.804,1606,1.906,1607,1.094,1608,2.386,1609,2.096,1610,2.386,1611,1.369,1612,2.096,1613,2.386,1614,2.386,1615,2.386,1616,1.369,1617,3.78,1618,1.203,1619,1.906,1620,1.203,1621,1.906,1622,1.094,1623,3.03,1624,1.094,1625,2.343,1626,1.094,1627,1.094,1628,1.906,1629,1.094,1630,0.947,1631,1.094,1632,1.094,1633,1.094,1634,1.012,1635,1.094,1636,0.947,1637,1.094,1638,2.096,1639,3.334,1640,1.203,1641,1.203,1642,1.203,1643,1.203,1644,1.203,1645,1.203,1646,1.203,1647,1.203,1648,1.203,1649,1.203,1650,1.203,1651,1.203,1652,1.203,1653,1.203,1654,1.203,1655,2.096,1656,1.203,1657,1.203,1658,2.096,1659,1.203,1660,1.203,1661,1.203,1662,2.786,1663,2.786,1664,1.203,1665,2.096,1666,1.203,1667,2.096,1668,2.096,1669,2.096,1670,1.203,1671,1.203,1672,1.203,1673,1.203,1674,1.203,1675,1.203,1676,1.203,1677,1.203,1678,1.203,1679,1.203,1680,1.203,1681,1.203,1682,1.203,1683,1.203,1684,1.203,1685,1.203,1686,1.203,1687,1.203,1688,1.203,1689,1.203,1690,1.203,1691,1.203,1692,1.203,1693,1.203,1694,1.203,1695,1.203,1696,1.203,1697,1.203,1698,1.203,1699,1.203,1700,1.203,1701,1.203,1702,1.203,1703,2.096,1704,1.203,1705,1.203,1706,1.203,1707,1.203,1708,1.203,1709,1.203,1710,1.203,1711,1.203,1712,1.203,1713,1.203,1714,1.203,1715,1.203,1716,2.096,1717,1.203,1718,1.203,1719,1.203,1720,2.096,1721,1.203,1722,1.203,1723,1.203,1724,1.203,1725,1.203,1726,1.203,1727,1.203,1728,1.203,1729,1.203,1730,1.203,1731,1.203,1732,1.203,1733,1.203,1734,1.203,1735,1.203,1736,1.203,1737,1.203,1738,1.203,1739,1.203,1740,1.203,1741,1.203,1742,1.203,1743,1.203,1744,1.203,1745,1.203,1746,1.203,1747,2.786,1748,1.203,1749,1.203,1750,1.203,1751,1.203,1752,1.203,1753,1.203,1754,1.203,1755,1.203,1756,1.203,1757,1.203,1758,1.203,1759,1.203,1760,1.203,1761,2.096,1762,1.203,1763,1.203,1764,1.203,1765,1.203,1766,1.203,1767,1.203,1768,1.203,1769,2.096,1770,1.203,1771,1.203,1772,1.203,1773,1.203,1774,1.203,1775,1.094,1776,1.203,1777,1.203,1778,1.203,1779,1.203,1780,0.846,1781,1.203,1782,1.203,1783,1.203,1784,1.203,1785,1.203,1786,1.203,1787,1.203,1788,2.096,1789,1.203,1790,1.203,1791,2.096,1792,1.203,1793,1.203,1794,1.203,1795,1.203,1796,1.203,1797,1.203,1798,1.203,1799,1.203,1800,1.203,1801,1.203,1802,1.203,1803,1.203,1804,1.203,1805,1.203,1806,1.203,1807,1.203,1808,2.786,1809,1.203,1810,1.203,1811,1.203,1812,1.203,1813,1.203,1814,1.203,1815,1.203,1816,1.203,1817,1.203,1818,1.203,1819,1.203,1820,1.203,1821,1.203,1822,1.203,1823,1.203,1824,1.203,1825,1.203,1826,1.203,1827,2.096,1828,1.203,1829,1.203,1830,1.203,1831,1.203,1832,1.203,1833,1.203,1834,1.203,1835,1.203,1836,1.203,1837,1.203,1838,1.203,1839,1.203,1840,1.203,1841,1.203,1842,1.203,1843,1.203,1844,1.203,1845,2.096,1846,2.786,1847,1.203,1848,1.203,1849,1.203,1850,1.203,1851,2.786,1852,2.786,1853,1.203,1854,2.096,1855,1.203,1856,1.203,1857,1.203,1858,1.203,1859,1.203,1860,1.203,1861,1.203,1862,1.203,1863,1.203,1864,1.203,1865,1.203,1866,1.203,1867,1.203,1868,1.203,1869,2.786,1870,1.203,1871,1.203,1872,1.203,1873,1.203,1874,1.203,1875,1.203,1876,1.203,1877,1.203,1878,1.203,1879,1.203,1880,1.203,1881,1.203,1882,1.203,1883,1.203,1884,1.203,1885,1.203,1886,1.203,1887,1.203,1888,1.906,1889,1.094,1890,2.096,1891,2.096,1892,2.096,1893,2.096,1894,1.203,1895,1.203,1896,1.203,1897,1.203,1898,1.094,1899,1.203,1900,1.203,1901,1.203,1902,1.203,1903,1.203,1904,1.203,1905,1.203,1906,1.203,1907,1.203,1908,1.203,1909,1.203,1910,1.203,1911,1.203,1912,1.203,1913,1.203,1914,1.203,1915,1.203,1916,1.203,1917,1.203,1918,1.094,1919,1.203,1920,1.203,1921,1.203,1922,1.203,1923,1.203,1924,1.203,1925,1.203,1926,1.203,1927,1.203,1928,1.203,1929,2.786,1930,1.203,1931,1.203,1932,1.203,1933,1.203,1934,1.203,1935,1.203,1936,2.096,1937,3.334,1938,1.203,1939,1.203,1940,1.203,1941,1.203,1942,1.203,1943,1.203,1944,1.203,1945,1.203,1946,1.203,1947,1.203,1948,1.203,1949,1.203,1950,1.203,1951,1.203,1952,1.203,1953,1.203,1954,1.203,1955,1.203,1956,1.203,1957,1.203,1958,1.203,1959,1.203,1960,1.203,1961,2.096,1962,1.203,1963,1.203,1964,1.203,1965,1.012,1966,1.203,1967,1.203,1968,1.203,1969,1.203,1970,1.203,1971,1.203,1972,1.203,1973,1.203,1974,1.203,1975,1.203,1976,1.203,1977,1.203,1978,1.203,1979,1.203,1980,1.203,1981,1.203,1982,1.203,1983,1.203,1984,1.203,1985,1.203,1986,1.203,1987,1.203,1988,1.203,1989,1.203,1990,1.203,1991,1.203,1992,1.203,1993,1.203,1994,1.203,1995,1.203,1996,2.096,1997,1.203,1998,1.203,1999,1.203,2000,1.203,2001,1.203,2002,1.203,2003,1.203,2004,1.203,2005,2.096,2006,1.203,2007,1.094,2008,1.203,2009,1.203,2010,1.203,2011,1.203,2012,1.203,2013,1.203,2014,1.203,2015,1.203,2016,1.203,2017,2.096,2018,1.203,2019,1.203,2020,1.203,2021,1.203,2022,1.203,2023,1.203,2024,1.203,2025,1.203,2026,1.203,2027,1.203,2028,1.203,2029,1.203,2030,1.203,2031,1.203,2032,1.203,2033,1.203,2034,1.203,2035,2.096,2036,1.906,2037,1.203,2038,1.203,2039,1.203,2040,1.203,2041,1.203,2042,1.203,2043,1.203,2044,1.203,2045,1.203,2046,1.203,2047,1.203,2048,1.203,2049,1.203,2050,1.203,2051,1.203,2052,1.203,2053,1.203,2054,1.203,2055,1.203,2056,1.094,2057,1.203,2058,1.203,2059,1.203,2060,1.203,2061,1.203,2062,1.203,2063,1.203,2064,1.203,2065,1.203,2066,1.203,2067,1.203,2068,1.203,2069,1.203,2070,1.203,2071,1.203,2072,1.203,2073,1.203,2074,1.203,2075,1.094,2076,1.203,2077,1.203,2078,1.203,2079,1.203,2080,1.203,2081,1.203,2082,1.203,2083,1.203,2084,1.203,2085,1.203,2086,1.203,2087,1.203,2088,1.203,2089,1.203,2090,1.203,2091,1.203,2092,1.203,2093,1.203,2094,2.096,2095,1.203,2096,1.203,2097,1.203,2098,1.203,2099,1.203,2100,1.203,2101,1.203,2102,1.094,2103,1.203,2104,1.094,2105,1.203,2106,1.203,2107,1.203,2108,1.203,2109,1.203,2110,1.094,2111,1.203,2112,1.203,2113,1.203,2114,1.203,2115,1.203,2116,1.203,2117,1.203,2118,1.203,2119,1.094,2120,1.203,2121,1.203,2122,1.203,2123,1.203,2124,1.203,2125,1.203,2126,1.203,2127,1.094,2128,1.203,2129,1.094,2130,1.203,2131,1.203,2132,1.906,2133,1.203,2134,1.203,2135,1.203,2136,1.203,2137,1.203,2138,1.203,2139,1.203,2140,1.203,2141,1.203,2142,1.203,2143,1.203,2144,1.203,2145,1.203,2146,1.203,2147,1.203,2148,1.203,2149,1.203,2150,1.203,2151,1.203,2152,1.203,2153,1.203,2154,1.203,2155,1.203,2156,1.203,2157,1.203,2158,1.203,2159,1.203,2160,1.203,2161,1.203,2162,1.203,2163,1.203,2164,1.203,2165,1.203,2166,1.203,2167,1.203,2168,1.203,2169,1.203,2170,1.203,2171,1.203,2172,1.203,2173,1.203,2174,1.203,2175,1.203,2176,1.203,2177,1.203,2178,1.203,2179,1.203,2180,2.096,2181,1.203,2182,1.203,2183,1.203,2184,1.203,2185,1.203,2186,1.203,2187,1.203,2188,1.203,2189,1.203,2190,1.203,2191,1.203,2192,1.203,2193,1.203,2194,1.203,2195,1.203,2196,1.203,2197,1.203,2198,2.786,2199,1.203,2200,1.203,2201,1.203,2202,1.203,2203,1.203,2204,1.203,2205,1.203,2206,1.203,2207,1.203,2208,1.203,2209,1.203,2210,1.203,2211,1.203,2212,1.203,2213,1.203,2214,1.203,2215,1.203,2216,1.203,2217,1.203,2218,1.203,2219,1.203,2220,1.203,2221,1.203,2222,1.203,2223,1.203,2224,1.203,2225,1.203,2226,1.203,2227,1.203,2228,1.203,2229,1.203,2230,1.203,2231,1.203,2232,1.203,2233,1.203,2234,1.203,2235,1.203,2236,1.203,2237,1.203,2238,1.203,2239,1.203,2240,1.203,2241,1.203,2242,1.203,2243,1.203,2244,1.203,2245,1.203,2246,1.203,2247,1.203,2248,1.203,2249,1.203,2250,1.203,2251,1.203,2252,1.203,2253,1.203,2254,1.203,2255,1.203,2256,1.203,2257,1.203,2258,1.203,2259,1.203,2260,1.203,2261,1.203,2262,1.203,2263,1.203,2264,1.203,2265,1.203,2266,1.203,2267,1.203,2268,1.203,2269,1.203,2270,1.203,2271,1.203,2272,1.203,2273,1.203,2274,1.203,2275,1.203,2276,1.203,2277,1.203,2278,1.203,2279,1.203,2280,1.203,2281,1.203,2282,1.203,2283,1.203,2284,1.203,2285,1.203,2286,1.203,2287,2.096,2288,1.203,2289,1.906,2290,1.203,2291,1.203,2292,1.203,2293,1.203,2294,1.203,2295,1.203,2296,1.203,2297,1.203,2298,1.203,2299,1.203,2300,1.203,2301,1.203,2302,1.203,2303,1.203,2304,1.203,2305,1.203,2306,1.094,2307,1.203,2308,1.203,2309,1.203,2310,1.203,2311,1.203,2312,1.203,2313,1.203,2314,1.203,2315,1.203,2316,1.203,2317,1.203,2318,2.096,2319,2.096,2320,1.203,2321,1.203,2322,1.203,2323,1.203,2324,1.203,2325,1.203,2326,1.906,2327,1.203,2328,1.203,2329,1.203,2330,1.203,2331,1.203,2332,1.203,2333,1.203,2334,1.203,2335,1.203,2336,1.203,2337,1.203,2338,1.203,2339,1.203,2340,1.203,2341,1.203,2342,1.203,2343,1.203,2344,1.203,2345,1.203,2346,1.203,2347,1.203,2348,1.094,2349,1.094,2350,1.203,2351,1.203,2352,1.203,2353,2.096,2354,1.203,2355,1.203,2356,1.203,2357,1.203,2358,1.203,2359,1.203,2360,1.203,2361,2.096,2362,1.203,2363,1.203,2364,1.203,2365,1.203,2366,1.203,2367,1.203,2368,1.203,2369,1.203,2370,1.203,2371,1.203,2372,1.203,2373,1.203,2374,1.203,2375,1.203,2376,1.203,2377,1.203,2378,1.203,2379,1.203,2380,1.203,2381,1.203,2382,1.203,2383,1.203,2384,1.203,2385,1.203,2386,1.203,2387,1.203,2388,1.094,2389,1.203,2390,1.203,2391,1.203,2392,1.203,2393,1.203,2394,1.906,2395,1.203,2396,1.203,2397,1.203,2398,1.203,2399,1.203,2400,1.203,2401,1.203,2402,1.094,2403,1.203,2404,1.203,2405,1.203,2406,1.203,2407,1.203,2408,1.203,2409,1.203,2410,1.203,2411,1.203,2412,1.203,2413,1.203,2414,1.203,2415,1.203,2416,1.203,2417,1.203,2418,1.203,2419,1.203,2420,1.203,2421,1.203,2422,1.203,2423,1.203,2424,1.203,2425,1.203,2426,1.203,2427,1.203,2428,1.203,2429,1.203,2430,1.203,2431,1.203,2432,1.203,2433,1.203,2434,1.203,2435,1.203,2436,1.203,2437,1.203,2438,1.203,2439,1.203,2440,1.203,2441,1.203,2442,1.203,2443,1.203,2444,1.203,2445,1.203,2446,1.203,2447,1.203,2448,1.203,2449,1.203,2450,1.203,2451,1.203,2452,1.203,2453,1.094,2454,1.094,2455,1.403,2456,1.203,2457,1.012,2458,1.203,2459,3.773,2460,3.266,2461,1.203,2462,3.773,2463,3.773,2464,3.773,2465,1.203,2466,2.096,2467,3.179,2468,5.162,2469,3.436,2470,3.179,2471,3.78,2472,2.096,2473,1.203,2474,2.096,2475,1.203,2476,1.203,2477,1.203,2478,2.096,2479,1.203,2480,1.203,2481,1.203,2482,2.096,2483,1.203,2484,1.203,2485,1.203,2486,2.096,2487,1.094,2488,1.203,2489,1.203,2490,1.203,2491,1.203,2492,1.369,2493,1.369,2494,1.369,2495,1.369,2496,1.012,2497,1.369,2498,2.386,2499,1.203,2500,1.203,2501,1.369,2502,1.369,2503,1.369,2504,1.369,2505,1.369,2506,1.369,2507,1.369,2508,1.369,2509,1.369,2510,5.675,2511,1.369,2512,1.369,2513,1.369,2514,2.386,2515,2.386,2516,2.096,2517,1.369,2518,1.369,2519,1.369,2520,1.369,2521,1.369,2522,1.369,2523,1.369,2524,2.386,2525,1.369,2526,1.369,2527,2.096,2528,1.369,2529,2.096,2530,1.369,2531,2.096,2532,1.203,2533,1.203,2534,1.369,2535,1.203,2536,1.906,2537,2.386,2538,2.386,2539,2.386,2540,3.17,2541,1.369,2542,2.386,2543,1.203,2544,1.369,2545,1.369,2546,1.369,2547,1.369,2548,1.369,2549,1.369,2550,1.369,2551,1.369,2552,1.369,2553,1.369,2554,1.369,2555,1.369,2556,1.369,2557,1.369,2558,1.369,2559,1.369,2560,1.369,2561,1.369,2562,1.369,2563,1.369,2564,1.369,2565,1.369,2566,1.369,2567,1.369,2568,1.369,2569,1.369,2570,1.369,2571,1.369,2572,1.369,2573,1.369,2574,1.369,2575,1.369,2576,1.094,2577,2.386,2578,1.369,2579,1.369,2580,1.369,2581,1.369,2582,2.386,2583,2.386,2584,1.369,2585,1.369,2586,1.369,2587,1.369,2588,1.369]],["title/interfaces/MutableKeyStore.html",[0,1.058,913,2.392]],["body/interfaces/MutableKeyStore.html",[0,0.709,2,1.228,3,0.067,4,0.052,5,0.038,7,0.225,9,1.289,18,0.661,20,1.472,21,0.011,37,1.416,48,1.653,56,0.067,57,0.003,58,0.005,59,0.003,60,0.003,77,0.718,79,2.717,86,0.969,92,1.404,93,0.743,95,1.049,112,1.36,113,2.985,114,1.782,123,1.188,134,2.023,135,3.208,140,0.248,152,0.907,163,3.086,185,0.79,221,1.702,398,2.734,466,1.534,530,2.109,690,2.109,702,1.27,770,2.843,823,3.973,833,5.344,839,1.973,913,3.331,917,5.105,918,5.105,984,1.534,1058,1.416,1117,1.534,1310,1.859,1436,3.914,2589,5.012,2590,2.109,2591,3.452,2592,5.615,2593,5.615,2594,5.615,2595,3.833,2596,3.833,2597,3.833,2598,5.615,2599,5.615,2600,3.833,2601,3.833,2602,3.833,2603,5.615,2604,5.615,2605,3.833,2606,3.833,2607,3.833,2608,3.833,2609,3.833,2610,5.615,2611,3.833,2612,3.833,2613,3.833,2614,3.016,2615,2.853,2616,2.853,2617,2.853,2618,4.654,2619,2.853,2620,4.654,2621,2.853,2622,5.921,2623,2.853,2624,4.654,2625,2.853,2626,2.853,2627,2.853,2628,4.654,2629,2.853,2630,4.654,2631,2.853,2632,2.507,2633,2.853,2634,4.654,2635,2.853,2636,2.853,2637,2.853,2638,4.654,2639,2.853,2640,4.654,2641,4.654,2642,2.853,2643,4.654,2644,2.853,2645,4.654,2646,2.853,2647,4.654,2648,2.853,2649,2.853,2650,4.654,2651,2.853,2652,4.654,2653,2.853,2654,4.654,2655,2.853,2656,4.654,2657,2.853,2658,2.507,2659,2.507,2660,2.507,2661,1.859,2662,2.45,2663,2.109,2664,2.279,2665,2.507,2666,2.507,2667,3.833,2668,3.833,2669,4.654,2670,2.507,2671,4.654,2672,4.654,2673,2.507,2674,2.507,2675,2.507,2676,2.279,2677,2.507,2678,2.507,2679,2.507,2680,2.507,2681,2.507,2682,2.507,2683,2.507,2684,2.507,2685,2.507,2686,2.507,2687,2.507,2688,2.279,2689,2.279,2690,2.507,2691,2.507,2692,2.507,2693,2.507,2694,2.507,2695,2.507,2696,2.507,2697,2.507,2698,3.833,2699,2.507,2700,2.507,2701,2.507,2702,2.279,2703,1.762,2704,2.279,2705,1.859,2706,2.507,2707,1.859,2708,1.859,2709,2.279,2710,2.507,2711,2.507]],["title/classes/MutablePgpKeyStore.html",[60,0.005,770,2.776]],["body/classes/MutablePgpKeyStore.html",[0,0.715,3,0.068,4,0.053,5,0.038,7,0.227,9,1.291,18,0.577,20,1.412,21,0.011,37,1.428,48,1.657,56,0.068,57,0.003,58,0.005,59,0.003,60,0.003,62,1.124,77,0.723,79,3.324,86,0.97,92,1.406,93,0.744,95,1.058,112,1.361,113,3.011,114,1.792,123,1.198,134,2.025,135,3.211,140,0.25,152,0.915,163,3.094,185,1.215,221,1.655,398,2.748,466,1.547,530,2.127,690,2.127,702,1.281,770,3.47,823,3.976,833,5.358,839,1.99,913,3.345,917,5.124,918,5.124,984,1.547,1058,1.428,1117,1.547,1310,1.875,1436,3.245,2589,5.017,2590,2.127,2591,2.861,2592,5.637,2593,5.637,2594,5.637,2595,3.858,2596,3.858,2597,3.858,2598,5.637,2599,5.637,2600,3.858,2601,3.858,2602,3.858,2603,5.637,2604,5.637,2605,3.858,2606,3.858,2607,3.858,2608,3.858,2609,3.858,2610,5.637,2611,3.858,2612,3.858,2613,3.858,2614,3.036,2618,4.678,2620,4.678,2622,5.941,2624,4.678,2628,4.678,2630,4.678,2632,2.529,2634,4.678,2638,4.678,2640,4.678,2641,4.678,2643,4.678,2645,4.678,2647,4.678,2650,4.678,2652,4.678,2654,4.678,2656,4.678,2658,2.529,2659,2.529,2660,2.529,2661,1.875,2662,2.466,2663,2.127,2664,2.298,2665,2.529,2666,2.529,2667,3.858,2668,3.858,2669,4.678,2670,2.529,2671,4.678,2672,4.678,2673,2.529,2674,2.529,2675,2.529,2676,2.298,2677,2.529,2678,2.529,2679,2.529,2680,2.529,2681,2.529,2682,2.529,2683,2.529,2684,2.529,2685,2.529,2686,2.529,2687,2.529,2688,2.298,2689,2.298,2690,2.529,2691,2.529,2692,2.529,2693,2.529,2694,2.529,2695,2.529,2696,2.529,2697,2.529,2698,3.858,2699,2.529,2700,2.529,2701,2.529,2702,2.298,2703,1.777,2704,2.298,2705,1.875,2706,2.529,2707,1.875,2708,1.875,2709,2.298,2710,2.529,2711,2.529,2712,2.878,2713,2.878,2714,2.878,2715,2.878,2716,2.878,2717,2.878,2718,2.878,2719,2.878,2720,2.878,2721,2.878,2722,2.878,2723,2.878,2724,2.878,2725,2.878,2726,2.878,2727,2.878,2728,2.878,2729,2.878,2730,2.878,2731,2.878,2732,2.878,2733,2.878,2734,2.878,2735,2.878,2736,2.878]],["title/components/NetworkStatusComponent.html",[175,0.624,312,1.393]],["body/components/NetworkStatusComponent.html",[3,0.105,4,0.082,5,0.059,7,0.351,8,1.019,9,0.713,18,0.494,21,0.011,33,1.048,56,0.105,57,0.005,58,0.007,59,0.005,60,0.005,73,2.386,77,0.99,84,0.941,86,0.832,88,1.456,91,1.859,92,0.776,93,0.673,112,0.962,140,0.253,175,0.998,176,1.416,177,2.146,178,1.589,179,1.796,180,1.589,181,1.456,185,1.665,186,2.931,187,1.376,188,2.425,189,2.425,190,2.916,191,3.161,193,2.425,195,2.425,207,3.139,221,1.717,227,1.759,228,1.376,244,1.796,245,0.525,287,1.233,288,2.211,289,2.146,290,1.267,291,2.68,292,1.637,293,1.456,294,2.503,295,1.416,296,1.637,297,1.637,298,1.416,299,1.637,300,1.456,301,1.637,302,1.416,303,1.637,304,1.416,305,1.637,306,1.416,307,1.077,308,1.637,309,1.456,310,2.211,311,1.543,312,2.385,313,1.637,314,1.416,315,1.637,316,1.416,317,1.637,318,1.416,319,1.637,320,1.456,321,2.211,322,1.543,323,1.416,324,1.106,325,1.416,326,1.637,327,1.456,328,2.211,329,1.543,330,1.456,331,1.136,332,1.416,333,1.456,334,1.416,335,1.416,336,1.637,337,1.416,338,1.637,339,1.416,340,1.637,341,1.499,342,1.589,343,1.637,568,3.105,610,1.855,2737,6.693,2738,6.084,2739,3.913,2740,6.811,2741,6.015,2742,6.811,2743,7.293,2744,4.454,2745,7.293,2746,6.015,2747,6.015,2748,4.454,2749,4.454,2750,7.293,2751,6.015,2752,4.454,2753,6.015,2754,4.454,2755,4.454,2756,6.015,2757,6.015]],["title/components/OrganizationComponent.html",[175,0.624,314,1.354]],["body/components/OrganizationComponent.html",[3,0.091,4,0.071,5,0.052,7,0.306,8,0.928,9,0.622,18,0.565,21,0.011,33,1.289,56,0.091,57,0.005,58,0.006,59,0.005,60,0.005,73,1.137,77,0.902,84,0.822,86,0.882,88,1.272,91,1.693,92,0.678,93,0.635,112,0.876,114,1.309,123,2.641,134,1.324,140,0.361,152,1.741,175,0.929,176,1.236,177,1.954,178,1.387,179,1.568,180,1.387,181,1.272,185,1.516,186,2.729,187,1.202,188,2.209,189,2.209,190,2.886,191,3.124,193,2.209,195,2.209,200,4.687,207,2.963,211,4.048,215,3.106,216,5.564,221,1.62,225,4.384,227,1.602,228,2.515,231,4.482,244,1.568,245,0.458,246,2.874,247,2.091,248,1.93,255,2.874,256,4.048,283,2.719,285,4.486,287,1.076,288,2.013,289,1.954,290,1.106,291,2.53,292,1.429,293,1.272,294,2.331,295,1.236,296,1.429,297,1.429,298,1.236,299,1.429,300,1.272,301,1.429,302,1.236,303,1.429,304,1.236,305,1.429,306,1.236,307,0.94,308,1.429,309,1.272,310,2.013,311,1.347,312,1.272,313,1.429,314,2.188,315,1.429,316,1.236,317,1.429,318,1.236,319,1.429,320,1.272,321,2.013,322,1.347,323,1.236,324,0.966,325,1.236,326,1.429,327,1.272,328,2.013,329,1.347,330,1.272,331,0.992,332,1.236,333,1.272,334,1.236,335,1.236,336,1.429,337,1.236,338,1.429,339,1.236,340,1.429,341,1.309,342,1.387,343,1.429,610,1.619,804,5.065,806,5.498,828,4.375,880,2.402,1095,4.227,1264,4.813,1401,4.486,1965,5.088,2758,3.417,2759,5.363,2760,6.341,2761,5.478,2762,6.341,2763,6.341,2764,5.478,2765,3.889,2766,3.889,2767,3.889,2768,3.889,2769,3.889,2770,3.889,2771,3.889,2772,7.257,2773,5.065,2774,3.889,2775,3.889,2776,3.889,2777,3.889,2778,5.478,2779,5.478,2780,4.813,2781,5.478,2782,5.478,2783,5.478,2784,5.478,2785,4.813,2786,5.478,2787,5.478,2788,5.478,2789,5.478,2790,5.478,2791,5.478]],["title/classes/PGPSigner.html",[60,0.005,2792,2.776]],["body/classes/PGPSigner.html",[0,1.553,3,0.089,4,0.069,5,0.05,7,0.298,8,0.911,9,1.089,18,0.678,20,1.463,21,0.011,33,1.266,40,4.472,41,4.225,42,2.314,43,4.225,44,3.864,47,2.776,48,1.665,51,2.239,56,0.089,57,0.004,58,0.006,59,0.004,60,0.004,62,1.48,77,0.885,78,4.103,79,2.521,84,0.801,86,0.95,92,1.186,93,0.628,104,4.203,112,1.089,113,2.297,114,1.809,134,1.3,140,0.306,163,1.578,185,1.488,221,1.807,227,2.182,228,1.662,307,1.3,361,3.01,398,1.956,672,3.322,697,2.469,699,2.619,702,2.394,754,2.128,823,1.747,913,4.191,958,2.037,1046,3.718,1058,1.881,2510,4.295,2589,4.936,2591,4.683,2614,3.718,2661,2.469,2662,3.02,2703,2.34,2705,3.504,2707,2.469,2708,2.469,2792,4.074,2793,2.469,2794,4.62,2795,4.62,2796,4.62,2797,5.31,2798,4.725,2799,4.725,2800,3.974,2801,5.378,2802,3.974,2803,3.789,2804,3.789,2805,3.789,2806,3.789,2807,3.789,2808,3.789,2809,3.789,2810,3.789,2811,4.62,2812,4.864,2813,3.789,2814,3.026,2815,4.62,2816,3.789,2817,4.62,2818,3.789,2819,2.8,2820,2.619,2821,2.8,2822,2.8,2823,3.974,2824,2.8,2825,2.8,2826,2.8,2827,2.8,2828,2.8,2829,2.8,2830,2.8,2831,2.8,2832,2.8,2833,3.974,2834,2.8,2835,2.8,2836,2.8,2837,3.974,2838,2.8,2839,3.974,2840,2.8,2841,2.8,2842,2.8,2843,2.8,2844,2.8,2845,2.8,2846,2.8,2847,2.8,2848,2.8,2849,2.8,2850,2.8,2851,2.8,2852,2.8]],["title/components/PagesComponent.html",[175,0.624,316,1.354]],["body/components/PagesComponent.html",[3,0.115,4,0.09,5,0.065,7,0.387,8,1.088,18,0.403,20,1.088,21,0.01,33,1.157,56,0.115,57,0.006,58,0.008,59,0.006,60,0.006,73,1.437,84,1.511,86,0.732,88,1.607,91,1.984,93,0.66,140,0.279,175,1.048,176,1.562,177,2.291,178,1.753,179,1.981,180,1.753,181,1.607,187,1.519,188,2.589,189,2.589,190,2.935,191,3.186,193,2.589,195,2.589,228,1.519,244,1.981,245,0.579,283,3.187,287,1.36,288,2.36,289,2.291,290,1.398,291,2.787,292,1.806,293,1.607,294,2.629,295,1.562,296,1.806,297,1.806,298,1.562,299,1.806,300,1.607,301,1.806,302,1.562,303,1.806,304,1.562,305,1.806,306,1.562,307,1.188,308,1.806,309,1.607,310,2.36,311,1.702,312,1.607,313,1.806,314,1.562,315,1.806,316,2.411,317,1.806,318,1.562,319,1.806,320,1.607,321,2.36,322,1.702,323,1.562,324,1.221,325,1.562,326,1.806,327,1.607,328,2.36,329,1.702,330,1.607,331,1.254,332,1.562,333,1.607,334,1.562,335,1.562,336,1.806,337,1.562,338,1.806,339,1.562,340,1.806,341,1.654,342,1.753,343,1.806,754,3.606,870,4.205,2853,4.318,2854,6.421,2855,7.152,2856,6.421,2857,6.421,2858,6.421,2859,5.129,2860,6.421]],["title/modules/PagesModule.html",[437,1.148,2861,3.149]],["body/modules/PagesModule.html",[3,0.131,4,0.103,5,0.074,21,0.011,56,0.131,57,0.007,58,0.008,59,0.007,60,0.007,140,0.497,143,2.157,245,0.66,287,1.55,316,2.654,437,1.508,439,2.058,440,2.779,441,4.089,442,2.89,443,3.011,444,2.058,449,4.31,451,3.753,452,3.011,453,2.677,455,2.906,456,4.103,457,3.144,459,3.292,461,3.459,476,4.311,477,3.459,478,4.548,479,3.649,480,3.459,481,4.311,482,3.459,483,4.311,484,3.459,487,4.825,488,3.871,2861,6.424,2862,4.92,2863,4.92,2864,4.92,2865,5.773,2866,5.599,2867,5.599,2868,5.599,2869,6.979,2870,4.92,2871,4.92]],["title/modules/PagesRoutingModule.html",[437,1.148,2865,2.945]],["body/modules/PagesRoutingModule.html",[3,0.136,4,0.106,5,0.077,21,0.011,48,1.292,56,0.136,57,0.007,58,0.008,59,0.007,60,0.007,67,3.774,140,0.439,143,1.79,175,0.849,245,0.682,250,2.066,283,3.537,316,2.265,439,2.128,444,2.128,455,2.967,503,3.405,504,3.69,505,4.002,506,5.016,507,4.004,508,4.004,509,3.774,510,3.577,557,3.405,791,7.267,1095,3.252,1100,3.114,2455,3.405,2865,4.927,2872,5.791,2873,5.791,2874,5.791,2875,5.791,2876,5.791,2877,5.791,2878,5.791,2879,5.791,2880,5.791,2881,5.791,2882,5.791,2883,5.791]],["title/directives/PasswordToggleDirective.html",[290,1.212,339,1.354]],["body/directives/PasswordToggleDirective.html",[3,0.128,4,0.1,5,0.072,7,0.428,9,0.87,18,0.616,20,1.334,21,0.011,45,3.124,48,1.528,56,0.128,57,0.006,58,0.008,59,0.006,60,0.006,77,1.128,84,1.149,86,0.898,92,0.947,93,0.501,112,0.87,140,0.309,187,1.68,190,2.24,221,1.613,245,0.641,253,1.883,290,1.949,334,1.728,339,2.178,610,2.264,717,4.737,975,4.343,1058,3.724,1283,4.889,1299,5.063,1585,4.343,1586,6.621,1587,5.992,1588,6.291,1591,4.343,1592,4.018,1595,4.343,2884,7.134,2885,6.852,2886,7.876,2887,7.502,2888,6.852,2889,5.437,2890,5.437,2891,5.437,2892,5.437,2893,5.437,2894,5.437,2895,7.502,2896,7.502,2897,7.502,2898,6.852,2899,7.876,2900,6.852,2901,6.852]],["title/injectables/RegistryService.html",[894,1.354,1087,2.776]],["body/injectables/RegistryService.html",[3,0.127,4,0.099,5,0.072,7,0.427,8,1.158,18,0.615,21,0.011,33,1.763,56,0.127,57,0.006,58,0.008,59,0.006,60,0.006,68,4.404,77,1.126,84,1.583,86,0.944,112,1.094,134,1.653,140,0.461,141,5.194,144,2.332,145,2.797,152,2.633,153,5.053,228,2.315,245,0.639,248,2.69,645,2.797,894,2.173,897,2.914,911,2.914,984,2.914,1087,4.456,1117,2.914,2902,4.762,2903,8.283,2904,7.867,2905,7.867,2906,5.419,2907,5.419,2908,5.419,2909,5.983,2910,5.419,2911,6.717,2912,6.582,2913,6.838,2914,6.838,2915,6.838,2916,6.838,2917,5.419,2918,5.419,2919,5.419,2920,4.329,2921,4.329]],["title/guards/RoleGuard.html",[857,2.632,2922,3.403]],["body/guards/RoleGuard.html",[3,0.105,4,0.082,5,0.059,7,0.352,9,0.965,18,0.495,21,0.011,48,0.997,56,0.105,57,0.005,58,0.007,59,0.005,60,0.008,64,3.039,65,3.113,77,0.993,84,0.945,86,0.688,92,1.051,93,0.556,112,1.169,113,2.216,114,2.296,119,3.725,120,4.17,121,4.457,123,2.511,127,4.817,134,1.65,140,0.388,143,1.382,155,3.262,171,2.511,175,0.884,181,1.972,185,1.238,218,4.538,227,1.763,245,0.527,250,1.595,285,3.93,504,2.883,514,4.697,515,2.216,521,4.647,527,3.387,548,2.138,587,5.323,610,1.862,645,2.308,796,6.092,857,4.512,858,3.572,860,4.817,861,5.299,862,5.399,864,3.572,866,5.299,867,2.781,868,5.05,869,4.17,870,3.546,871,4.17,872,3.93,873,3.929,874,6.905,875,6.419,877,5.299,879,4.457,880,3.725,881,4.817,882,4.817,883,5.299,884,4.817,885,6.419,886,5.835,887,4.457,888,5.299,889,5.299,890,5.996,892,5.399,894,1.917,895,2.762,896,2.762,897,2.405,899,3.929,2922,4.817,2923,3.929,2924,4.472,2925,4.472,2926,6.031,2927,6.031,2928,6.031,2929,6.031,2930,4.472,2931,4.472,2932,4.472,2933,4.472,2934,4.472,2935,4.472,2936,4.472]],["title/directives/RouterLinkDirectiveStub.html",[290,1.212,341,1.434]],["body/directives/RouterLinkDirectiveStub.html",[3,0.139,4,0.109,5,0.079,7,0.468,8,1.227,18,0.594,21,0.01,33,1.399,56,0.139,57,0.007,58,0.009,59,0.007,60,0.008,86,0.89,140,0.338,187,1.837,190,2.368,221,1.399,228,1.837,245,0.701,290,2.41,334,1.889,341,2.436,342,2.583,522,3.338,532,4.257,653,6.362,681,5.223,996,5.223,1093,5.351,1142,6.362,1143,5.223,1283,4.719,1299,5.351,1592,5.771,2937,7.141,2938,6.492,2939,7.809,2940,7.241,2941,5.944,2942,5.944,2943,5.944,2944,5.944,2945,5.944,2946,5.944,2947,5.944,2948,5.944,2949,5.944,2950,5.944,2951,5.944]],["title/pipes/SafePipe.html",[1780,2.632,2952,2.945]],["body/pipes/SafePipe.html",[3,0.145,4,0.114,5,0.082,9,0.991,18,0.508,20,1.347,21,0.011,56,0.145,57,0.007,58,0.009,59,0.007,60,0.007,77,1.02,86,0.706,92,1.08,93,0.733,112,0.991,134,1.498,140,0.422,185,1.715,187,1.915,245,0.73,610,2.58,753,4.948,754,3.479,870,3.643,1780,4.586,1888,6.731,2952,5.133,2953,4.948,2954,5.444,2955,7.424,2956,5.444,2957,7.424,2958,6.985,2959,6.195,2960,6.523,2961,7.424,2962,6.195,2963,6.195]],["title/classes/Settings.html",[60,0.005,1095,2.392]],["body/classes/Settings.html",[3,0.14,4,0.109,5,0.079,7,0.47,8,1.229,9,0.954,18,0.684,21,0.011,33,1.404,44,4.206,56,0.14,57,0.007,58,0.009,59,0.007,60,0.008,62,2.331,68,4.598,84,1.26,86,0.951,92,1.04,93,0.55,228,1.844,274,5.626,1095,4.392,1268,5.407,2964,4.765,2965,7.328,2966,6.872,2967,6.344,2968,6.376,2969,7.257,2970,5.965,2971,5.965,2972,5.965,2973,5.242]],["title/components/SettingsComponent.html",[175,0.624,318,1.354]],["body/components/SettingsComponent.html",[3,0.083,4,0.065,5,0.047,7,0.278,8,0.866,9,0.818,18,0.632,20,1.184,21,0.011,32,4.07,33,1.203,45,2.129,48,0.787,56,0.141,57,0.004,58,0.006,59,0.004,60,0.004,73,1.032,77,0.842,84,0.746,86,0.92,88,1.155,91,2.379,92,0.891,93,0.724,112,1.054,135,2.496,140,0.427,152,1.625,175,0.881,176,1.122,177,1.824,178,1.26,179,1.424,180,1.26,181,1.155,185,1.415,186,2.587,187,1.091,188,2.062,189,2.062,190,2.862,191,3.094,192,3.158,193,2.062,195,2.062,207,2.836,221,1.812,228,1.091,244,1.424,245,0.416,248,1.753,249,1.753,283,2.538,287,0.977,288,1.879,289,1.824,290,1.004,291,2.421,292,1.298,293,1.155,294,2.209,295,1.122,296,1.298,297,1.298,298,1.122,299,1.298,300,1.155,301,1.298,302,1.122,303,1.298,304,1.122,305,1.298,306,1.122,307,0.854,308,1.298,309,1.155,310,1.879,311,1.223,312,1.155,313,1.298,314,1.122,315,1.298,316,1.122,317,1.298,318,2.094,319,1.298,320,1.155,321,1.879,322,1.223,323,1.122,324,0.877,325,1.122,326,1.298,327,1.155,328,1.879,329,1.223,330,1.155,331,0.901,332,1.122,333,1.155,334,1.122,335,1.122,336,1.298,337,1.122,338,1.298,339,1.122,340,1.298,341,1.188,342,1.26,343,1.298,349,4.155,351,4.8,353,4.155,354,4.155,355,3.535,356,4.555,363,3.535,374,4.155,383,4.155,384,3.332,385,3.535,387,4.155,388,3.535,389,2.441,390,1.823,391,1.899,392,1.899,393,2.181,411,2.61,413,2.61,414,2.441,415,2.61,416,2.441,418,2.61,419,2.441,429,3.535,433,4.555,515,1.879,557,3.006,610,1.47,629,1.983,656,2.82,657,4.503,689,4.492,855,4.07,863,4.492,924,6.405,1058,3.618,1067,5.281,1095,4.474,2759,4.869,2974,3.103,2975,6.01,2976,5.113,2977,5.113,2978,3.531,2979,3.531,2980,3.531,2981,3.531,2982,3.531,2983,3.531,2984,4.492,2985,3.531,2986,3.531,2987,3.531,2988,3.531,2989,3.103,2990,3.531,2991,3.531,2992,3.531,2993,3.531,2994,3.531,2995,3.531,2996,4.442,2997,3.531,2998,5.113,2999,5.113,3000,5.113,3001,5.113,3002,5.113,3003,5.113,3004,5.113,3005,5.789,3006,6.588,3007,5.113,3008,5.113,3009,5.113,3010,5.113,3011,5.113]],["title/modules/SettingsModule.html",[437,1.148,3012,3.149]],["body/modules/SettingsModule.html",[3,0.121,4,0.094,5,0.068,21,0.011,56,0.121,57,0.006,58,0.008,59,0.006,60,0.006,140,0.505,143,2.043,245,0.606,247,2.763,287,1.422,314,2.596,318,2.596,390,2.652,391,2.763,392,2.763,437,1.384,439,1.889,440,2.551,441,3.929,442,2.652,443,2.763,444,1.889,449,4.216,451,3.555,452,2.763,453,2.457,455,2.752,456,3.886,457,2.886,459,3.021,461,3.174,471,4.308,472,4.57,473,4.885,474,3.798,475,4.57,476,4.083,477,3.174,478,4.308,479,3.349,480,3.174,481,4.083,482,3.174,483,4.083,484,3.174,485,4.308,486,3.349,487,4.57,488,3.553,497,5.28,3012,6.415,3013,4.515,3014,4.515,3015,4.515,3016,5.648,3017,5.139,3018,5.139,3019,4.515,3020,4.515,3021,6.61,3022,5.139,3023,6.61,3024,5.139]],["title/modules/SettingsRoutingModule.html",[437,1.148,3016,2.945]],["body/modules/SettingsRoutingModule.html",[3,0.146,4,0.114,5,0.083,21,0.011,48,1.384,56,0.146,57,0.007,58,0.009,59,0.007,60,0.007,140,0.469,143,1.918,175,1.089,245,0.731,250,2.214,314,2.362,318,2.362,439,2.281,444,2.281,455,3.095,503,3.649,504,3.803,505,4.174,506,4.678,507,4.291,508,4.291,509,4.045,510,3.834,2759,4.587,3016,5.138,3019,5.454,3020,5.454,3025,6.207]],["title/modules/SharedModule.html",[437,1.148,449,2.199]],["body/modules/SharedModule.html",[3,0.109,4,0.085,5,0.062,21,0.011,56,0.109,57,0.005,58,0.007,59,0.005,60,0.005,73,1.36,140,0.492,143,1.437,245,0.548,250,1.659,287,1.287,306,2.526,309,2.797,312,2.797,320,2.797,327,2.797,335,2.719,337,2.526,437,1.253,439,1.709,440,2.308,441,3.743,442,2.4,443,2.501,444,2.558,449,4.622,451,3.33,452,2.501,453,2.223,455,2.578,456,3.64,457,2.611,485,4.035,486,3.03,505,3.477,909,4.086,1329,3.437,1340,3.714,1355,4.086,1356,4.086,2738,3.714,2952,5.914,3026,4.086,3027,4.086,3028,4.086,3029,5.914,3030,4.65,3031,4.65,3032,4.65,3033,4.65,3034,6.192,3035,4.65,3036,4.65,3037,4.65,3038,6.192,3039,4.65,3040,4.65]],["title/components/SidebarComponent.html",[175,0.624,320,1.393]],["body/components/SidebarComponent.html",[3,0.114,4,0.089,5,0.065,7,0.383,21,0.01,56,0.114,57,0.006,58,0.008,59,0.006,60,0.006,67,4.157,73,1.422,77,1.05,84,1.504,86,0.727,88,1.591,91,1.971,93,0.656,112,0.778,140,0.277,175,1.043,176,1.546,177,2.275,178,1.735,179,1.961,180,1.735,181,1.591,185,1.766,186,3.063,187,1.503,188,2.572,189,2.572,190,2.933,191,3.184,193,2.572,195,2.572,207,3.251,221,1.501,244,1.961,245,0.573,287,1.346,288,2.344,289,2.275,290,1.384,291,2.776,292,1.788,293,1.591,294,2.616,295,1.546,296,1.788,297,1.788,298,1.546,299,1.788,300,1.591,301,1.788,302,1.546,303,1.788,304,1.546,305,1.788,306,1.546,307,1.176,308,1.788,309,1.591,310,2.344,311,1.685,312,1.591,313,1.788,314,1.546,315,1.788,316,1.546,317,1.788,318,1.546,319,1.788,320,2.47,321,2.344,322,1.685,323,1.546,324,1.208,325,1.546,326,1.788,327,1.591,328,2.344,329,1.685,330,1.591,331,1.241,332,1.546,333,2.327,334,1.546,335,1.546,336,1.788,337,1.546,338,1.788,339,1.546,340,1.788,341,1.637,342,1.735,343,1.788,557,3.75,679,4.714,716,3.94,1095,3.582,2455,3.75,3041,4.274,3042,7.117,3043,6.379,3044,4.865,3045,4.865,3046,6.379]],["title/components/SidebarStubComponent.html",[175,0.624,322,1.476]],["body/components/SidebarStubComponent.html",[3,0.121,4,0.094,5,0.069,21,0.01,56,0.172,57,0.006,58,0.008,59,0.006,60,0.009,73,1.507,88,1.685,91,2.047,93,0.675,140,0.293,175,0.971,176,1.638,177,2.362,178,2.61,180,1.839,181,1.685,187,1.593,190,2.941,191,3.205,245,0.607,287,1.427,288,2.434,289,2.362,290,1.466,291,2.838,292,1.894,293,1.685,294,2.689,295,1.638,296,1.894,297,1.894,298,1.638,299,1.894,300,1.685,301,1.894,302,1.638,303,1.894,304,1.638,305,1.894,306,1.638,307,1.246,308,1.894,309,1.685,310,2.434,311,2.294,312,1.685,313,1.894,314,1.638,315,1.894,316,1.638,317,1.894,318,1.638,319,1.894,320,1.685,321,2.434,322,2.675,323,1.638,324,1.28,325,1.638,326,1.894,327,1.685,328,2.434,329,2.294,330,1.685,331,1.315,332,1.638,333,1.685,334,1.638,335,1.638,336,1.894,337,1.638,338,1.894,339,1.638,340,1.894,341,1.734,342,1.839,343,1.894,437,1.388,522,2.894,716,4.091,1421,3.809,1427,3.809,1428,5.845,1429,3.809]],["title/interfaces/Signable.html",[0,1.058,2812,2.776]],["body/interfaces/Signable.html",[0,1.716,2,1.971,3,0.107,4,0.084,5,0.061,7,0.361,20,1.455,21,0.011,40,4.455,41,4.062,42,2.638,43,4.653,44,3.715,47,3.164,48,1.765,51,2.552,56,0.107,57,0.005,58,0.007,59,0.005,60,0.005,77,1.009,78,3.661,79,1.847,86,0.522,104,4.267,112,0.733,113,2.253,114,2.062,134,1.482,140,0.349,163,1.907,185,1.268,221,1.863,227,2.248,307,1.482,361,2.785,398,2.364,672,3.786,697,2.985,699,3.167,702,2.729,754,2.572,823,2.112,913,3.879,958,2.463,1046,3.167,1058,2.274,2589,3.604,2591,3.995,2661,2.985,2662,3.442,2703,2.829,2705,3.995,2707,2.985,2708,2.985,2792,3.995,2793,2.985,2794,3.385,2795,3.385,2796,3.385,2797,4.53,2800,3.385,2802,3.385,2811,4.53,2812,5.011,2815,4.53,2817,4.53,2819,3.385,2820,3.167,2821,3.385,2822,3.385,2823,4.53,2824,3.385,2825,3.385,2826,3.385,2827,3.385,2828,3.385,2829,3.385,2830,3.385,2831,3.385,2832,3.385,2833,4.53,2834,3.385,2835,3.385,2836,3.385,2837,4.53,2838,3.385,2839,4.53,2840,3.385,2841,3.385,2842,3.385,2843,3.385,2844,3.385,2845,3.385,2846,3.385,2847,3.385,2848,3.385,2849,3.385,2850,3.385,2851,3.385,2852,3.385,3047,4.581]],["title/interfaces/Signature.html",[0,1.058,40,2.199]],["body/interfaces/Signature.html",[0,1.856,1,3.571,2,2.035,3,0.111,4,0.087,5,0.063,6,3.081,7,0.372,8,1.061,10,3.494,11,2.655,12,2.347,13,4.328,14,3.867,15,4.328,16,3.515,17,3.231,18,0.638,19,3.367,20,1.52,21,0.011,22,1.906,24,4.328,25,4.328,26,4.328,27,4.08,28,4.08,29,2.26,30,4.328,31,3.494,32,3.867,33,1.989,34,4.328,35,4.328,36,4.328,37,3.857,38,4.328,39,3.681,40,4.011,41,4.392,42,3.345,43,4.392,44,4.017,45,2.607,46,4.08,47,2.441,48,1.055,49,3.867,50,3.081,51,2.607,52,3.081,53,3.867,54,3.867,55,3.269,56,0.111,57,0.006,58,0.007,59,0.006]],["title/interfaces/Signature-1.html",[0,0.881,40,1.831,171,1.992]],["body/interfaces/Signature-1.html",[0,1.694,2,1.922,3,0.105,4,0.082,5,0.059,7,0.352,8,1.021,18,0.599,20,1.489,21,0.011,40,4.461,41,4.618,42,3.281,43,4.618,44,4.224,47,3.11,48,1.752,51,2.509,56,0.105,57,0.005,58,0.007,59,0.005,60,0.005,78,3.624,79,1.801,104,4.213,113,2.214,114,2.028,134,1.457,140,0.343,163,1.86,185,1.236,221,1.849,227,2.229,307,1.457,361,2.75,398,2.305,672,3.722,697,2.91,699,3.087,702,2.683,754,2.508,823,2.059,913,3.83,958,2.401,1046,3.087,1058,2.216,2589,2.626,2591,3.927,2661,2.91,2662,3.384,2703,2.758,2705,3.927,2707,2.91,2708,2.91,2792,3.927,2793,2.91,2794,3.3,2795,3.3,2796,3.3,2797,4.453,2800,3.3,2802,3.3,2811,4.453,2812,4.758,2815,4.453,2817,4.453,2819,3.3,2820,3.087,2821,3.3,2822,3.3,2823,4.453,2824,3.3,2825,3.3,2826,3.3,2827,3.3,2828,3.3,2829,3.3,2830,3.3,2831,3.3,2832,3.3,2833,4.453,2834,3.3,2835,3.3,2836,3.3,2837,4.453,2838,3.3,2839,4.453,2840,3.3,2841,3.3,2842,3.3,2843,3.3,2844,3.3,2845,3.3,2846,3.3,2847,3.3,2848,3.3,2849,3.3,2850,3.3,2851,3.3,2852,3.3]],["title/interfaces/Signer.html",[0,1.058,104,2.632]],["body/interfaces/Signer.html",[0,1.618,2,1.759,3,0.096,4,0.075,5,0.054,7,0.322,9,1.182,18,0.606,20,1.46,21,0.011,40,4.508,41,3.829,42,2.441,43,4.345,44,3.502,47,2.927,48,1.706,51,2.362,56,0.096,57,0.005,58,0.007,59,0.005,60,0.005,77,0.934,78,3.492,79,1.648,86,0.872,92,1.288,93,0.682,104,4.345,112,1.224,113,2.393,114,1.908,134,1.371,140,0.322,163,1.702,185,1.131,221,1.911,227,2.338,307,1.371,361,2.626,398,2.109,672,3.503,697,2.663,699,2.826,702,2.525,754,2.295,823,1.884,913,3.657,958,2.198,1046,2.826,1058,2.029,2589,4.611,2591,3.696,2614,3.921,2661,2.663,2662,3.185,2703,2.524,2705,3.696,2707,2.663,2708,2.663,2792,3.696,2793,2.663,2794,3.02,2795,4.813,2796,4.813,2797,5.461,2798,4.983,2799,4.983,2800,3.02,2802,3.02,2811,4.813,2812,4.984,2814,3.264,2815,4.813,2817,4.813,2819,3.02,2820,2.826,2821,4.191,2822,4.191,2823,4.813,2824,3.02,2825,3.02,2826,3.02,2827,3.02,2828,3.02,2829,3.02,2830,3.02,2831,3.02,2832,3.02,2833,4.191,2834,3.02,2835,3.02,2836,3.02,2837,4.191,2838,3.02,2839,4.191,2840,3.02,2841,3.02,2842,3.02,2843,3.02,2844,3.02,2845,3.02,2846,3.02,2847,3.02,2848,3.02,2849,3.02,2850,3.02,2851,3.02,2852,3.02,3048,4.087,3049,4.087,3050,4.087,3051,4.087,3052,4.087,3053,4.087]],["title/interfaces/Staff.html",[0,1.058,629,2.392]],["body/interfaces/Staff.html",[0,1.547,2,2.681,3,0.146,4,0.114,5,0.083,7,0.491,8,1.262,18,0.693,20,1.508,21,0.01,22,2.033,32,5.1,56,0.146,57,0.007,58,0.009,59,0.007,93,0.762,629,4.475,2984,7.255,3054,5.474,3055,8.257,3056,8.257]],["title/interfaces/Token.html",[0,1.058,324,1.058]],["body/interfaces/Token.html",[0,1.438,2,2.493,3,0.136,4,0.106,5,0.077,7,0.456,8,1.207,9,1.289,11,3.252,18,0.717,20,1.529,21,0.011,23,5.267,56,0.136,57,0.007,58,0.008,59,0.007,93,0.743,95,2.96,324,1.917,1199,3.851,2459,4.626,2460,5.569,2462,6.434,2464,6.434,2467,4.28,2469,6.434,2470,5.953,3057,5.089]],["title/components/TokenDetailsComponent.html",[175,0.624,323,1.354]],["body/components/TokenDetailsComponent.html",[3,0.097,4,0.076,5,0.055,7,0.326,8,0.969,9,0.662,18,0.469,21,0.011,56,0.097,57,0.005,58,0.007,59,0.005,60,0.005,73,1.21,77,0.942,84,0.874,86,0.747,88,1.353,91,1.767,92,0.721,93,0.708,95,2.102,112,0.662,140,0.422,175,0.961,176,1.315,177,2.04,178,1.476,179,1.668,180,1.476,181,1.353,185,1.583,186,2.821,187,1.279,188,2.306,189,2.306,190,2.9,191,3.141,193,2.306,195,2.306,207,3.043,221,1.346,244,1.668,245,0.488,249,2.053,250,1.476,253,1.433,273,2.555,283,2.839,287,1.145,288,2.102,289,2.04,290,1.177,291,2.599,292,1.52,293,1.353,294,2.409,295,1.315,296,1.52,297,1.52,298,1.315,299,1.52,300,1.353,301,1.52,302,1.315,303,1.52,304,1.315,305,1.52,306,1.315,307,1,308,1.52,309,1.353,310,2.102,311,1.433,312,1.353,313,1.52,314,1.315,315,1.52,316,1.315,317,1.52,318,1.315,319,1.52,320,1.353,321,2.102,322,1.433,323,2.248,324,2.135,325,1.315,326,1.52,327,1.353,328,2.102,329,1.433,330,1.353,331,1.056,332,1.315,333,1.353,334,1.315,335,1.315,336,1.52,337,1.315,338,1.52,339,1.315,340,1.52,341,1.392,342,1.476,343,1.52,394,2.323,395,2.053,407,2.432,408,2.696,435,3.727,521,3.212,536,5.025,592,3.304,610,1.723,630,5.226,1199,2.734,2306,4.568,2455,3.363,2457,4.227,2460,3.954,2467,4.227,2470,4.227,2576,4.568,3058,6.213,3059,5.226,3060,3.304,3061,5.76,3062,5.025,3063,4.137,3064,7.072,3065,5.44,3066,5.719,3067,4.137,3068,4.137,3069,4.137,3070,4.137,3071,4.137,3072,6.213,3073,5.025,3074,5.719,3075,5.719,3076,5.719,3077,5.719,3078,5.719,3079,5.719,3080,5.719,3081,5.025,3082,5.719,3083,5.719]],["title/pipes/TokenRatioPipe.html",[1780,2.632,3029,2.945]],["body/pipes/TokenRatioPipe.html",[3,0.149,4,0.116,5,0.084,9,1.015,18,0.521,21,0.011,33,1.494,56,0.149,57,0.007,58,0.009,59,0.007,60,0.007,77,1.045,86,0.724,92,1.106,93,0.741,112,1.015,134,1.535,140,0.361,185,1.757,187,1.961,245,0.748,435,4.908,1636,4.388,1780,4.652,2953,5.069,2956,5.577,2958,7.057,2960,6.618,3029,5.207,3084,6.618,3085,5.577,3086,7.532,3087,6.347,3088,6.347,3089,6.347]],["title/classes/TokenRegistry.html",[60,0.005,3090,2.945]],["body/classes/TokenRegistry.html",[0,0.824,3,0.078,4,0.061,5,0.044,7,0.261,8,0.827,9,0.927,18,0.585,20,1.391,21,0.011,22,2.077,45,1.381,48,1.293,53,2.048,54,5.071,56,0.078,57,0.004,58,0.006,59,0.004,60,0.004,62,1.296,64,2.847,65,2.521,66,5.619,68,5.035,69,4.291,70,4.291,71,6.648,72,3.609,73,1.993,74,4.805,75,6.265,76,6.786,77,0.804,78,3.833,79,3.249,84,0.701,85,4.291,86,0.841,88,1.597,89,4.284,90,6.9,91,2.338,92,1.01,93,0.629,94,5.445,95,3.124,96,2.649,105,5.695,109,5.695,110,6.265,112,1.274,113,2.62,131,4.726,134,1.546,135,1.256,139,6.265,140,0.278,141,3.95,142,2.048,143,1.025,144,1.427,145,1.712,146,2.649,147,3.376,148,2.649,150,2.649,151,2.649,152,1.552,153,2.451,154,2.914,155,3.057,156,4.291,157,2.914,158,2.914,159,4.291,160,2.914,163,2.414,324,2.197,1114,1.95,1256,4.167,1261,4.291,2455,4.617,3090,3.376,3091,6.043,3092,2.649,3093,4.883,3094,7.131,3095,4.883,3096,3.316,3097,3.316,3098,4.883,3099,3.316,3100,6.9,3101,6.395,3102,3.316,3103,3.316,3104,4.883,3105,4.883,3106,3.316,3107,7.853,3108,3.316,3109,4.883,3110,3.316,3111,2.914,3112,3.316,3113,3.316,3114,3.316,3115,3.316,3116,3.316,3117,3.316]],["title/injectables/TokenService.html",[894,1.354,3065,2.945]],["body/injectables/TokenService.html",[3,0.112,4,0.088,5,0.064,7,0.377,8,1.07,9,1.13,18,0.658,20,1.384,21,0.011,22,1.222,33,1.127,48,1.408,56,0.112,57,0.006,58,0.007,59,0.006,60,0.006,68,4.152,77,1.04,79,3.344,84,1.012,86,0.932,92,1.231,93,0.651,95,2.32,112,1.13,113,2.868,134,1.708,140,0.465,144,2.061,145,2.472,152,2.245,163,3.249,168,5.547,228,1.48,245,0.564,253,1.659,527,3.505,548,2.289,610,1.994,645,2.472,762,2.472,894,2.007,897,2.575,911,2.575,927,3.539,928,5.922,984,2.575,1087,5.325,1117,2.575,1119,3.825,1172,3.825,1199,2.289,2527,6.597,2529,5.547,2911,5.641,2920,3.825,2921,3.825,3065,4.365,3090,5.649,3118,4.208,3119,7.063,3120,6.313,3121,6.313,3122,6.313,3123,4.789,3124,6.313,3125,4.789,3126,4.789,3127,7.804,3128,4.789,3129,4.789,3130,4.208,3131,4.789,3132,4.208,3133,4.789,3134,4.789,3135,4.789,3136,4.789,3137,4.789,3138,4.789,3139,4.789,3140,4.789,3141,4.789,3142,4.789,3143,4.789,3144,4.789,3145,4.789]],["title/classes/TokenServiceStub.html",[60,0.005,3146,3.403]],["body/classes/TokenServiceStub.html",[3,0.151,4,0.118,5,0.086,7,0.507,9,1.031,18,0.529,20,1.369,21,0.01,56,0.151,57,0.008,58,0.009,59,0.008,60,0.008,62,2.518,77,1.251,86,0.735,92,1.123,93,0.701,112,1.031,134,1.558,522,3.618,867,3.504,1199,3.633,1625,4.762,2457,4.762,3146,6.07,3147,6.678,3148,7.6,3149,7.6,3150,6.444]],["title/components/TokensComponent.html",[175,0.624,325,1.354]],["body/components/TokensComponent.html",[3,0.085,4,0.066,5,0.048,7,0.284,8,0.88,9,0.974,18,0.621,20,1.031,21,0.011,33,1.223,56,0.143,57,0.004,58,0.006,59,0.004,60,0.004,73,1.056,77,0.855,79,2.962,84,1.098,86,0.913,88,1.181,91,1.606,92,1.061,93,0.739,95,2.446,112,1.065,113,2.446,135,2.522,140,0.449,152,1.148,163,2.534,175,0.892,176,1.148,177,1.853,178,1.288,179,1.456,180,1.288,181,1.181,185,1.438,186,2.619,187,1.116,188,2.095,189,2.095,190,2.868,191,3.101,192,3.209,193,2.095,195,2.095,207,2.865,218,4.07,221,1.567,228,1.116,244,1.456,245,0.425,248,1.792,249,1.792,250,1.288,253,2.108,283,2.579,287,0.999,288,1.909,289,1.853,290,1.027,291,2.446,292,1.327,293,1.181,294,2.237,295,1.148,296,1.327,297,1.327,298,1.148,299,1.327,300,1.181,301,1.327,302,1.148,303,1.327,304,1.148,305,1.327,306,1.148,307,0.873,308,1.327,309,1.181,310,1.909,311,1.251,312,1.181,313,1.327,314,1.148,315,1.327,316,1.148,317,1.327,318,1.148,319,1.327,320,1.181,321,1.909,322,1.251,323,1.148,324,1.512,325,2.116,326,1.327,327,1.181,328,1.909,329,1.251,330,1.181,331,0.921,332,1.148,333,1.181,334,1.148,335,1.148,336,1.327,337,1.148,338,1.327,339,1.148,340,1.327,341,1.215,342,1.288,343,1.327,349,4.208,353,4.208,354,4.208,355,3.592,356,4.602,361,3.052,363,3.592,374,4.208,383,4.208,384,3.386,385,3.592,387,4.208,388,3.592,389,2.496,390,1.863,391,1.942,392,1.942,393,2.23,411,2.668,413,2.668,414,2.496,415,2.668,416,2.496,418,2.668,419,2.496,429,3.592,435,3.386,592,2.884,1199,3.182,2455,4.708,2460,4.602,2576,4.15,3065,5.078,3072,4.565,3073,4.565,3081,4.565,3090,2.496,3151,3.172,3152,6.086,3153,5.195,3154,6.086,3155,5.195,3156,3.61,3157,5.195,3158,3.61,3159,3.61,3160,3.61,3161,5.195,3162,3.61,3163,3.61,3164,3.61,3165,3.61,3166,3.61,3167,3.61,3168,3.61,3169,5.195,3170,5.195,3171,3.61,3172,3.61,3173,3.61,3174,3.61]],["title/modules/TokensModule.html",[437,1.148,3175,3.149]],["body/modules/TokensModule.html",[3,0.121,4,0.094,5,0.069,21,0.011,56,0.121,57,0.006,58,0.008,59,0.006,60,0.006,140,0.504,143,2.047,245,0.607,287,1.427,323,2.598,325,2.598,390,2.66,391,2.772,392,2.772,437,1.388,439,1.894,440,2.558,441,3.935,442,2.66,443,2.772,444,1.894,449,4.22,451,3.561,452,2.772,453,2.464,455,2.758,456,3.894,457,2.894,459,3.031,461,3.184,464,3.564,471,4.316,472,4.579,473,4.895,474,3.809,475,4.579,476,4.091,477,3.184,478,4.316,479,3.359,480,3.184,481,4.091,482,3.184,483,4.091,484,3.184,485,4.316,486,3.359,492,4.579,493,3.359,3059,3.809,3175,6.418,3176,4.529,3177,4.529,3178,4.529,3179,5.652,3180,5.155,3181,5.155,3182,4.529,3183,4.529,3184,6.623,3185,6.623,3186,5.155,3187,6.623,3188,5.155]],["title/modules/TokensRoutingModule.html",[437,1.148,3179,2.945]],["body/modules/TokensRoutingModule.html",[3,0.147,4,0.115,5,0.083,21,0.011,45,2.613,48,1.4,56,0.147,57,0.007,58,0.009,59,0.007,60,0.007,140,0.471,143,1.94,175,1.096,245,0.74,250,2.239,323,2.378,325,2.378,439,2.306,444,2.306,455,3.116,464,4.339,503,3.69,504,3.821,505,4.201,506,4.399,510,3.877,3059,4.638,3179,5.173,3182,5.515,3183,5.515,3189,6.276]],["title/components/TopbarComponent.html",[175,0.624,327,1.393]],["body/components/TopbarComponent.html",[3,0.117,4,0.091,5,0.066,7,0.391,21,0.01,56,0.117,57,0.006,58,0.008,59,0.006,60,0.006,73,1.452,77,1.064,84,1.519,86,0.737,88,1.623,91,1.998,93,0.663,112,0.794,140,0.282,175,1.053,176,1.578,177,2.306,178,1.771,179,2.002,180,1.771,181,1.623,185,1.789,186,3.094,187,1.534,188,2.606,189,2.606,190,2.937,191,3.189,193,2.606,195,2.606,207,3.277,221,1.521,244,2.002,245,0.585,287,1.374,288,2.376,289,2.306,290,1.412,291,2.798,292,1.825,293,1.623,294,2.642,295,1.578,296,1.825,297,1.825,298,1.578,299,1.825,300,1.623,301,1.825,302,1.578,303,1.825,304,1.578,305,1.825,306,1.578,307,1.2,308,1.825,309,1.623,310,2.376,311,1.72,312,1.623,313,1.825,314,1.578,315,1.825,316,1.578,317,1.825,318,1.578,319,1.825,320,1.623,321,2.376,322,1.72,323,1.578,324,1.233,325,1.578,326,1.825,327,2.49,328,2.376,329,1.72,330,1.623,331,1.267,332,1.578,333,1.623,334,1.578,335,1.578,336,1.825,337,1.578,338,1.825,339,1.578,340,1.825,341,1.671,342,1.771,343,1.825,1429,4.777,3190,4.362,3191,7.188,3192,6.464,3193,4.965,3194,4.965]],["title/components/TopbarStubComponent.html",[175,0.624,329,1.476]],["body/components/TopbarStubComponent.html",[3,0.121,4,0.094,5,0.069,21,0.01,56,0.172,57,0.006,58,0.008,59,0.006,60,0.009,73,1.507,88,1.685,91,2.047,93,0.675,140,0.293,175,0.971,176,1.638,177,2.362,178,2.61,180,1.839,181,1.685,187,1.593,190,2.941,191,3.205,245,0.607,287,1.427,288,2.434,289,2.362,290,1.466,291,2.838,292,1.894,293,1.685,294,2.689,295,1.638,296,1.894,297,1.894,298,1.638,299,1.894,300,1.685,301,1.894,302,1.638,303,1.894,304,1.638,305,1.894,306,1.638,307,1.246,308,1.894,309,1.685,310,2.434,311,2.294,312,1.685,313,1.894,314,1.638,315,1.894,316,1.638,317,1.894,318,1.638,319,1.894,320,1.685,321,2.434,322,2.294,323,1.638,324,1.28,325,1.638,326,1.894,327,1.685,328,2.434,329,2.675,330,1.685,331,1.315,332,1.638,333,1.685,334,1.638,335,1.638,336,1.894,337,1.638,338,1.894,339,1.638,340,1.894,341,1.734,342,1.839,343,1.894,437,1.388,522,2.894,716,3.184,1421,3.809,1427,3.809,1428,5.845,1429,4.895]],["title/classes/Transaction.html",[60,0.005,331,1.087]],["body/classes/Transaction.html",[1,3.948,3,0.126,4,0.098,5,0.071,7,0.422,8,1.15,9,1.086,18,0.713,20,1.491,21,0.011,22,2.186,33,1.754,56,0.126,57,0.006,58,0.008,59,0.006,60,0.009,62,2.094,86,0.968,93,0.494,95,1.97,140,0.305,227,1.567,324,1.851,331,1.902,515,1.97,738,3.504,852,3.009,1100,4.607,1185,4.194,1186,3.492,1187,3.705,1188,3.705,1189,3.705,1190,3.705,1191,3.705,1197,3.705,1198,5.101,1199,2.562,1200,3.492,1201,3.492,1202,3.705,1203,3.705,1204,4.603,1205,4.382,1206,3.705,1207,3.705,1208,3.705,1209,3.492,1210,3.492,3195,5.359,3196,5.359,3197,5.359,3198,5.359,3199,5.359,3200,5.359,3201,5.359,3202,5.359]],["title/components/TransactionDetailsComponent.html",[175,0.624,330,1.393]],["body/components/TransactionDetailsComponent.html",[3,0.071,4,0.101,5,0.04,7,0.432,8,0.772,9,0.729,18,0.538,20,1.276,21,0.011,53,2.815,56,0.071,57,0.004,58,0.005,59,0.004,60,0.004,73,0.884,77,0.75,79,3.186,84,0.963,86,0.889,88,0.988,91,1.408,92,0.794,93,0.719,95,2.937,112,1.102,113,2.705,140,0.392,163,2.544,175,0.804,176,0.961,177,1.626,178,1.078,179,1.218,180,1.078,181,0.988,185,1.261,186,2.361,187,0.934,188,1.837,189,1.837,190,2.82,191,3.042,193,1.837,195,1.837,207,2.629,218,3.705,221,1.438,244,1.218,245,0.356,248,1.5,249,1.5,250,1.078,251,2.233,252,2.233,253,1.9,287,0.836,288,1.675,289,1.626,290,0.86,291,2.245,292,1.111,293,0.988,294,2.016,295,0.961,296,1.111,297,1.111,298,0.961,299,1.111,300,0.988,301,1.111,302,0.961,303,1.111,304,0.961,305,1.111,306,0.961,307,0.731,308,1.111,309,0.988,310,1.675,311,1.047,312,0.988,313,1.111,314,0.961,315,1.111,316,0.961,317,1.111,318,0.961,319,1.111,320,0.988,321,1.675,322,1.047,323,0.961,324,1.871,325,0.961,326,1.111,327,0.988,328,1.675,329,1.047,330,1.997,331,2.132,332,0.961,333,1.997,334,0.961,335,0.961,336,1.111,337,0.961,338,1.111,339,0.961,340,1.111,341,1.017,342,1.078,343,1.111,433,3.151,435,2.97,500,2.414,501,2.089,630,4.514,658,4.418,738,1.56,852,2.559,864,2.414,1199,3.294,1200,2.97,1201,2.97,1204,4.256,1205,4.051,1210,4.49,1283,2.97,1299,3.368,2543,2.655,3060,2.414,3061,4.82,3062,4.004,3203,6.943,3204,6.311,3205,5.486,3206,5.486,3207,5.486,3208,4.557,3209,6.108,3210,6.108,3211,6.108,3212,6.108,3213,5.486,3214,6.108,3215,4.557,3216,3.022,3217,4.557,3218,3.022,3219,3.022,3220,3.022,3221,3.022,3222,3.022,3223,3.022,3224,3.022,3225,3.022,3226,2.414,3227,3.022,3228,3.022,3229,5.486,3230,3.022,3231,3.022,3232,3.022,3233,3.022,3234,3.022,3235,3.022,3236,3.022,3237,3.022,3238,3.022,3239,3.022,3240,3.022,3241,3.022,3242,3.022,3243,3.022,3244,3.022,3245,2.655,3246,5.486,3247,3.022,3248,3.022,3249,6.108,3250,6.108,3251,4.557,3252,6.054,3253,4.557,3254,4.557,3255,6.89,3256,6.108,3257,4.004,3258,4.557,3259,4.557,3260,4.557,3261,4.004,3262,4.004,3263,4.557,3264,4.557,3265,6.108,3266,6.108,3267,6.108,3268,4.557,3269,4.557,3270,4.557,3271,6.108,3272,4.557,3273,4.557,3274,4.557,3275,4.557,3276,6.108,3277,4.557]],["title/injectables/TransactionService.html",[658,2.632,894,1.354]],["body/injectables/TransactionService.html",[3,0.066,4,0.052,5,0.037,7,0.222,8,0.731,9,1.152,18,0.629,19,1.514,20,1.361,21,0.011,22,2.131,33,1.642,37,1.397,42,1.858,48,1.853,49,3.638,56,0.066,57,0.006,58,0.005,59,0.003,60,0.003,68,3.088,77,0.711,79,2.977,84,0.912,86,0.916,91,0.87,92,1.255,93,0.664,95,2.165,112,1.152,113,2.463,134,1.536,140,0.47,141,4.311,144,1.212,145,1.453,147,1.946,152,2.019,163,2.791,217,4.311,221,1.386,228,1.623,245,0.332,251,2.081,252,2.081,253,2.494,273,3.244,307,1.27,331,1.621,333,1.717,361,2.814,394,1.581,395,1.397,396,1.835,397,3.191,405,3.631,407,3.088,515,1.035,527,3.153,548,1.346,645,1.453,657,4.311,658,2.667,738,2.229,762,1.453,833,2.081,894,1.372,897,1.514,911,1.514,927,2.081,928,4.954,950,3.794,958,1.514,984,2.322,1024,2.474,1058,1.397,1087,4.548,1090,4.704,1091,4.954,1100,2.322,1117,2.322,1119,2.249,1126,2.474,1155,3.449,1157,3.794,1172,3.449,1209,1.835,2702,2.249,2703,1.739,2704,2.249,2709,2.249,2911,4.195,2912,2.474,2920,2.249,2921,2.249,3130,2.474,3132,2.474,3257,2.474,3261,2.474,3262,2.474,3278,2.249,3279,5.252,3280,5.252,3281,5.252,3282,4.318,3283,4.318,3284,4.318,3285,3.794,3286,5.89,3287,3.794,3288,3.794,3289,5.252,3290,4.318,3291,4.318,3292,6.919,3293,2.815,3294,4.318,3295,2.815,3296,2.815,3297,2.815,3298,2.815,3299,3.794,3300,2.815,3301,3.794,3302,2.815,3303,2.815,3304,5.89,3305,5.89,3306,2.815,3307,5.252,3308,4.318,3309,2.815,3310,2.815,3311,4.318,3312,2.815,3313,2.815,3314,2.815,3315,2.815,3316,2.815,3317,2.815,3318,2.474,3319,2.815,3320,2.474,3321,2.815,3322,2.815,3323,2.815,3324,2.815,3325,2.815,3326,4.318,3327,2.815,3328,2.474,3329,2.249,3330,2.815,3331,2.815,3332,4.318,3333,4.318,3334,2.815,3335,2.474,3336,5.252,3337,2.815,3338,5.252,3339,4.318,3340,5.252,3341,2.815,3342,4.318,3343,3.794,3344,2.815,3345,2.815,3346,2.815,3347,2.815,3348,2.815,3349,2.815,3350,2.815,3351,2.815,3352,4.318,3353,4.318,3354,2.815,3355,2.815,3356,4.318,3357,4.318,3358,2.474,3359,4.318,3360,2.815,3361,2.815,3362,2.815,3363,2.815,3364,2.815,3365,2.815,3366,2.815,3367,2.815,3368,2.815,3369,2.815,3370,2.815,3371,2.815,3372,2.815,3373,2.815,3374,2.815,3375,2.815,3376,2.815,3377,2.815,3378,2.815,3379,2.815,3380,2.815,3381,2.815,3382,2.815,3383,2.815,3384,2.815,3385,2.815,3386,2.815,3387,2.815,3388,2.815,3389,2.815,3390,2.815,3391,2.815,3392,2.815,3393,2.815,3394,2.815,3395,2.815,3396,2.815,3397,2.815,3398,2.815,3399,2.815,3400,2.815,3401,2.815,3402,2.815,3403,2.815,3404,2.815,3405,2.815,3406,2.815,3407,2.815]],["title/classes/TransactionServiceStub.html",[60,0.005,3408,3.403]],["body/classes/TransactionServiceStub.html",[3,0.138,4,0.108,5,0.078,7,0.462,9,1.243,18,0.637,21,0.01,22,2.221,56,0.138,57,0.007,58,0.008,59,0.007,60,0.007,62,2.294,77,1.183,86,0.886,92,1.353,93,0.716,112,1.243,134,1.42,140,0.334,221,1.905,331,1.498,522,3.297,527,3.855,548,2.807,738,3.031,867,3.732,1090,4.69,1091,5.74,1155,5.741,3285,6.315,3287,6.315,3288,6.315,3292,6.824,3299,6.315,3301,6.315,3408,5.741,3409,7.111,3410,5.872,3411,5.872,3412,5.159,3413,5.872,3414,5.872]],["title/components/TransactionsComponent.html",[175,0.624,332,1.354]],["body/components/TransactionsComponent.html",[3,0.073,4,0.057,5,0.041,7,0.245,8,0.789,9,0.893,18,0.685,20,1.124,21,0.011,22,1.188,33,1.787,56,0.131,57,0.004,58,0.005,59,0.004,60,0.004,73,0.91,77,0.767,84,0.984,86,0.946,88,1.017,91,1.439,92,0.973,93,0.643,112,1.115,135,2.813,140,0.422,152,0.989,175,0.818,176,0.989,177,1.661,178,1.11,179,1.254,180,1.11,181,1.017,185,1.289,186,2.403,187,0.961,188,1.878,189,1.878,190,2.828,191,3.052,192,2.877,193,1.878,195,1.878,207,2.668,217,4.461,221,1.871,228,1.915,244,1.254,245,0.367,248,1.544,249,1.544,253,1.934,271,2.615,273,1.922,283,2.312,287,0.861,288,1.712,289,1.661,290,0.885,291,2.278,292,1.143,293,1.017,294,2.052,295,0.989,296,1.143,297,1.143,298,0.989,299,1.143,300,1.017,301,1.143,302,0.989,303,1.143,304,0.989,305,1.143,306,0.989,307,0.752,308,1.143,309,1.017,310,1.712,311,1.078,312,1.017,313,1.143,314,0.989,315,1.143,316,0.989,317,1.143,318,0.989,319,1.143,320,1.017,321,1.712,322,1.078,323,0.989,324,0.773,325,0.989,326,1.143,327,1.017,328,1.712,329,1.078,330,1.017,331,1.973,332,1.97,333,2.6,334,0.989,335,0.989,336,1.143,337,0.989,338,1.143,339,0.989,340,1.143,341,1.047,342,1.11,343,1.143,349,3.86,350,4.905,352,4.905,353,3.86,354,3.86,355,3.22,356,4.285,363,3.22,374,3.86,376,4.285,378,4.951,380,3.72,381,4.092,383,3.86,384,3.035,385,3.22,387,3.86,388,3.22,389,2.151,390,1.606,391,1.673,392,1.673,393,1.922,394,1.747,395,1.544,396,2.027,405,2.151,407,1.829,408,2.027,414,3.22,416,3.22,419,2.151,428,3.72,429,3.22,433,3.22,435,4.039,658,4.461,1077,5.148,1204,3.828,1205,3.644,2531,2.734,2773,3.72,3335,2.734,3358,4.092,3415,2.734,3416,5.583,3417,5.583,3418,4.658,3419,5.583,3420,5.583,3421,5.583,3422,5.583,3423,6.198,3424,6.198,3425,4.658,3426,3.111,3427,4.658,3428,3.111,3429,3.111,3430,3.111,3431,3.111,3432,3.111,3433,4.658,3434,3.111,3435,3.111,3436,3.111,3437,3.111,3438,3.111,3439,3.111,3440,3.111,3441,3.111,3442,3.111,3443,3.111,3444,3.111,3445,4.658,3446,3.111,3447,3.111,3448,4.658,3449,4.658,3450,3.111,3451,3.111,3452,3.111,3453,4.658,3454,4.658,3455,3.111,3456,3.111,3457,6.198,3458,4.658,3459,4.658,3460,4.658,3461,4.658,3462,4.658,3463,4.658,3464,4.658]],["title/modules/TransactionsModule.html",[437,1.148,450,2.945]],["body/modules/TransactionsModule.html",[3,0.118,4,0.092,5,0.067,21,0.011,56,0.118,57,0.006,58,0.008,59,0.006,60,0.006,140,0.504,143,2.013,245,0.592,287,1.391,330,2.829,332,2.581,390,2.593,391,2.702,392,2.702,437,1.353,439,1.846,440,2.494,441,3.887,442,2.593,443,2.702,444,2.657,449,4.191,450,6.013,451,3.503,452,2.702,453,2.402,455,2.713,456,3.83,457,2.821,459,2.954,461,3.103,464,3.473,465,5.203,466,2.702,467,3.713,471,4.245,472,4.504,473,4.814,474,3.713,475,4.504,476,4.024,477,3.103,478,4.245,479,3.274,480,3.103,481,4.024,482,3.103,483,4.024,484,3.103,485,4.245,486,3.274,487,4.504,488,3.473,492,4.504,493,3.274,499,5.724,500,4.013,501,3.473,3204,4.013,3465,4.414,3466,4.414,3467,4.414,3468,4.414,3469,5.614,3470,5.024,3471,5.024,3472,4.414,3473,5.024]],["title/modules/TransactionsRoutingModule.html",[437,1.148,3469,2.945]],["body/modules/TransactionsRoutingModule.html",[3,0.151,4,0.118,5,0.086,21,0.011,48,1.44,56,0.151,57,0.008,58,0.009,59,0.008,60,0.008,140,0.46,143,1.995,175,0.946,245,0.761,250,2.303,332,2.418,439,2.373,444,2.373,455,3.168,503,3.796,504,3.867,505,4.272,506,3.796,510,3.988,3469,5.26,3472,5.673,3474,6.456]],["title/classes/Tx.html",[60,0.005,1100,2.291]],["body/classes/Tx.html",[1,3.787,3,0.13,4,0.101,5,0.074,7,0.435,8,1.173,18,0.683,20,1.485,21,0.011,22,2.226,33,1.301,56,0.13,57,0.007,58,0.008,59,0.007,60,0.01,62,2.159,86,0.93,93,0.51,95,2.031,140,0.314,227,2.024,324,1.373,331,1.766,515,2.031,738,3.573,852,4.244,1100,4.542,1185,4.275,1186,3.601,1187,3.82,1188,3.82,1189,3.82,1190,3.82,1191,3.82,1197,3.82,1198,5.039,1199,2.642,1200,4.925,1201,4.925,1202,5.225,1203,5.225,1204,3.413,1205,3.249,1206,3.82,1207,3.82,1208,3.82,1209,3.601,1210,3.601,3475,5.526,3476,5.526,3477,5.526,3478,5.526,3479,5.526]],["title/classes/TxToken.html",[60,0.005,1198,2.632]],["body/classes/TxToken.html",[1,3.819,3,0.133,4,0.104,5,0.075,7,0.445,8,1.19,18,0.655,20,1.501,21,0.011,22,2.189,33,1.331,56,0.133,57,0.007,58,0.008,59,0.007,60,0.01,62,2.21,86,0.871,93,0.705,95,2.807,140,0.322,227,1.653,324,1.405,331,1.792,515,2.078,738,3.625,852,3.176,1100,4.502,1185,4.338,1186,3.686,1187,3.91,1188,3.91,1189,3.91,1190,3.91,1191,3.91,1197,3.91,1198,5.171,1199,3.651,1200,3.686,1201,3.686,1202,3.91,1203,3.91,1204,3.493,1205,3.325,1206,3.91,1207,3.91,1208,3.91,1209,3.686,1210,3.686,3480,5.656,3481,5.656,3482,5.656]],["title/classes/UserServiceStub.html",[60,0.005,3483,3.403]],["body/classes/UserServiceStub.html",[3,0.071,4,0.056,5,0.04,7,0.24,8,0.776,9,0.981,11,4.386,14,4.825,16,1.709,18,0.678,19,1.637,20,1.279,21,0.011,22,1.678,27,1.984,28,1.984,33,1.078,45,3.594,51,2.553,56,0.071,57,0.004,58,0.005,59,0.004,60,0.004,62,1.189,77,0.754,86,0.788,92,1.068,93,0.752,95,2.871,112,0.981,114,2.412,123,2.985,134,1.482,140,0.173,144,1.31,171,4.318,228,1.416,271,3.442,284,5.216,324,1.138,378,6.239,511,4.346,513,4.752,514,4.538,515,3.146,522,1.709,527,2.735,544,2.674,548,1.455,557,2.694,560,3.591,562,3.66,568,4.031,615,6.299,616,5.387,677,4.502,823,1.403,840,3.168,855,3.787,867,3.306,880,2.83,1114,4.062,1619,3.66,1621,3.66,1622,4.897,1623,6.142,1624,4.897,1625,5.452,1626,3.66,1627,3.66,1628,4.897,1629,3.66,1630,4.238,1631,3.66,1632,3.66,1633,3.66,1634,4.531,1635,3.66,1636,3.168,1637,3.66,2007,3.66,2102,3.66,2132,3.66,2289,2.431,2326,3.66,2394,2.431,2402,4.401,2453,5.726,2454,4.897,2516,4.026,2996,4.072,3412,2.674,3483,3.66,3484,6.299,3485,4.582,3486,4.582,3487,3.044,3488,5.51,3489,5.51,3490,5.51,3491,7.811,3492,5.51,3493,5.51,3494,7.811,3495,7.811,3496,4.582,3497,4.582,3498,4.582,3499,4.582,3500,4.582,3501,4.582,3502,4.582,3503,4.582,3504,4.582,3505,4.582,3506,4.582,3507,4.582,3508,4.582,3509,4.582,3510,4.582,3511,4.582,3512,4.582,3513,4.582,3514,4.582,3515,4.582,3516,4.582,3517,4.582,3518,3.044,3519,4.582,3520,3.044,3521,4.582,3522,3.044,3523,3.044,3524,4.582,3525,3.044,3526,3.044,3527,3.044,3528,3.044,3529,3.044,3530,3.044,3531,3.044,3532,3.044,3533,3.044,3534,2.674,3535,3.044]],["title/classes/W3.html",[60,0.005,2967,3.149]],["body/classes/W3.html",[3,0.148,4,0.116,5,0.084,7,0.498,8,1.273,18,0.617,21,0.011,44,4.462,56,0.148,57,0.007,58,0.009,59,0.007,60,0.009,62,2.47,68,3.718,86,0.857,274,5.196,1095,4.22,1268,5.736,2964,5.05,2965,6.603,2966,5.556,2967,6.262,2968,5.556,2973,5.556,3536,6.323,3537,6.323]],["title/coverage.html",[3538,4.661]],["body/coverage.html",[0,1.976,1,1.341,5,0.037,6,4.133,12,1.393,18,0.23,19,2.316,21,0.011,37,1.393,40,2.223,46,1.829,49,1.733,51,3.735,57,0.003,58,0.005,59,0.003,60,0.01,61,2.241,63,4.187,104,1.733,141,2.66,144,2.256,147,2.978,152,0.892,175,1.229,176,0.892,182,3.784,183,2.074,184,2.465,217,1.733,231,1.733,271,4.871,290,1.804,293,0.917,295,0.892,298,0.892,300,0.917,302,0.892,304,0.892,306,0.892,307,1.267,309,0.917,311,0.972,312,0.917,314,0.892,316,0.892,318,0.892,320,0.917,322,0.972,323,0.892,324,0.697,325,0.892,327,0.917,329,0.972,330,0.917,331,0.716,332,0.892,335,0.892,337,0.892,339,0.892,341,0.944,344,2.465,348,1.94,361,1.131,393,1.733,437,1.412,463,2.241,469,2.074,511,1.509,512,4.065,516,1.65,518,1.733,519,2.241,520,2.465,521,1.576,522,4.039,556,2.465,560,1.829,587,1.829,629,1.576,644,2.465,657,1.733,658,1.733,659,1.829,738,1.448,747,1.94,748,1.829,749,1.94,750,1.94,763,2.074,764,1.94,770,1.829,799,2.465,823,2.417,837,3.302,857,2.66,859,2.465,867,2.417,894,2.393,912,2.465,913,1.576,961,1.94,1077,2.074,1078,2.465,1079,2.465,1087,1.829,1095,1.576,1100,1.509,1185,1.733,1186,4.133,1198,1.733,1218,2.465,1219,2.465,1222,2.074,1223,2.074,1225,2.074,1227,2.074,1265,2.465,1266,2.465,1296,2.241,1297,2.465,1328,2.465,1329,2.074,1330,2.465,1344,2.465,1345,2.465,1364,2.465,1420,2.465,1427,3.874,1430,3.44,1431,3.44,1498,2.465,1499,2.465,1509,2.465,1525,2.465,1541,2.465,1581,3.44,1582,2.465,1595,3.44,1605,2.074,1606,6.014,1607,6.014,1780,2.66,1889,2.241,2388,2.241,2455,1.65,2487,2.241,2510,5.745,2589,4.229,2590,3.874,2662,1.576,2663,2.074,2737,2.465,2738,2.241,2739,2.465,2758,2.465,2792,1.829,2793,4.133,2812,1.829,2853,2.465,2884,2.465,2902,2.465,2909,2.241,2922,2.241,2923,2.465,2937,2.465,2938,2.241,2952,1.94,2954,2.465,2964,3.44,2967,2.074,2974,2.465,3029,1.94,3041,2.465,3054,2.465,3057,2.465,3058,2.465,3059,2.074,3060,4.187,3065,1.94,3084,2.465,3085,2.465,3090,1.94,3091,4.187,3092,4.187,3100,2.465,3118,2.465,3146,2.241,3147,2.465,3151,2.465,3190,2.465,3203,2.465,3204,2.241,3226,2.241,3278,3.44,3408,2.241,3409,2.465,3415,2.465,3483,2.241,3484,2.465,3538,2.241,3539,2.806,3540,2.806,3541,2.806,3542,8.384,3543,8.384,3544,2.806,3545,6.97,3546,2.465,3547,2.465,3548,2.465,3549,2.465,3550,2.465,3551,4.307,3552,2.465,3553,4.696,3554,2.806,3555,2.465,3556,2.465,3557,4.187,3558,2.465,3559,2.465,3560,2.465,3561,3.784,3562,3.784,3563,2.465,3564,2.465,3565,6.343,3566,6.343,3567,7.771,3568,6.343,3569,7.869,3570,6.694,3571,4.307,3572,4.307,3573,4.307,3574,2.806,3575,4.307,3576,5.88,3577,4.307,3578,4.307,3579,4.307,3580,3.784,3581,2.806,3582,2.806,3583,2.806,3584,2.806,3585,4.307,3586,2.465,3587,2.465,3588,2.465,3589,2.465,3590,2.806,3591,2.806]],["title/dependencies.html",[440,2.546,3592,3.547]],["body/dependencies.html",[19,2.967,21,0.011,37,2.738,42,2.374,57,0.007,58,0.008,59,0.007,141,3.408,245,0.65,247,2.967,250,1.968,440,2.738,442,2.847,457,3.098,466,2.967,467,4.077,548,2.637,591,4.847,683,4.406,684,3.595,753,5.523,754,3.883,767,4.406,768,4.406,852,3.098,984,4.061,1117,3.718,1368,3.244,2496,4.077,2662,3.098,2870,4.847,2871,4.847,3318,4.847,3320,4.847,3329,4.406,3593,7.567,3594,5.517,3595,6.915,3596,5.517,3597,5.517,3598,5.517,3599,5.517,3600,5.517,3601,5.517,3602,5.517,3603,5.517,3604,5.517,3605,5.517,3606,5.517,3607,5.517,3608,5.517,3609,5.517,3610,5.517,3611,5.517,3612,6.915,3613,5.517,3614,6.915,3615,6.915,3616,5.517,3617,5.517,3618,5.517,3619,5.517,3620,5.517,3621,5.517,3622,5.517,3623,5.517,3624,5.517,3625,5.517,3626,5.517,3627,5.517,3628,5.517,3629,5.517,3630,5.517,3631,5.517,3632,5.517,3633,5.517,3634,5.517,3635,5.517,3636,5.517,3637,5.517,3638,5.517,3639,5.517]],["title/miscellaneous/functions.html",[2536,4.097,3640,2.622]],["body/miscellaneous/functions.html",[5,0.099,7,0.367,9,1.298,18,0.634,19,3.993,21,0.01,22,1.188,42,3.493,57,0.005,58,0.007,59,0.005,64,3.613,65,3.199,74,4.039,86,0.707,92,1.414,93,0.76,105,4.95,106,4.092,109,4.95,112,1.335,113,2.278,114,1.567,115,4.092,125,4.95,135,3.193,171,2.615,221,1.639,227,1.361,393,3.828,444,1.711,545,3.219,551,5.445,677,4.039,887,3.441,975,5.563,1114,3.644,1283,3.035,1310,4.839,1368,2.738,1636,3.219,2536,3.719,2909,5.563,3226,4.95,3245,4.092,3546,4.092,3547,5.445,3548,5.445,3549,4.092,3550,5.445,3552,4.092,3553,6.176,3555,4.092,3556,5.445,3557,3.719,3558,5.445,3559,5.445,3561,4.092,3562,6.12,3563,5.445,3564,5.445,3640,3.441,3641,4.657,3642,4.657,3643,4.657,3644,4.657,3645,5.445,3646,6.197,3647,4.657,3648,6.197,3649,4.657,3650,4.657,3651,4.657,3652,4.657,3653,5.445,3654,6.965,3655,4.657,3656,6.197,3657,4.657,3658,4.092,3659,4.092,3660,4.657,3661,6.197,3662,6.965,3663,7.732,3664,6.525,3665,4.657,3666,4.657,3667,4.657,3668,4.657,3669,4.657,3670,4.657,3671,4.657,3672,4.657,3673,4.657,3674,4.657,3675,4.092,3676,4.657,3677,4.657,3678,4.657,3679,6.197,3680,4.657,3681,4.657,3682,4.657,3683,4.95,3684,4.657,3685,6.197,3686,7.426,3687,5.445,3688,6.197,3689,4.657]],["title/index.html",[7,0.279,3690,3.117,3691,3.117]],["body/index.html",[4,0.092,5,0.096,21,0.009,39,2.967,57,0.006,58,0.008,59,0.006,73,1.475,88,1.65,93,0.707,144,3.499,152,2.076,175,1.062,178,1.8,191,2.33,228,1.56,278,4.031,333,1.65,398,2.605,437,2.229,439,1.855,453,2.413,466,4.372,521,3.669,528,5.354,545,5.62,557,2.967,679,3.73,707,4.434,803,4.434,832,4.434,841,4.434,855,3.117,879,3.73,882,4.031,984,2.714,1117,2.714,1260,5.74,1401,3.289,1543,5.74,2036,5.786,2496,4.828,2996,3.73,3593,4.434,3675,6.365,3692,5.047,3693,5.047,3694,6.533,3695,5.047,3696,7.936,3697,7.51,3698,7.662,3699,5.74,3700,5.047,3701,5.047,3702,5.74,3703,5.047,3704,5.047,3705,5.047,3706,5.047,3707,4.434,3708,5.047,3709,4.434,3710,5.047,3711,7.936,3712,6.973,3713,5.047,3714,5.047,3715,4.434,3716,5.047,3717,7.662,3718,6.493,3719,6.533,3720,5.047,3721,5.047,3722,5.74,3723,5.047,3724,5.047,3725,5.047,3726,5.047,3727,5.047,3728,5.047,3729,5.74,3730,5.74,3731,6.533,3732,7.662,3733,5.047,3734,5.74,3735,5.047,3736,6.732,3737,5.047,3738,5.047,3739,5.047,3740,4.434,3741,5.047,3742,5.047,3743,5.047,3744,5.047,3745,5.047,3746,5.047,3747,4.434,3748,4.434,3749,4.031,3750,5.047,3751,5.047]],["title/license.html",[3690,3.117,3691,3.117,3752,3.117]],["body/license.html",[0,1.038,2,1.039,4,0.141,5,0.023,17,1.246,18,0.145,21,0.002,22,0.45,29,0.466,39,4.063,42,1.039,57,0.002,58,0.002,59,0.002,60,0.001,72,2.189,73,1.312,74,2.234,77,0.16,78,3.429,86,0.111,89,2.189,95,0.358,102,0.856,116,0.856,120,2.37,121,1.784,122,3.518,124,3.365,131,1.303,134,0.235,140,0.055,152,1.329,171,1.925,175,0.502,221,0.229,253,0.337,278,0.778,285,1.93,331,1.067,376,1.669,380,0.778,394,0.99,433,0.673,453,0.466,509,0.635,515,2.172,528,5.053,531,2.366,532,0.573,534,0.856,549,1.549,550,1.549,560,0.635,568,0.503,587,0.635,602,0.856,629,0.547,630,1.303,663,0.778,672,1.089,677,2.234,690,0.72,695,0.778,697,2.234,719,0.72,785,2.533,823,0.449,855,2.117,860,1.408,862,2.831,867,0.813,879,1.303,880,2.772,881,0.778,884,3.997,886,2.366,887,4.005,895,2.941,896,3.226,984,0.524,1000,0.856,1001,1.549,1032,0.856,1033,2.533,1035,0.856,1036,1.408,1037,1.408,1058,0.483,1091,1.303,1114,2.015,1117,0.524,1159,0.856,1161,1.549,1205,1.741,1256,1.573,1258,1.303,1262,0.72,1270,4.171,1284,1.303,1285,3.059,1288,1.549,1310,4.295,1311,1.549,1374,0.856,1382,0.673,1401,4.827,1402,0.856,1410,1.408,1417,2.121,1446,2.366,1451,1.408,1462,3.585,1464,0.778,1466,1.928,1494,5.4,1573,1.549,1601,0.856,1609,2.602,1612,0.856,1630,1.669,1634,0.72,1775,0.778,1898,0.778,1918,0.778,1965,1.784,2056,0.778,2075,0.778,2104,0.778,2110,0.778,2119,0.778,2127,6.789,2129,3.997,2348,0.778,2349,3.059,2496,2.533,2499,1.549,2500,1.549,2532,0.856,2533,2.602,2535,2.121,2614,0.673,2676,1.408,2688,1.928,2689,1.408,2759,1.303,2773,0.778,2780,3.012,2785,0.856,2814,4.471,2859,1.928,2938,0.778,2989,2.121,2996,3.518,3005,0.856,3252,0.856,3343,1.549,3534,1.549,3538,1.408,3589,0.856,3653,5.061,3658,6.071,3659,1.549,3664,0.856,3683,0.778,3687,1.549,3697,3.943,3699,2.602,3702,0.856,3707,2.602,3709,2.602,3712,0.856,3715,0.856,3722,3.365,3730,2.121,3734,0.856,3736,0.856,3740,2.121,3747,3.943,3748,3.673,3752,7.511,3753,6.397,3754,0.974,3755,0.974,3756,2.414,3757,7.215,3758,4.488,3759,6.497,3760,7.042,3761,3.83,3762,0.974,3763,0.974,3764,1.763,3765,3.428,3766,3.428,3767,2.414,3768,2.414,3769,0.974,3770,0.974,3771,0.974,3772,1.763,3773,5.419,3774,3.83,3775,0.974,3776,3.83,3777,0.974,3778,0.974,3779,4.488,3780,0.974,3781,0.974,3782,0.974,3783,5.76,3784,7.867,3785,5.76,3786,2.414,3787,2.414,3788,1.763,3789,1.763,3790,4.18,3791,4.18,3792,5.76,3793,3.428,3794,0.974,3795,2.962,3796,4.488,3797,1.763,3798,4.488,3799,2.414,3800,0.974,3801,1.763,3802,0.974,3803,2.414,3804,6.397,3805,3.428,3806,1.763,3807,2.962,3808,0.974,3809,0.974,3810,1.763,3811,2.962,3812,5.419,3813,1.763,3814,6.591,3815,1.763,3816,2.962,3817,4.18,3818,3.428,3819,0.974,3820,4.488,3821,3.428,3822,7.316,3823,2.414,3824,4.18,3825,0.974,3826,0.974,3827,4.488,3828,1.763,3829,5.222,3830,5.004,3831,3.428,3832,1.763,3833,0.974,3834,0.974,3835,5.909,3836,1.763,3837,0.974,3838,5.598,3839,1.763,3840,0.974,3841,2.414,3842,0.974,3843,0.974,3844,0.974,3845,0.974,3846,0.974,3847,0.974,3848,0.974,3849,0.974,3850,0.974,3851,0.974,3852,1.763,3853,0.974,3854,0.974,3855,0.974,3856,1.763,3857,0.974,3858,0.974,3859,1.763,3860,1.763,3861,5.76,3862,0.974,3863,1.763,3864,1.763,3865,0.974,3866,0.974,3867,1.763,3868,2.414,3869,1.763,3870,2.414,3871,0.974,3872,0.974,3873,3.83,3874,0.974,3875,0.974,3876,3.428,3877,0.974,3878,0.974,3879,2.962,3880,0.974,3881,0.974,3882,1.763,3883,2.414,3884,0.974,3885,0.974,3886,4.761,3887,0.974,3888,5.76,3889,2.962,3890,3.428,3891,3.83,3892,2.414,3893,0.974,3894,2.414,3895,6.289,3896,1.763,3897,0.974,3898,0.974,3899,0.974,3900,2.414,3901,7.761,3902,5.004,3903,0.974,3904,0.974,3905,1.763,3906,1.763,3907,0.974,3908,5.004,3909,0.974,3910,2.962,3911,4.488,3912,0.974,3913,2.414,3914,2.414,3915,1.763,3916,3.83,3917,7.67,3918,2.414,3919,4.761,3920,2.962,3921,4.18,3922,1.763,3923,0.974,3924,1.763,3925,2.414,3926,4.761,3927,2.962,3928,0.974,3929,1.763,3930,1.763,3931,2.962,3932,2.962,3933,0.974,3934,2.414,3935,0.974,3936,6.978,3937,1.763,3938,0.974,3939,4.488,3940,0.974,3941,2.414,3942,5.909,3943,2.962,3944,1.763,3945,5.222,3946,3.83,3947,0.974,3948,0.974,3949,4.488,3950,0.974,3951,1.763,3952,5.598,3953,0.974,3954,1.763,3955,2.414,3956,0.974,3957,2.414,3958,0.974,3959,0.974,3960,0.974,3961,0.974,3962,2.414,3963,2.414,3964,0.974,3965,0.974,3966,0.974,3967,1.763,3968,0.974,3969,2.414,3970,2.414,3971,3.83,3972,2.414,3973,2.414,3974,0.974,3975,0.974,3976,3.428,3977,3.83,3978,0.974,3979,0.974,3980,0.974,3981,0.974,3982,2.414,3983,0.974,3984,0.974,3985,0.974,3986,0.974,3987,0.974,3988,1.763,3989,0.974,3990,6.76,3991,4.488,3992,0.974,3993,1.763,3994,0.974,3995,0.974,3996,1.763,3997,1.763,3998,0.974,3999,0.974,4000,0.974,4001,1.763,4002,2.414,4003,0.974,4004,1.763,4005,0.974,4006,0.974,4007,0.974,4008,0.974,4009,5.004,4010,4.18,4011,2.962,4012,0.974,4013,3.428,4014,0.974,4015,1.763,4016,0.974,4017,0.974,4018,2.414,4019,0.974,4020,0.974,4021,0.974,4022,2.414,4023,2.414,4024,0.974,4025,0.974,4026,1.763,4027,1.763,4028,1.763,4029,0.974,4030,1.763,4031,0.974,4032,0.974,4033,0.974,4034,0.974,4035,0.974,4036,0.974,4037,2.414,4038,0.974,4039,0.974,4040,5.909,4041,0.974,4042,0.974,4043,0.974,4044,3.428,4045,3.428,4046,0.974,4047,0.974,4048,2.414,4049,0.974,4050,0.974,4051,2.962,4052,0.974,4053,1.763,4054,0.974,4055,0.974,4056,0.974,4057,0.974,4058,0.974,4059,1.763,4060,1.763,4061,0.974,4062,2.414,4063,0.974,4064,0.974,4065,1.763,4066,0.974,4067,0.974,4068,0.974,4069,0.974,4070,1.763,4071,1.763,4072,3.83,4073,0.974,4074,0.974,4075,1.763,4076,2.414,4077,2.414,4078,2.962,4079,2.962,4080,2.414,4081,2.962,4082,1.763,4083,0.974,4084,3.428,4085,3.428,4086,0.974,4087,1.763,4088,1.763,4089,3.428,4090,1.763,4091,2.962,4092,2.962,4093,2.414,4094,5.76,4095,3.428,4096,0.974,4097,0.974,4098,0.974,4099,2.414,4100,1.763,4101,1.763,4102,0.974,4103,0.974,4104,0.974,4105,1.763,4106,0.974,4107,0.974,4108,0.974,4109,2.414,4110,0.974,4111,0.974,4112,2.414,4113,0.974,4114,1.763,4115,0.974,4116,0.974,4117,0.974,4118,1.763,4119,1.763,4120,3.83,4121,6.591,4122,2.414,4123,1.763,4124,1.763,4125,1.763,4126,1.763,4127,2.962,4128,1.763,4129,0.974,4130,0.974,4131,0.974,4132,0.974,4133,3.83,4134,1.763,4135,0.974,4136,0.974,4137,0.974,4138,0.974,4139,1.763,4140,0.974,4141,1.763,4142,0.974,4143,3.428,4144,0.974,4145,0.974,4146,0.974,4147,0.974,4148,0.974,4149,0.974,4150,0.974,4151,0.974,4152,0.974,4153,2.414,4154,3.428,4155,2.962,4156,2.962,4157,1.763,4158,0.974,4159,0.974,4160,0.974,4161,0.974,4162,0.974,4163,1.763,4164,0.974,4165,0.974,4166,2.962,4167,0.974,4168,1.763,4169,0.974,4170,1.763,4171,0.974,4172,0.974,4173,2.414,4174,0.974,4175,0.974,4176,0.974,4177,0.974,4178,0.974,4179,1.763,4180,0.974,4181,0.974,4182,0.974,4183,0.974,4184,2.414,4185,0.974,4186,0.974,4187,0.974,4188,0.974,4189,3.428,4190,0.974,4191,0.974,4192,2.962,4193,0.974,4194,0.974,4195,0.974,4196,0.974,4197,0.974,4198,0.974,4199,0.974,4200,2.414,4201,0.974,4202,0.974,4203,0.974,4204,2.414,4205,0.974,4206,0.974,4207,2.414,4208,0.974,4209,1.763,4210,0.974,4211,0.974,4212,0.974,4213,0.974,4214,0.974,4215,0.974,4216,0.974,4217,0.974,4218,0.974,4219,1.763,4220,0.974,4221,0.974,4222,0.974,4223,1.763,4224,1.763,4225,0.974,4226,0.974,4227,2.414,4228,0.974,4229,2.414,4230,1.763,4231,0.974,4232,1.763,4233,1.763,4234,0.974,4235,2.414,4236,4.18,4237,0.974,4238,1.763,4239,1.763,4240,0.974,4241,1.763,4242,0.974,4243,0.974,4244,0.974,4245,0.974,4246,0.974,4247,1.763,4248,0.974,4249,2.962,4250,0.974,4251,3.428,4252,0.974,4253,0.974,4254,0.974,4255,0.974,4256,0.974,4257,1.763,4258,1.763,4259,1.763,4260,2.414,4261,0.974,4262,1.763,4263,1.763,4264,0.974,4265,2.414,4266,0.974,4267,1.763,4268,0.974,4269,1.763,4270,0.974,4271,1.763,4272,0.974,4273,0.974,4274,1.763,4275,6.76,4276,1.763,4277,0.974,4278,3.428,4279,5.004,4280,2.414,4281,0.974,4282,0.974,4283,0.974,4284,2.962,4285,0.974,4286,0.974,4287,2.414,4288,1.763,4289,0.974,4290,0.974,4291,0.974,4292,0.974,4293,0.974,4294,0.974,4295,0.974,4296,0.974,4297,2.962,4298,1.763,4299,1.763,4300,0.974,4301,0.974,4302,2.414,4303,0.974,4304,1.763,4305,2.414,4306,1.763,4307,0.974,4308,0.974,4309,0.974,4310,0.974,4311,1.763,4312,2.414,4313,0.974,4314,0.974,4315,1.763,4316,0.974,4317,0.974,4318,0.974,4319,0.974,4320,0.974,4321,0.974,4322,2.414,4323,1.763,4324,0.974,4325,0.974,4326,2.962,4327,0.974,4328,2.414,4329,0.974,4330,0.974,4331,1.763,4332,0.974,4333,0.974,4334,0.974,4335,2.414,4336,1.763,4337,0.974,4338,4.18,4339,1.763,4340,2.414,4341,2.962,4342,0.974,4343,0.974,4344,1.763,4345,0.974,4346,2.414,4347,0.974,4348,1.763,4349,0.974,4350,0.974,4351,0.974,4352,0.974,4353,2.414,4354,0.974,4355,1.763,4356,2.414,4357,1.763,4358,0.974,4359,1.763,4360,0.974,4361,0.974,4362,1.763,4363,1.763,4364,0.974,4365,0.974,4366,1.763,4367,0.974,4368,0.974,4369,0.974,4370,0.974,4371,0.974,4372,0.974,4373,0.974,4374,0.974,4375,0.974,4376,0.974,4377,1.763,4378,2.414,4379,0.974,4380,0.974,4381,0.974,4382,0.974,4383,0.974,4384,1.763,4385,0.974,4386,0.974,4387,0.974,4388,0.974,4389,0.974,4390,0.974,4391,0.974,4392,0.974,4393,0.974,4394,0.974,4395,0.974,4396,0.974,4397,0.974,4398,2.962,4399,0.974,4400,1.763,4401,0.974,4402,0.974,4403,0.974,4404,0.974,4405,0.974,4406,0.974,4407,0.974,4408,0.974,4409,0.974,4410,0.974,4411,2.414,4412,0.974,4413,0.974,4414,0.974,4415,0.974,4416,1.763,4417,0.974,4418,0.974,4419,0.974,4420,0.974,4421,0.974,4422,1.763,4423,1.763,4424,2.414,4425,0.974,4426,1.763,4427,0.974,4428,0.974,4429,0.974,4430,0.974,4431,2.414,4432,1.763,4433,0.974,4434,1.763,4435,1.763,4436,1.763,4437,0.974,4438,0.974,4439,0.974,4440,0.974,4441,0.974,4442,0.974,4443,1.763,4444,0.974,4445,0.974,4446,1.763,4447,0.974,4448,2.414,4449,0.974,4450,0.974,4451,0.974,4452,0.974,4453,0.974,4454,0.974,4455,0.974,4456,0.974,4457,0.974,4458,0.974,4459,0.974,4460,0.974,4461,0.974,4462,0.974,4463,1.763,4464,0.974,4465,0.974,4466,0.974,4467,0.974,4468,0.974,4469,0.974,4470,0.974,4471,0.974,4472,0.974,4473,0.974,4474,0.974,4475,0.974,4476,0.974,4477,0.974,4478,0.974,4479,0.974,4480,2.414,4481,1.763,4482,0.974,4483,0.974,4484,0.974,4485,0.974,4486,0.974,4487,1.763,4488,0.974,4489,0.974,4490,1.763,4491,1.763,4492,0.974,4493,0.974,4494,0.974,4495,0.974,4496,0.974,4497,0.974,4498,0.974,4499,0.974,4500,0.974,4501,0.974,4502,0.974,4503,0.974,4504,0.974,4505,0.974,4506,0.974,4507,0.974,4508,0.974,4509,0.974,4510,0.974,4511,0.974,4512,0.974,4513,0.974,4514,0.974,4515,0.974]],["title/modules.html",[439,2.145]],["body/modules.html",[21,0.009,57,0.007,58,0.009,59,0.007,122,6.419,438,4.472,439,2.224,448,4.183,449,3.123,450,4.183,635,4.472,639,4.183,740,4.472,746,4.183,754,4.911,900,4.472,904,4.183,2859,6.985,2861,4.472,2865,4.183,3012,4.472,3016,4.183,3175,4.472,3179,4.183,3469,4.183,4516,8.746,4517,8.981,4518,8.685]],["title/overview.html",[3749,4.661]],["body/overview.html",[2,1.691,21,0.011,51,1.636,57,0.005,58,0.007,59,0.005,62,1.535,176,2.027,177,1.402,287,1.088,293,2.085,295,2.027,298,2.027,300,2.537,302,2.027,304,2.027,306,2.027,309,2.537,312,2.537,314,2.027,316,2.027,318,2.027,320,2.537,323,2.027,325,2.027,327,2.537,330,2.537,332,2.027,334,1.249,335,2.466,337,2.027,339,2.027,376,2.717,437,1.059,438,6.309,439,1.444,440,1.951,441,2.113,442,2.028,443,2.113,444,1.444,445,3.453,446,3.453,447,3.453,448,4.409,449,4.597,450,5.753,451,2.967,452,2.113,453,1.879,635,5.852,636,3.453,637,3.453,638,3.453,639,4.409,740,6.338,741,3.453,742,3.453,743,3.453,744,3.453,745,3.453,746,4.409,747,4.409,748,4.156,749,4.409,750,4.409,858,3.139,900,5.852,901,3.453,902,3.453,903,3.453,904,4.409,911,2.113,1114,3.244,1630,2.717,2463,3.139,2861,5.852,2862,3.453,2863,3.453,2864,3.453,2865,4.409,2952,5.363,2953,3.139,3012,6.027,3013,3.453,3014,3.453,3015,3.453,3016,4.409,3026,3.453,3027,3.453,3028,3.453,3029,5.363,3175,6.027,3176,3.453,3177,3.453,3178,3.453,3179,4.409,3465,3.453,3466,3.453,3467,3.453,3468,3.453,3469,4.409,3749,3.139,4519,3.93,4520,3.93,4521,3.93]],["title/routes.html",[504,2.79]],["body/routes.html",[21,0.009,57,0.008,58,0.009,59,0.008,504,3.356]],["title/miscellaneous/variables.html",[3640,2.622,3718,4.097]],["body/miscellaneous/variables.html",[1,0.714,6,0.973,7,0.118,8,0.253,11,2.548,13,1.032,14,0.922,15,1.032,16,0.838,17,3.607,18,0.597,19,2.44,21,0.011,22,0.381,23,1.103,24,1.032,25,1.032,26,1.032,27,0.973,28,0.973,29,2.371,30,1.032,32,0.922,33,1.827,34,1.032,35,1.032,36,1.032,37,0.741,38,1.032,39,0.878,42,1.107,45,2.065,47,0.77,49,1.588,50,0.973,51,1.41,52,2.623,53,1.588,54,1.588,55,1.032,57,0.002,58,0.003,59,0.002,63,1.192,68,1.512,73,0.752,89,1.9,91,0.795,93,0.746,94,2.054,95,1.823,114,1.527,123,1.89,135,2.307,141,3.063,144,2.286,146,2.054,147,3.429,148,2.054,149,1.312,150,2.054,151,2.054,152,1.076,153,1.9,171,0.838,181,0.488,228,2.315,271,0.838,284,2.207,324,0.841,331,0.381,333,0.488,348,1.778,444,0.549,466,0.803,501,1.032,511,2.667,513,2.916,514,2.785,515,2.239,517,4.097,541,4.482,557,1.991,560,2.207,629,1.444,677,0.973,684,1.676,760,1.192,763,1.9,776,2.976,785,1.103,786,1.192,787,1.192,823,1.185,840,1.032,854,2.503,855,1.588,857,0.922,867,0.688,880,0.922,892,1.103,1033,2.503,1114,0.878,1199,2.371,1222,1.9,1223,2.503,1225,2.503,1258,1.103,1262,1.9,1268,1.032,1284,1.103,1310,2.957,1400,1.032,1447,2.503,1605,1.9,1606,1.192,1607,4.865,1617,3.987,1618,1.312,1619,2.054,1620,1.312,1621,2.054,1622,1.192,1623,3.215,1624,1.192,1625,2.503,1626,1.192,1627,1.192,1628,2.054,1629,1.192,1630,1.032,1631,1.192,1632,1.192,1633,1.192,1634,1.103,1635,1.192,1636,1.032,1637,1.192,1638,2.259,1639,3.536,1640,1.312,1641,1.312,1642,1.312,1643,1.312,1644,1.312,1645,1.312,1646,1.312,1647,1.312,1648,1.312,1649,1.312,1650,1.312,1651,1.312,1652,1.312,1653,1.312,1654,1.312,1655,2.259,1656,1.312,1657,1.312,1658,2.259,1659,1.312,1660,1.312,1661,1.312,1662,2.976,1663,2.976,1664,1.312,1665,2.259,1666,1.312,1667,2.259,1668,2.259,1669,2.259,1670,1.312,1671,1.312,1672,1.312,1673,1.312,1674,1.312,1675,1.312,1676,1.312,1677,1.312,1678,1.312,1679,1.312,1680,1.312,1681,1.312,1682,1.312,1683,1.312,1684,1.312,1685,1.312,1686,1.312,1687,1.312,1688,1.312,1689,1.312,1690,1.312,1691,1.312,1692,1.312,1693,1.312,1694,1.312,1695,1.312,1696,1.312,1697,1.312,1698,1.312,1699,1.312,1700,1.312,1701,1.312,1702,1.312,1703,2.259,1704,1.312,1705,1.312,1706,1.312,1707,1.312,1708,1.312,1709,1.312,1710,1.312,1711,1.312,1712,1.312,1713,1.312,1714,1.312,1715,1.312,1716,2.259,1717,1.312,1718,1.312,1719,1.312,1720,2.259,1721,1.312,1722,1.312,1723,1.312,1724,1.312,1725,1.312,1726,1.312,1727,1.312,1728,1.312,1729,1.312,1730,1.312,1731,1.312,1732,1.312,1733,1.312,1734,1.312,1735,1.312,1736,1.312,1737,1.312,1738,1.312,1739,1.312,1740,1.312,1741,1.312,1742,1.312,1743,1.312,1744,1.312,1745,1.312,1746,1.312,1747,2.976,1748,1.312,1749,1.312,1750,1.312,1751,1.312,1752,1.312,1753,1.312,1754,1.312,1755,1.312,1756,1.312,1757,1.312,1758,1.312,1759,1.312,1760,1.312,1761,2.259,1762,1.312,1763,1.312,1764,1.312,1765,1.312,1766,1.312,1767,1.312,1768,1.312,1769,2.259,1770,1.312,1771,1.312,1772,1.312,1773,1.312,1774,1.312,1775,1.192,1776,1.312,1777,1.312,1778,1.312,1779,1.312,1780,0.922,1781,1.312,1782,1.312,1783,1.312,1784,1.312,1785,1.312,1786,1.312,1787,1.312,1788,2.259,1789,1.312,1790,1.312,1791,2.259,1792,1.312,1793,1.312,1794,1.312,1795,1.312,1796,1.312,1797,1.312,1798,1.312,1799,1.312,1800,1.312,1801,1.312,1802,1.312,1803,1.312,1804,1.312,1805,1.312,1806,1.312,1807,1.312,1808,2.976,1809,1.312,1810,1.312,1811,1.312,1812,1.312,1813,1.312,1814,1.312,1815,1.312,1816,1.312,1817,1.312,1818,1.312,1819,1.312,1820,1.312,1821,1.312,1822,1.312,1823,1.312,1824,1.312,1825,1.312,1826,1.312,1827,2.259,1828,1.312,1829,1.312,1830,1.312,1831,1.312,1832,1.312,1833,1.312,1834,1.312,1835,1.312,1836,1.312,1837,1.312,1838,1.312,1839,1.312,1840,1.312,1841,1.312,1842,1.312,1843,1.312,1844,1.312,1845,2.259,1846,2.976,1847,1.312,1848,1.312,1849,1.312,1850,1.312,1851,2.976,1852,2.976,1853,1.312,1854,2.259,1855,1.312,1856,1.312,1857,1.312,1858,1.312,1859,1.312,1860,1.312,1861,1.312,1862,1.312,1863,1.312,1864,1.312,1865,1.312,1866,1.312,1867,1.312,1868,1.312,1869,2.976,1870,1.312,1871,1.312,1872,1.312,1873,1.312,1874,1.312,1875,1.312,1876,1.312,1877,1.312,1878,1.312,1879,1.312,1880,1.312,1881,1.312,1882,1.312,1883,1.312,1884,1.312,1885,1.312,1886,1.312,1887,1.312,1888,2.054,1889,2.054,1890,2.259,1891,2.259,1892,2.259,1893,2.259,1894,1.312,1895,1.312,1896,1.312,1897,1.312,1898,1.192,1899,1.312,1900,1.312,1901,1.312,1902,1.312,1903,1.312,1904,1.312,1905,1.312,1906,1.312,1907,1.312,1908,1.312,1909,1.312,1910,1.312,1911,1.312,1912,1.312,1913,1.312,1914,1.312,1915,1.312,1916,1.312,1917,1.312,1918,1.192,1919,1.312,1920,1.312,1921,1.312,1922,1.312,1923,1.312,1924,1.312,1925,1.312,1926,1.312,1927,1.312,1928,1.312,1929,2.976,1930,1.312,1931,1.312,1932,1.312,1933,1.312,1934,1.312,1935,1.312,1936,2.259,1937,3.536,1938,1.312,1939,1.312,1940,1.312,1941,1.312,1942,1.312,1943,1.312,1944,1.312,1945,1.312,1946,1.312,1947,1.312,1948,1.312,1949,1.312,1950,1.312,1951,1.312,1952,1.312,1953,1.312,1954,1.312,1955,1.312,1956,1.312,1957,1.312,1958,1.312,1959,1.312,1960,1.312,1961,2.259,1962,1.312,1963,1.312,1964,1.312,1965,1.103,1966,1.312,1967,1.312,1968,1.312,1969,1.312,1970,1.312,1971,1.312,1972,1.312,1973,1.312,1974,1.312,1975,1.312,1976,1.312,1977,1.312,1978,1.312,1979,1.312,1980,1.312,1981,1.312,1982,1.312,1983,1.312,1984,1.312,1985,1.312,1986,1.312,1987,1.312,1988,1.312,1989,1.312,1990,1.312,1991,1.312,1992,1.312,1993,1.312,1994,1.312,1995,1.312,1996,2.259,1997,1.312,1998,1.312,1999,1.312,2000,1.312,2001,1.312,2002,1.312,2003,1.312,2004,1.312,2005,2.259,2006,1.312,2007,1.192,2008,1.312,2009,1.312,2010,1.312,2011,1.312,2012,1.312,2013,1.312,2014,1.312,2015,1.312,2016,1.312,2017,2.259,2018,1.312,2019,1.312,2020,1.312,2021,1.312,2022,1.312,2023,1.312,2024,1.312,2025,1.312,2026,1.312,2027,1.312,2028,1.312,2029,1.312,2030,1.312,2031,1.312,2032,1.312,2033,1.312,2034,1.312,2035,2.259,2036,2.054,2037,1.312,2038,1.312,2039,1.312,2040,1.312,2041,1.312,2042,1.312,2043,1.312,2044,1.312,2045,1.312,2046,1.312,2047,1.312,2048,1.312,2049,1.312,2050,1.312,2051,1.312,2052,1.312,2053,1.312,2054,1.312,2055,1.312,2056,1.192,2057,1.312,2058,1.312,2059,1.312,2060,1.312,2061,1.312,2062,1.312,2063,1.312,2064,1.312,2065,1.312,2066,1.312,2067,1.312,2068,1.312,2069,1.312,2070,1.312,2071,1.312,2072,1.312,2073,1.312,2074,1.312,2075,1.192,2076,1.312,2077,1.312,2078,1.312,2079,1.312,2080,1.312,2081,1.312,2082,1.312,2083,1.312,2084,1.312,2085,1.312,2086,1.312,2087,1.312,2088,1.312,2089,1.312,2090,1.312,2091,1.312,2092,1.312,2093,1.312,2094,2.259,2095,1.312,2096,1.312,2097,1.312,2098,1.312,2099,1.312,2100,1.312,2101,1.312,2102,1.192,2103,1.312,2104,1.192,2105,1.312,2106,1.312,2107,1.312,2108,1.312,2109,1.312,2110,1.192,2111,1.312,2112,1.312,2113,1.312,2114,1.312,2115,1.312,2116,1.312,2117,1.312,2118,1.312,2119,1.192,2120,1.312,2121,1.312,2122,1.312,2123,1.312,2124,1.312,2125,1.312,2126,1.312,2127,1.192,2128,1.312,2129,1.192,2130,1.312,2131,1.312,2132,2.054,2133,1.312,2134,1.312,2135,1.312,2136,1.312,2137,1.312,2138,1.312,2139,1.312,2140,1.312,2141,1.312,2142,1.312,2143,1.312,2144,1.312,2145,1.312,2146,1.312,2147,1.312,2148,1.312,2149,1.312,2150,1.312,2151,1.312,2152,1.312,2153,1.312,2154,1.312,2155,1.312,2156,1.312,2157,1.312,2158,1.312,2159,1.312,2160,1.312,2161,1.312,2162,1.312,2163,1.312,2164,1.312,2165,1.312,2166,1.312,2167,1.312,2168,1.312,2169,1.312,2170,1.312,2171,1.312,2172,1.312,2173,1.312,2174,1.312,2175,1.312,2176,1.312,2177,1.312,2178,1.312,2179,1.312,2180,2.259,2181,1.312,2182,1.312,2183,1.312,2184,1.312,2185,1.312,2186,1.312,2187,1.312,2188,1.312,2189,1.312,2190,1.312,2191,1.312,2192,1.312,2193,1.312,2194,1.312,2195,1.312,2196,1.312,2197,1.312,2198,2.976,2199,1.312,2200,1.312,2201,1.312,2202,1.312,2203,1.312,2204,1.312,2205,1.312,2206,1.312,2207,1.312,2208,1.312,2209,1.312,2210,1.312,2211,1.312,2212,1.312,2213,1.312,2214,1.312,2215,1.312,2216,1.312,2217,1.312,2218,1.312,2219,1.312,2220,1.312,2221,1.312,2222,1.312,2223,1.312,2224,1.312,2225,1.312,2226,1.312,2227,1.312,2228,1.312,2229,1.312,2230,1.312,2231,1.312,2232,1.312,2233,1.312,2234,1.312,2235,1.312,2236,1.312,2237,1.312,2238,1.312,2239,1.312,2240,1.312,2241,1.312,2242,1.312,2243,1.312,2244,1.312,2245,1.312,2246,1.312,2247,1.312,2248,1.312,2249,1.312,2250,1.312,2251,1.312,2252,1.312,2253,1.312,2254,1.312,2255,1.312,2256,1.312,2257,1.312,2258,1.312,2259,1.312,2260,1.312,2261,1.312,2262,1.312,2263,1.312,2264,1.312,2265,1.312,2266,1.312,2267,1.312,2268,1.312,2269,1.312,2270,1.312,2271,1.312,2272,1.312,2273,1.312,2274,1.312,2275,1.312,2276,1.312,2277,1.312,2278,1.312,2279,1.312,2280,1.312,2281,1.312,2282,1.312,2283,1.312,2284,1.312,2285,1.312,2286,1.312,2287,2.259,2288,1.312,2289,2.054,2290,1.312,2291,1.312,2292,1.312,2293,1.312,2294,1.312,2295,1.312,2296,1.312,2297,1.312,2298,1.312,2299,1.312,2300,1.312,2301,1.312,2302,1.312,2303,1.312,2304,1.312,2305,1.312,2306,1.192,2307,1.312,2308,1.312,2309,1.312,2310,1.312,2311,1.312,2312,1.312,2313,1.312,2314,1.312,2315,1.312,2316,1.312,2317,1.312,2318,2.259,2319,2.259,2320,1.312,2321,1.312,2322,1.312,2323,1.312,2324,1.312,2325,1.312,2326,2.054,2327,1.312,2328,1.312,2329,1.312,2330,1.312,2331,1.312,2332,1.312,2333,1.312,2334,1.312,2335,1.312,2336,1.312,2337,1.312,2338,1.312,2339,1.312,2340,1.312,2341,1.312,2342,1.312,2343,1.312,2344,1.312,2345,1.312,2346,1.312,2347,1.312,2348,1.192,2349,1.192,2350,1.312,2351,1.312,2352,1.312,2353,2.259,2354,1.312,2355,1.312,2356,1.312,2357,1.312,2358,1.312,2359,1.312,2360,1.312,2361,2.259,2362,1.312,2363,1.312,2364,1.312,2365,1.312,2366,1.312,2367,1.312,2368,1.312,2369,1.312,2370,1.312,2371,1.312,2372,1.312,2373,1.312,2374,1.312,2375,1.312,2376,1.312,2377,1.312,2378,1.312,2379,1.312,2380,1.312,2381,1.312,2382,1.312,2383,1.312,2384,1.312,2385,1.312,2386,1.312,2387,1.312,2388,1.192,2389,1.312,2390,1.312,2391,1.312,2392,1.312,2393,1.312,2394,2.054,2395,1.312,2396,1.312,2397,1.312,2398,1.312,2399,1.312,2400,1.312,2401,1.312,2402,1.192,2403,1.312,2404,1.312,2405,1.312,2406,1.312,2407,1.312,2408,1.312,2409,1.312,2410,1.312,2411,1.312,2412,1.312,2413,1.312,2414,1.312,2415,1.312,2416,1.312,2417,1.312,2418,1.312,2419,1.312,2420,1.312,2421,1.312,2422,1.312,2423,1.312,2424,1.312,2425,1.312,2426,1.312,2427,1.312,2428,1.312,2429,1.312,2430,1.312,2431,1.312,2432,1.312,2433,1.312,2434,1.312,2435,1.312,2436,1.312,2437,1.312,2438,1.312,2439,1.312,2440,1.312,2441,1.312,2442,1.312,2443,1.312,2444,1.312,2445,1.312,2446,1.312,2447,1.312,2448,1.312,2449,1.312,2450,1.312,2451,1.312,2452,1.312,2453,1.192,2454,1.192,2455,1.991,2456,1.312,2457,1.103,2458,1.312,2459,3.961,2460,3.429,2461,1.312,2462,3.961,2463,3.961,2464,3.961,2465,1.312,2466,2.259,2467,3.354,2468,5.352,2469,3.625,2470,3.354,2471,3.987,2472,2.259,2473,1.312,2474,2.259,2475,1.312,2476,1.312,2477,1.312,2478,2.259,2479,1.312,2480,1.312,2481,1.312,2482,2.259,2483,1.312,2484,1.312,2485,1.312,2486,2.259,2487,2.054,2488,1.312,2489,1.312,2490,1.312,2491,1.312,2589,1.512,2590,1.9,2662,1.444,2663,1.9,2664,1.192,2793,1.676,2820,1.032,3091,1.192,3092,2.705,3111,1.312,3278,1.192,3328,2.259,3329,2.054,3553,2.054,3557,1.192,3560,2.259,3580,1.312,3586,1.312,3587,1.312,3588,1.312,3640,1.103,3645,1.312,3683,1.192,3718,1.192,3729,2.976,4522,2.571,4523,2.571,4524,5.868,4525,1.493,4526,1.493,4527,1.493,4528,1.493,4529,2.571,4530,1.493,4531,1.493,4532,3.387,4533,3.387,4534,3.387,4535,3.387,4536,3.387,4537,3.387,4538,3.387,4539,3.387,4540,3.387,4541,3.387,4542,3.387,4543,3.387,4544,3.387,4545,3.387,4546,3.387,4547,3.387,4548,3.387,4549,3.387,4550,3.387,4551,2.571,4552,3.387,4553,3.387,4554,1.493,4555,1.493,4556,1.493,4557,1.493,4558,1.493]]],"invertedIndex":[["",{"_index":21,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"routes.html":{},"miscellaneous/variables.html":{}}}],["0",{"_index":51,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["0.0",{"_index":608,"title":{},"body":{"components/AdminComponent.html":{}}}],["0.0.7",{"_index":3608,"title":{},"body":{"dependencies.html":{}}}],["0.1.0",{"_index":3624,"title":{},"body":{"dependencies.html":{}}}],["0.1.4",{"_index":3607,"title":{},"body":{"dependencies.html":{}}}],["0.10.2",{"_index":3639,"title":{},"body":{"dependencies.html":{}}}],["0.12.3",{"_index":3618,"title":{},"body":{"dependencies.html":{}}}],["0.2",{"_index":609,"title":{},"body":{"components/AdminComponent.html":{}}}],["0.2.4",{"_index":3603,"title":{},"body":{"dependencies.html":{}}}],["0/1",{"_index":3569,"title":{},"body":{"coverage.html":{}}}],["0/10",{"_index":3578,"title":{},"body":{"coverage.html":{}}}],["0/11",{"_index":3565,"title":{},"body":{"coverage.html":{}}}],["0/12",{"_index":3585,"title":{},"body":{"coverage.html":{}}}],["0/14",{"_index":3574,"title":{},"body":{"coverage.html":{}}}],["0/15",{"_index":3584,"title":{},"body":{"coverage.html":{}}}],["0/16",{"_index":3579,"title":{},"body":{"coverage.html":{}}}],["0/17",{"_index":3583,"title":{},"body":{"coverage.html":{}}}],["0/18",{"_index":3577,"title":{},"body":{"coverage.html":{}}}],["0/2",{"_index":3575,"title":{},"body":{"coverage.html":{}}}],["0/26",{"_index":3573,"title":{},"body":{"coverage.html":{}}}],["0/3",{"_index":3567,"title":{},"body":{"coverage.html":{}}}],["0/33",{"_index":3581,"title":{},"body":{"coverage.html":{}}}],["0/4",{"_index":3566,"title":{},"body":{"coverage.html":{}}}],["0/43",{"_index":3582,"title":{},"body":{"coverage.html":{}}}],["0/5",{"_index":3568,"title":{},"body":{"coverage.html":{}}}],["0/6",{"_index":3570,"title":{},"body":{"coverage.html":{}}}],["0/7",{"_index":3576,"title":{},"body":{"coverage.html":{}}}],["0/8",{"_index":3572,"title":{},"body":{"coverage.html":{}}}],["0/9",{"_index":3571,"title":{},"body":{"coverage.html":{}}}],["04/02/2020",{"_index":3499,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["05/28/2020",{"_index":3510,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["08/16/2020",{"_index":3492,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0px",{"_index":597,"title":{},"body":{"components/AdminComponent.html":{}}}],["0x3da99aad2d9ca01d131efc3b17444b832b31ff4a",{"_index":2471,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x4a6fa6bc3bfe4c9661bc692d9798425350c9e3d4",{"_index":2485,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x51d3c8e2e421604e2b644117a362d589c5434739",{"_index":3529,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0x8fa4101ef19d0a078239d035659e92b278bd083c",{"_index":2481,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x9ced86089f7abb5a97b40eb0e7521e7aa308d354",{"_index":2473,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x9d7c284907acbd4a0ce2ddd0aa69147a921a573d",{"_index":3530,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0xa686005ce37dce7738436256982c3903f2e4ea8e",{"_index":2459,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["0xaf1b487491073c2d49136db3fd87e293302cf839",{"_index":4554,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0xc0ffee254729296a45a3885639ac7e10f9d54979",{"_index":161,"title":{},"body":{"classes/AccountIndex.html":{}}}],["0xc63cfa91a3bff41ce31ff436f67d3acbc977db95",{"_index":2477,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0xc80d6aff8194114c52aecd84c9f15fd5c8abb187",{"_index":2465,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0xc86ff893ac40d3950b4d5f94a9b837258b0a9865",{"_index":3491,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0xea6225212005e86a4490018ded4bf37f3e772161",{"_index":4551,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0xeb3907ecad74a0013c259d5874ae7f22dcbcc95c",{"_index":4553,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1",{"_index":171,"title":{"interfaces/Signature-1.html":{}},"body":{"classes/AccountIndex.html":{},"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["1.0.0",{"_index":3612,"title":{},"body":{"dependencies.html":{}}}],["1.10.22",{"_index":3615,"title":{},"body":{"dependencies.html":{}}}],["1.16.1",{"_index":3629,"title":{},"body":{"dependencies.html":{}}}],["1.3.0",{"_index":3637,"title":{},"body":{"dependencies.html":{}}}],["1/1",{"_index":3543,"title":{},"body":{"coverage.html":{}}}],["10",{"_index":376,"title":{},"body":{"components/AccountsComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TransactionsComponent.html":{},"license.html":{},"overview.html":{}}}],["10.2.0",{"_index":3593,"title":{},"body":{"dependencies.html":{},"index.html":{}}}],["10.2.7",{"_index":3595,"title":{},"body":{"dependencies.html":{}}}],["10/10/2020",{"_index":3515,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["100",{"_index":271,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AppComponent.html":{},"injectables/BlockSyncService.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["1000",{"_index":1629,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["1000000",{"_index":2468,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["1000000000000000001014",{"_index":2474,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["1000000001000000000000000000",{"_index":2461,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["100990",{"_index":2486,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["11",{"_index":4053,"title":{},"body":{"license.html":{}}}],["11/16/2020",{"_index":3505,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["12987",{"_index":3493,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["13",{"_index":4413,"title":{},"body":{"license.html":{}}}],["14",{"_index":4521,"title":{},"body":{"overview.html":{}}}],["15",{"_index":4238,"title":{},"body":{"license.html":{}}}],["151.002995",{"_index":3533,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["1595537208",{"_index":3527,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["16",{"_index":4239,"title":{},"body":{"license.html":{}}}],["17",{"_index":4519,"title":{},"body":{"overview.html":{}}}],["18",{"_index":2463,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["1996",{"_index":4058,"title":{},"body":{"license.html":{}}}],["2",{"_index":1114,"title":{},"body":{"injectables/BlockSyncService.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/TokenRegistry.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"license.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["2.0.0",{"_index":3633,"title":{},"body":{"dependencies.html":{}}}],["2.1.4",{"_index":3631,"title":{},"body":{"dependencies.html":{}}}],["2.10.0",{"_index":3636,"title":{},"body":{"dependencies.html":{}}}],["2.4.2",{"_index":3625,"title":{},"body":{"dependencies.html":{}}}],["2.5.4",{"_index":3600,"title":{},"body":{"dependencies.html":{}}}],["2.9.4",{"_index":3606,"title":{},"body":{"dependencies.html":{}}}],["2/2",{"_index":3551,"title":{},"body":{"coverage.html":{}}}],["20",{"_index":380,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["200",{"_index":840,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["2007",{"_index":3756,"title":{},"body":{"license.html":{}}}],["2020",{"_index":1426,"title":{},"body":{"components/FooterComponent.html":{}}}],["2021",{"_index":4487,"title":{},"body":{"license.html":{}}}],["22",{"_index":4520,"title":{},"body":{"overview.html":{}}}],["22.430670",{"_index":3532,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25412341234",{"_index":3498,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25412345678",{"_index":3490,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25462518374",{"_index":3514,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25498765432",{"_index":3504,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25498769876",{"_index":3509,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["28",{"_index":4394,"title":{},"body":{"license.html":{}}}],["29",{"_index":3754,"title":{},"body":{"license.html":{}}}],["3",{"_index":677,"title":{},"body":{"components/AppComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["3.0",{"_index":55,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["3.5.1",{"_index":3620,"title":{},"body":{"dependencies.html":{}}}],["3/3",{"_index":3545,"title":{},"body":{"coverage.html":{}}}],["3/5",{"_index":3590,"title":{},"body":{"coverage.html":{}}}],["30",{"_index":4293,"title":{},"body":{"license.html":{}}}],["3000",{"_index":3248,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["300px",{"_index":1361,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["32",{"_index":3398,"title":{},"body":{"injectables/TransactionService.html":{}}}],["39;0xc0ffee254729296a45a3885639ac7e10f9d54979'",{"_index":108,"title":{},"body":{"classes/AccountIndex.html":{}}}],["39;2'",{"_index":3108,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["39;hello",{"_index":3655,"title":{},"body":{"miscellaneous/functions.html":{}}}],["39;sarafu'",{"_index":3102,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["4",{"_index":1630,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"license.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["4.10.10",{"_index":3627,"title":{},"body":{"dependencies.html":{}}}],["4.2.1",{"_index":3626,"title":{},"body":{"dependencies.html":{}}}],["4.5.3",{"_index":3604,"title":{},"body":{"dependencies.html":{}}}],["400",{"_index":2581,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["401",{"_index":988,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["401/403",{"_index":838,"title":{},"body":{"components/AuthComponent.html":{}}}],["403",{"_index":1031,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["450",{"_index":3506,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["5",{"_index":1634,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["5.0.31",{"_index":3617,"title":{},"body":{"dependencies.html":{}}}],["50",{"_index":381,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{}}}],["5000",{"_index":2755,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["56",{"_index":1774,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["5621",{"_index":3511,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["56281",{"_index":3500,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["6",{"_index":1636,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"pipes/TokenRatioPipe.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["6.6.0",{"_index":3630,"title":{},"body":{"dependencies.html":{}}}],["6/6",{"_index":3554,"title":{},"body":{"coverage.html":{}}}],["60",{"_index":3589,"title":{},"body":{"coverage.html":{},"license.html":{}}}],["6b",{"_index":4140,"title":{},"body":{"license.html":{}}}],["6d",{"_index":4161,"title":{},"body":{"license.html":{}}}],["6rem",{"_index":634,"title":{},"body":{"components/AdminComponent.html":{}}}],["7",{"_index":4082,"title":{},"body":{"license.html":{}}}],["768px",{"_index":675,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["8",{"_index":3372,"title":{},"body":{"injectables/TransactionService.html":{}}}],["8.2.1",{"_index":3622,"title":{},"body":{"dependencies.html":{}}}],["8/8",{"_index":3544,"title":{},"body":{"coverage.html":{}}}],["8000000",{"_index":3386,"title":{},"body":{"injectables/TransactionService.html":{}}}],["817",{"_index":3516,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["8996",{"_index":4533,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9.0.2",{"_index":3601,"title":{},"body":{"dependencies.html":{}}}],["9/9",{"_index":3541,"title":{},"body":{"coverage.html":{}}}],["99000",{"_index":2478,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["9981",{"_index":2482,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["99999999999999998976",{"_index":2466,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["_eth",{"_index":3167,"title":{},"body":{"components/TokensComponent.html":{}}}],["_models",{"_index":592,"title":{},"body":{"components/AdminComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["abi",{"_index":147,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"injectables/TransactionService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["abicoder",{"_index":3373,"title":{},"body":{"injectables/TransactionService.html":{}}}],["abicoder.encode",{"_index":3375,"title":{},"body":{"injectables/TransactionService.html":{}}}],["ability",{"_index":4206,"title":{},"body":{"license.html":{}}}],["above",{"_index":2535,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["absence",{"_index":4083,"title":{},"body":{"license.html":{}}}],["absolute",{"_index":4469,"title":{},"body":{"license.html":{}}}],["absolutely",{"_index":4499,"title":{},"body":{"license.html":{}}}],["abstractcontrol",{"_index":1304,"title":{},"body":{"classes/CustomValidator.html":{}}}],["abuse",{"_index":3855,"title":{},"body":{"license.html":{}}}],["academy",{"_index":1923,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["accept",{"_index":4298,"title":{},"body":{"license.html":{}}}],["acceptable",{"_index":877,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["acceptance",{"_index":4297,"title":{},"body":{"license.html":{}}}],["accepted",{"_index":2927,"title":{},"body":{"guards/RoleGuard.html":{}}}],["acces",{"_index":2366,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["access",{"_index":862,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["accessible",{"_index":4365,"title":{},"body":{"license.html":{}}}],["accessors",{"_index":211,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["accompanied",{"_index":4122,"title":{},"body":{"license.html":{}}}],["accompanies",{"_index":4473,"title":{},"body":{"license.html":{}}}],["accord",{"_index":4081,"title":{},"body":{"license.html":{}}}],["according",{"_index":1464,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["accordingly",{"_index":1396,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["account",{"_index":91,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"miscellaneous/variables.html":{}}}],["account'},{'name",{"_index":305,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["account.component",{"_index":470,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["account.component.html",{"_index":1221,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.scss",{"_index":1220,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts",{"_index":1219,"title":{},"body":{"components/CreateAccountComponent.html":{},"coverage.html":{}}}],["account.component.ts:15",{"_index":1234,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:16",{"_index":1235,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:17",{"_index":1236,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:18",{"_index":1233,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:19",{"_index":1232,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:20",{"_index":1231,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:21",{"_index":1228,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:29",{"_index":1229,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:60",{"_index":1238,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:64",{"_index":1230,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.type",{"_index":424,"title":{},"body":{"components/AccountsComponent.html":{}}}],["account/create",{"_index":469,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/CreateAccountComponent.html":{},"coverage.html":{}}}],["accountant",{"_index":2009,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["accountdetails",{"_index":1,"title":{"interfaces/AccountDetails.html":{}},"body":{"interfaces/AccountDetails.html":{},"components/AccountsComponent.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["accountdetailscomponent",{"_index":293,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["accountindex",{"_index":61,"title":{"classes/AccountIndex.html":{}},"body":{"classes/AccountIndex.html":{},"coverage.html":{}}}],["accountinfo",{"_index":3359,"title":{},"body":{"injectables/TransactionService.html":{}}}],["accountinfo.vcard",{"_index":3361,"title":{},"body":{"injectables/TransactionService.html":{}}}],["accounts",{"_index":67,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"modules/PagesRoutingModule.html":{},"components/SidebarComponent.html":{}}}],["accounts'},{'name",{"_index":296,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["accounts.component.html",{"_index":346,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounts.component.scss",{"_index":345,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounts.push(account",{"_index":173,"title":{},"body":{"classes/AccountIndex.html":{}}}],["accounts/${strip0x(account.identities.evm[`bloxberg:${environment.bloxbergchainid}`][0",{"_index":420,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounts/${strip0x(res.identities.evm[`bloxberg:${environment.bloxbergchainid}`][0",{"_index":276,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["accountscomponent",{"_index":295,"title":{"components/AccountsComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["accountsearchcomponent",{"_index":176,"title":{"components/AccountSearchComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["accountsmodule",{"_index":438,"title":{"modules/AccountsModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules.html":{},"overview.html":{}}}],["accountsroutingmodule",{"_index":448,"title":{"modules/AccountsRoutingModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["accountstype",{"_index":347,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounttype",{"_index":427,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{}}}],["accounttypes",{"_index":348,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["achieve",{"_index":4479,"title":{},"body":{"license.html":{}}}],["acknowledges",{"_index":4020,"title":{},"body":{"license.html":{}}}],["acquired",{"_index":4344,"title":{},"body":{"license.html":{}}}],["action",{"_index":511,"title":{"interfaces/Action.html":{}},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["action.action",{"_index":626,"title":{},"body":{"components/AdminComponent.html":{}}}],["action.approval",{"_index":631,"title":{},"body":{"components/AdminComponent.html":{}}}],["action.id",{"_index":2539,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["action.role",{"_index":625,"title":{},"body":{"components/AdminComponent.html":{}}}],["action.user",{"_index":624,"title":{},"body":{"components/AdminComponent.html":{}}}],["actions",{"_index":560,"title":{},"body":{"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["actions.find((action",{"_index":2538,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["activatedroute",{"_index":3064,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["activatedroutesnapshot",{"_index":874,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["activatedroutestub",{"_index":519,"title":{"classes/ActivatedRouteStub.html":{}},"body":{"classes/ActivatedRouteStub.html":{},"coverage.html":{}}}],["activateroute",{"_index":523,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["active",{"_index":891,"title":{},"body":{"guards/AuthGuard.html":{}}}],["activities",{"_index":3934,"title":{},"body":{"license.html":{}}}],["activity",{"_index":4390,"title":{},"body":{"license.html":{}}}],["actual",{"_index":4370,"title":{},"body":{"license.html":{}}}],["actual_component",{"_index":343,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["actually",{"_index":4183,"title":{},"body":{"license.html":{}}}],["adapt",{"_index":3907,"title":{},"body":{"license.html":{}}}],["add",{"_index":531,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"components/AuthComponent.html":{},"license.html":{}}}],["add0x",{"_index":3321,"title":{},"body":{"injectables/TransactionService.html":{}}}],["add0x(tohex(tx.serializerlp",{"_index":3403,"title":{},"body":{"injectables/TransactionService.html":{}}}],["added",{"_index":4080,"title":{},"body":{"license.html":{}}}],["additional",{"_index":4094,"title":{},"body":{"license.html":{}}}],["address",{"_index":95,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["addressed",{"_index":3904,"title":{},"body":{"license.html":{}}}],["addresses",{"_index":137,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addressof",{"_index":3093,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressof('sarafu'",{"_index":3103,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressof('sarafu",{"_index":3112,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressof(identifier",{"_index":3098,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressreturned",{"_index":1136,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["addresssearchform",{"_index":197,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addresssearchformstub",{"_index":214,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addresssearchloading",{"_index":198,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addresssearchsubmitted",{"_index":199,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addtoaccountregistry",{"_index":80,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addtoaccountregistry('0xc0ffee254729296a45a3885639ac7e10f9d54979'",{"_index":111,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addtoaccountregistry('0xc0ffee254729296a45a3885639ac7e10f9d54979",{"_index":162,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addtoaccountregistry(address",{"_index":99,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addtransaction",{"_index":3282,"title":{},"body":{"injectables/TransactionService.html":{}}}],["addtransaction(transaction",{"_index":3291,"title":{},"body":{"injectables/TransactionService.html":{}}}],["admin",{"_index":557,"title":{},"body":{"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"modules/PagesRoutingModule.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"classes/UserServiceStub.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["admin'},{'name",{"_index":299,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["admin.component.html",{"_index":559,"title":{},"body":{"components/AdminComponent.html":{}}}],["admin.component.scss",{"_index":558,"title":{},"body":{"components/AdminComponent.html":{}}}],["admin_reserve",{"_index":3002,"title":{},"body":{"components/SettingsComponent.html":{}}}],["admincomponent",{"_index":298,"title":{"components/AdminComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["adminmodule",{"_index":635,"title":{"modules/AdminModule.html":{}},"body":{"modules/AdminModule.html":{},"modules.html":{},"overview.html":{}}}],["adminroutingmodule",{"_index":639,"title":{"modules/AdminRoutingModule.html":{}},"body":{"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["adopted",{"_index":4056,"title":{},"body":{"license.html":{}}}],["adversely",{"_index":4214,"title":{},"body":{"license.html":{}}}],["advised",{"_index":4460,"title":{},"body":{"license.html":{}}}],["affects",{"_index":4215,"title":{},"body":{"license.html":{}}}],["affero",{"_index":4411,"title":{},"body":{"license.html":{}}}],["affirmed",{"_index":4327,"title":{},"body":{"license.html":{}}}],["affirms",{"_index":4016,"title":{},"body":{"license.html":{}}}],["afterviewinit",{"_index":3416,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["again",{"_index":696,"title":{},"body":{"components/AppComponent.html":{}}}],["against",{"_index":3687,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{}}}],["age",{"_index":10,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["agent",{"_index":2007,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["aggregate",{"_index":4109,"title":{},"body":{"license.html":{}}}],["agree",{"_index":4406,"title":{},"body":{"license.html":{}}}],["agreed",{"_index":4447,"title":{},"body":{"license.html":{}}}],["agreement",{"_index":4356,"title":{},"body":{"license.html":{}}}],["agrovet",{"_index":2290,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["aim",{"_index":3851,"title":{},"body":{"license.html":{}}}],["airtime",{"_index":2369,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["alert('access",{"_index":1415,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["alert('account",{"_index":277,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["alg",{"_index":1187,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["algo",{"_index":41,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["alleging",{"_index":4334,"title":{},"body":{"license.html":{}}}],["allow",{"_index":3874,"title":{},"body":{"license.html":{}}}],["allowed",{"_index":1417,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"license.html":{}}}],["allows",{"_index":69,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["along",{"_index":4085,"title":{},"body":{"license.html":{}}}],["alpha.3",{"_index":3613,"title":{},"body":{"dependencies.html":{}}}],["alpha.6",{"_index":3609,"title":{},"body":{"dependencies.html":{}}}],["already",{"_index":116,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{}}}],["alternative",{"_index":4136,"title":{},"body":{"license.html":{}}}],["although",{"_index":3847,"title":{},"body":{"license.html":{}}}],["amani",{"_index":1664,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["amount",{"_index":3255,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["ancillary",{"_index":4300,"title":{},"body":{"license.html":{}}}],["and/or",{"_index":3831,"title":{},"body":{"license.html":{}}}],["andshow",{"_index":4503,"title":{},"body":{"license.html":{}}}],["angular",{"_index":466,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AppModule.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"modules/TransactionsModule.html":{},"dependencies.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["angular/animations",{"_index":591,"title":{},"body":{"components/AdminComponent.html":{},"dependencies.html":{}}}],["angular/cdk",{"_index":3594,"title":{},"body":{"dependencies.html":{}}}],["angular/cli",{"_index":3701,"title":{},"body":{"index.html":{}}}],["angular/common",{"_index":457,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"dependencies.html":{}}}],["angular/common/http",{"_index":762,"title":{},"body":{"modules/AppModule.html":{},"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["angular/compiler",{"_index":3596,"title":{},"body":{"dependencies.html":{}}}],["angular/core",{"_index":245,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"dependencies.html":{}}}],["angular/forms",{"_index":247,"title":{},"body":{"components/AccountSearchComponent.html":{},"modules/AccountsModule.html":{},"components/AuthComponent.html":{},"modules/AuthModule.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/OrganizationComponent.html":{},"modules/SettingsModule.html":{},"dependencies.html":{}}}],["angular/material",{"_index":3597,"title":{},"body":{"dependencies.html":{}}}],["angular/material/button",{"_index":482,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/card",{"_index":484,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/checkbox",{"_index":474,"title":{},"body":{"modules/AccountsModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/core",{"_index":493,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"classes/CustomErrorStateMatcher.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/dialog",{"_index":1340,"title":{},"body":{"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{}}}],["angular/material/form",{"_index":479,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/icon",{"_index":486,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/input",{"_index":477,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/menu",{"_index":3024,"title":{},"body":{"modules/SettingsModule.html":{}}}],["angular/material/paginator",{"_index":391,"title":{},"body":{"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/progress",{"_index":495,"title":{},"body":{"modules/AccountsModule.html":{}}}],["angular/material/radio",{"_index":3022,"title":{},"body":{"modules/SettingsModule.html":{}}}],["angular/material/select",{"_index":488,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/sidenav",{"_index":3186,"title":{},"body":{"modules/TokensModule.html":{}}}],["angular/material/snack",{"_index":500,"title":{},"body":{"modules/AccountsModule.html":{},"components/TransactionDetailsComponent.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/sort",{"_index":392,"title":{},"body":{"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/table",{"_index":390,"title":{},"body":{"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/tabs",{"_index":491,"title":{},"body":{"modules/AccountsModule.html":{}}}],["angular/material/toolbar",{"_index":3188,"title":{},"body":{"modules/TokensModule.html":{}}}],["angular/platform",{"_index":753,"title":{},"body":{"modules/AppModule.html":{},"pipes/SafePipe.html":{},"dependencies.html":{}}}],["angular/router",{"_index":250,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsRoutingModule.html":{},"classes/ActivatedRouteStub.html":{},"modules/AdminRoutingModule.html":{},"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthRoutingModule.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"modules/PagesRoutingModule.html":{},"guards/RoleGuard.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"modules/TokensRoutingModule.html":{},"components/TransactionDetailsComponent.html":{},"modules/TransactionsRoutingModule.html":{},"dependencies.html":{}}}],["angular/service",{"_index":683,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"dependencies.html":{}}}],["animate",{"_index":586,"title":{},"body":{"components/AdminComponent.html":{}}}],["animate('225ms",{"_index":605,"title":{},"body":{"components/AdminComponent.html":{}}}],["animations",{"_index":593,"title":{},"body":{"components/AdminComponent.html":{}}}],["anti",{"_index":4043,"title":{},"body":{"license.html":{}}}],["anyone",{"_index":4092,"title":{},"body":{"license.html":{}}}],["anything",{"_index":3920,"title":{},"body":{"license.html":{}}}],["api",{"_index":2497,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["app",{"_index":191,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"index.html":{}}}],["app.component.html",{"_index":647,"title":{},"body":{"components/AppComponent.html":{}}}],["app.component.scss",{"_index":646,"title":{},"body":{"components/AppComponent.html":{}}}],["app.module",{"_index":3716,"title":{},"body":{"index.html":{}}}],["app/_eth",{"_index":3131,"title":{},"body":{"injectables/TokenService.html":{}}}],["app/_guards",{"_index":765,"title":{},"body":{"modules/AppModule.html":{},"modules/AppRoutingModule.html":{}}}],["app/_helpers",{"_index":248,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"modules/AppModule.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{},"injectables/RegistryService.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["app/_helpers/global",{"_index":962,"title":{},"body":{"injectables/AuthService.html":{}}}],["app/_interceptors",{"_index":769,"title":{},"body":{"modules/AppModule.html":{}}}],["app/_models",{"_index":396,"title":{},"body":{"components/AccountsComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["app/_models/account",{"_index":1197,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["app/_models/staff",{"_index":2988,"title":{},"body":{"components/SettingsComponent.html":{}}}],["app/_pgp",{"_index":771,"title":{},"body":{"modules/AppModule.html":{},"injectables/AuthService.html":{}}}],["app/_pgp/pgp",{"_index":2819,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["app/_services",{"_index":249,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"interceptors/ErrorInterceptor.html":{},"components/SettingsComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["app/_services/auth.service",{"_index":3327,"title":{},"body":{"injectables/TransactionService.html":{}}}],["app/_services/error",{"_index":959,"title":{},"body":{"injectables/AuthService.html":{}}}],["app/_services/logging.service",{"_index":958,"title":{},"body":{"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{}}}],["app/_services/registry.service",{"_index":1119,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["app/_services/transaction.service",{"_index":1118,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["app/_services/user.service",{"_index":3316,"title":{},"body":{"injectables/TransactionService.html":{}}}],["app/app",{"_index":756,"title":{},"body":{"modules/AppModule.html":{}}}],["app/app.component",{"_index":757,"title":{},"body":{"modules/AppModule.html":{}}}],["app/auth/_directives/password",{"_index":908,"title":{},"body":{"modules/AuthModule.html":{}}}],["app/auth/auth",{"_index":906,"title":{},"body":{"modules/AuthModule.html":{}}}],["app/auth/auth.component",{"_index":907,"title":{},"body":{"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{}}}],["app/shared/_directives/menu",{"_index":3034,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/_pipes/safe.pipe",{"_index":3039,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/_pipes/token",{"_index":3036,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/error",{"_index":1355,"title":{},"body":{"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{}}}],["app/shared/footer/footer.component",{"_index":3032,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/shared.module",{"_index":461,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["app/shared/sidebar/sidebar.component",{"_index":3033,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/topbar/topbar.component",{"_index":3031,"title":{},"body":{"modules/SharedModule.html":{}}}],["appcomponent",{"_index":300,"title":{"components/AppComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["applicable",{"_index":3926,"title":{},"body":{"license.html":{}}}],["application",{"_index":142,"title":{},"body":{"classes/AccountIndex.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/TokenRegistry.html":{}}}],["application/json",{"_index":982,"title":{},"body":{"injectables/AuthService.html":{}}}],["applications",{"_index":4511,"title":{},"body":{"license.html":{}}}],["applied",{"_index":3881,"title":{},"body":{"license.html":{}}}],["applies",{"_index":3788,"title":{},"body":{"license.html":{}}}],["apply",{"_index":3792,"title":{},"body":{"license.html":{}}}],["appmenuselection",{"_index":1583,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["appmenuselection]'},{'name",{"_index":336,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["appmenutoggle",{"_index":1596,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["appmenutoggle]'},{'name",{"_index":338,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["appmodule",{"_index":740,"title":{"modules/AppModule.html":{}},"body":{"modules/AppModule.html":{},"modules.html":{},"overview.html":{}}}],["apppasswordtoggle",{"_index":2885,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["apppasswordtoggle]'},{'name",{"_index":340,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["appropriate",{"_index":1462,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["appropriately",{"_index":4074,"title":{},"body":{"license.html":{}}}],["approuterlink",{"_index":342,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["approutingmodule",{"_index":746,"title":{"modules/AppRoutingModule.html":{}},"body":{"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["approval",{"_index":513,"title":{},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["approvalstatus",{"_index":561,"title":{},"body":{"components/AdminComponent.html":{}}}],["approvalstatus(action.approval",{"_index":627,"title":{},"body":{"components/AdminComponent.html":{}}}],["approvalstatus(status",{"_index":566,"title":{},"body":{"components/AdminComponent.html":{}}}],["approve",{"_index":583,"title":{},"body":{"components/AdminComponent.html":{}}}],["approveaction",{"_index":562,"title":{},"body":{"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{}}}],["approveaction(action",{"_index":569,"title":{},"body":{"components/AdminComponent.html":{}}}],["approveaction(action.id",{"_index":618,"title":{},"body":{"components/AdminComponent.html":{}}}],["approveaction(id",{"_index":3517,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["approved",{"_index":615,"title":{},"body":{"components/AdminComponent.html":{},"classes/UserServiceStub.html":{}}}],["approximates",{"_index":4468,"title":{},"body":{"license.html":{}}}],["area",{"_index":29,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["area_name",{"_index":30,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["area_type",{"_index":31,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["areaname",{"_index":516,"title":{"interfaces/AreaName.html":{}},"body":{"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{}}}],["areaname.locations.includes(stringfromurl",{"_index":2554,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areaname.name",{"_index":2550,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areanamelist",{"_index":2548,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areanames",{"_index":1222,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["areanames.find((areaname",{"_index":2553,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areanames.map((areaname",{"_index":2549,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatype",{"_index":518,"title":{"interfaces/AreaType.html":{}},"body":{"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{}}}],["areatype.area.includes(stringfromurl",{"_index":2562,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatype.name",{"_index":2558,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatypelist",{"_index":2556,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatypes",{"_index":1889,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["areatypes.find((areatype",{"_index":2561,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatypes.map((areatype",{"_index":2557,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["args",{"_index":2958,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{}}}],["arguments",{"_index":662,"title":{},"body":{"components/AppComponent.html":{}}}],["arise",{"_index":3862,"title":{},"body":{"license.html":{}}}],["arising",{"_index":4451,"title":{},"body":{"license.html":{}}}],["arr",{"_index":3649,"title":{},"body":{"miscellaneous/functions.html":{}}}],["arrange",{"_index":4366,"title":{},"body":{"license.html":{}}}],["arrangement",{"_index":4378,"title":{},"body":{"license.html":{}}}],["array",{"_index":135,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"components/AdminComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"injectables/AuthService.html":{},"interfaces/Category.html":{},"components/CreateAccountComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/SettingsComponent.html":{},"classes/TokenRegistry.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["array.from",{"_index":3138,"title":{},"body":{"injectables/TokenService.html":{}}}],["arraybuffer",{"_index":1010,"title":{},"body":{"injectables/AuthService.html":{}}}],["arraydata",{"_index":3666,"title":{},"body":{"miscellaneous/functions.html":{}}}],["arraysum",{"_index":3548,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["arraysum(arr",{"_index":3647,"title":{},"body":{"miscellaneous/functions.html":{}}}],["article",{"_index":4052,"title":{},"body":{"license.html":{}}}],["artifacts",{"_index":3724,"title":{},"body":{"index.html":{}}}],["artisan",{"_index":2117,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["artist",{"_index":2006,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["askari",{"_index":2008,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["asking",{"_index":3809,"title":{},"body":{"license.html":{}}}],["assert",{"_index":3826,"title":{},"body":{"license.html":{}}}],["assets",{"_index":4317,"title":{},"body":{"license.html":{}}}],["assets/js/block",{"_index":2915,"title":{},"body":{"injectables/RegistryService.html":{}}}],["assigned",{"_index":3104,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["associated",{"_index":881,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["assume",{"_index":4442,"title":{},"body":{"license.html":{}}}],["assumption",{"_index":4472,"title":{},"body":{"license.html":{}}}],["assumptions",{"_index":4259,"title":{},"body":{"license.html":{}}}],["assures",{"_index":3884,"title":{},"body":{"license.html":{}}}],["async",{"_index":79,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["atomic",{"_index":967,"title":{},"body":{"injectables/AuthService.html":{}}}],["attach",{"_index":4481,"title":{},"body":{"license.html":{}}}],["attempt",{"_index":4273,"title":{},"body":{"license.html":{}}}],["attributed",{"_index":3842,"title":{},"body":{"license.html":{}}}],["attributions",{"_index":4242,"title":{},"body":{"license.html":{}}}],["auth",{"_index":790,"title":{},"body":{"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{}}}],["auth'},{'name",{"_index":303,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["auth.component.html",{"_index":801,"title":{},"body":{"components/AuthComponent.html":{}}}],["auth.component.scss",{"_index":800,"title":{},"body":{"components/AuthComponent.html":{}}}],["authcomponent",{"_index":302,"title":{"components/AuthComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["authenticate",{"_index":1014,"title":{},"body":{"injectables/AuthService.html":{}}}],["authentication",{"_index":863,"title":{},"body":{"guards/AuthGuard.html":{},"components/SettingsComponent.html":{}}}],["authguard",{"_index":764,"title":{"guards/AuthGuard.html":{}},"body":{"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"coverage.html":{}}}],["authheader",{"_index":1012,"title":{},"body":{"injectables/AuthService.html":{}}}],["authmodule",{"_index":900,"title":{"modules/AuthModule.html":{}},"body":{"modules/AuthModule.html":{},"modules.html":{},"overview.html":{}}}],["author",{"_index":4241,"title":{},"body":{"license.html":{}}}],["authorization",{"_index":4194,"title":{},"body":{"license.html":{}}}],["authorized",{"_index":1032,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["authorizes",{"_index":4339,"title":{},"body":{"license.html":{}}}],["authorizing",{"_index":4382,"title":{},"body":{"license.html":{}}}],["authors",{"_index":3791,"title":{},"body":{"license.html":{}}}],["authroutingmodule",{"_index":904,"title":{"modules/AuthRoutingModule.html":{}},"body":{"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["authservice",{"_index":657,"title":{"injectables/AuthService.html":{}},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"components/SettingsComponent.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["automatic",{"_index":4309,"title":{},"body":{"license.html":{}}}],["automatically",{"_index":3707,"title":{},"body":{"index.html":{},"license.html":{}}}],["automerge",{"_index":985,"title":{},"body":{"injectables/AuthService.html":{}}}],["availability",{"_index":103,"title":{},"body":{"classes/AccountIndex.html":{}}}],["available",{"_index":122,"title":{},"body":{"classes/AccountIndex.html":{},"components/AppComponent.html":{},"license.html":{},"modules.html":{}}}],["avenue",{"_index":3672,"title":{},"body":{"miscellaneous/functions.html":{}}}],["avocado",{"_index":2133,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["avoid",{"_index":3878,"title":{},"body":{"license.html":{}}}],["await",{"_index":163,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["away",{"_index":3778,"title":{},"body":{"license.html":{}}}],["b",{"_index":3977,"title":{},"body":{"license.html":{}}}],["baby",{"_index":1912,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["babycare",{"_index":1911,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["backend",{"_index":1398,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["backend.ts",{"_index":1607,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["backend.ts:1097",{"_index":1611,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["bag",{"_index":2327,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bajia",{"_index":2135,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["baker",{"_index":2010,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["balance",{"_index":11,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/AccountsComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"interfaces/Token.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["bamburi",{"_index":1828,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["banana",{"_index":2140,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bananas",{"_index":2141,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bangla",{"_index":1810,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bangladesh",{"_index":1811,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bar",{"_index":501,"title":{},"body":{"modules/AccountsModule.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TransactionDetailsComponent.html":{},"modules/TransactionsModule.html":{},"miscellaneous/variables.html":{}}}],["barafu",{"_index":2285,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["barakoa",{"_index":2292,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["barber",{"_index":2013,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["based",{"_index":3916,"title":{},"body":{"license.html":{}}}],["basic",{"_index":4008,"title":{},"body":{"license.html":{}}}],["bead",{"_index":2328,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beadwork",{"_index":2011,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beans",{"_index":2137,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bearer",{"_index":980,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/HttpConfigInterceptor.html":{}}}],["beautician",{"_index":2124,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beauty",{"_index":2012,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beba",{"_index":2396,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bebabeba",{"_index":2397,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bed",{"_index":2332,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bedding",{"_index":2330,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["behalf",{"_index":4031,"title":{},"body":{"license.html":{}}}],["behave",{"_index":1272,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["behaviorsubject",{"_index":3130,"title":{},"body":{"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["behaviorsubject(this.transactions",{"_index":3308,"title":{},"body":{"injectables/TransactionService.html":{}}}],["being",{"_index":1311,"title":{},"body":{"classes/CustomValidator.html":{},"license.html":{}}}],["believe",{"_index":4375,"title":{},"body":{"license.html":{}}}],["below",{"_index":4038,"title":{},"body":{"license.html":{}}}],["belt",{"_index":2329,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["benefit",{"_index":4369,"title":{},"body":{"license.html":{}}}],["best",{"_index":4478,"title":{},"body":{"license.html":{}}}],["between",{"_index":4006,"title":{},"body":{"license.html":{}}}],["beyond",{"_index":4111,"title":{},"body":{"license.html":{}}}],["bezier(0.4",{"_index":607,"title":{},"body":{"components/AdminComponent.html":{}}}],["bhajia",{"_index":2134,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biashara",{"_index":2053,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bicycle",{"_index":2399,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bike",{"_index":2398,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["binding",{"_index":1289,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["bio",{"_index":3495,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["biogas",{"_index":2428,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biringanya",{"_index":2139,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biscuits",{"_index":2138,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bit",{"_index":1104,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bitwise",{"_index":1144,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["block",{"_index":852,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"dependencies.html":{}}}],["blockchain",{"_index":151,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["blockfilter",{"_index":1188,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["blockfilterbinstr",{"_index":1167,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blockfilterbinstr.charcodeat(i",{"_index":1174,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocksbloom",{"_index":1185,"title":{"classes/BlocksBloom.html":{}},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{}}}],["blocksync",{"_index":1080,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocksync(address",{"_index":1089,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocksyncservice",{"_index":1077,"title":{"injectables/BlockSyncService.html":{}},"body":{"injectables/BlockSyncService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["blocktxfilter",{"_index":1189,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["blocktxfilterbinstr",{"_index":1175,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocktxfilterbinstr.charcodeat(i",{"_index":1180,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomblockbytes",{"_index":1109,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomblocktxbytes",{"_index":1111,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomrounds",{"_index":1112,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloxberg:8996",{"_index":25,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["bloxbergchainid",{"_index":4532,"title":{},"body":{"miscellaneous/variables.html":{}}}],["boda",{"_index":2401,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bodaboda",{"_index":2402,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["body",{"_index":1382,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["body.approval",{"_index":2542,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["bofu",{"_index":1665,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bombolulu",{"_index":1832,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bomet",{"_index":1874,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bone",{"_index":1169,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bone.map((e",{"_index":1171,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["book",{"_index":1894,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["boolean",{"_index":227,"title":{},"body":{"components/AccountSearchComponent.html":{},"interfaces/Action.html":{},"components/AdminComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/LoggingService.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"miscellaneous/functions.html":{}}}],["bootstrap",{"_index":442,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"dependencies.html":{},"overview.html":{}}}],["both",{"_index":3836,"title":{},"body":{"license.html":{}}}],["botique",{"_index":2334,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["boutique",{"_index":2335,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["box",{"_index":1374,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"license.html":{}}}],["bread",{"_index":2225,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["break",{"_index":1413,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["brewer",{"_index":2131,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bricks",{"_index":2107,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["browse",{"_index":4517,"title":{},"body":{"modules.html":{}}}],["browser",{"_index":754,"title":{},"body":{"modules/AppModule.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"pipes/SafePipe.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"dependencies.html":{},"modules.html":{}}}],["browser/animations",{"_index":759,"title":{},"body":{"modules/AppModule.html":{}}}],["browseranimationsmodule",{"_index":758,"title":{},"body":{"modules/AppModule.html":{}}}],["browsermodule",{"_index":752,"title":{},"body":{"modules/AppModule.html":{}}}],["btwo",{"_index":1177,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["btwo.map((e",{"_index":1179,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["buck",{"_index":3497,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["build",{"_index":3717,"title":{},"body":{"index.html":{}}}],["build:dev",{"_index":3723,"title":{},"body":{"index.html":{}}}],["build:prod",{"_index":3727,"title":{},"body":{"index.html":{}}}],["bungoma",{"_index":1876,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["buru",{"_index":1788,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["busaa",{"_index":2212,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["busia",{"_index":1855,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["business",{"_index":1262,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["businesscategory",{"_index":1245,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["butcher",{"_index":2165,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["butchery",{"_index":2166,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["button",{"_index":632,"title":{},"body":{"components/AdminComponent.html":{},"injectables/AuthService.html":{}}}],["c",{"_index":3758,"title":{},"body":{"license.html":{}}}],["cabbages",{"_index":2214,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cachedtx.tx.txhash",{"_index":3333,"title":{},"body":{"injectables/TransactionService.html":{}}}],["cachesize",{"_index":3292,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["cafe",{"_index":2344,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cake",{"_index":2152,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["call",{"_index":2498,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["called",{"_index":3914,"title":{},"body":{"license.html":{}}}],["calls",{"_index":3676,"title":{},"body":{"miscellaneous/functions.html":{}}}],["can't",{"_index":2675,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["can\\'t",{"_index":693,"title":{},"body":{"components/AppComponent.html":{}}}],["canactivate",{"_index":796,"title":{},"body":{"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["canactivate(route",{"_index":873,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["candebug",{"_index":1542,"title":{},"body":{"injectables/LoggingService.html":{}}}],["candy",{"_index":2340,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["capabilities",{"_index":872,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"guards/RoleGuard.html":{}}}],["capenter",{"_index":2019,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["car",{"_index":2017,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["card",{"_index":2781,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["care",{"_index":1913,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["caretaker",{"_index":2016,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carpenter",{"_index":2029,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carrier",{"_index":2404,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carry",{"_index":4087,"title":{},"body":{"license.html":{}}}],["cart",{"_index":2403,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carwash",{"_index":2025,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["case",{"_index":1410,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["cases",{"_index":4179,"title":{},"body":{"license.html":{}}}],["cashier",{"_index":1618,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cassava",{"_index":2151,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["casual",{"_index":2014,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["catch",{"_index":402,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{},"injectables/AuthService.html":{}}}],["catch((e",{"_index":2851,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["catcherror",{"_index":682,"title":{},"body":{"components/AppComponent.html":{},"interceptors/ErrorInterceptor.html":{}}}],["catcherror((err",{"_index":1390,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["categories",{"_index":1223,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["categories.find((category",{"_index":2569,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["categories.map((category",{"_index":2565,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["category",{"_index":12,"title":{"interfaces/Category.html":{}},"body":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"components/CreateAccountComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"coverage.html":{}}}],["category.name",{"_index":2566,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["category.products.includes(stringfromurl",{"_index":2570,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["categorylist",{"_index":2564,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["catering",{"_index":2022,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["caught",{"_index":1384,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["cause",{"_index":4114,"title":{},"body":{"license.html":{}}}],["cdr",{"_index":2747,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["cease",{"_index":4277,"title":{},"body":{"license.html":{}}}],["cement",{"_index":2333,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["centralized",{"_index":1433,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["cereal",{"_index":2146,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cereals",{"_index":2153,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["certain",{"_index":1609,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["cessation",{"_index":4289,"title":{},"body":{"license.html":{}}}],["chai",{"_index":2149,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chakula",{"_index":2143,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["challenge",{"_index":998,"title":{},"body":{"injectables/AuthService.html":{}}}],["chama",{"_index":2320,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["changamwe",{"_index":1822,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["change",{"_index":855,"title":{},"body":{"components/AuthComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/SettingsComponent.html":{},"classes/UserServiceStub.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["changed",{"_index":3840,"title":{},"body":{"license.html":{}}}],["changedetection",{"_index":188,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["changedetectionstrategy",{"_index":244,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["changedetectionstrategy.onpush",{"_index":189,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["changedetectorref",{"_index":2745,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["changing",{"_index":3769,"title":{},"body":{"license.html":{}}}],["chapati",{"_index":2145,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chapo",{"_index":2148,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["characterized",{"_index":4203,"title":{},"body":{"license.html":{}}}],["charcoal",{"_index":2430,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["charcol",{"_index":2429,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["charge",{"_index":3796,"title":{},"body":{"license.html":{}}}],["charging",{"_index":2077,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chart.js",{"_index":3605,"title":{},"body":{"dependencies.html":{}}}],["charts",{"_index":2871,"title":{},"body":{"modules/PagesModule.html":{},"dependencies.html":{}}}],["chartsmodule",{"_index":2869,"title":{},"body":{"modules/PagesModule.html":{}}}],["check",{"_index":832,"title":{},"body":{"components/AuthComponent.html":{},"index.html":{}}}],["checks",{"_index":119,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"guards/RoleGuard.html":{}}}],["chef",{"_index":2021,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chemicals",{"_index":2294,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chemist",{"_index":2293,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chibuga",{"_index":1666,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chicken",{"_index":2157,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chidzivuni",{"_index":1678,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chidzuvini",{"_index":1677,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chief",{"_index":1963,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigale",{"_index":1672,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigato",{"_index":1671,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigojoni",{"_index":1669,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikole",{"_index":1673,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikomani",{"_index":1667,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikomeni",{"_index":1676,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikuyu",{"_index":1679,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["children",{"_index":1933,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chilongoni",{"_index":1668,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chilumani",{"_index":1674,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chinguluni",{"_index":1670,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chipo",{"_index":2147,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chips",{"_index":2150,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chizingo",{"_index":1680,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chizini",{"_index":1675,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choma",{"_index":2208,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choo",{"_index":1977,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choose",{"_index":4426,"title":{},"body":{"license.html":{}}}],["choosing",{"_index":4430,"title":{},"body":{"license.html":{}}}],["christine",{"_index":1626,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["chumvi",{"_index":2213,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["church",{"_index":1957,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chv",{"_index":2295,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cic",{"_index":984,"title":{},"body":{"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"dependencies.html":{},"index.html":{},"license.html":{}}}],["cicada",{"_index":679,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/SidebarComponent.html":{},"index.html":{}}}],["ciccacheurl",{"_index":4543,"title":{},"body":{"miscellaneous/variables.html":{}}}],["cicconvert(event",{"_index":737,"title":{},"body":{"components/AppComponent.html":{}}}],["cicmetaurl",{"_index":4538,"title":{},"body":{"miscellaneous/variables.html":{}}}],["cicregistry",{"_index":2911,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["cictransfer(event",{"_index":733,"title":{},"body":{"components/AppComponent.html":{}}}],["cicussdurl",{"_index":4548,"title":{},"body":{"miscellaneous/variables.html":{}}}],["circumstances",{"_index":4036,"title":{},"body":{"license.html":{}}}],["circumvention",{"_index":4044,"title":{},"body":{"license.html":{}}}],["civil",{"_index":4471,"title":{},"body":{"license.html":{}}}],["claim",{"_index":4331,"title":{},"body":{"license.html":{}}}],["claims",{"_index":4341,"title":{},"body":{"license.html":{}}}],["class",{"_index":60,"title":{"classes/AccountIndex.html":{},"classes/ActivatedRouteStub.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"classes/HttpError.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"classes/TokenServiceStub.html":{},"classes/Transaction.html":{},"classes/TransactionServiceStub.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{}},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"coverage.html":{},"license.html":{}}}],["classes",{"_index":62,"title":{},"body":{"classes/AccountIndex.html":{},"classes/ActivatedRouteStub.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"classes/HttpError.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"classes/TokenServiceStub.html":{},"classes/Transaction.html":{},"classes/TransactionServiceStub.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"overview.html":{}}}],["cleaner",{"_index":1990,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cleaning",{"_index":1983,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clear",{"_index":4147,"title":{},"body":{"license.html":{}}}],["clearkeysinkeyring",{"_index":2592,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["clearly",{"_index":3833,"title":{},"body":{"license.html":{}}}],["cles",{"_index":3508,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["cli",{"_index":3696,"title":{},"body":{"index.html":{}}}],["click",{"_index":1592,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["client",{"_index":1117,"title":{},"body":{"injectables/BlockSyncService.html":{},"interceptors/ErrorInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"dependencies.html":{},"index.html":{},"license.html":{}}}],["clinic",{"_index":2307,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clinical",{"_index":2308,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clipboard",{"_index":3654,"title":{},"body":{"miscellaneous/functions.html":{}}}],["close",{"_index":3246,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["closely",{"_index":4467,"title":{},"body":{"license.html":{}}}],["cloth",{"_index":2341,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["club",{"_index":2389,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clues",{"_index":1403,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["cluster_accountsmodule",{"_index":445,"title":{},"body":{"modules/AccountsModule.html":{},"overview.html":{}}}],["cluster_accountsmodule_declarations",{"_index":446,"title":{},"body":{"modules/AccountsModule.html":{},"overview.html":{}}}],["cluster_accountsmodule_imports",{"_index":447,"title":{},"body":{"modules/AccountsModule.html":{},"overview.html":{}}}],["cluster_adminmodule",{"_index":636,"title":{},"body":{"modules/AdminModule.html":{},"overview.html":{}}}],["cluster_adminmodule_declarations",{"_index":637,"title":{},"body":{"modules/AdminModule.html":{},"overview.html":{}}}],["cluster_adminmodule_imports",{"_index":638,"title":{},"body":{"modules/AdminModule.html":{},"overview.html":{}}}],["cluster_appmodule",{"_index":741,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_bootstrap",{"_index":744,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_declarations",{"_index":743,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_imports",{"_index":742,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_providers",{"_index":745,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_authmodule",{"_index":901,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_authmodule_declarations",{"_index":903,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_authmodule_imports",{"_index":902,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_pagesmodule",{"_index":2862,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_pagesmodule_declarations",{"_index":2864,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_pagesmodule_imports",{"_index":2863,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_settingsmodule",{"_index":3013,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_settingsmodule_declarations",{"_index":3015,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_settingsmodule_imports",{"_index":3014,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_sharedmodule",{"_index":3026,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_sharedmodule_declarations",{"_index":3027,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_sharedmodule_exports",{"_index":3028,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_tokensmodule",{"_index":3176,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_tokensmodule_declarations",{"_index":3178,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_tokensmodule_imports",{"_index":3177,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule",{"_index":3465,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_declarations",{"_index":3468,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_exports",{"_index":3467,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_imports",{"_index":3466,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["coach",{"_index":1895,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cobbler",{"_index":2024,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cobler",{"_index":2023,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["coconut",{"_index":2144,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["code",{"_index":1401,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"components/OrganizationComponent.html":{},"index.html":{},"license.html":{}}}],["coffee",{"_index":2156,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["collapsed",{"_index":604,"title":{},"body":{"components/AdminComponent.html":{}}}],["collect",{"_index":4408,"title":{},"body":{"license.html":{}}}],["collection",{"_index":1992,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["college",{"_index":1905,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["columnstodisplay",{"_index":3154,"title":{},"body":{"components/TokensComponent.html":{}}}],["combination",{"_index":4415,"title":{},"body":{"license.html":{}}}],["combine",{"_index":4412,"title":{},"body":{"license.html":{}}}],["combined",{"_index":4105,"title":{},"body":{"license.html":{}}}],["comes",{"_index":2689,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["command",{"_index":3750,"title":{},"body":{"index.html":{}}}],["commands",{"_index":3955,"title":{},"body":{"license.html":{}}}],["commas",{"_index":3671,"title":{},"body":{"miscellaneous/functions.html":{}}}],["comment",{"_index":3055,"title":{},"body":{"interfaces/Staff.html":{}}}],["commercial",{"_index":4188,"title":{},"body":{"license.html":{}}}],["commitment",{"_index":4357,"title":{},"body":{"license.html":{}}}],["common",{"_index":4182,"title":{},"body":{"license.html":{}}}],["commonmodule",{"_index":456,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["communication",{"_index":4004,"title":{},"body":{"license.html":{}}}],["community",{"_index":2306,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["compilation",{"_index":4101,"title":{},"body":{"license.html":{}}}],["compilation's",{"_index":4110,"title":{},"body":{"license.html":{}}}],["compilations",{"_index":4392,"title":{},"body":{"license.html":{}}}],["compiler",{"_index":3987,"title":{},"body":{"license.html":{}}}],["complete",{"_index":1632,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["compliance",{"_index":4314,"title":{},"body":{"license.html":{}}}],["comply",{"_index":4029,"title":{},"body":{"license.html":{}}}],["component",{"_index":175,"title":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthRoutingModule.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"modules/PagesRoutingModule.html":{},"guards/RoleGuard.html":{},"components/SettingsComponent.html":{},"modules/SettingsRoutingModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsRoutingModule.html":{},"coverage.html":{},"index.html":{},"license.html":{}}}],["component({selector",{"_index":1428,"title":{},"body":{"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{}}}],["component_template",{"_index":292,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["components",{"_index":177,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"overview.html":{}}}],["computer",{"_index":3929,"title":{},"body":{"license.html":{}}}],["computers",{"_index":3877,"title":{},"body":{"license.html":{}}}],["concerning",{"_index":4414,"title":{},"body":{"license.html":{}}}],["concerns",{"_index":4420,"title":{},"body":{"license.html":{}}}],["conditioned",{"_index":4387,"title":{},"body":{"license.html":{}}}],["conditions",{"_index":3888,"title":{},"body":{"license.html":{}}}],["conductor",{"_index":2409,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["config",{"_index":1502,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["config.interceptor.ts",{"_index":1499,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"coverage.html":{}}}],["config.interceptor.ts:10",{"_index":1501,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["config.interceptor.ts:21",{"_index":1503,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["configurations",{"_index":1500,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["confirm",{"_index":1308,"title":{},"body":{"classes/CustomValidator.html":{}}}],["confirm('approve",{"_index":617,"title":{},"body":{"components/AdminComponent.html":{}}}],["confirm('create",{"_index":1255,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["confirm('disapprove",{"_index":620,"title":{},"body":{"components/AdminComponent.html":{}}}],["confirm('new",{"_index":713,"title":{},"body":{"components/AppComponent.html":{}}}],["confirm('set",{"_index":2777,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["confirmpassword",{"_index":1322,"title":{},"body":{"classes/CustomValidator.html":{}}}],["congo",{"_index":1758,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["connection",{"_index":89,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["consequence",{"_index":4302,"title":{},"body":{"license.html":{}}}],["consequential",{"_index":4450,"title":{},"body":{"license.html":{}}}],["conservation",{"_index":1975,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consider",{"_index":4509,"title":{},"body":{"license.html":{}}}],["considered",{"_index":4261,"title":{},"body":{"license.html":{}}}],["consistent",{"_index":4348,"title":{},"body":{"license.html":{}}}],["console.log('here",{"_index":3525,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["console.log(arraysum([1",{"_index":3651,"title":{},"body":{"miscellaneous/functions.html":{}}}],["console.log(await",{"_index":110,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["console.log(copytoclipboard('hello",{"_index":3657,"title":{},"body":{"miscellaneous/functions.html":{}}}],["conspicuously",{"_index":4073,"title":{},"body":{"license.html":{}}}],["const",{"_index":48,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"modules/AccountsRoutingModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"guards/RoleGuard.html":{},"components/SettingsComponent.html":{},"modules/SettingsRoutingModule.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"modules/TokensRoutingModule.html":{},"injectables/TransactionService.html":{},"modules/TransactionsRoutingModule.html":{}}}],["constantly",{"_index":3872,"title":{},"body":{"license.html":{}}}],["constitutes",{"_index":4019,"title":{},"body":{"license.html":{}}}],["construction",{"_index":2020,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["constructor",{"_index":84,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["constructor(@inject(mat_dialog_data",{"_index":1341,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["constructor(authservice",{"_index":656,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/SettingsComponent.html":{}}}],["constructor(blocksyncservice",{"_index":3426,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["constructor(cdr",{"_index":2744,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["constructor(contractaddress",{"_index":85,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["constructor(data",{"_index":1334,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["constructor(dialog",{"_index":1348,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["constructor(elementref",{"_index":1585,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["constructor(errordialogservice",{"_index":1371,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["constructor(formbuilder",{"_index":215,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["constructor(httpclient",{"_index":927,"title":{},"body":{"injectables/AuthService.html":{},"injectables/LocationService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["constructor(initialparams",{"_index":535,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["constructor(keystore",{"_index":2800,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["constructor(logger",{"_index":1551,"title":{},"body":{"injectables/LoggingService.html":{}}}],["constructor(loggingservice",{"_index":1441,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"interceptors/LoggingInterceptor.html":{}}}],["constructor(message",{"_index":1472,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["constructor(private",{"_index":610,"title":{},"body":{"components/AdminComponent.html":{},"guards/AuthGuard.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"directives/PasswordToggleDirective.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"components/TokenDetailsComponent.html":{},"injectables/TokenService.html":{}}}],["constructor(public",{"_index":1357,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["constructor(route",{"_index":3063,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["constructor(router",{"_index":864,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"components/TransactionDetailsComponent.html":{}}}],["constructor(scanfilter",{"_index":2968,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["constructor(tokenservice",{"_index":3156,"title":{},"body":{"components/TokensComponent.html":{}}}],["constructor(transactionservice",{"_index":1086,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["constructor(userservice",{"_index":360,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{}}}],["construed",{"_index":4396,"title":{},"body":{"license.html":{}}}],["consult",{"_index":1904,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consultant",{"_index":1903,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consumer",{"_index":4166,"title":{},"body":{"license.html":{}}}],["contact",{"_index":4492,"title":{},"body":{"license.html":{}}}],["contain",{"_index":1402,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"license.html":{}}}],["contained",{"_index":3739,"title":{},"body":{"index.html":{}}}],["containing",{"_index":4244,"title":{},"body":{"license.html":{}}}],["contains",{"_index":879,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"index.html":{},"license.html":{}}}],["content",{"_index":719,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"license.html":{}}}],["content?.classlist.add('active",{"_index":729,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["content?.classlist.contains('active",{"_index":728,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["content?.classlist.remove('active",{"_index":731,"title":{},"body":{"components/AppComponent.html":{}}}],["content?.classlist.toggle('active",{"_index":1603,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["contents",{"_index":4352,"title":{},"body":{"license.html":{}}}],["context",{"_index":3981,"title":{},"body":{"license.html":{}}}],["continue",{"_index":4209,"title":{},"body":{"license.html":{}}}],["continued",{"_index":4196,"title":{},"body":{"license.html":{}}}],["contract",{"_index":54,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["contract's",{"_index":94,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["contractaddress",{"_index":75,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["contracts",{"_index":1138,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["contractual",{"_index":4258,"title":{},"body":{"license.html":{}}}],["contradict",{"_index":4402,"title":{},"body":{"license.html":{}}}],["contrast",{"_index":3780,"title":{},"body":{"license.html":{}}}],["contributor",{"_index":4338,"title":{},"body":{"license.html":{}}}],["contributor's",{"_index":4340,"title":{},"body":{"license.html":{}}}],["control",{"_index":1285,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"license.html":{}}}],["control.dirty",{"_index":1294,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["control.get('confirmpassword').seterrors",{"_index":1324,"title":{},"body":{"classes/CustomValidator.html":{}}}],["control.get('confirmpassword').value",{"_index":1323,"title":{},"body":{"classes/CustomValidator.html":{}}}],["control.get('password').value",{"_index":1321,"title":{},"body":{"classes/CustomValidator.html":{}}}],["control.invalid",{"_index":1293,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["control.touched",{"_index":1295,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["control.value",{"_index":1326,"title":{},"body":{"classes/CustomValidator.html":{}}}],["controlled",{"_index":4343,"title":{},"body":{"license.html":{}}}],["controls",{"_index":1271,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["convenient",{"_index":3947,"title":{},"body":{"license.html":{}}}],["conversion",{"_index":738,"title":{"classes/Conversion.html":{}},"body":{"components/AppComponent.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{}}}],["conversion.fromvalue",{"_index":3347,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.recipient",{"_index":3353,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.sender",{"_index":3352,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.tovalue",{"_index":3349,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.tx.txhash",{"_index":3345,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.type",{"_index":3346,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversions",{"_index":2488,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["converted",{"_index":3667,"title":{},"body":{"miscellaneous/functions.html":{}}}],["converting",{"_index":3669,"title":{},"body":{"miscellaneous/functions.html":{}}}],["converts",{"_index":3682,"title":{},"body":{"miscellaneous/functions.html":{}}}],["converttoparammap",{"_index":547,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["convey",{"_index":3936,"title":{},"body":{"license.html":{}}}],["conveyance",{"_index":4380,"title":{},"body":{"license.html":{}}}],["conveyed",{"_index":4204,"title":{},"body":{"license.html":{}}}],["conveying",{"_index":3942,"title":{},"body":{"license.html":{}}}],["conveys",{"_index":4257,"title":{},"body":{"license.html":{}}}],["cook",{"_index":2154,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["copied",{"_index":3245,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"miscellaneous/functions.html":{}}}],["copies",{"_index":3653,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{}}}],["copy",{"_index":3658,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{}}}],["copy.ts",{"_index":3550,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["copyaddress",{"_index":3208,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copyaddress(address",{"_index":3217,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copying",{"_index":3889,"title":{},"body":{"license.html":{}}}],["copyleft",{"_index":3771,"title":{},"body":{"license.html":{}}}],["copyright",{"_index":3757,"title":{},"body":{"license.html":{}}}],["copyrightable",{"_index":3899,"title":{},"body":{"license.html":{}}}],["copyrighted",{"_index":4033,"title":{},"body":{"license.html":{}}}],["copytoclipboard",{"_index":3226,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["copytoclipboard(address",{"_index":3243,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copytoclipboard(text",{"_index":3652,"title":{},"body":{"miscellaneous/functions.html":{}}}],["corn",{"_index":2155,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["correction",{"_index":4445,"title":{},"body":{"license.html":{}}}],["corresponding",{"_index":3990,"title":{},"body":{"license.html":{}}}],["cosmetics",{"_index":2314,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cost",{"_index":4134,"title":{},"body":{"license.html":{}}}],["counsellor",{"_index":1937,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["count",{"_index":168,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/TokenService.html":{}}}],["counterclaim",{"_index":4332,"title":{},"body":{"license.html":{}}}],["counties",{"_index":1870,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["countries",{"_index":3933,"title":{},"body":{"license.html":{}}}],["country",{"_index":1965,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["countrycode",{"_index":2774,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["county",{"_index":1966,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["course",{"_index":4504,"title":{},"body":{"license.html":{}}}],["court",{"_index":4401,"title":{},"body":{"license.html":{}}}],["courts",{"_index":4466,"title":{},"body":{"license.html":{}}}],["covenant",{"_index":4360,"title":{},"body":{"license.html":{}}}],["coverage",{"_index":3538,"title":{"coverage.html":{}},"body":{"coverage.html":{},"license.html":{}}}],["covered",{"_index":3917,"title":{},"body":{"license.html":{}}}],["create",{"_index":88,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"index.html":{}}}],["createaccountcomponent",{"_index":304,"title":{"components/CreateAccountComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["created",{"_index":378,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{}}}],["createform",{"_index":1224,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["createformstub",{"_index":1226,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["credentials",{"_index":3000,"title":{},"body":{"components/SettingsComponent.html":{}}}],["credit",{"_index":2324,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["crisps",{"_index":2142,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["criterion",{"_index":3960,"title":{},"body":{"license.html":{}}}],["cross",{"_index":1918,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["csv",{"_index":3663,"title":{},"body":{"miscellaneous/functions.html":{}}}],["csv.ts",{"_index":3553,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["cubic",{"_index":606,"title":{},"body":{"components/AdminComponent.html":{}}}],["curated",{"_index":1617,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cure",{"_index":4292,"title":{},"body":{"license.html":{}}}],["currency",{"_index":3075,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["currentuser",{"_index":2929,"title":{},"body":{"guards/RoleGuard.html":{}}}],["custom",{"_index":1267,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{}}}],["customarily",{"_index":4125,"title":{},"body":{"license.html":{}}}],["customer",{"_index":4130,"title":{},"body":{"license.html":{}}}],["customerrorstatematcher",{"_index":231,"title":{"classes/CustomErrorStateMatcher.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"components/OrganizationComponent.html":{},"coverage.html":{}}}],["customevent",{"_index":665,"title":{},"body":{"components/AppComponent.html":{}}}],["customevent('cic_convert",{"_index":1160,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["customevent('cic_transfer",{"_index":1158,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["customvalidator",{"_index":1296,"title":{"classes/CustomValidator.html":{}},"body":{"classes/CustomValidator.html":{},"coverage.html":{}}}],["cyber",{"_index":1926,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["d",{"_index":2989,"title":{},"body":{"components/SettingsComponent.html":{},"license.html":{}}}],["d.getdate()}/${d.getmonth()}/${d.getfullyear",{"_index":2991,"title":{},"body":{"components/SettingsComponent.html":{}}}],["dagaa",{"_index":2158,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dagoreti",{"_index":1762,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dagoretti",{"_index":1804,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["daktari",{"_index":2297,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["damages",{"_index":4448,"title":{},"body":{"license.html":{}}}],["dandora",{"_index":1763,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["danger",{"_index":3880,"title":{},"body":{"license.html":{}}}],["danish",{"_index":1944,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dashboard",{"_index":3046,"title":{},"body":{"components/SidebarComponent.html":{}}}],["data",{"_index":42,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["data.message",{"_index":1342,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["data?.status",{"_index":1343,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["datafile",{"_index":4557,"title":{},"body":{"miscellaneous/variables.html":{}}}],["datasource",{"_index":349,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["datasource.filter",{"_index":3452,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["datatables",{"_index":467,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AppModule.html":{},"modules/TransactionsModule.html":{},"dependencies.html":{}}}],["datatables.net",{"_index":3614,"title":{},"body":{"dependencies.html":{}}}],["datatablesmodule",{"_index":465,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AppModule.html":{},"modules/TransactionsModule.html":{}}}],["date",{"_index":433,"title":{},"body":{"components/AccountsComponent.html":{},"components/SettingsComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["date.now",{"_index":50,"title":{},"body":{"interfaces/AccountDetails.html":{},"interceptors/LoggingInterceptor.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["date_registered",{"_index":13,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["dateregistered",{"_index":3526,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["dawa",{"_index":2298,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["daycare",{"_index":1910,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["days",{"_index":4288,"title":{},"body":{"license.html":{}}}],["debug",{"_index":1572,"title":{},"body":{"injectables/LoggingService.html":{}}}],["december",{"_index":4057,"title":{},"body":{"license.html":{}}}],["decide",{"_index":4428,"title":{},"body":{"license.html":{}}}],["decimals",{"_index":2462,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["declarations",{"_index":441,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"overview.html":{}}}],["declining",{"_index":4250,"title":{},"body":{"license.html":{}}}],["decorators",{"_index":384,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/ErrorDialogComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["deemed",{"_index":4046,"title":{},"body":{"license.html":{}}}],["default",{"_index":228,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"injectables/RegistryService.html":{},"directives/RouterLinkDirectiveStub.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["defaultaccount",{"_index":49,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"injectables/TransactionService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["defaultpagesize",{"_index":350,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{}}}],["defaults",{"_index":3670,"title":{},"body":{"miscellaneous/functions.html":{}}}],["defective",{"_index":4441,"title":{},"body":{"license.html":{}}}],["defenses",{"_index":4399,"title":{},"body":{"license.html":{}}}],["define",{"_index":1040,"title":{},"body":{"injectables/AuthService.html":{}}}],["defined",{"_index":86,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["defines",{"_index":1269,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{}}}],["defining",{"_index":4558,"title":{},"body":{"miscellaneous/variables.html":{}}}],["definition",{"_index":3997,"title":{},"body":{"license.html":{}}}],["definitions",{"_index":3893,"title":{},"body":{"license.html":{}}}],["delay",{"_index":1613,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["delayed",{"_index":2494,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["delimiter",{"_index":3662,"title":{},"body":{"miscellaneous/functions.html":{}}}],["dematerialize",{"_index":1614,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["demo",{"_index":1929,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["denied",{"_index":4211,"title":{},"body":{"license.html":{}}}],["denominated",{"_index":4358,"title":{},"body":{"license.html":{}}}],["denote",{"_index":1467,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["deny",{"_index":3845,"title":{},"body":{"license.html":{}}}],["denying",{"_index":3808,"title":{},"body":{"license.html":{}}}],["dependencies",{"_index":440,"title":{"dependencies.html":{}},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"dependencies.html":{},"overview.html":{}}}],["depending",{"_index":127,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["deployed",{"_index":90,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["deprive",{"_index":4367,"title":{},"body":{"license.html":{}}}],["dera",{"_index":2357,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dereva",{"_index":2408,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["description",{"_index":64,"title":{},"body":{"classes/AccountIndex.html":{},"classes/ActivatedRouteStub.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"classes/TokenRegistry.html":{},"miscellaneous/functions.html":{}}}],["design",{"_index":2028,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["designated",{"_index":4142,"title":{},"body":{"license.html":{}}}],["designed",{"_index":3776,"title":{},"body":{"license.html":{}}}],["destination",{"_index":3273,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["destinationtoken",{"_index":1206,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["detached",{"_index":2708,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["detail",{"_index":1159,"title":{},"body":{"injectables/BlockSyncService.html":{},"license.html":{}}}],["details",{"_index":630,"title":{},"body":{"components/AdminComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{},"license.html":{}}}],["details'},{'name",{"_index":294,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["details.component",{"_index":464,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{}}}],["details.component.html",{"_index":3062,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["details.component.scss",{"_index":3061,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["details.component.ts",{"_index":3060,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{},"coverage.html":{}}}],["details.component.ts:14",{"_index":3066,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["details.component.ts:15",{"_index":3216,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:16",{"_index":3225,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:17",{"_index":3224,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:18",{"_index":3215,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:26",{"_index":3219,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:27",{"_index":3067,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["details.component.ts:38",{"_index":3222,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:42",{"_index":3221,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:46",{"_index":3223,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:50",{"_index":3220,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:59",{"_index":3218,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.the",{"_index":4501,"title":{},"body":{"license.html":{}}}],["details/account",{"_index":463,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"coverage.html":{}}}],["details/token",{"_index":3059,"title":{},"body":{"components/TokenDetailsComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"coverage.html":{}}}],["details/transaction",{"_index":3204,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"modules/TransactionsModule.html":{},"coverage.html":{}}}],["detergent",{"_index":2355,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["detergents",{"_index":2356,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["determining",{"_index":4177,"title":{},"body":{"license.html":{}}}],["dev",{"_index":3704,"title":{},"body":{"index.html":{}}}],["develop",{"_index":4475,"title":{},"body":{"license.html":{}}}],["developers",{"_index":3823,"title":{},"body":{"license.html":{}}}],["development",{"_index":3702,"title":{},"body":{"index.html":{},"license.html":{}}}],["devices",{"_index":3844,"title":{},"body":{"license.html":{}}}],["dgst",{"_index":2794,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["dhobi",{"_index":2026,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dialog",{"_index":1331,"title":{},"body":{"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["dialog'},{'name",{"_index":308,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["dialog.component",{"_index":1356,"title":{},"body":{"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{}}}],["dialog.component.html",{"_index":1333,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.scss",{"_index":1332,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.ts",{"_index":1330,"title":{},"body":{"components/ErrorDialogComponent.html":{},"coverage.html":{}}}],["dialog.component.ts:10",{"_index":1335,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.ts:11",{"_index":1337,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.service",{"_index":960,"title":{},"body":{"injectables/AuthService.html":{}}}],["dialog.service.ts",{"_index":1345,"title":{},"body":{"injectables/ErrorDialogService.html":{},"coverage.html":{}}}],["dialog.service.ts:11",{"_index":1353,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog.service.ts:13",{"_index":1352,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog.service.ts:9",{"_index":1350,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog/error",{"_index":1329,"title":{},"body":{"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{},"coverage.html":{}}}],["dialogref",{"_index":1359,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialogref.afterclosed().subscribe",{"_index":1362,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["diani",{"_index":1826,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dictates",{"_index":861,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["diesel",{"_index":2452,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["differ",{"_index":4419,"title":{},"body":{"license.html":{}}}],["different",{"_index":1446,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["differently",{"_index":4237,"title":{},"body":{"license.html":{}}}],["digest",{"_index":43,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["direction",{"_index":4032,"title":{},"body":{"license.html":{}}}],["directions",{"_index":4148,"title":{},"body":{"license.html":{}}}],["directive",{"_index":290,"title":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["directives",{"_index":334,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"overview.html":{}}}],["directive|pipe|service|class|guard|interface|enum|module",{"_index":3713,"title":{},"body":{"index.html":{}}}],["directly",{"_index":3922,"title":{},"body":{"license.html":{}}}],["directory",{"_index":1260,"title":{},"body":{"components/CreateAccountComponent.html":{},"index.html":{}}}],["directoryentry",{"_index":1243,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["disableconsolelogging",{"_index":780,"title":{},"body":{"modules/AppModule.html":{}}}],["disapprove",{"_index":628,"title":{},"body":{"components/AdminComponent.html":{}}}],["disapproveaction",{"_index":563,"title":{},"body":{"components/AdminComponent.html":{}}}],["disapproveaction(action",{"_index":571,"title":{},"body":{"components/AdminComponent.html":{}}}],["disburse",{"_index":1624,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["disbursement",{"_index":2772,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["disbursements",{"_index":2489,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["disclaim",{"_index":4068,"title":{},"body":{"license.html":{}}}],["disclaimer",{"_index":4431,"title":{},"body":{"license.html":{}}}],["disclaiming",{"_index":4234,"title":{},"body":{"license.html":{}}}],["discriminatory",{"_index":4384,"title":{},"body":{"license.html":{}}}],["dispatcher",{"_index":1383,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["dispensary",{"_index":2291,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["display",{"_index":4100,"title":{},"body":{"license.html":{}}}],["displayed",{"_index":4243,"title":{},"body":{"license.html":{}}}],["displayedcolumns",{"_index":351,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{}}}],["displaying",{"_index":1274,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"interceptors/ErrorInterceptor.html":{}}}],["displays",{"_index":3944,"title":{},"body":{"license.html":{}}}],["dist",{"_index":3726,"title":{},"body":{"index.html":{}}}],["distinguishing",{"_index":4421,"title":{},"body":{"license.html":{}}}],["distribute",{"_index":3766,"title":{},"body":{"license.html":{}}}],["distributed",{"_index":4488,"title":{},"body":{"license.html":{}}}],["distributing",{"_index":4388,"title":{},"body":{"license.html":{}}}],["distribution",{"_index":3890,"title":{},"body":{"license.html":{}}}],["divone",{"_index":845,"title":{},"body":{"components/AuthComponent.html":{}}}],["divtwo",{"_index":847,"title":{},"body":{"components/AuthComponent.html":{}}}],["doctor",{"_index":2296,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["document",{"_index":3768,"title":{},"body":{"license.html":{}}}],["document.getelementbyid('content",{"_index":720,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["document.getelementbyid('one",{"_index":846,"title":{},"body":{"components/AuthComponent.html":{}}}],["document.getelementbyid('one').style.display",{"_index":1044,"title":{},"body":{"injectables/AuthService.html":{}}}],["document.getelementbyid('sidebar",{"_index":718,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["document.getelementbyid('sidebarcollapse",{"_index":722,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["document.getelementbyid('state').innerhtml",{"_index":971,"title":{},"body":{"injectables/AuthService.html":{}}}],["document.getelementbyid('two",{"_index":848,"title":{},"body":{"components/AuthComponent.html":{}}}],["document.getelementbyid('two').style.display",{"_index":1045,"title":{},"body":{"injectables/AuthService.html":{}}}],["document.getelementbyid(this.iconid",{"_index":2894,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["document.getelementbyid(this.id",{"_index":2892,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["documentation",{"_index":3539,"title":{},"body":{"coverage.html":{}}}],["documented",{"_index":4220,"title":{},"body":{"license.html":{}}}],["doe",{"_index":3489,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["doesn\\'t",{"_index":1057,"title":{},"body":{"injectables/AuthService.html":{}}}],["dofilter",{"_index":355,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["dofilter(value",{"_index":363,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["doing",{"_index":2690,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["dom",{"_index":180,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["domains",{"_index":3864,"title":{},"body":{"license.html":{}}}],["domsanitizer",{"_index":2961,"title":{},"body":{"pipes/SafePipe.html":{}}}],["don't",{"_index":3721,"title":{},"body":{"index.html":{}}}],["donald",{"_index":3503,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["donholm",{"_index":1761,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donhom",{"_index":1765,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donor",{"_index":1960,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donut",{"_index":2159,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["doti",{"_index":1681,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["double",{"_index":525,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["doubtful",{"_index":4178,"title":{},"body":{"license.html":{}}}],["dough",{"_index":2160,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["download",{"_index":3665,"title":{},"body":{"miscellaneous/functions.html":{}}}],["downloadcsv",{"_index":356,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["downloaded",{"_index":3668,"title":{},"body":{"miscellaneous/functions.html":{}}}],["downstream",{"_index":4311,"title":{},"body":{"license.html":{}}}],["driver",{"_index":2407,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dt",{"_index":3616,"title":{},"body":{"dependencies.html":{}}}],["duka",{"_index":2347,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["durable",{"_index":4124,"title":{},"body":{"license.html":{}}}],["duration",{"_index":3247,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["dwelling",{"_index":4176,"title":{},"body":{"license.html":{}}}],["dynamic",{"_index":3598,"title":{},"body":{"dependencies.html":{}}}],["dynamically",{"_index":3999,"title":{},"body":{"license.html":{}}}],["dzivani",{"_index":1683,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dzovuni",{"_index":1684,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dzugwe",{"_index":1682,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["e",{"_index":672,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["e.matches",{"_index":725,"title":{},"body":{"components/AppComponent.html":{}}}],["e2e",{"_index":3737,"title":{},"body":{"index.html":{}}}],["each",{"_index":3902,"title":{},"body":{"license.html":{}}}],["earlier",{"_index":3915,"title":{},"body":{"license.html":{}}}],["east",{"_index":1798,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["economics",{"_index":1037,"title":{},"body":{"injectables/AuthService.html":{},"components/FooterComponent.html":{},"license.html":{}}}],["education",{"_index":1893,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["educator",{"_index":1935,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["effect",{"_index":4464,"title":{},"body":{"license.html":{}}}],["effected",{"_index":4066,"title":{},"body":{"license.html":{}}}],["effective",{"_index":4047,"title":{},"body":{"license.html":{}}}],["effectively",{"_index":3882,"title":{},"body":{"license.html":{}}}],["efforts",{"_index":4325,"title":{},"body":{"license.html":{}}}],["egg",{"_index":2250,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["eimu",{"_index":1915,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["elapsedtime",{"_index":1536,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["elder",{"_index":1962,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["eldoret",{"_index":1877,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electrian",{"_index":2015,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electricals",{"_index":2342,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electrician",{"_index":2105,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electronic",{"_index":4493,"title":{},"body":{"license.html":{}}}],["electronics",{"_index":2102,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["element",{"_index":289,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["element.style.display",{"_index":853,"title":{},"body":{"components/AuthComponent.html":{}}}],["elementref",{"_index":1586,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["elim",{"_index":1914,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["email",{"_index":32,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"components/SettingsComponent.html":{},"interfaces/Signature.html":{},"interfaces/Staff.html":{},"miscellaneous/variables.html":{}}}],["embakasi",{"_index":1796,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["embakassi",{"_index":1795,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["embodied",{"_index":4119,"title":{},"body":{"license.html":{}}}],["emergency",{"_index":2318,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["employer",{"_index":4506,"title":{},"body":{"license.html":{}}}],["enable",{"_index":3979,"title":{},"body":{"license.html":{}}}],["enabled",{"_index":783,"title":{},"body":{"modules/AppModule.html":{}}}],["enables",{"_index":3938,"title":{},"body":{"license.html":{}}}],["end",{"_index":3736,"title":{},"body":{"index.html":{},"license.html":{}}}],["endpoint",{"_index":692,"title":{},"body":{"components/AppComponent.html":{}}}],["enforce",{"_index":4359,"title":{},"body":{"license.html":{}}}],["enforcing",{"_index":4070,"title":{},"body":{"license.html":{}}}],["engine",{"_index":44,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"classes/Settings.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/W3.html":{}}}],["engineer",{"_index":2062,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["enroller",{"_index":1623,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["ensure",{"_index":2499,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["enter",{"_index":856,"title":{},"body":{"components/AuthComponent.html":{}}}],["entered",{"_index":4393,"title":{},"body":{"license.html":{}}}],["entire",{"_index":4091,"title":{},"body":{"license.html":{}}}],["entirely",{"_index":4410,"title":{},"body":{"license.html":{}}}],["entity",{"_index":4315,"title":{},"body":{"license.html":{}}}],["entry",{"_index":1261,"title":{},"body":{"components/CreateAccountComponent.html":{},"classes/TokenRegistry.html":{}}}],["entry(2",{"_index":3109,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["entry(serial",{"_index":3105,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["env",{"_index":1543,"title":{},"body":{"injectables/LoggingService.html":{},"index.html":{}}}],["env.example",{"_index":3741,"title":{},"body":{"index.html":{}}}],["env.ts",{"_index":3719,"title":{},"body":{"index.html":{}}}],["envelope",{"_index":3315,"title":{},"body":{"injectables/TransactionService.html":{}}}],["envelope.fromjson(json.stringify(account)).unwrap().m.data",{"_index":3360,"title":{},"body":{"injectables/TransactionService.html":{}}}],["environment",{"_index":144,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AppModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{},"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["environment.cicmetaurl",{"_index":977,"title":{},"body":{"injectables/AuthService.html":{}}}],["environment.loggingurl}/api/logs",{"_index":779,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.loglevel",{"_index":775,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.prod.ts",{"_index":3746,"title":{},"body":{"index.html":{}}}],["environment.production",{"_index":784,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.registryaddress",{"_index":2913,"title":{},"body":{"injectables/RegistryService.html":{}}}],["environment.serverloglevel",{"_index":777,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.ts",{"_index":3745,"title":{},"body":{"index.html":{}}}],["environment.web3provider",{"_index":1124,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["equivalent",{"_index":4022,"title":{},"body":{"license.html":{}}}],["err",{"_index":1061,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["err.error",{"_index":1392,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.error.message",{"_index":1397,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.message",{"_index":1063,"title":{},"body":{"injectables/AuthService.html":{}}}],["err.status",{"_index":1406,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.statustext",{"_index":1064,"title":{},"body":{"injectables/AuthService.html":{}}}],["erroneously",{"_index":3843,"title":{},"body":{"license.html":{}}}],["error",{"_index":307,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["error's",{"_index":1470,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error('login",{"_index":990,"title":{},"body":{"injectables/AuthService.html":{}}}],["error('the",{"_index":1051,"title":{},"body":{"injectables/AuthService.html":{}}}],["error(`${res.statustext",{"_index":1073,"title":{},"body":{"injectables/AuthService.html":{}}}],["error(message",{"_index":1480,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["error.message",{"_index":1478,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.stack",{"_index":1482,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.status",{"_index":1030,"title":{},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.tostring",{"_index":1479,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errordialogcomponent",{"_index":306,"title":{"components/ErrorDialogComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["errordialogservice",{"_index":659,"title":{"injectables/ErrorDialogService.html":{}},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"coverage.html":{}}}],["errorevent",{"_index":1393,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["errorhandler",{"_index":755,"title":{},"body":{"modules/AppModule.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errorinterceptor",{"_index":747,"title":{"interceptors/ErrorInterceptor.html":{}},"body":{"modules/AppModule.html":{},"interceptors/ErrorInterceptor.html":{},"coverage.html":{},"overview.html":{}}}],["errormessage",{"_index":1391,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["errors",{"_index":1307,"title":{},"body":{"classes/CustomValidator.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errorstatematcher",{"_index":1276,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["errortracestring",{"_index":1455,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errortracestring.includes('/src/app",{"_index":1486,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errortracestring.includes(whitelistsentence",{"_index":1488,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["essential",{"_index":3982,"title":{},"body":{"license.html":{}}}],["establish",{"_index":150,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["eth",{"_index":2786,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ethereum",{"_index":3528,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["ethers",{"_index":3320,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{}}}],["ethiopia",{"_index":2787,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["even",{"_index":2500,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["event",{"_index":663,"title":{},"body":{"components/AppComponent.html":{},"interceptors/LoggingInterceptor.html":{},"license.html":{}}}],["event.detail.tx",{"_index":734,"title":{},"body":{"components/AppComponent.html":{}}}],["eventemitter",{"_index":3127,"title":{},"body":{"injectables/TokenService.html":{}}}],["events",{"_index":1526,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["everyone",{"_index":3764,"title":{},"body":{"license.html":{}}}],["evm",{"_index":24,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["exact",{"_index":3912,"title":{},"body":{"license.html":{}}}],["example",{"_index":74,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"classes/TokenRegistry.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["except",{"_index":3927,"title":{},"body":{"license.html":{}}}],["exception",{"_index":1434,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["exceptions",{"_index":4224,"title":{},"body":{"license.html":{}}}],["exchange",{"_index":3249,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["excluded",{"_index":4165,"title":{},"body":{"license.html":{}}}],["excluding",{"_index":4397,"title":{},"body":{"license.html":{}}}],["exclusion",{"_index":4484,"title":{},"body":{"license.html":{}}}],["exclusive",{"_index":4349,"title":{},"body":{"license.html":{}}}],["exclusively",{"_index":4027,"title":{},"body":{"license.html":{}}}],["excuse",{"_index":4403,"title":{},"body":{"license.html":{}}}],["executable",{"_index":3970,"title":{},"body":{"license.html":{}}}],["execute",{"_index":3734,"title":{},"body":{"index.html":{},"license.html":{}}}],["executing",{"_index":3928,"title":{},"body":{"license.html":{}}}],["exercise",{"_index":4326,"title":{},"body":{"license.html":{}}}],["exercising",{"_index":4067,"title":{},"body":{"license.html":{}}}],["existing",{"_index":1290,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["expand",{"_index":582,"title":{},"body":{"components/AdminComponent.html":{}}}],["expandcollapse",{"_index":564,"title":{},"body":{"components/AdminComponent.html":{}}}],["expandcollapse(row",{"_index":575,"title":{},"body":{"components/AdminComponent.html":{}}}],["expected",{"_index":4186,"title":{},"body":{"license.html":{}}}],["expects",{"_index":4185,"title":{},"body":{"license.html":{}}}],["expert",{"_index":1930,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["explains",{"_index":3834,"title":{},"body":{"license.html":{}}}],["explicitly",{"_index":4015,"title":{},"body":{"license.html":{}}}],["export",{"_index":56,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{}}}],["exportcsv",{"_index":393,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["exportcsv(arraydata",{"_index":3660,"title":{},"body":{"miscellaneous/functions.html":{}}}],["exportcsv(this.accounts",{"_index":426,"title":{},"body":{"components/AccountsComponent.html":{}}}],["exportcsv(this.actions",{"_index":623,"title":{},"body":{"components/AdminComponent.html":{}}}],["exportcsv(this.tokens",{"_index":3174,"title":{},"body":{"components/TokensComponent.html":{}}}],["exportcsv(this.transactions",{"_index":3456,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["exportcsv(this.trustedusers",{"_index":2995,"title":{},"body":{"components/SettingsComponent.html":{}}}],["exports",{"_index":444,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"interceptors/MockBackendInterceptor.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"miscellaneous/functions.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["express",{"_index":4355,"title":{},"body":{"license.html":{}}}],["expressed",{"_index":4433,"title":{},"body":{"license.html":{}}}],["expression",{"_index":1317,"title":{},"body":{"classes/CustomValidator.html":{}}}],["expressly",{"_index":4272,"title":{},"body":{"license.html":{}}}],["extend",{"_index":3867,"title":{},"body":{"license.html":{}}}],["extended",{"_index":4383,"title":{},"body":{"license.html":{}}}],["extends",{"_index":1436,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["extensions",{"_index":4104,"title":{},"body":{"license.html":{}}}],["extent",{"_index":3946,"title":{},"body":{"license.html":{}}}],["external",{"_index":3531,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["eye",{"_index":2899,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["f",{"_index":4255,"title":{},"body":{"license.html":{}}}],["facilitator",{"_index":1946,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["facilities",{"_index":4028,"title":{},"body":{"license.html":{}}}],["facing",{"_index":1418,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["fagio",{"_index":1979,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["failed",{"_index":1019,"title":{},"body":{"injectables/AuthService.html":{},"classes/CustomValidator.html":{},"interceptors/LoggingInterceptor.html":{}}}],["failedpinattempts",{"_index":3494,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["fails",{"_index":4285,"title":{},"body":{"license.html":{}}}],["failure",{"_index":4458,"title":{},"body":{"license.html":{}}}],["fair",{"_index":4021,"title":{},"body":{"license.html":{}}}],["faith",{"_index":1949,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["false",{"_index":123,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"modules/AppModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"components/CreateAccountComponent.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"guards/RoleGuard.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["family",{"_index":4171,"title":{},"body":{"license.html":{}}}],["family/surname",{"_index":1259,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["farm",{"_index":1997,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["farmer",{"_index":1998,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["farming",{"_index":1996,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fashion",{"_index":3909,"title":{},"body":{"license.html":{}}}],["favor",{"_index":4180,"title":{},"body":{"license.html":{}}}],["feature",{"_index":3715,"title":{},"body":{"index.html":{},"license.html":{}}}],["fee",{"_index":3816,"title":{},"body":{"license.html":{}}}],["feels",{"_index":399,"title":{},"body":{"components/AccountsComponent.html":{}}}],["female",{"_index":2454,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["fetch",{"_index":146,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["fetch(environment.publickeysurl).then((res",{"_index":1070,"title":{},"body":{"injectables/AuthService.html":{}}}],["fetched",{"_index":3101,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["fetcher",{"_index":1081,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["fetcher(settings",{"_index":1094,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["fetching",{"_index":3673,"title":{},"body":{"miscellaneous/functions.html":{}}}],["fia",{"_index":3513,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["field",{"_index":480,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"classes/CustomValidator.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["file",{"_index":5,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{}}}],["filegetter",{"_index":2903,"title":{},"body":{"injectables/RegistryService.html":{}}}],["filename",{"_index":3661,"title":{},"body":{"miscellaneous/functions.html":{}}}],["files",{"_index":3709,"title":{},"body":{"index.html":{},"license.html":{}}}],["filter",{"_index":429,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["filter_rounds",{"_index":1166,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["filteraccounts",{"_index":357,"title":{},"body":{"components/AccountsComponent.html":{}}}],["filterrounds",{"_index":1190,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["filters",{"_index":1165,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["filtertransactions",{"_index":3423,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["finalize",{"_index":1530,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["finally",{"_index":3343,"title":{},"body":{"injectables/TransactionService.html":{},"license.html":{}}}],["finance",{"_index":2325,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["find",{"_index":2676,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["fingerprint",{"_index":2797,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["fire",{"_index":2439,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["firewood",{"_index":2440,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["firm",{"_index":2130,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["first",{"_index":394,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"components/TokenDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["fish",{"_index":2169,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fitness",{"_index":4436,"title":{},"body":{"license.html":{}}}],["fix",{"_index":2849,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["fixed",{"_index":4123,"title":{},"body":{"license.html":{}}}],["flag",{"_index":2823,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["flow",{"_index":4005,"title":{},"body":{"license.html":{}}}],["flowers",{"_index":2382,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fn",{"_index":34,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["follow",{"_index":3892,"title":{},"body":{"license.html":{}}}],["following",{"_index":4353,"title":{},"body":{"license.html":{}}}],["foo",{"_index":2472,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["food",{"_index":2132,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["footballer",{"_index":2082,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["footer",{"_index":1421,"title":{},"body":{"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{}}}],["footer'},{'name",{"_index":310,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["footer.component.html",{"_index":1423,"title":{},"body":{"components/FooterComponent.html":{}}}],["footer.component.scss",{"_index":1422,"title":{},"body":{"components/FooterComponent.html":{}}}],["footercomponent",{"_index":309,"title":{"components/FooterComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["footerstubcomponent",{"_index":311,"title":{"components/FooterStubComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["forbid",{"_index":4065,"title":{},"body":{"license.html":{}}}],["forbidden",{"_index":1414,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["force",{"_index":4024,"title":{},"body":{"license.html":{}}}],["form",{"_index":1270,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"license.html":{}}}],["form.submitted",{"_index":1292,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["format",{"_index":3664,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{}}}],["formbuilder",{"_index":216,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["formcontrol",{"_index":1279,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["formgroup",{"_index":225,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"components/OrganizationComponent.html":{}}}],["formgroupdirective",{"_index":1280,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["forms",{"_index":4115,"title":{},"body":{"license.html":{}}}],["forward",{"_index":2506,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["forwarded",{"_index":1504,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{}}}],["found",{"_index":278,"title":{},"body":{"components/AccountSearchComponent.html":{},"index.html":{},"license.html":{}}}],["foundation",{"_index":3761,"title":{},"body":{"license.html":{}}}],["free",{"_index":3759,"title":{},"body":{"license.html":{}}}],["freedom",{"_index":3779,"title":{},"body":{"license.html":{}}}],["freedoms",{"_index":3819,"title":{},"body":{"license.html":{}}}],["freelance",{"_index":2100,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fromhex",{"_index":3322,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromhex(methodsignature",{"_index":3377,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromhex(strip0x(transferauthaddress",{"_index":3388,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromvalue",{"_index":1207,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["fruit",{"_index":2167,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fruits",{"_index":2168,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fua",{"_index":2051,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuata",{"_index":1792,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuel",{"_index":2433,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuel/energy",{"_index":2425,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fulfilling",{"_index":4050,"title":{},"body":{"license.html":{}}}],["full",{"_index":509,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{},"license.html":{}}}],["function",{"_index":2510,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"coverage.html":{}}}],["functioning",{"_index":4197,"title":{},"body":{"license.html":{}}}],["functions",{"_index":2536,"title":{"miscellaneous/functions.html":{}},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/functions.html":{}}}],["fundamentally",{"_index":3849,"title":{},"body":{"license.html":{}}}],["fundi",{"_index":2030,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["furniture",{"_index":2391,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["further",{"_index":3747,"title":{},"body":{"index.html":{},"license.html":{}}}],["future",{"_index":3869,"title":{},"body":{"license.html":{}}}],["g",{"_index":3700,"title":{},"body":{"index.html":{}}}],["g.e",{"_index":1847,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gandini",{"_index":1699,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["garage",{"_index":2068,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["garbage",{"_index":1978,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gardener",{"_index":1984,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gari",{"_index":2422,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gas",{"_index":2444,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gatina",{"_index":1773,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ge",{"_index":1848,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gender",{"_index":14,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/CreateAccountComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["genders",{"_index":1225,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["general",{"_index":1494,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["generalized",{"_index":1469,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["generally",{"_index":3995,"title":{},"body":{"license.html":{}}}],["generate",{"_index":3712,"title":{},"body":{"index.html":{},"license.html":{}}}],["generated",{"_index":3695,"title":{},"body":{"index.html":{}}}],["ger",{"_index":2788,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["germany",{"_index":2789,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["get(`${environment.cicmetaurl}/areatypes/${area.tolowercase",{"_index":1524,"title":{},"body":{"injectables/LocationService.html":{}}}],["getaccountdetailsfrommeta(await",{"_index":3336,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaccountinfo",{"_index":3283,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaccountinfo(account",{"_index":3294,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaccounttypes",{"_index":406,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getactionbyid",{"_index":2516,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{}}}],["getactionbyid(id",{"_index":3519,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getactions",{"_index":2514,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getaddresssearchformstub",{"_index":242,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["getaddresstransactions",{"_index":3284,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaddresstransactions(address",{"_index":1157,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{}}}],["getalltransactions",{"_index":3285,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["getalltransactions(offset",{"_index":1155,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["getareanamebylocation",{"_index":1510,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getareanamebylocation(location",{"_index":1514,"title":{},"body":{"injectables/LocationService.html":{}}}],["getareanames",{"_index":1249,"title":{},"body":{"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getareatypebyarea",{"_index":1511,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getareatypebyarea(area",{"_index":1517,"title":{},"body":{"injectables/LocationService.html":{}}}],["getareatypes",{"_index":1512,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getbysymbol",{"_index":3148,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["getbysymbol(symbol",{"_index":3149,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["getcategories",{"_index":1246,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getcategorybyproduct",{"_index":2524,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getchallenge",{"_index":916,"title":{},"body":{"injectables/AuthService.html":{}}}],["getcreateformstub",{"_index":1237,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["getencryptkeys",{"_index":2593,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getfingerprint",{"_index":2594,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getgenders",{"_index":1251,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getkeyformstub",{"_index":820,"title":{},"body":{"components/AuthComponent.html":{}}}],["getkeyid",{"_index":2595,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getkeyid(key",{"_index":2618,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getkeysforid",{"_index":2596,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getkeysforid(keyid",{"_index":2620,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getnamesearchformstub",{"_index":238,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["getorganizationformstub",{"_index":2769,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["getphonesearchformstub",{"_index":240,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["getprivatekey",{"_index":917,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeyforid",{"_index":2597,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeyforid(keyid",{"_index":2624,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeyid",{"_index":2598,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeys",{"_index":2599,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforid",{"_index":2600,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforid(keyid",{"_index":2628,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforsubkeyid",{"_index":2601,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforsubkeyid(subkeyid",{"_index":2630,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeys",{"_index":918,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeysforaddress",{"_index":2602,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeysforaddress(address",{"_index":2634,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getregistry",{"_index":2904,"title":{},"body":{"injectables/RegistryService.html":{}}}],["getter.ts",{"_index":3556,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["getting",{"_index":3690,"title":{"index.html":{},"license.html":{}},"body":{}}],["gettokenbalance",{"_index":3120,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenbalance(address",{"_index":3122,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenbysymbol",{"_index":2529,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"injectables/TokenService.html":{}}}],["gettokenbysymbol(params.get('id",{"_index":3070,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["gettokenbysymbol(symbol",{"_index":3124,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokens",{"_index":2527,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"injectables/TokenService.html":{}}}],["gettransactiontypes",{"_index":2531,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TransactionsComponent.html":{}}}],["gettrustedactivekeys",{"_index":2603,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["gettrustedkeys",{"_index":2604,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["gettrustedusers",{"_index":919,"title":{},"body":{"injectables/AuthService.html":{}}}],["getuser",{"_index":3485,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuser(userkey",{"_index":3521,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuserbyid",{"_index":3486,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuserbyid(id",{"_index":3524,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getweb3",{"_index":2905,"title":{},"body":{"injectables/RegistryService.html":{}}}],["getwithtoken",{"_index":920,"title":{},"body":{"injectables/AuthService.html":{}}}],["giftable",{"_index":2456,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["githeri",{"_index":2170,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["githurai",{"_index":1799,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["give",{"_index":4084,"title":{},"body":{"license.html":{}}}],["given",{"_index":1256,"title":{},"body":{"components/CreateAccountComponent.html":{},"classes/CustomValidator.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["givenname",{"_index":1241,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["gives",{"_index":4097,"title":{},"body":{"license.html":{}}}],["giving",{"_index":3828,"title":{},"body":{"license.html":{}}}],["global",{"_index":1443,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["globalerrorhandler",{"_index":748,"title":{"injectables/GlobalErrorHandler.html":{}},"body":{"modules/AppModule.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{},"overview.html":{}}}],["gnu",{"_index":3753,"title":{},"body":{"license.html":{}}}],["go",{"_index":841,"title":{},"body":{"components/AuthComponent.html":{},"index.html":{}}}],["goats",{"_index":2175,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gona",{"_index":1697,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["good",{"_index":2254,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["governed",{"_index":4227,"title":{},"body":{"license.html":{}}}],["government",{"_index":1961,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gpl",{"_index":3824,"title":{},"body":{"license.html":{}}}],["grant",{"_index":4251,"title":{},"body":{"license.html":{}}}],["granted",{"_index":4010,"title":{},"body":{"license.html":{}}}],["grants",{"_index":4305,"title":{},"body":{"license.html":{}}}],["graph",{"_index":4518,"title":{},"body":{"modules.html":{}}}],["grassroots",{"_index":1036,"title":{},"body":{"injectables/AuthService.html":{},"components/FooterComponent.html":{},"license.html":{}}}],["gratis",{"_index":3815,"title":{},"body":{"license.html":{}}}],["greatest",{"_index":4476,"title":{},"body":{"license.html":{}}}],["grocer",{"_index":2172,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["groceries",{"_index":3501,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["grocery",{"_index":2171,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["groundnuts",{"_index":2161,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["group",{"_index":1621,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["grz",{"_index":2458,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["guarantee",{"_index":3782,"title":{},"body":{"license.html":{}}}],["guard",{"_index":857,"title":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}},"body":{"guards/AuthGuard.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["guards",{"_index":858,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"overview.html":{}}}],["gui",{"_index":4505,"title":{},"body":{"license.html":{}}}],["guitarist",{"_index":2116,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["guro",{"_index":1698,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hair",{"_index":2057,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["halt",{"_index":704,"title":{},"body":{"components/AppComponent.html":{}}}],["handle",{"_index":839,"title":{},"body":{"components/AuthComponent.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["handled",{"_index":2534,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["handleerror",{"_index":1438,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handleerror(error",{"_index":1444,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["handlenetworkchange",{"_index":2743,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["handler",{"_index":400,"title":{},"body":{"components/AccountsComponent.html":{},"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["handler.ts",{"_index":1431,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{}}}],["handler.ts:104",{"_index":1460,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:16",{"_index":1508,"title":{},"body":{"classes/HttpError.html":{}}}],["handler.ts:41",{"_index":1442,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:58",{"_index":1445,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:84",{"_index":1453,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handleroute",{"_index":2511,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["handlers",{"_index":2509,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["handles",{"_index":1366,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["handling",{"_index":1435,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["hanje",{"_index":1685,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["happened",{"_index":1497,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["hardware",{"_index":2354,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hash",{"_index":3261,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["hash.tostring('hex').substring(0",{"_index":3371,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction",{"_index":3366,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction.digest",{"_index":3369,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction.update('createrequest(address,address,address,uint256",{"_index":3368,"title":{},"body":{"injectables/TransactionService.html":{}}}],["haveaccount",{"_index":81,"title":{},"body":{"classes/AccountIndex.html":{}}}],["haveaccount('0xc0ffee254729296a45a3885639ac7e10f9d54979'",{"_index":128,"title":{},"body":{"classes/AccountIndex.html":{}}}],["haveaccount('0xc0ffee254729296a45a3885639ac7e10f9d54979",{"_index":166,"title":{},"body":{"classes/AccountIndex.html":{}}}],["haveaccount(address",{"_index":117,"title":{},"body":{"classes/AccountIndex.html":{}}}],["having",{"_index":4026,"title":{},"body":{"license.html":{}}}],["hawinga",{"_index":1861,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hawker",{"_index":2032,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hawking",{"_index":2031,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hazina",{"_index":1644,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headers",{"_index":2492,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["headmaster",{"_index":1934,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headmistress",{"_index":1924,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headteacher",{"_index":1925,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["health",{"_index":2289,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["heath",{"_index":2305,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["height",{"_index":596,"title":{},"body":{"components/AdminComponent.html":{}}}],["help",{"_index":2036,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["helper",{"_index":2580,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["hera",{"_index":3507,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["herbalist",{"_index":2300,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hereafter",{"_index":4345,"title":{},"body":{"license.html":{}}}],["hi",{"_index":1108,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["hidden",{"_index":600,"title":{},"body":{"components/AdminComponent.html":{}}}],["hoba",{"_index":1004,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaparsechallengeheader",{"_index":953,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaparsechallengeheader(authheader",{"_index":1015,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaresponseencoded",{"_index":944,"title":{},"body":{"injectables/AuthService.html":{}}}],["holder",{"_index":4279,"title":{},"body":{"license.html":{}}}],["holders",{"_index":4233,"title":{},"body":{"license.html":{}}}],["holel",{"_index":2163,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["homabay",{"_index":1865,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["homaboy",{"_index":1866,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["home",{"_index":283,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"modules/PagesRoutingModule.html":{},"components/SettingsComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["hook",{"_index":1432,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["hope",{"_index":4489,"title":{},"body":{"license.html":{}}}],["hospital",{"_index":2299,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hostlistener",{"_index":681,"title":{},"body":{"components/AppComponent.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["hostlistener('click",{"_index":2948,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["hostlistener('window:cic_convert",{"_index":736,"title":{},"body":{"components/AppComponent.html":{}}}],["hostlistener('window:cic_transfer",{"_index":732,"title":{},"body":{"components/AppComponent.html":{}}}],["hostlisteners",{"_index":653,"title":{},"body":{"components/AppComponent.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["hosts",{"_index":4150,"title":{},"body":{"license.html":{}}}],["hotel",{"_index":2162,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hoteli",{"_index":2164,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["house",{"_index":2035,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["housegirl",{"_index":2037,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["househelp",{"_index":2033,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["household",{"_index":4172,"title":{},"body":{"license.html":{}}}],["hsehelp",{"_index":2034,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["html",{"_index":288,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["htmlelement",{"_index":717,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["http",{"_index":1368,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"dependencies.html":{},"miscellaneous/functions.html":{}}}],["http://localhost:4200",{"_index":3706,"title":{},"body":{"index.html":{}}}],["http://localhost:8000",{"_index":4555,"title":{},"body":{"miscellaneous/variables.html":{}}}],["http_interceptors",{"_index":760,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["httpclient",{"_index":928,"title":{},"body":{"injectables/AuthService.html":{},"injectables/LocationService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["httpclientmodule",{"_index":761,"title":{},"body":{"modules/AppModule.html":{}}}],["httpconfiginterceptor",{"_index":749,"title":{"interceptors/HttpConfigInterceptor.html":{}},"body":{"modules/AppModule.html":{},"interceptors/HttpConfigInterceptor.html":{},"coverage.html":{},"overview.html":{}}}],["httperror",{"_index":961,"title":{"classes/HttpError.html":{}},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{}}}],["httperror(xhr.statustext",{"_index":1005,"title":{},"body":{"injectables/AuthService.html":{}}}],["httperrorresponse",{"_index":1385,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["httperrorresponse).status",{"_index":1491,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["httpevent",{"_index":1386,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpgetter",{"_index":2909,"title":{},"body":{"injectables/RegistryService.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["httphandler",{"_index":1378,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpinterceptor",{"_index":1387,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httprequest",{"_index":1377,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpresponse",{"_index":1529,"title":{},"body":{"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["https://blockexplorer.bloxberg.org/address",{"_index":3229,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["https://cache.dev.grassrootseconomics.net",{"_index":4544,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://dashboard.sarafu.network",{"_index":2858,"title":{},"body":{"components/PagesComponent.html":{}}}],["https://dev.grassrootseconomics.net/.well",{"_index":4541,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://fsf.org",{"_index":3763,"title":{},"body":{"license.html":{}}}],["https://meta.dev.grassrootseconomics.net",{"_index":4539,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://ussd.dev.grassrootseconomics.net",{"_index":4549,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://www.gnu.org/licenses",{"_index":4491,"title":{},"body":{"license.html":{}}}],["https://www.gnu.org/licenses/why",{"_index":4514,"title":{},"body":{"license.html":{}}}],["huruma",{"_index":1766,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hustler",{"_index":2052,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hypothetical",{"_index":4502,"title":{},"body":{"license.html":{}}}],["icon",{"_index":2893,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["icon.classlist.add('fa",{"_index":2900,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["icon.classlist.remove('fa",{"_index":2898,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["iconid",{"_index":2887,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["id",{"_index":45,"title":{},"body":{"interfaces/AccountDetails.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"components/CreateAccountComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"directives/PasswordToggleDirective.html":{},"components/SettingsComponent.html":{},"interfaces/Signature.html":{},"classes/TokenRegistry.html":{},"modules/TokensRoutingModule.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["identifiable",{"_index":4373,"title":{},"body":{"license.html":{}}}],["identifier",{"_index":3100,"title":{},"body":{"classes/TokenRegistry.html":{},"coverage.html":{}}}],["identities",{"_index":15,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["idfromurl",{"_index":2540,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["idnumber",{"_index":1240,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["iframes",{"_index":2860,"title":{},"body":{"components/PagesComponent.html":{}}}],["ignore",{"_index":2896,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["imam",{"_index":1951,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["immagration",{"_index":1973,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["immigration",{"_index":1974,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["implement",{"_index":3980,"title":{},"body":{"license.html":{}}}],["implementation",{"_index":860,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["implements",{"_index":185,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["implied",{"_index":4398,"title":{},"body":{"license.html":{}}}],["import",{"_index":140,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"license.html":{}}}],["import('@app/auth/auth.module').then((m",{"_index":792,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["import('@pages/accounts/accounts.module').then((m",{"_index":2878,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/admin/admin.module').then((m",{"_index":2882,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/pages.module').then((m",{"_index":794,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["import('@pages/settings/settings.module').then((m",{"_index":2876,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/tokens/tokens.module').then((m",{"_index":2880,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/transactions/transactions.module').then((m",{"_index":2874,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["imported",{"_index":2680,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["imported.keys",{"_index":2682,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importing",{"_index":4337,"title":{},"body":{"license.html":{}}}],["importkeypair",{"_index":2605,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importkeypair(publickey",{"_index":2638,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importprivatekey",{"_index":2606,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importprivatekey(privatekey",{"_index":2641,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importpublickey",{"_index":2607,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importpublickey(publickey",{"_index":2643,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["imports",{"_index":143,"title":{},"body":{"classes/AccountIndex.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"guards/RoleGuard.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"classes/TokenRegistry.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["impose",{"_index":4260,"title":{},"body":{"license.html":{}}}],["imposed",{"_index":4400,"title":{},"body":{"license.html":{}}}],["inability",{"_index":4452,"title":{},"body":{"license.html":{}}}],["inaccurate",{"_index":4455,"title":{},"body":{"license.html":{}}}],["inc",{"_index":3762,"title":{},"body":{"license.html":{}}}],["incidental",{"_index":4449,"title":{},"body":{"license.html":{}}}],["include",{"_index":3971,"title":{},"body":{"license.html":{}}}],["included",{"_index":3973,"title":{},"body":{"license.html":{}}}],["includes",{"_index":3932,"title":{},"body":{"license.html":{}}}],["including",{"_index":3991,"title":{},"body":{"license.html":{}}}],["inclusion",{"_index":4113,"title":{},"body":{"license.html":{}}}],["inclusive",{"_index":3074,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["income",{"_index":3079,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["incompatible",{"_index":3850,"title":{},"body":{"license.html":{}}}],["incorporating",{"_index":4507,"title":{},"body":{"license.html":{}}}],["incorporation",{"_index":4175,"title":{},"body":{"license.html":{}}}],["incorrect",{"_index":1041,"title":{},"body":{"injectables/AuthService.html":{}}}],["indemnification",{"_index":4256,"title":{},"body":{"license.html":{}}}],["independent",{"_index":4102,"title":{},"body":{"license.html":{}}}],["index",{"_index":7,"title":{"index.html":{}},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["indicate",{"_index":4308,"title":{},"body":{"license.html":{}}}],["indicating",{"_index":4270,"title":{},"body":{"license.html":{}}}],["individual",{"_index":1288,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"license.html":{}}}],["individuals",{"_index":3856,"title":{},"body":{"license.html":{}}}],["industrial",{"_index":1775,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["info",{"_index":3,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{}}}],["inform",{"_index":4158,"title":{},"body":{"license.html":{}}}],["information",{"_index":880,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"guards/RoleGuard.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["infringe",{"_index":4306,"title":{},"body":{"license.html":{}}}],["infringed",{"_index":4335,"title":{},"body":{"license.html":{}}}],["infringement",{"_index":3925,"title":{},"body":{"license.html":{}}}],["init",{"_index":921,"title":{},"body":{"injectables/AuthService.html":{}}}],["initialization",{"_index":1373,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{}}}],["initialize",{"_index":1471,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["initialparams",{"_index":538,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["initiate",{"_index":4329,"title":{},"body":{"license.html":{}}}],["inject",{"_index":1338,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["inject(mat_dialog_data",{"_index":1336,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["injectable",{"_index":894,"title":{"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"injectables/LocationService.html":{},"injectables/LoggingService.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"interceptors/MockBackendInterceptor.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["injectables",{"_index":911,"title":{},"body":{"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"injectables/LocationService.html":{},"injectables/LoggingService.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"overview.html":{}}}],["input",{"_index":1283,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/TransactionDetailsComponent.html":{},"miscellaneous/functions.html":{}}}],["input('routerlink",{"_index":2946,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["inputs",{"_index":1299,"title":{},"body":{"classes/CustomValidator.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/TransactionDetailsComponent.html":{}}}],["inside",{"_index":3846,"title":{},"body":{"license.html":{}}}],["install",{"_index":3699,"title":{},"body":{"index.html":{},"license.html":{}}}],["installation",{"_index":4192,"title":{},"body":{"license.html":{}}}],["installed",{"_index":4207,"title":{},"body":{"license.html":{}}}],["instance",{"_index":66,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["instanceof",{"_index":1029,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{}}}],["instantiates",{"_index":866,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["instead",{"_index":4513,"title":{},"body":{"license.html":{}}}],["instructor",{"_index":1920,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["insurance",{"_index":2089,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["intact",{"_index":4077,"title":{},"body":{"license.html":{}}}],["intended",{"_index":3781,"title":{},"body":{"license.html":{}}}],["intention",{"_index":4069,"title":{},"body":{"license.html":{}}}],["interaction",{"_index":3941,"title":{},"body":{"license.html":{}}}],["interactive",{"_index":3943,"title":{},"body":{"license.html":{}}}],["intercept",{"_index":1370,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["intercept(request",{"_index":1376,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["interceptor",{"_index":837,"title":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}},"body":{"components/AuthComponent.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"coverage.html":{}}}],["interceptors",{"_index":1363,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["intercepts",{"_index":1365,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["interchange",{"_index":4126,"title":{},"body":{"license.html":{}}}],["interest",{"_index":4323,"title":{},"body":{"license.html":{}}}],["interface",{"_index":0,"title":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/MutableKeyStore.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{}},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"injectables/AuthService.html":{},"interfaces/Category.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"classes/TokenRegistry.html":{},"coverage.html":{},"license.html":{}}}],["interfaces",{"_index":2,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/MutableKeyStore.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"license.html":{},"overview.html":{}}}],["interfered",{"_index":4199,"title":{},"body":{"license.html":{}}}],["intern",{"_index":1941,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["internal",{"_index":2508,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["internally",{"_index":1608,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["interpretation",{"_index":4462,"title":{},"body":{"license.html":{}}}],["interpreter",{"_index":3989,"title":{},"body":{"license.html":{}}}],["intimate",{"_index":4003,"title":{},"body":{"license.html":{}}}],["invalid",{"_index":1052,"title":{},"body":{"injectables/AuthService.html":{},"classes/CustomErrorStateMatcher.html":{}}}],["invalidate",{"_index":4098,"title":{},"body":{"license.html":{}}}],["irrevocable",{"_index":4012,"title":{},"body":{"license.html":{}}}],["isdevmode",{"_index":1569,"title":{},"body":{"injectables/LoggingService.html":{}}}],["isdialogopen",{"_index":1346,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["isencryptedkeycheck",{"_index":1055,"title":{},"body":{"injectables/AuthService.html":{}}}],["isencryptedprivatekey",{"_index":2608,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["isencryptedprivatekey(privatekey",{"_index":2645,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["iserrorstate",{"_index":1277,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["iserrorstate(control",{"_index":1278,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["issubmitted",{"_index":1291,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["isvalidkey",{"_index":2609,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["isvalidkey(key",{"_index":2647,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["isvalidkeycheck",{"_index":1049,"title":{},"body":{"injectables/AuthService.html":{}}}],["iswarning",{"_index":1439,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["iswarning(errortracestring",{"_index":1452,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["it's",{"_index":1456,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["item",{"_index":3958,"title":{},"body":{"license.html":{}}}],["items",{"_index":1610,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["itself",{"_index":4212,"title":{},"body":{"license.html":{}}}],["jack",{"_index":1635,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["jane",{"_index":3496,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["jembe",{"_index":2003,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jewel",{"_index":2387,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jik",{"_index":2331,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jogoo",{"_index":1783,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["john",{"_index":3488,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["jomvu",{"_index":1823,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["journalist",{"_index":1921,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jquery",{"_index":3619,"title":{},"body":{"dependencies.html":{}}}],["js",{"_index":3635,"title":{},"body":{"dependencies.html":{}}}],["json.parse(localstorage.getitem(atob('cicada_user",{"_index":2930,"title":{},"body":{"guards/RoleGuard.html":{}}}],["json.stringify",{"_index":1407,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["jua",{"_index":2042,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juacali",{"_index":2041,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juakali",{"_index":2039,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jualikali",{"_index":2040,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juice",{"_index":2286,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juja",{"_index":1781,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["junda",{"_index":1838,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["june",{"_index":3755,"title":{},"body":{"license.html":{}}}],["kabete",{"_index":1764,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kabiro",{"_index":1794,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kafuduni",{"_index":1692,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kahawa",{"_index":2203,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kaimati",{"_index":2200,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kajiado",{"_index":1880,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kakamega",{"_index":1878,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kakuma",{"_index":1851,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kalalani",{"_index":1691,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kali",{"_index":2043,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kaloleni",{"_index":1693,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kamba",{"_index":2198,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kambi",{"_index":1642,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kamongo",{"_index":1653,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kangemi",{"_index":1756,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kanisa",{"_index":1958,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kariobangi",{"_index":1776,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["karma",{"_index":3735,"title":{},"body":{"index.html":{}}}],["kasarani",{"_index":1777,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kasemeni",{"_index":1686,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["katundani",{"_index":1687,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kawangware",{"_index":1759,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayaba",{"_index":1640,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayba",{"_index":1641,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayole",{"_index":1778,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kazi",{"_index":2048,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ke",{"_index":2782,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["kebeba",{"_index":2395,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["keccak",{"_index":3317,"title":{},"body":{"injectables/TransactionService.html":{}}}],["keccak(256",{"_index":3367,"title":{},"body":{"injectables/TransactionService.html":{}}}],["keep",{"_index":4076,"title":{},"body":{"license.html":{}}}],["keki",{"_index":2204,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kenya",{"_index":2783,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["kenyatta",{"_index":1770,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kericho",{"_index":1879,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kernel",{"_index":3983,"title":{},"body":{"license.html":{}}}],["kerosene",{"_index":2451,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kerosine",{"_index":2450,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["key",{"_index":823,"title":{},"body":{"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/CustomValidator.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["key.getkeyid().tohex",{"_index":2687,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["key.isdecrypted",{"_index":2683,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyform",{"_index":802,"title":{},"body":{"components/AuthComponent.html":{}}}],["keyformstub",{"_index":809,"title":{},"body":{"components/AuthComponent.html":{}}}],["keyid",{"_index":2622,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring",{"_index":2663,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["keyring.clear",{"_index":2700,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.getkeysforid(keyid",{"_index":2692,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.load",{"_index":2665,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys",{"_index":2671,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.getforid(keyid",{"_index":2694,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.importkey(privatekey",{"_index":2668,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys",{"_index":2670,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0",{"_index":2672,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0].getkeyid().tohex",{"_index":2691,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0].keypacket",{"_index":2685,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0].keypacket.fingerprint",{"_index":2686,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.getforaddress(address",{"_index":2696,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.getforid(keyid",{"_index":2693,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.getforid(subkeyid",{"_index":2695,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.importkey(publickey",{"_index":2667,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.keys",{"_index":2669,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.removeforid(keyid",{"_index":2698,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.removekeysforid(keyid",{"_index":2697,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.store",{"_index":2666,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keys",{"_index":690,"title":{},"body":{"components/AppComponent.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["keystore",{"_index":2591,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["khaimati",{"_index":2199,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kiambu",{"_index":1884,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibanda",{"_index":2337,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibandaogo",{"_index":1688,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibandaongo",{"_index":1689,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibera",{"_index":1750,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibira",{"_index":1751,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibra",{"_index":1752,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kidzuvini",{"_index":1690,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kikuyu",{"_index":1786,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kilfi",{"_index":1841,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kilibole",{"_index":1694,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kilifi",{"_index":52,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["kinango",{"_index":1662,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kind",{"_index":3937,"title":{},"body":{"license.html":{}}}],["kinds",{"_index":3772,"title":{},"body":{"license.html":{}}}],["kingston",{"_index":1650,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kingstone",{"_index":1652,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kinyozi",{"_index":2047,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kiosk",{"_index":2338,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kirembe",{"_index":1805,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisauni",{"_index":1827,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisii",{"_index":1873,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisumu",{"_index":1859,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitabu",{"_index":1948,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitengela",{"_index":1767,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitui",{"_index":1852,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kizingo",{"_index":1812,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kmoja",{"_index":1797,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["knitting",{"_index":2049,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["know",{"_index":3801,"title":{},"body":{"license.html":{}}}],["knowingly",{"_index":4362,"title":{},"body":{"license.html":{}}}],["knowledge",{"_index":4371,"title":{},"body":{"license.html":{}}}],["known/publickeys",{"_index":4542,"title":{},"body":{"miscellaneous/variables.html":{}}}],["kobo",{"_index":2998,"title":{},"body":{"components/SettingsComponent.html":{}}}],["kokotoni",{"_index":1745,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["korokocho",{"_index":1651,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["korosho",{"_index":2284,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kra",{"_index":1971,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["krcs",{"_index":1943,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kubeba",{"_index":2410,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kufua",{"_index":2050,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kujenga",{"_index":2046,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kuku",{"_index":2202,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kulima",{"_index":2000,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kunde",{"_index":2201,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kuni",{"_index":2431,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kushona",{"_index":2038,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kusumu",{"_index":1868,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kwale",{"_index":1663,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kwangware",{"_index":1760,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kware",{"_index":1793,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lab",{"_index":2311,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["labor",{"_index":2054,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["labour",{"_index":2005,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["landi",{"_index":1800,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["landlord",{"_index":2027,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["langata",{"_index":1801,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["language",{"_index":3967,"title":{},"body":{"license.html":{}}}],["larger",{"_index":4106,"title":{},"body":{"license.html":{}}}],["last",{"_index":82,"title":{},"body":{"classes/AccountIndex.html":{}}}],["last(5",{"_index":136,"title":{},"body":{"classes/AccountIndex.html":{}}}],["last(numberofaccounts",{"_index":129,"title":{},"body":{"classes/AccountIndex.html":{}}}],["later",{"_index":697,"title":{},"body":{"components/AppComponent.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["latitude",{"_index":27,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["laundry",{"_index":2055,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["law",{"_index":2129,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["laws",{"_index":3896,"title":{},"body":{"license.html":{}}}],["lawsuit",{"_index":4333,"title":{},"body":{"license.html":{}}}],["lazy",{"_index":3714,"title":{},"body":{"index.html":{}}}],["leader",{"_index":1970,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["leaving",{"_index":1053,"title":{},"body":{"injectables/AuthService.html":{}}}],["lecturer",{"_index":1907,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["legal",{"_index":3829,"title":{},"body":{"license.html":{}}}],["legend",{"_index":287,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"components/AuthComponent.html":{},"modules/AuthModule.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"overview.html":{}}}],["length",{"_index":3139,"title":{},"body":{"injectables/TokenService.html":{}}}],["leso",{"_index":2345,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lesser",{"_index":4512,"title":{},"body":{"license.html":{}}}],["lesso",{"_index":2346,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lesson",{"_index":1922,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["level",{"_index":774,"title":{},"body":{"modules/AppModule.html":{}}}],["lgpl.html",{"_index":4515,"title":{},"body":{"license.html":{}}}],["liability",{"_index":4236,"title":{},"body":{"license.html":{}}}],["liable",{"_index":3924,"title":{},"body":{"license.html":{}}}],["libraries",{"_index":3969,"title":{},"body":{"license.html":{}}}],["library",{"_index":2688,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["license",{"_index":3752,"title":{"license.html":{}},"body":{"license.html":{}}}],["licensed",{"_index":3900,"title":{},"body":{"license.html":{}}}],["licensee",{"_index":3903,"title":{},"body":{"license.html":{}}}],["licensees",{"_index":3905,"title":{},"body":{"license.html":{}}}],["licenses",{"_index":3774,"title":{},"body":{"license.html":{}}}],["licensing",{"_index":4310,"title":{},"body":{"license.html":{}}}],["licensors",{"_index":4249,"title":{},"body":{"license.html":{}}}],["likewise",{"_index":4303,"title":{},"body":{"license.html":{}}}],["likoni",{"_index":1809,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["limit",{"_index":1091,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"license.html":{}}}],["limitation",{"_index":4446,"title":{},"body":{"license.html":{}}}],["limited",{"_index":4434,"title":{},"body":{"license.html":{}}}],["limiting",{"_index":4235,"title":{},"body":{"license.html":{}}}],["limuru",{"_index":1802,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lindi",{"_index":1749,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["line",{"_index":4485,"title":{},"body":{"license.html":{}}}],["line:directive",{"_index":2944,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["line:no",{"_index":1143,"title":{},"body":{"injectables/BlockSyncService.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["lines",{"_index":2336,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["link",{"_index":2938,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{},"coverage.html":{},"license.html":{}}}],["linked",{"_index":4000,"title":{},"body":{"license.html":{}}}],["linking",{"_index":4510,"title":{},"body":{"license.html":{}}}],["linkparams",{"_index":2947,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["list",{"_index":3954,"title":{},"body":{"license.html":{}}}],["literal",{"_index":23,"title":{},"body":{"interfaces/AccountDetails.html":{},"injectables/AuthService.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["litigation",{"_index":4330,"title":{},"body":{"license.html":{}}}],["lo",{"_index":1107,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["load",{"_index":404,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{}}}],["loadchildren",{"_index":791,"title":{},"body":{"modules/AppRoutingModule.html":{},"modules/PagesRoutingModule.html":{}}}],["loaded",{"_index":882,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"index.html":{}}}],["loadevent",{"_index":3119,"title":{},"body":{"injectables/TokenService.html":{}}}],["loading",{"_index":803,"title":{},"body":{"components/AuthComponent.html":{},"index.html":{}}}],["loadkeyring",{"_index":2610,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["loan",{"_index":2321,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["local",{"_index":4463,"title":{},"body":{"license.html":{}}}],["localstorage",{"_index":893,"title":{},"body":{"guards/AuthGuard.html":{}}}],["localstorage.getitem(btoa('cicada_private_key",{"_index":898,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{}}}],["localstorage.setitem(btoa('cicada_private_key",{"_index":1060,"title":{},"body":{"injectables/AuthService.html":{}}}],["location",{"_index":16,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["locations",{"_index":517,"title":{},"body":{"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["locationservice",{"_index":1227,"title":{"injectables/LocationService.html":{}},"body":{"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"coverage.html":{}}}],["log",{"_index":994,"title":{},"body":{"injectables/AuthService.html":{}}}],["logerror",{"_index":1440,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["logerror(error",{"_index":1459,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["logger",{"_index":768,"title":{},"body":{"modules/AppModule.html":{},"injectables/LoggingService.html":{},"dependencies.html":{}}}],["loggermodule",{"_index":766,"title":{},"body":{"modules/AppModule.html":{}}}],["loggermodule.forroot",{"_index":773,"title":{},"body":{"modules/AppModule.html":{}}}],["logging",{"_index":1375,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{}}}],["logginginterceptor",{"_index":750,"title":{"interceptors/LoggingInterceptor.html":{}},"body":{"modules/AppModule.html":{},"interceptors/LoggingInterceptor.html":{},"coverage.html":{},"overview.html":{}}}],["loggingservice",{"_index":361,"title":{"injectables/LoggingService.html":{}},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"components/TokensComponent.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["loggingurl",{"_index":4537,"title":{},"body":{"miscellaneous/variables.html":{}}}],["login",{"_index":805,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["loginresponse",{"_index":922,"title":{},"body":{"injectables/AuthService.html":{}}}],["loginresponse(o",{"_index":937,"title":{},"body":{"injectables/AuthService.html":{}}}],["loginview",{"_index":923,"title":{},"body":{"injectables/AuthService.html":{}}}],["loglevel",{"_index":4534,"title":{},"body":{"miscellaneous/variables.html":{}}}],["logout",{"_index":924,"title":{},"body":{"injectables/AuthService.html":{},"components/SettingsComponent.html":{}}}],["logs",{"_index":1463,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["long",{"_index":4023,"title":{},"body":{"license.html":{}}}],["longitude",{"_index":28,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["loss",{"_index":4453,"title":{},"body":{"license.html":{}}}],["losses",{"_index":4456,"title":{},"body":{"license.html":{}}}],["low",{"_index":1191,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["lower",{"_index":3077,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["lowest",{"_index":170,"title":{},"body":{"classes/AccountIndex.html":{}}}],["lunga",{"_index":1658,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lungalunga",{"_index":1654,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lungu",{"_index":1657,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lutsangani",{"_index":1695,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["m",{"_index":47,"title":{},"body":{"interfaces/AccountDetails.html":{},"injectables/BlockSyncService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"miscellaneous/variables.html":{}}}],["m.accountsmodule",{"_index":2879,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.adminmodule",{"_index":2883,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.authmodule",{"_index":793,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["m.pagesmodule",{"_index":795,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["m.settingsmodule",{"_index":2877,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.tokensmodule",{"_index":2881,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.transactionsmodule",{"_index":2875,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["maalim",{"_index":1902,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maandazi",{"_index":2236,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maandzi",{"_index":2279,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabenda",{"_index":2176,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabesheni",{"_index":1716,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabuyu",{"_index":2215,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["machakos",{"_index":1875,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["machine",{"_index":4116,"title":{},"body":{"license.html":{}}}],["machungwa",{"_index":2216,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["made",{"_index":1284,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["madewani",{"_index":1712,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["madrasa",{"_index":1952,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maembe",{"_index":2099,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mafuta",{"_index":2435,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magari",{"_index":2423,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magogoni",{"_index":1837,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magongo",{"_index":1820,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mahamri",{"_index":2244,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maharagwe",{"_index":2242,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mahindi",{"_index":2235,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mail",{"_index":4495,"title":{},"body":{"license.html":{}}}],["mailman",{"_index":1972,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["main",{"_index":1892,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maintain",{"_index":4146,"title":{},"body":{"license.html":{}}}],["maize",{"_index":2229,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majani",{"_index":2098,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majaoni",{"_index":1835,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majengo",{"_index":1739,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maji",{"_index":2288,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["major",{"_index":3976,"title":{},"body":{"license.html":{}}}],["makaa",{"_index":2434,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makadara",{"_index":1768,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makanga",{"_index":2424,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["make",{"_index":3785,"title":{},"body":{"license.html":{}}}],["makes",{"_index":4041,"title":{},"body":{"license.html":{}}}],["makina",{"_index":1753,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["making",{"_index":3911,"title":{},"body":{"license.html":{}}}],["makobeni",{"_index":1711,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makonge",{"_index":2120,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makongeni",{"_index":1844,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makueni",{"_index":1871,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makuluni",{"_index":1709,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makupa",{"_index":1815,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makuti",{"_index":2045,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["male",{"_index":2453,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["mali",{"_index":2353,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["malimali",{"_index":2351,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["management",{"_index":3004,"title":{},"body":{"components/SettingsComponent.html":{}}}],["manager",{"_index":2063,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["managing",{"_index":3693,"title":{},"body":{"index.html":{}}}],["manamba",{"_index":2415,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mandazi",{"_index":2233,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mango",{"_index":2189,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mangwe",{"_index":2363,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["manipulation",{"_index":871,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"guards/RoleGuard.html":{}}}],["manner",{"_index":4346,"title":{},"body":{"license.html":{}}}],["manufacturer",{"_index":3848,"title":{},"body":{"license.html":{}}}],["manyani",{"_index":1836,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["map",{"_index":1319,"title":{},"body":{"classes/CustomValidator.html":{}}}],["march",{"_index":4395,"title":{},"body":{"license.html":{}}}],["mariakani",{"_index":1710,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marital",{"_index":1936,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marked",{"_index":3839,"title":{},"body":{"license.html":{}}}],["market",{"_index":1807,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marketing",{"_index":2123,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marks",{"_index":4254,"title":{},"body":{"license.html":{}}}],["marondo",{"_index":2278,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["masai",{"_index":1643,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mask",{"_index":2309,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["masks",{"_index":3898,"title":{},"body":{"license.html":{}}}],["mason",{"_index":2066,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mat_dialog_data",{"_index":1339,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["matatu",{"_index":2400,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matbuttonmodule",{"_index":481,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matcardmodule",{"_index":483,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["match",{"_index":1309,"title":{},"body":{"classes/CustomValidator.html":{}}}],["matcheckboxmodule",{"_index":473,"title":{},"body":{"modules/AccountsModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matcher",{"_index":200,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["matcher.ts",{"_index":1266,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"coverage.html":{}}}],["matcher.ts:17",{"_index":1282,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["matches",{"_index":2926,"title":{},"body":{"guards/RoleGuard.html":{}}}],["matching",{"_index":58,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"routes.html":{},"miscellaneous/variables.html":{}}}],["matdialog",{"_index":1349,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["matdialogmodule",{"_index":3038,"title":{},"body":{"modules/SharedModule.html":{}}}],["matdialogref",{"_index":1354,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["material",{"_index":2814,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["material.digest",{"_index":2829,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["materialize",{"_index":1615,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["materially",{"_index":4213,"title":{},"body":{"license.html":{}}}],["matformfieldmodule",{"_index":478,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["math.pow(10",{"_index":3089,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["mathare",{"_index":1779,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mathere",{"_index":1803,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maticonmodule",{"_index":485,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matinputmodule",{"_index":476,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matmenumodule",{"_index":3023,"title":{},"body":{"modules/SettingsModule.html":{}}}],["matoke",{"_index":2280,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matpaginator",{"_index":383,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["matpaginatormodule",{"_index":475,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matprogressspinnermodule",{"_index":494,"title":{},"body":{"modules/AccountsModule.html":{}}}],["matpseudocheckboxmodule",{"_index":3184,"title":{},"body":{"modules/TokensModule.html":{}}}],["matradiomodule",{"_index":3021,"title":{},"body":{"modules/SettingsModule.html":{}}}],["matress",{"_index":2370,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matripplemodule",{"_index":492,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matselectmodule",{"_index":487,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TransactionsModule.html":{}}}],["matsidenavmodule",{"_index":3185,"title":{},"body":{"modules/TokensModule.html":{}}}],["matsnackbar",{"_index":3214,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["matsnackbarmodule",{"_index":499,"title":{},"body":{"modules/AccountsModule.html":{},"modules/TransactionsModule.html":{}}}],["matsort",{"_index":387,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["matsortmodule",{"_index":472,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["mattabledatasource",{"_index":374,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["mattabledatasource(accounts",{"_index":412,"title":{},"body":{"components/AccountsComponent.html":{}}}],["mattabledatasource(actions",{"_index":613,"title":{},"body":{"components/AdminComponent.html":{}}}],["mattabledatasource(this.tokens",{"_index":3172,"title":{},"body":{"components/TokensComponent.html":{}}}],["mattabledatasource(this.trustedusers",{"_index":2994,"title":{},"body":{"components/SettingsComponent.html":{}}}],["mattabledatasource(transactions",{"_index":3447,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["mattablemodule",{"_index":471,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["mattabsmodule",{"_index":490,"title":{},"body":{"modules/AccountsModule.html":{}}}],["mattoolbarmodule",{"_index":3187,"title":{},"body":{"modules/TokensModule.html":{}}}],["mattress",{"_index":2371,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mattresses",{"_index":2372,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matuga",{"_index":1740,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matunda",{"_index":2188,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mawe",{"_index":2097,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mayai",{"_index":2251,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazera",{"_index":1718,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazeras",{"_index":1717,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazingira",{"_index":1987,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maziwa",{"_index":2209,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbaazi",{"_index":2234,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbao",{"_index":2432,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbata",{"_index":2230,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbenda",{"_index":2177,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbita",{"_index":1857,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbog",{"_index":2211,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mboga",{"_index":2210,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbonga",{"_index":2136,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbuzi",{"_index":2217,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mc",{"_index":3502,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["mchanga",{"_index":2367,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchele",{"_index":2187,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchicha",{"_index":2219,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchuuzi",{"_index":2232,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchuzi",{"_index":2231,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["meaning",{"_index":4264,"title":{},"body":{"license.html":{}}}],["means",{"_index":3895,"title":{},"body":{"license.html":{}}}],["measure",{"_index":4049,"title":{},"body":{"license.html":{}}}],["measures",{"_index":4062,"title":{},"body":{"license.html":{}}}],["meat",{"_index":2238,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mechanic",{"_index":2069,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mediaquery",{"_index":648,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["mediaquery.matches",{"_index":1593,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["mediaquerylist",{"_index":673,"title":{},"body":{"components/AppComponent.html":{}}}],["medicine",{"_index":2310,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["medium",{"_index":4072,"title":{},"body":{"license.html":{}}}],["meet",{"_index":4086,"title":{},"body":{"license.html":{}}}],["meets",{"_index":3959,"title":{},"body":{"license.html":{}}}],["mellon",{"_index":2191,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["melon",{"_index":2190,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["menu",{"_index":1601,"title":{},"body":{"directives/MenuToggleDirective.html":{},"license.html":{}}}],["menuselectiondirective",{"_index":335,"title":{"directives/MenuSelectionDirective.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuSelectionDirective.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["menutoggledirective",{"_index":337,"title":{"directives/MenuToggleDirective.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuToggleDirective.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["merchantability",{"_index":4435,"title":{},"body":{"license.html":{}}}],["mere",{"_index":3940,"title":{},"body":{"license.html":{}}}],["mergemap",{"_index":1616,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["merging",{"_index":4319,"title":{},"body":{"license.html":{}}}],["meru",{"_index":1872,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["message",{"_index":702,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{},"components/ErrorDialogComponent.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["message:\\n${message}.\\nstack",{"_index":1481,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["messages",{"_index":1275,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["met",{"_index":4014,"title":{},"body":{"license.html":{}}}],["meta",{"_index":37,"title":{"interfaces/Meta.html":{}},"body":{"interfaces/AccountDetails.html":{},"components/AuthComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"interfaces/Signature.html":{},"injectables/TransactionService.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["metadata",{"_index":187,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["metal",{"_index":2126,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["metaresponse",{"_index":46,"title":{"interfaces/MetaResponse.html":{}},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"coverage.html":{}}}],["method",{"_index":530,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["methods",{"_index":77,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"license.html":{}}}],["methodsignature",{"_index":3370,"title":{},"body":{"injectables/TransactionService.html":{}}}],["mfugaji",{"_index":2071,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mganga",{"_index":2301,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mgema",{"_index":2081,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mhogo",{"_index":2239,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miatsani",{"_index":1722,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miatsiani",{"_index":1703,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["middle",{"_index":3078,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["mienzeni",{"_index":1704,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mifugo",{"_index":2252,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["migori",{"_index":1867,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miguneni",{"_index":1726,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mihogo",{"_index":2240,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikate",{"_index":2226,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikeka",{"_index":2364,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikindani",{"_index":1746,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["milk",{"_index":2207,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mill",{"_index":2059,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miloeni",{"_index":1715,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["minheight",{"_index":598,"title":{},"body":{"components/AdminComponent.html":{}}}],["minyenzeni",{"_index":1706,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mioleni",{"_index":1708,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miraa",{"_index":2206,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miritini",{"_index":1821,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["misc",{"_index":1747,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miscellaneous",{"_index":3640,"title":{"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}},"body":{"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["misrepresentation",{"_index":4245,"title":{},"body":{"license.html":{}}}],["miti",{"_index":1988,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mitumba",{"_index":2245,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mitungi",{"_index":2352,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miwa",{"_index":2243,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miyani",{"_index":1707,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miyenzeni",{"_index":1702,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjambere",{"_index":1834,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjengo",{"_index":2101,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjenzi",{"_index":2070,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkanyeni",{"_index":1700,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkate",{"_index":2224,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkokoteni",{"_index":2417,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mksiti",{"_index":1959,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkulima",{"_index":1999,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mlola",{"_index":1719,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mlolongo",{"_index":1769,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnarani",{"_index":1845,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnazi",{"_index":2218,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnyenzeni",{"_index":1705,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mocha",{"_index":3621,"title":{},"body":{"dependencies.html":{}}}],["mock",{"_index":541,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mockbackendinterceptor",{"_index":1605,"title":{"interceptors/MockBackendInterceptor.html":{}},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["mockbackendprovider",{"_index":763,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["mode",{"_index":1573,"title":{},"body":{"injectables/LoggingService.html":{},"license.html":{}}}],["model",{"_index":4131,"title":{},"body":{"license.html":{}}}],["modification",{"_index":3891,"title":{},"body":{"license.html":{}}}],["modifications",{"_index":3962,"title":{},"body":{"license.html":{}}}],["modified",{"_index":3838,"title":{},"body":{"license.html":{}}}],["modifies",{"_index":4090,"title":{},"body":{"license.html":{}}}],["modify",{"_index":3812,"title":{},"body":{"license.html":{}}}],["modifying",{"_index":3930,"title":{},"body":{"license.html":{}}}],["module",{"_index":437,"title":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"components/FooterStubComponent.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"components/SidebarStubComponent.html":{},"modules/TokensModule.html":{},"components/TopbarStubComponent.html":{},"modules/TransactionsModule.html":{},"coverage.html":{},"index.html":{},"overview.html":{}}}],["modules",{"_index":439,"title":{"modules.html":{}},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"index.html":{},"modules.html":{},"overview.html":{}}}],["mogoka",{"_index":2237,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mombasa",{"_index":1808,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["moment",{"_index":885,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["moolb",{"_index":3623,"title":{},"body":{"dependencies.html":{}}}],["more",{"_index":3748,"title":{},"body":{"index.html":{},"license.html":{}}}],["moreover",{"_index":4290,"title":{},"body":{"license.html":{}}}],["moto",{"_index":2436,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["motorbike",{"_index":2420,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["motorist",{"_index":2419,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mover",{"_index":2418,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["movie",{"_index":2365,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpesa",{"_index":2374,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpishi",{"_index":2079,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpsea",{"_index":2373,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ms",{"_index":1539,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["mshomoroni",{"_index":1840,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["msusi",{"_index":2080,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtambo",{"_index":2060,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtopanga",{"_index":1833,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtumba",{"_index":2067,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtwapa",{"_index":1842,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muguka",{"_index":2205,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muhogo",{"_index":2241,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mukuru",{"_index":1638,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["multi",{"_index":787,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["multiple",{"_index":2684,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["mulunguni",{"_index":1721,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mumias",{"_index":1864,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["musician",{"_index":2118,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mutable",{"_index":2660,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["mutablekeystore",{"_index":913,"title":{"interfaces/MutableKeyStore.html":{}},"body":{"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["mutablepgpkeystore",{"_index":770,"title":{"classes/MutablePgpKeyStore.html":{}},"body":{"modules/AppModule.html":{},"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"coverage.html":{}}}],["mutumba",{"_index":2343,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muugano",{"_index":1720,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mvita",{"_index":1816,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mvuvi",{"_index":2096,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwache",{"_index":1723,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwakirunge",{"_index":1839,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwalimu",{"_index":1901,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwangani",{"_index":1724,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwangaraba",{"_index":1713,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwashanga",{"_index":1714,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwea",{"_index":1885,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwehavikonje",{"_index":1725,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwiki",{"_index":1791,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwingi",{"_index":1853,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mworoni",{"_index":1829,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["myenzeni",{"_index":1701,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["n",{"_index":35,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["nairobi",{"_index":1639,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nakuru",{"_index":1886,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["name",{"_index":93,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["name(s",{"_index":1257,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["names",{"_index":1258,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["namesearchform",{"_index":201,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["namesearchformstub",{"_index":212,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["namesearchloading",{"_index":202,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["namesearchsubmitted",{"_index":203,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["nandi",{"_index":1881,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["narok",{"_index":1887,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nature",{"_index":4103,"title":{},"body":{"license.html":{}}}],["navigate",{"_index":3705,"title":{},"body":{"index.html":{}}}],["navigatedto",{"_index":2939,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["navigation",{"_index":868,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"guards/RoleGuard.html":{}}}],["navigator.online",{"_index":2750,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["nazi",{"_index":2222,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ndizi",{"_index":2196,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["necessary",{"_index":4443,"title":{},"body":{"license.html":{}}}],["need",{"_index":3805,"title":{},"body":{"license.html":{}}}],["needed",{"_index":3870,"title":{},"body":{"license.html":{}}}],["network",{"_index":73,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["networkstatuscomponent",{"_index":312,"title":{"components/NetworkStatusComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["new",{"_index":152,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"injectables/RegistryService.html":{},"components/SettingsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["newconversionevent",{"_index":1082,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["newconversionevent(tx",{"_index":1098,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["newtransferevent",{"_index":1083,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["newtransferevent(tx",{"_index":1101,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["next",{"_index":532,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"injectables/BlockSyncService.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"directives/RouterLinkDirectiveStub.html":{},"license.html":{}}}],["next.handle(request",{"_index":1507,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["next.handle(request).pipe",{"_index":1389,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["next.handle(request).pipe(tap(event",{"_index":1534,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["ng",{"_index":3711,"title":{},"body":{"index.html":{}}}],["ng2",{"_index":2870,"title":{},"body":{"modules/PagesModule.html":{},"dependencies.html":{}}}],["ngafterviewinit",{"_index":3424,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["ngano",{"_index":2221,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngform",{"_index":1281,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["ngmodule",{"_index":455,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["ngombe",{"_index":2220,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngombeni",{"_index":1817,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngong",{"_index":1789,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngoninit",{"_index":207,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/FooterComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["nguo",{"_index":2065,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngx",{"_index":767,"title":{},"body":{"modules/AppModule.html":{},"injectables/LoggingService.html":{},"dependencies.html":{}}}],["ngxlogger",{"_index":1552,"title":{},"body":{"injectables/LoggingService.html":{}}}],["ngxloggerlevel.error",{"_index":4535,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ngxloggerlevel.off",{"_index":4536,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ngómbeni",{"_index":1818,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["njugu",{"_index":2197,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nobody",{"_index":1495,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["nointernetconnection",{"_index":2742,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["non",{"_index":3886,"title":{},"body":{"license.html":{}}}],["noncommercially",{"_index":4138,"title":{},"body":{"license.html":{}}}],["none",{"_index":854,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nopasswordmatch",{"_index":1325,"title":{},"body":{"classes/CustomValidator.html":{}}}],["normal",{"_index":3974,"title":{},"body":{"license.html":{}}}],["normally",{"_index":4170,"title":{},"body":{"license.html":{}}}],["nothing",{"_index":4304,"title":{},"body":{"license.html":{}}}],["notice",{"_index":3949,"title":{},"body":{"license.html":{}}}],["notices",{"_index":3945,"title":{},"body":{"license.html":{}}}],["notifies",{"_index":4291,"title":{},"body":{"license.html":{}}}],["notify",{"_index":4286,"title":{},"body":{"license.html":{}}}],["notwithstanding",{"_index":4232,"title":{},"body":{"license.html":{}}}],["now",{"_index":1054,"title":{},"body":{"injectables/AuthService.html":{}}}],["npm",{"_index":3698,"title":{},"body":{"index.html":{}}}],["null",{"_index":1093,"title":{},"body":{"injectables/BlockSyncService.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["number",{"_index":22,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"interfaces/Staff.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/Transaction.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["number(await",{"_index":3383,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(conversion.fromvalue",{"_index":3348,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(conversion.tovalue",{"_index":3350,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(transaction.value",{"_index":3334,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(value",{"_index":3088,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["numbered",{"_index":4423,"title":{},"body":{"license.html":{}}}],["numberofaccounts",{"_index":133,"title":{},"body":{"classes/AccountIndex.html":{}}}],["numbers",{"_index":3650,"title":{},"body":{"miscellaneous/functions.html":{}}}],["nurse",{"_index":2304,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nursery",{"_index":1916,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyalenda",{"_index":1860,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyalgunga",{"_index":1856,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyali",{"_index":1830,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyama",{"_index":2193,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyanya",{"_index":2192,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyanza",{"_index":1854,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyeri",{"_index":1882,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzora",{"_index":1727,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzovuni",{"_index":1728,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzugu",{"_index":2283,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["o",{"_index":939,"title":{},"body":{"injectables/AuthService.html":{}}}],["o.challenge",{"_index":1025,"title":{},"body":{"injectables/AuthService.html":{}}}],["o.realm",{"_index":1026,"title":{},"body":{"injectables/AuthService.html":{}}}],["objcsv",{"_index":3560,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["object",{"_index":1310,"title":{},"body":{"classes/CustomValidator.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["objects",{"_index":1448,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["obligate",{"_index":4407,"title":{},"body":{"license.html":{}}}],["obligated",{"_index":4152,"title":{},"body":{"license.html":{}}}],["obligations",{"_index":4051,"title":{},"body":{"license.html":{}}}],["observable",{"_index":527,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{}}}],["observables's",{"_index":546,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["occasionally",{"_index":4137,"title":{},"body":{"license.html":{}}}],["occurred",{"_index":1395,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["occurring",{"_index":4301,"title":{},"body":{"license.html":{}}}],["occurs",{"_index":1451,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["of('hello",{"_index":3413,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["of(new",{"_index":2586,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["of(null",{"_index":2501,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["offer",{"_index":3827,"title":{},"body":{"license.html":{}}}],["offered",{"_index":4160,"title":{},"body":{"license.html":{}}}],["offering",{"_index":4141,"title":{},"body":{"license.html":{}}}],["office",{"_index":1846,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["official",{"_index":3964,"title":{},"body":{"license.html":{}}}],["offline",{"_index":2756,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["offset",{"_index":1090,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["ohuru",{"_index":1824,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["oil",{"_index":2442,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ok(accounttypes",{"_index":2545,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(actions",{"_index":2546,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(areanamelist",{"_index":2551,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(areatypelist",{"_index":2559,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(categorylist",{"_index":2567,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(genders",{"_index":2572,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(message",{"_index":2544,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedaction",{"_index":2547,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedareaname.name",{"_index":2555,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedareatype.name",{"_index":2563,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedcategory.name",{"_index":2571,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedtoken",{"_index":2578,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(responsebody",{"_index":2585,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(tokens",{"_index":2573,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(transactiontypes",{"_index":2579,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["old",{"_index":1813,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["oldchain:1",{"_index":26,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["olympic",{"_index":1755,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ombeni",{"_index":1819,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["omena",{"_index":2194,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["omeno",{"_index":2281,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["onaddresssearch",{"_index":208,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["once",{"_index":3742,"title":{},"body":{"index.html":{}}}],["onclick",{"_index":2949,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["one",{"_index":3722,"title":{},"body":{"index.html":{},"license.html":{}}}],["oninit",{"_index":186,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/FooterComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["onions",{"_index":2282,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["online",{"_index":2757,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["onmenuselect",{"_index":1584,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["onmenutoggle",{"_index":1597,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["onnamesearch",{"_index":209,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["onphonesearch",{"_index":210,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["onresize",{"_index":652,"title":{},"body":{"components/AppComponent.html":{}}}],["onresize(e",{"_index":670,"title":{},"body":{"components/AppComponent.html":{}}}],["onsign",{"_index":2795,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["onsign(signature",{"_index":2821,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["onsubmit",{"_index":806,"title":{},"body":{"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["onverify",{"_index":2796,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["onverify(flag",{"_index":2822,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["opendialog",{"_index":1347,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["opendialog(data",{"_index":1351,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["openpgp",{"_index":2662,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["openpgp.cleartext.fromtext(digest",{"_index":2833,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["openpgp.key.readarmored(key",{"_index":2678,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.key.readarmored(privatekey",{"_index":2681,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.keyring",{"_index":2664,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"miscellaneous/variables.html":{}}}],["openpgp.message.fromtext(plaintext",{"_index":2706,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.readkey",{"_index":2674,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.sign(opts",{"_index":2710,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.signature",{"_index":2830,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["openpgp.verify(opts).then((v",{"_index":2836,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["operate",{"_index":4459,"title":{},"body":{"license.html":{}}}],["operated",{"_index":4144,"title":{},"body":{"license.html":{}}}],["operating",{"_index":3985,"title":{},"body":{"license.html":{}}}],["operation",{"_index":3659,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{}}}],["option",{"_index":4229,"title":{},"body":{"license.html":{}}}],["optional",{"_index":9,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"interfaces/Signer.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{}}}],["options",{"_index":3956,"title":{},"body":{"license.html":{}}}],["opts",{"_index":2705,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["oranges",{"_index":2223,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["order",{"_index":4299,"title":{},"body":{"license.html":{}}}],["organisation",{"_index":2778,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organization",{"_index":2759,"title":{},"body":{"components/OrganizationComponent.html":{},"components/SettingsComponent.html":{},"modules/SettingsRoutingModule.html":{},"license.html":{}}}],["organization'},{'name",{"_index":315,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["organization.component.html",{"_index":2761,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organization.component.scss",{"_index":2760,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organizationcomponent",{"_index":314,"title":{"components/OrganizationComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["organizationform",{"_index":2762,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organizationformstub",{"_index":2763,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organizations",{"_index":3906,"title":{},"body":{"license.html":{}}}],["origin",{"_index":4246,"title":{},"body":{"license.html":{}}}],["original",{"_index":4247,"title":{},"body":{"license.html":{}}}],["others",{"_index":3807,"title":{},"body":{"license.html":{}}}],["otherwise",{"_index":124,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{}}}],["out",{"_index":453,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"index.html":{},"license.html":{},"overview.html":{}}}],["outgoing",{"_index":1367,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["outlet",{"_index":883,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["output",{"_index":4018,"title":{},"body":{"license.html":{}}}],["outside",{"_index":4034,"title":{},"body":{"license.html":{}}}],["overview",{"_index":3749,"title":{"overview.html":{}},"body":{"index.html":{},"overview.html":{}}}],["owino",{"_index":1659,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["owned",{"_index":4342,"title":{},"body":{"license.html":{}}}],["owner",{"_index":2470,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["package",{"_index":3592,"title":{"dependencies.html":{}},"body":{}}],["packaged",{"_index":4096,"title":{},"body":{"license.html":{}}}],["packaging",{"_index":3975,"title":{},"body":{"license.html":{}}}],["page",{"_index":707,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["pages",{"_index":2854,"title":{},"body":{"components/PagesComponent.html":{}}}],["pages'},{'name",{"_index":317,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["pages.component",{"_index":2873,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["pages.component.html",{"_index":2856,"title":{},"body":{"components/PagesComponent.html":{}}}],["pages.component.scss",{"_index":2855,"title":{},"body":{"components/PagesComponent.html":{}}}],["pages/accounts/account",{"_index":462,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["pages/accounts/accounts",{"_index":458,"title":{},"body":{"modules/AccountsModule.html":{}}}],["pages/accounts/accounts.component",{"_index":460,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["pages/accounts/create",{"_index":468,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["pages/admin/admin",{"_index":641,"title":{},"body":{"modules/AdminModule.html":{}}}],["pages/admin/admin.component",{"_index":642,"title":{},"body":{"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{}}}],["pages/pages",{"_index":2867,"title":{},"body":{"modules/PagesModule.html":{}}}],["pages/pages.component",{"_index":2868,"title":{},"body":{"modules/PagesModule.html":{}}}],["pages/settings/organization/organization.component",{"_index":3020,"title":{},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["pages/settings/settings",{"_index":3018,"title":{},"body":{"modules/SettingsModule.html":{}}}],["pages/settings/settings.component",{"_index":3019,"title":{},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["pages/tokens/token",{"_index":3183,"title":{},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{}}}],["pages/tokens/tokens",{"_index":3181,"title":{},"body":{"modules/TokensModule.html":{}}}],["pages/tokens/tokens.component",{"_index":3182,"title":{},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{}}}],["pages/transactions/transaction",{"_index":3473,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["pages/transactions/transactions",{"_index":3471,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["pages/transactions/transactions.component",{"_index":3472,"title":{},"body":{"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["pages/transactions/transactions.module",{"_index":489,"title":{},"body":{"modules/AccountsModule.html":{}}}],["pagescomponent",{"_index":316,"title":{"components/PagesComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["pagesizeoptions",{"_index":352,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{}}}],["pagesmodule",{"_index":2861,"title":{"modules/PagesModule.html":{}},"body":{"modules/PagesModule.html":{},"modules.html":{},"overview.html":{}}}],["pagesroutingmodule",{"_index":2865,"title":{"modules/PagesRoutingModule.html":{}},"body":{"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["paginator",{"_index":353,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["painter",{"_index":2072,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pampers",{"_index":2360,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["papa",{"_index":2174,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["paper",{"_index":4494,"title":{},"body":{"license.html":{}}}],["paraffin",{"_index":2445,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["parafin",{"_index":2447,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["paragraph",{"_index":4276,"title":{},"body":{"license.html":{}}}],["paragraphs",{"_index":4354,"title":{},"body":{"license.html":{}}}],["param",{"_index":155,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"classes/TokenRegistry.html":{}}}],["parameters",{"_index":92,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{}}}],["parammap",{"_index":526,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["params",{"_index":536,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"components/TokenDetailsComponent.html":{}}}],["parrafin",{"_index":2446,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["parsed",{"_index":3679,"title":{},"body":{"miscellaneous/functions.html":{}}}],["parsedata",{"_index":3558,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["parsedata(data",{"_index":3677,"title":{},"body":{"miscellaneous/functions.html":{}}}],["parseint(urlparts[urlparts.length",{"_index":2584,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["parser",{"_index":3329,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["parses",{"_index":3678,"title":{},"body":{"miscellaneous/functions.html":{}}}],["part",{"_index":3908,"title":{},"body":{"license.html":{}}}],["particular",{"_index":884,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["parties",{"_index":3939,"title":{},"body":{"license.html":{}}}],["parts",{"_index":2349,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["party",{"_index":896,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["party's",{"_index":4321,"title":{},"body":{"license.html":{}}}],["pass",{"_index":2532,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["passphrase",{"_index":1042,"title":{},"body":{"injectables/AuthService.html":{}}}],["password",{"_index":1058,"title":{},"body":{"injectables/AuthService.html":{},"classes/CustomValidator.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"components/SettingsComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{},"license.html":{}}}],["password.type",{"_index":2897,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["passwordmatchvalidator",{"_index":1301,"title":{},"body":{"classes/CustomValidator.html":{}}}],["passwordmatchvalidator(control",{"_index":1303,"title":{},"body":{"classes/CustomValidator.html":{}}}],["passwordtoggledirective",{"_index":339,"title":{"directives/PasswordToggleDirective.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"modules/AuthModule.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["pastor",{"_index":1950,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["patent",{"_index":4275,"title":{},"body":{"license.html":{}}}],["patents",{"_index":3873,"title":{},"body":{"license.html":{}}}],["path",{"_index":506,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["pathmatch",{"_index":508,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["patience",{"_index":1637,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["pattern",{"_index":3854,"title":{},"body":{"license.html":{}}}],["patternvalidator",{"_index":1302,"title":{},"body":{"classes/CustomValidator.html":{}}}],["patternvalidator(regex",{"_index":1312,"title":{},"body":{"classes/CustomValidator.html":{}}}],["payment",{"_index":4389,"title":{},"body":{"license.html":{}}}],["peanuts",{"_index":2180,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["peddler",{"_index":2084,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["peer",{"_index":4156,"title":{},"body":{"license.html":{}}}],["peers",{"_index":4159,"title":{},"body":{"license.html":{}}}],["peku",{"_index":1696,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["people",{"_index":3720,"title":{},"body":{"index.html":{}}}],["perform",{"_index":1298,"title":{},"body":{"classes/CustomValidator.html":{}}}],["performance",{"_index":4439,"title":{},"body":{"license.html":{}}}],["performing",{"_index":3996,"title":{},"body":{"license.html":{}}}],["perfume",{"_index":2377,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["periurban",{"_index":1891,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["permanently",{"_index":4284,"title":{},"body":{"license.html":{}}}],["permission",{"_index":3830,"title":{},"body":{"license.html":{}}}],["permissions",{"_index":4009,"title":{},"body":{"license.html":{}}}],["permissive",{"_index":4079,"title":{},"body":{"license.html":{}}}],["permit",{"_index":4112,"title":{},"body":{"license.html":{}}}],["permits",{"_index":4266,"title":{},"body":{"license.html":{}}}],["permitted",{"_index":3765,"title":{},"body":{"license.html":{}}}],["perpetuity",{"_index":4202,"title":{},"body":{"license.html":{}}}],["person",{"_index":3686,"title":{},"body":{"miscellaneous/functions.html":{}}}],["personal",{"_index":4168,"title":{},"body":{"license.html":{}}}],["personvalidation",{"_index":3563,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["personvalidation(person",{"_index":3684,"title":{},"body":{"miscellaneous/functions.html":{}}}],["pertinent",{"_index":4405,"title":{},"body":{"license.html":{}}}],["pesa",{"_index":2392,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["petro",{"_index":2449,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["petrol",{"_index":2448,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pgp",{"_index":1046,"title":{},"body":{"injectables/AuthService.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["pgp.js",{"_index":957,"title":{},"body":{"injectables/AuthService.html":{}}}],["pgpsigner",{"_index":2792,"title":{"classes/PGPSigner.html":{}},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["pharmacy",{"_index":2313,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["phone",{"_index":284,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["phonenumber",{"_index":258,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/CreateAccountComponent.html":{}}}],["phonesearchform",{"_index":204,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["phonesearchformstub",{"_index":213,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["phonesearchloading",{"_index":205,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["phonesearchsubmitted",{"_index":206,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["photo",{"_index":2125,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["photocopy",{"_index":2083,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["photographer",{"_index":2103,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["physical",{"_index":4120,"title":{},"body":{"license.html":{}}}],["physically",{"_index":4135,"title":{},"body":{"license.html":{}}}],["pieces",{"_index":3800,"title":{},"body":{"license.html":{}}}],["piki",{"_index":2413,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pikipiki",{"_index":2414,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pilau",{"_index":2248,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pipe",{"_index":1780,"title":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{}},"body":{"interceptors/MockBackendInterceptor.html":{},"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["pipe(catcherror(async",{"_index":687,"title":{},"body":{"components/AppComponent.html":{}}}],["pipe(delay(500",{"_index":2504,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(dematerialize",{"_index":2505,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(first",{"_index":407,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"components/TokenDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["pipe(materialize",{"_index":2503,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(mergemap(handleroute",{"_index":2502,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipes",{"_index":2953,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{},"overview.html":{}}}],["pipetransform",{"_index":2960,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{}}}],["pk",{"_index":2839,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["pk.decrypt(password",{"_index":2842,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["pk.isdecrypted",{"_index":2841,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["place",{"_index":4143,"title":{},"body":{"license.html":{}}}],["plaintext",{"_index":2658,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["plastic",{"_index":1991,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["playstation",{"_index":2378,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["please",{"_index":695,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{},"license.html":{}}}],["plumb",{"_index":2076,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["plus",{"_index":4324,"title":{},"body":{"license.html":{}}}],["pointer",{"_index":4486,"title":{},"body":{"license.html":{}}}],["pojo",{"_index":2173,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["police",{"_index":1964,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pombe",{"_index":2359,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pool",{"_index":2361,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["popper.js",{"_index":3628,"title":{},"body":{"dependencies.html":{}}}],["popperjs/core",{"_index":3599,"title":{},"body":{"dependencies.html":{}}}],["populated",{"_index":3743,"title":{},"body":{"index.html":{}}}],["porridge",{"_index":2247,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["portion",{"_index":4163,"title":{},"body":{"license.html":{}}}],["posho",{"_index":2058,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["possesses",{"_index":4132,"title":{},"body":{"license.html":{}}}],["possession",{"_index":4093,"title":{},"body":{"license.html":{}}}],["possibility",{"_index":4461,"title":{},"body":{"license.html":{}}}],["possible",{"_index":4477,"title":{},"body":{"license.html":{}}}],["post",{"_index":2517,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["potatoes",{"_index":2181,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["poultry",{"_index":2178,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["power",{"_index":4064,"title":{},"body":{"license.html":{}}}],["practical",{"_index":3775,"title":{},"body":{"license.html":{}}}],["practice",{"_index":3860,"title":{},"body":{"license.html":{}}}],["preamble",{"_index":3770,"title":{},"body":{"license.html":{}}}],["precise",{"_index":3887,"title":{},"body":{"license.html":{}}}],["precisely",{"_index":3857,"title":{},"body":{"license.html":{}}}],["predecessor",{"_index":4322,"title":{},"body":{"license.html":{}}}],["preferred",{"_index":3961,"title":{},"body":{"license.html":{}}}],["preloadallmodules",{"_index":789,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["preloadingstrategy",{"_index":798,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["prepare",{"_index":2798,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signer.html":{}}}],["prepare(material",{"_index":2811,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["present",{"_index":4418,"title":{},"body":{"license.html":{}}}],["presents",{"_index":3953,"title":{},"body":{"license.html":{}}}],["preservation",{"_index":4240,"title":{},"body":{"license.html":{}}}],["prevent",{"_index":3806,"title":{},"body":{"license.html":{}}}],["prevented",{"_index":4198,"title":{},"body":{"license.html":{}}}],["previous",{"_index":550,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"license.html":{}}}],["price",{"_index":3795,"title":{},"body":{"license.html":{}}}],["primarily",{"_index":4391,"title":{},"body":{"license.html":{}}}],["primary",{"_index":1908,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["printing",{"_index":2074,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["prints",{"_index":105,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/functions.html":{}}}],["prior",{"_index":4287,"title":{},"body":{"license.html":{}}}],["private",{"_index":253,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"components/TokenDetailsComponent.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["privatekey",{"_index":833,"title":{},"body":{"components/AuthComponent.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["privatekey.decrypt(password",{"_index":2704,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["privatekey.isdecrypted",{"_index":2702,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["privatekey.keypacket.privateparams.d",{"_index":3396,"title":{},"body":{"injectables/TransactionService.html":{}}}],["privatekeyarmored",{"_index":947,"title":{},"body":{"injectables/AuthService.html":{}}}],["privatekeys",{"_index":2707,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["problems",{"_index":3841,"title":{},"body":{"license.html":{}}}],["procedures",{"_index":4193,"title":{},"body":{"license.html":{}}}],["procuring",{"_index":4379,"title":{},"body":{"license.html":{}}}],["produce",{"_index":3988,"title":{},"body":{"license.html":{}}}],["product",{"_index":4121,"title":{},"body":{"license.html":{}}}],["production",{"_index":3729,"title":{},"body":{"index.html":{},"miscellaneous/variables.html":{}}}],["products",{"_index":17,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["professor",{"_index":1928,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["profile",{"_index":1633,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["program",{"_index":3784,"title":{},"body":{"license.html":{}}}],["program's",{"_index":4071,"title":{},"body":{"license.html":{}}}],["programmer",{"_index":2104,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["programming",{"_index":2075,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["programs",{"_index":3793,"title":{},"body":{"license.html":{}}}],["programsif",{"_index":4474,"title":{},"body":{"license.html":{}}}],["progress...show",{"_index":705,"title":{},"body":{"components/AppComponent.html":{}}}],["prohibit",{"_index":3859,"title":{},"body":{"license.html":{}}}],["prohibiting",{"_index":4060,"title":{},"body":{"license.html":{}}}],["prohibits",{"_index":4386,"title":{},"body":{"license.html":{}}}],["project",{"_index":3694,"title":{},"body":{"index.html":{}}}],["prominent",{"_index":3957,"title":{},"body":{"license.html":{}}}],["prominently",{"_index":3948,"title":{},"body":{"license.html":{}}}],["promise",{"_index":113,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"miscellaneous/functions.html":{}}}],["promise((resolve",{"_index":1002,"title":{},"body":{"injectables/AuthService.html":{}}}],["promise(async",{"_index":1022,"title":{},"body":{"injectables/AuthService.html":{}}}],["propagate",{"_index":3919,"title":{},"body":{"license.html":{}}}],["propagating",{"_index":4307,"title":{},"body":{"license.html":{}}}],["propagation",{"_index":3931,"title":{},"body":{"license.html":{}}}],["properties",{"_index":8,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/LoggingService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"injectables/RegistryService.html":{},"directives/RouterLinkDirectiveStub.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"miscellaneous/variables.html":{}}}],["property",{"_index":4169,"title":{},"body":{"license.html":{}}}],["proprietary",{"_index":3883,"title":{},"body":{"license.html":{}}}],["protect",{"_index":3803,"title":{},"body":{"license.html":{}}}],["protecting",{"_index":3852,"title":{},"body":{"license.html":{}}}],["protection",{"_index":3832,"title":{},"body":{"license.html":{}}}],["protocols",{"_index":4218,"title":{},"body":{"license.html":{}}}],["protractor",{"_index":3738,"title":{},"body":{"index.html":{}}}],["prove",{"_index":4440,"title":{},"body":{"license.html":{}}}],["provide",{"_index":785,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["provided",{"_index":3952,"title":{},"body":{"license.html":{}}}],["providedin",{"_index":897,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"injectables/LocationService.html":{},"injectables/LoggingService.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["provider",{"_index":1268,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/Settings.html":{},"classes/W3.html":{},"miscellaneous/variables.html":{}}}],["providers",{"_index":443,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"overview.html":{}}}],["provides",{"_index":65,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"classes/CustomValidator.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"classes/TokenRegistry.html":{},"miscellaneous/functions.html":{}}}],["provision",{"_index":3868,"title":{},"body":{"license.html":{}}}],["provisionally",{"_index":4281,"title":{},"body":{"license.html":{}}}],["proxy",{"_index":4427,"title":{},"body":{"license.html":{}}}],["proxy's",{"_index":4429,"title":{},"body":{"license.html":{}}}],["pry",{"_index":1899,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pub",{"_index":2390,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["public",{"_index":78,"title":{},"body":{"classes/AccountIndex.html":{},"components/AppComponent.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["publicity",{"_index":4248,"title":{},"body":{"license.html":{}}}],["publickey",{"_index":2640,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["publickey.getkeyid().tohex",{"_index":2699,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["publickeys",{"_index":699,"title":{},"body":{"components/AppComponent.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["publickeysurl",{"_index":4540,"title":{},"body":{"miscellaneous/variables.html":{}}}],["publicly",{"_index":4219,"title":{},"body":{"license.html":{}}}],["publish",{"_index":4075,"title":{},"body":{"license.html":{}}}],["published",{"_index":4424,"title":{},"body":{"license.html":{}}}],["pump",{"_index":553,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["purpose",{"_index":3876,"title":{},"body":{"license.html":{}}}],["purposes",{"_index":4173,"title":{},"body":{"license.html":{}}}],["pursuant",{"_index":4376,"title":{},"body":{"license.html":{}}}],["put",{"_index":2659,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["qkvhsu46vknbukqnclzfulnjt046my4wdqpftufjtdphyxjuzxnlbkbob3rtywlslmnvbq0krk46s3vydmkgs3jhbmpjdqpooktyyw5qyztldxj0ozs7dqpuruw7vflqpunftew6njkyntazmzq5ode5ng0kru5eolzdqvjedqo",{"_index":3535,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["qualify",{"_index":4296,"title":{},"body":{"license.html":{}}}],["quality",{"_index":4438,"title":{},"body":{"license.html":{}}}],["queriedaction",{"_index":2537,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedaction.approval",{"_index":2541,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedareaname",{"_index":2552,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedareatype",{"_index":2560,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedcategory",{"_index":2568,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedtoken",{"_index":2574,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["querying",{"_index":70,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["queryparams",{"_index":2934,"title":{},"body":{"guards/RoleGuard.html":{}}}],["quot;false"",{"_index":126,"title":{},"body":{"classes/AccountIndex.html":{}}}],["quot;true"",{"_index":106,"title":{},"body":{"classes/AccountIndex.html":{},"miscellaneous/functions.html":{}}}],["r",{"_index":1024,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["raibai",{"_index":1849,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rangala",{"_index":1862,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ratio.pipe",{"_index":3037,"title":{},"body":{"modules/SharedModule.html":{}}}],["ratio.pipe.ts",{"_index":3085,"title":{},"body":{"pipes/TokenRatioPipe.html":{},"coverage.html":{}}}],["ratio.pipe.ts:5",{"_index":3087,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["rcu",{"_index":2779,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["reached",{"_index":694,"title":{},"body":{"components/AppComponent.html":{}}}],["reactiveformsmodule",{"_index":497,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AuthModule.html":{},"modules/SettingsModule.html":{}}}],["read",{"_index":3683,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["readable",{"_index":4117,"title":{},"body":{"license.html":{}}}],["readarmored(signature.data",{"_index":2831,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["readcsv",{"_index":3559,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["readcsv(input",{"_index":3680,"title":{},"body":{"miscellaneous/functions.html":{}}}],["readily",{"_index":4364,"title":{},"body":{"license.html":{}}}],["reading",{"_index":4222,"title":{},"body":{"license.html":{}}}],["readonly",{"_index":533,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["reads",{"_index":3681,"title":{},"body":{"miscellaneous/functions.html":{}}}],["ready",{"_index":3866,"title":{},"body":{"license.html":{}}}],["readystate",{"_index":649,"title":{},"body":{"components/AppComponent.html":{},"injectables/BlockSyncService.html":{}}}],["readystateelements",{"_index":1122,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateelements.network",{"_index":1140,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateprocessor",{"_index":1084,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateprocessor(settings",{"_index":1103,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystatetarget",{"_index":650,"title":{},"body":{"components/AppComponent.html":{},"injectables/BlockSyncService.html":{}}}],["realm",{"_index":1021,"title":{},"body":{"injectables/AuthService.html":{}}}],["reason",{"_index":4374,"title":{},"body":{"license.html":{}}}],["reasonable",{"_index":4133,"title":{},"body":{"license.html":{}}}],["receipt",{"_index":4294,"title":{},"body":{"license.html":{}}}],["receive",{"_index":3798,"title":{},"body":{"license.html":{}}}],["received",{"_index":3820,"title":{},"body":{"license.html":{}}}],["receives",{"_index":4312,"title":{},"body":{"license.html":{}}}],["receiving",{"_index":4381,"title":{},"body":{"license.html":{}}}],["recently",{"_index":132,"title":{},"body":{"classes/AccountIndex.html":{}}}],["receptionist",{"_index":2073,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["recipient",{"_index":1205,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"license.html":{}}}],["recipient's",{"_index":4372,"title":{},"body":{"license.html":{}}}],["recipientaddress",{"_index":3305,"title":{},"body":{"injectables/TransactionService.html":{}}}],["recipientbloxberglink",{"_index":3205,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["recipients",{"_index":3817,"title":{},"body":{"license.html":{}}}],["reclaim",{"_index":1628,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["reclamation",{"_index":2491,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["recognized",{"_index":3965,"title":{},"body":{"license.html":{}}}],["recommend",{"_index":1072,"title":{},"body":{"injectables/AuthService.html":{}}}],["recycling",{"_index":1995,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["red",{"_index":1917,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["redcross",{"_index":1942,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["redirectto",{"_index":507,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["redistribute",{"_index":4480,"title":{},"body":{"license.html":{}}}],["reference",{"_index":3751,"title":{},"body":{"index.html":{}}}],["referrer",{"_index":1244,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["referring",{"_index":3794,"title":{},"body":{"license.html":{}}}],["refers",{"_index":3894,"title":{},"body":{"license.html":{}}}],["refrain",{"_index":4409,"title":{},"body":{"license.html":{}}}],["refreshpaginator",{"_index":358,"title":{},"body":{"components/AccountsComponent.html":{}}}],["regard",{"_index":4228,"title":{},"body":{"license.html":{}}}],["regardless",{"_index":4095,"title":{},"body":{"license.html":{}}}],["regards",{"_index":1273,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["regenerate",{"_index":4007,"title":{},"body":{"license.html":{}}}],["regex",{"_index":1318,"title":{},"body":{"classes/CustomValidator.html":{}}}],["regex.test(control.value",{"_index":1327,"title":{},"body":{"classes/CustomValidator.html":{}}}],["regexp",{"_index":1313,"title":{},"body":{"classes/CustomValidator.html":{}}}],["registered",{"_index":71,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["registers",{"_index":101,"title":{},"body":{"classes/AccountIndex.html":{}}}],["registration",{"_index":107,"title":{},"body":{"classes/AccountIndex.html":{}}}],["registry",{"_index":68,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/RegistryService.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"classes/W3.html":{},"miscellaneous/variables.html":{}}}],["registry.ts",{"_index":3092,"title":{},"body":{"classes/TokenRegistry.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["registry.ts:21",{"_index":3096,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:23",{"_index":3097,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:25",{"_index":3095,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:56",{"_index":3099,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:74",{"_index":3106,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:90",{"_index":3110,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registryaddress",{"_index":4550,"title":{},"body":{"miscellaneous/variables.html":{}}}],["registryservice",{"_index":1087,"title":{"injectables/RegistryService.html":{}},"body":{"injectables/BlockSyncService.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["registryservice.getregistry",{"_index":3132,"title":{},"body":{"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["regular",{"_index":1316,"title":{},"body":{"classes/CustomValidator.html":{}}}],["reinstated",{"_index":4280,"title":{},"body":{"license.html":{}}}],["reject",{"_index":1003,"title":{},"body":{"injectables/AuthService.html":{}}}],["reject(error",{"_index":1006,"title":{},"body":{"injectables/AuthService.html":{}}}],["rejected",{"_index":991,"title":{},"body":{"injectables/AuthService.html":{}}}],["relationship",{"_index":4035,"title":{},"body":{"license.html":{}}}],["released",{"_index":3789,"title":{},"body":{"license.html":{}}}],["relevant",{"_index":4088,"title":{},"body":{"license.html":{}}}],["relicensing",{"_index":4267,"title":{},"body":{"license.html":{}}}],["religious",{"_index":1954,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["religous",{"_index":1953,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["reload",{"_index":3708,"title":{},"body":{"index.html":{}}}],["relying",{"_index":4363,"title":{},"body":{"license.html":{}}}],["remain",{"_index":4151,"title":{},"body":{"license.html":{}}}],["remains",{"_index":3787,"title":{},"body":{"license.html":{}}}],["remarks",{"_index":154,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["removal",{"_index":4231,"title":{},"body":{"license.html":{}}}],["remove",{"_index":4230,"title":{},"body":{"license.html":{}}}],["removekeysforid",{"_index":2611,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removekeysforid(keyid",{"_index":2650,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickey",{"_index":2612,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickey(publickey",{"_index":2652,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickeyforid",{"_index":2613,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickeyforid(keyid",{"_index":2654,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["rename",{"_index":996,"title":{},"body":{"injectables/AuthService.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["render",{"_index":3885,"title":{},"body":{"license.html":{}}}],["rendered",{"_index":4454,"title":{},"body":{"license.html":{}}}],["renderer",{"_index":1587,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["renderer2",{"_index":1588,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["repair",{"_index":2056,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["replaysubject",{"_index":542,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["represent",{"_index":4190,"title":{},"body":{"license.html":{}}}],["represents",{"_index":889,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["request",{"_index":1369,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["request.clone({headers",{"_index":1505,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["request.headers.set('authorization",{"_index":1506,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["request.method",{"_index":1537,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["request.urlwithparams",{"_index":1538,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["requesting",{"_index":1038,"title":{},"body":{"injectables/AuthService.html":{}}}],["requests",{"_index":1380,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["require",{"_index":2780,"title":{},"body":{"components/OrganizationComponent.html":{},"license.html":{}}}],["require('@src/assets/js/block",{"_index":148,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["require('openpgp",{"_index":2820,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"miscellaneous/variables.html":{}}}],["require('vcard",{"_index":3328,"title":{},"body":{"injectables/TransactionService.html":{},"miscellaneous/variables.html":{}}}],["required",{"_index":285,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["requirement",{"_index":4089,"title":{},"body":{"license.html":{}}}],["requirements",{"_index":4154,"title":{},"body":{"license.html":{}}}],["requires",{"_index":102,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{}}}],["requiring",{"_index":3910,"title":{},"body":{"license.html":{}}}],["res",{"_index":273,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"components/TokenDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["res.ok",{"_index":1071,"title":{},"body":{"injectables/AuthService.html":{}}}],["res.status",{"_index":1074,"title":{},"body":{"injectables/AuthService.html":{}}}],["res.text",{"_index":1075,"title":{},"body":{"injectables/AuthService.html":{}}}],["researcher",{"_index":1927,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["resend",{"_index":3265,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reserve",{"_index":2457,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenServiceStub.html":{},"miscellaneous/variables.html":{}}}],["reserveratio",{"_index":2469,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["reserves",{"_index":2464,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["reset",{"_index":452,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"overview.html":{}}}],["resettransactionslist",{"_index":3286,"title":{},"body":{"injectables/TransactionService.html":{}}}],["resize",{"_index":715,"title":{},"body":{"components/AppComponent.html":{}}}],["resolve",{"_index":1023,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolve(false",{"_index":1043,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolve(true",{"_index":1009,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolved",{"_index":1612,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["resource",{"_index":1416,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["resources",{"_index":3674,"title":{},"body":{"miscellaneous/functions.html":{}}}],["respect",{"_index":3813,"title":{},"body":{"license.html":{}}}],["response",{"_index":1400,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["responsebody",{"_index":2587,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["responsibilities",{"_index":1001,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["responsible",{"_index":4313,"title":{},"body":{"license.html":{}}}],["restrict",{"_index":3875,"title":{},"body":{"license.html":{}}}],["restricting",{"_index":4061,"title":{},"body":{"license.html":{}}}],["restriction",{"_index":4265,"title":{},"body":{"license.html":{}}}],["restrictions",{"_index":4262,"title":{},"body":{"license.html":{}}}],["result",{"_index":57,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"routes.html":{},"miscellaneous/variables.html":{}}}],["resulting",{"_index":3913,"title":{},"body":{"license.html":{}}}],["results",{"_index":59,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"routes.html":{},"miscellaneous/variables.html":{}}}],["retail",{"_index":2358,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["retains",{"_index":4205,"title":{},"body":{"license.html":{}}}],["return",{"_index":134,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AdminComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{},"license.html":{}}}],["returned",{"_index":1320,"title":{},"body":{"classes/CustomValidator.html":{},"interceptors/ErrorInterceptor.html":{}}}],["returns",{"_index":112,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{}}}],["returnurl",{"_index":2935,"title":{},"body":{"guards/RoleGuard.html":{}}}],["reverse",{"_index":3267,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reversetransaction",{"_index":3209,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reviewing",{"_index":4465,"title":{},"body":{"license.html":{}}}],["revised",{"_index":4416,"title":{},"body":{"license.html":{}}}],["revokeaction(action.id",{"_index":621,"title":{},"body":{"components/AdminComponent.html":{}}}],["rewards",{"_index":2490,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ribe",{"_index":1850,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["right",{"_index":4200,"title":{},"body":{"license.html":{}}}],["rights",{"_index":3804,"title":{},"body":{"license.html":{}}}],["risk",{"_index":4437,"title":{},"body":{"license.html":{}}}],["road",{"_index":1660,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["role",{"_index":514,"title":{},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["roleguard",{"_index":2922,"title":{"guards/RoleGuard.html":{}},"body":{"guards/RoleGuard.html":{},"coverage.html":{}}}],["roles",{"_index":2928,"title":{},"body":{"guards/RoleGuard.html":{}}}],["rom",{"_index":4208,"title":{},"body":{"license.html":{}}}],["root",{"_index":645,"title":{},"body":{"components/AppComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"injectables/LocationService.html":{},"injectables/LoggingService.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["root'},{'name",{"_index":301,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["route",{"_index":521,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"guards/AuthGuard.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"components/TokenDetailsComponent.html":{},"coverage.html":{},"index.html":{}}}],["route.data.roles",{"_index":2931,"title":{},"body":{"guards/RoleGuard.html":{}}}],["route.data.roles.indexof(currentuser.role",{"_index":2932,"title":{},"body":{"guards/RoleGuard.html":{}}}],["router",{"_index":218,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"guards/RoleGuard.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["routerlink",{"_index":2940,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["routerlinkdirectivestub",{"_index":341,"title":{"directives/RouterLinkDirectiveStub.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["routermodule",{"_index":505,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["routermodule.forchild(routes",{"_index":510,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["routermodule.forroot(routes",{"_index":797,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["routerstatesnapshot",{"_index":875,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["routes",{"_index":504,"title":{"routes.html":{}},"body":{"modules/AccountsRoutingModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"modules/AuthRoutingModule.html":{},"interceptors/MockBackendInterceptor.html":{},"modules/PagesRoutingModule.html":{},"guards/RoleGuard.html":{},"modules/SettingsRoutingModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsRoutingModule.html":{},"routes.html":{}}}],["route}.\\n${error.message",{"_index":1493,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["route}.\\n${error.message}.\\nstatus",{"_index":1490,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["routing.module",{"_index":459,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["routing.module.ts",{"_index":503,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["row",{"_index":577,"title":{},"body":{"components/AdminComponent.html":{}}}],["row.isexpanded",{"_index":622,"title":{},"body":{"components/AdminComponent.html":{}}}],["royalty",{"_index":4328,"title":{},"body":{"license.html":{}}}],["rsv",{"_index":1625,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/TokenServiceStub.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["rubbish",{"_index":1985,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ruben",{"_index":1648,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rueben",{"_index":1649,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ruiru",{"_index":1757,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rules",{"_index":4217,"title":{},"body":{"license.html":{}}}],["run",{"_index":3697,"title":{},"body":{"index.html":{},"license.html":{}}}],["running",{"_index":3730,"title":{},"body":{"index.html":{},"license.html":{}}}],["runs",{"_index":3986,"title":{},"body":{"license.html":{}}}],["runtime",{"_index":1450,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["rural",{"_index":1869,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rxjs",{"_index":548,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{},"dependencies.html":{}}}],["rxjs/operators",{"_index":395,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["s",{"_index":950,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["s.signature",{"_index":2848,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["sabuni",{"_index":2302,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sad",{"_index":706,"title":{},"body":{"components/AppComponent.html":{}}}],["safe",{"_index":2955,"title":{},"body":{"pipes/SafePipe.html":{}}}],["safepipe",{"_index":2952,"title":{"pipes/SafePipe.html":{}},"body":{"pipes/SafePipe.html":{},"modules/SharedModule.html":{},"coverage.html":{},"overview.html":{}}}],["safest",{"_index":4482,"title":{},"body":{"license.html":{}}}],["sake",{"_index":3837,"title":{},"body":{"license.html":{}}}],["sale",{"_index":4336,"title":{},"body":{"license.html":{}}}],["sales",{"_index":2085,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["salon",{"_index":2078,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["saloon",{"_index":2086,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["samaki",{"_index":2184,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sambusa",{"_index":2258,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["same",{"_index":3818,"title":{},"body":{"license.html":{}}}],["samosa",{"_index":2182,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sanitizer",{"_index":2962,"title":{},"body":{"pipes/SafePipe.html":{}}}],["sarafu",{"_index":53,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/TokenRegistry.html":{},"components/TransactionDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["sarafutoken",{"_index":3142,"title":{},"body":{"injectables/TokenService.html":{}}}],["sarafutoken.methods.balanceof(address).call",{"_index":3145,"title":{},"body":{"injectables/TokenService.html":{}}}],["satisfy",{"_index":4153,"title":{},"body":{"license.html":{}}}],["sausages",{"_index":2228,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["savings",{"_index":2319,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["saying",{"_index":4149,"title":{},"body":{"license.html":{}}}],["scaffolding",{"_index":3710,"title":{},"body":{"index.html":{}}}],["scan",{"_index":1085,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["scan(settings",{"_index":1106,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["scanfilter",{"_index":2965,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["sch",{"_index":1897,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["schema",{"_index":3688,"title":{},"body":{"miscellaneous/functions.html":{}}}],["schemas",{"_index":3610,"title":{},"body":{"dependencies.html":{}}}],["school",{"_index":1898,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["science",{"_index":1945,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["scope",{"_index":4385,"title":{},"body":{"license.html":{}}}],["scrap",{"_index":1982,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["script",{"_index":3728,"title":{},"body":{"index.html":{}}}],["scripts",{"_index":3992,"title":{},"body":{"license.html":{}}}],["search",{"_index":192,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["search'},{'name",{"_index":297,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["search.component",{"_index":498,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["search.component.html",{"_index":196,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.scss",{"_index":194,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts",{"_index":184,"title":{},"body":{"components/AccountSearchComponent.html":{},"coverage.html":{}}}],["search.component.ts:16",{"_index":232,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:17",{"_index":234,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:18",{"_index":233,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:19",{"_index":235,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:20",{"_index":237,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:21",{"_index":236,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:22",{"_index":226,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:23",{"_index":230,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:24",{"_index":229,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:25",{"_index":219,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:33",{"_index":220,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:45",{"_index":239,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:48",{"_index":241,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:51",{"_index":243,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:55",{"_index":223,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:65",{"_index":224,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:85",{"_index":222,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search/account",{"_index":183,"title":{},"body":{"components/AccountSearchComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"coverage.html":{}}}],["secondarily",{"_index":3923,"title":{},"body":{"license.html":{}}}],["secondary",{"_index":1909,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["secp256k1",{"_index":3326,"title":{},"body":{"injectables/TransactionService.html":{}}}],["secp256k1.ecdsasign(txmsg",{"_index":3395,"title":{},"body":{"injectables/TransactionService.html":{}}}],["secretary",{"_index":2090,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["section",{"_index":4040,"title":{},"body":{"license.html":{}}}],["sections",{"_index":1466,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["secure",{"_index":3007,"title":{},"body":{"components/SettingsComponent.html":{}}}],["security",{"_index":2088,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["see",{"_index":3740,"title":{},"body":{"index.html":{},"license.html":{}}}],["seedling",{"_index":1993,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["seedlings",{"_index":1994,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["seigei",{"_index":1661,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["select",{"_index":2507,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["selection.directive",{"_index":3035,"title":{},"body":{"modules/SharedModule.html":{}}}],["selection.directive.ts",{"_index":1582,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"coverage.html":{}}}],["selection.directive.ts:16",{"_index":1590,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["selection.directive.ts:6",{"_index":1589,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["selector",{"_index":190,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["sell",{"_index":4351,"title":{},"body":{"license.html":{}}}],["selling",{"_index":3534,"title":{},"body":{"classes/UserServiceStub.html":{},"license.html":{}}}],["semiconductor",{"_index":3897,"title":{},"body":{"license.html":{}}}],["send",{"_index":834,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["senddebuglevelmessage",{"_index":1544,"title":{},"body":{"injectables/LoggingService.html":{}}}],["senddebuglevelmessage(message",{"_index":1554,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sender",{"_index":1204,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["senderaddress",{"_index":3304,"title":{},"body":{"injectables/TransactionService.html":{}}}],["senderbloxberglink",{"_index":3206,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["senderrorlevelmessage",{"_index":1545,"title":{},"body":{"injectables/LoggingService.html":{}}}],["senderrorlevelmessage(message",{"_index":1556,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendfatallevelmessage",{"_index":1546,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendfatallevelmessage(message",{"_index":1558,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendinfolevelmessage",{"_index":1547,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendinfolevelmessage(message",{"_index":1560,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendloglevelmessage",{"_index":1548,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendloglevelmessage(message",{"_index":1562,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendresponse",{"_index":925,"title":{},"body":{"injectables/AuthService.html":{}}}],["sendresponse(hobaresponseencoded",{"_index":942,"title":{},"body":{"injectables/AuthService.html":{}}}],["sendtracelevelmessage",{"_index":1549,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendtracelevelmessage(message",{"_index":1564,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendwarnlevelmessage",{"_index":1550,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendwarnlevelmessage(message",{"_index":1566,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sentence",{"_index":1465,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["sentencesforwarninglogging",{"_index":1437,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["separable",{"_index":4162,"title":{},"body":{"license.html":{}}}],["separate",{"_index":1000,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["separately",{"_index":4099,"title":{},"body":{"license.html":{}}}],["seremala",{"_index":2087,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["serial",{"_index":3107,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["server",{"_index":2496,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"dependencies.html":{},"index.html":{},"license.html":{}}}],["serverloggingurl",{"_index":778,"title":{},"body":{"modules/AppModule.html":{}}}],["serverloglevel",{"_index":776,"title":{},"body":{"modules/AppModule.html":{},"miscellaneous/variables.html":{}}}],["serves",{"_index":3978,"title":{},"body":{"license.html":{}}}],["service",{"_index":867,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"classes/TokenServiceStub.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["serviceworkermodule",{"_index":772,"title":{},"body":{"modules/AppModule.html":{}}}],["serviceworkermodule.register('ngsw",{"_index":781,"title":{},"body":{"modules/AppModule.html":{}}}],["servicing",{"_index":4444,"title":{},"body":{"license.html":{}}}],["session",{"_index":999,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessionlogincount",{"_index":914,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessionstorage.getitem(btoa('cicada_session_token",{"_index":968,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/HttpConfigInterceptor.html":{}}}],["sessionstorage.removeitem(btoa('cicada_session_token",{"_index":1066,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessionstorage.setitem(btoa('cicada_session_token",{"_index":1008,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessiontoken",{"_index":915,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessiontokenresult",{"_index":1027,"title":{},"body":{"injectables/AuthService.html":{}}}],["set",{"_index":545,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/functions.html":{},"index.html":{}}}],["setconversion",{"_index":3287,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["setconversion(conversion",{"_index":3299,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["setkey",{"_index":825,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["setkey(privatekeyarmored",{"_index":945,"title":{},"body":{"injectables/AuthService.html":{}}}],["setparammap",{"_index":529,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["setparammap(params",{"_index":543,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["sets",{"_index":1306,"title":{},"body":{"classes/CustomValidator.html":{}}}],["setstate",{"_index":926,"title":{},"body":{"injectables/AuthService.html":{}}}],["setstate(s",{"_index":948,"title":{},"body":{"injectables/AuthService.html":{}}}],["settimeout",{"_index":2752,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["setting",{"_index":965,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/HttpConfigInterceptor.html":{}}}],["settings",{"_index":1095,"title":{"classes/Settings.html":{}},"body":{"injectables/BlockSyncService.html":{},"components/OrganizationComponent.html":{},"modules/PagesRoutingModule.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"classes/W3.html":{},"coverage.html":{}}}],["settings'},{'name",{"_index":319,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["settings(this.scan",{"_index":1121,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.component.html",{"_index":2976,"title":{},"body":{"components/SettingsComponent.html":{}}}],["settings.component.scss",{"_index":2975,"title":{},"body":{"components/SettingsComponent.html":{}}}],["settings.registry",{"_index":1127,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.registry.load",{"_index":1141,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.registry.onload",{"_index":1135,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.scanfilter",{"_index":1181,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper",{"_index":1129,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.onconversion",{"_index":1133,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.ontransfer",{"_index":1131,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.processreceipt(m.data",{"_index":1151,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.w3.engine",{"_index":1125,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.w3.provider",{"_index":1123,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settingscomponent",{"_index":318,"title":{"components/SettingsComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["settingsmodule",{"_index":3012,"title":{"modules/SettingsModule.html":{}},"body":{"modules/SettingsModule.html":{},"modules.html":{},"overview.html":{}}}],["settingsroutingmodule",{"_index":3016,"title":{"modules/SettingsRoutingModule.html":{}},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["settransaction",{"_index":3288,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["settransaction(transaction",{"_index":3301,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["sha256",{"_index":2802,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["sha3",{"_index":3318,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{}}}],["shall",{"_index":4045,"title":{},"body":{"license.html":{}}}],["shamba",{"_index":2004,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shanzu",{"_index":1831,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["share",{"_index":549,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"license.html":{}}}],["shared",{"_index":3998,"title":{},"body":{"license.html":{}}}],["sharedmodule",{"_index":449,"title":{"modules/SharedModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"modules.html":{},"overview.html":{}}}],["shepard",{"_index":2092,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shephard",{"_index":2093,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shepherd",{"_index":2044,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shirt",{"_index":2375,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shoe",{"_index":2091,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shop",{"_index":2326,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["short",{"_index":4497,"title":{},"body":{"license.html":{}}}],["show",{"_index":3821,"title":{},"body":{"license.html":{}}}],["siaya",{"_index":1858,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sickly",{"_index":2317,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["side",{"_index":1394,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["sidebar",{"_index":716,"title":{},"body":{"components/AppComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{}}}],["sidebar'},{'name",{"_index":321,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["sidebar.component.html",{"_index":3043,"title":{},"body":{"components/SidebarComponent.html":{}}}],["sidebar.component.scss",{"_index":3042,"title":{},"body":{"components/SidebarComponent.html":{}}}],["sidebar?.classlist.add('active",{"_index":727,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebar?.classlist.contains('active",{"_index":726,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebar?.classlist.remove('active",{"_index":730,"title":{},"body":{"components/AppComponent.html":{}}}],["sidebar?.classlist.toggle('active",{"_index":1602,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["sidebarcollapse",{"_index":721,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["sidebarcollapse?.classlist.contains('active",{"_index":723,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebarcollapse?.classlist.remove('active",{"_index":724,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebarcollapse?.classlist.toggle('active",{"_index":1604,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["sidebarcomponent",{"_index":320,"title":{"components/SidebarComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["sidebarstubcomponent",{"_index":322,"title":{"components/SidebarStubComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["sig",{"_index":2835,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["sigei",{"_index":1656,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sign",{"_index":2614,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["sign(digest",{"_index":2815,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["sign(opts",{"_index":2843,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["sign(plaintext",{"_index":2656,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["signable",{"_index":2812,"title":{"interfaces/Signable.html":{}},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["signature",{"_index":40,"title":{"interfaces/Signature.html":{},"interfaces/Signature-1.html":{}},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["signatureobject",{"_index":2709,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["signatureobject.recid",{"_index":3400,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signatureobject.signature",{"_index":2711,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["signatureobject.signature.slice(0",{"_index":3397,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signatureobject.signature.slice(32",{"_index":3399,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signchallenge",{"_index":955,"title":{},"body":{"injectables/AuthService.html":{}}}],["signed",{"_index":997,"title":{},"body":{"injectables/AuthService.html":{}}}],["signer",{"_index":104,"title":{"interfaces/Signer.html":{}},"body":{"classes/AccountIndex.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["signer.ts",{"_index":2793,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["signer.ts:18",{"_index":3049,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:19",{"_index":3050,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:20",{"_index":3048,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:21",{"_index":3051,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:22",{"_index":3053,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:23",{"_index":3052,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:27",{"_index":2805,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:28",{"_index":2803,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:29",{"_index":2804,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:30",{"_index":2809,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:31",{"_index":2806,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:32",{"_index":2807,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:33",{"_index":2808,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:34",{"_index":2801,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:42",{"_index":2810,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:46",{"_index":2813,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:51",{"_index":2818,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:7",{"_index":3047,"title":{},"body":{"interfaces/Signable.html":{}}}],["signer.ts:83",{"_index":2816,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signeraddress",{"_index":76,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["significant",{"_index":4191,"title":{},"body":{"license.html":{}}}],["silc",{"_index":2322,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["silver",{"_index":3512,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["sima",{"_index":2255,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["similar",{"_index":4059,"title":{},"body":{"license.html":{}}}],["simsim",{"_index":2246,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["simu",{"_index":2362,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["simulate",{"_index":2495,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["simultaneously",{"_index":4404,"title":{},"body":{"license.html":{}}}],["sinai",{"_index":1655,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["single",{"_index":4377,"title":{},"body":{"license.html":{}}}],["size",{"_index":4556,"title":{},"body":{"miscellaneous/variables.html":{}}}],["slash",{"_index":2901,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["smokie",{"_index":2266,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["smokies",{"_index":2267,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sms",{"_index":3266,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["snackbar",{"_index":3213,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["snacks",{"_index":2259,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soap",{"_index":2303,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["societies",{"_index":3080,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["socks",{"_index":2350,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soda",{"_index":2179,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["software",{"_index":3760,"title":{},"body":{"license.html":{}}}],["soko",{"_index":2183,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["solar",{"_index":2437,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sold",{"_index":4174,"title":{},"body":{"license.html":{}}}],["soldier",{"_index":1967,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sole",{"_index":4025,"title":{},"body":{"license.html":{}}}],["solely",{"_index":4037,"title":{},"body":{"license.html":{}}}],["somehow",{"_index":836,"title":{},"body":{"components/AuthComponent.html":{}}}],["something",{"_index":703,"title":{},"body":{"components/AppComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["sort",{"_index":354,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["soup",{"_index":2264,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["source",{"_index":4,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"index.html":{},"license.html":{}}}],["sourcetoken",{"_index":1208,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["south",{"_index":1645,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soweto",{"_index":1754,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["spare",{"_index":2348,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["spareparts",{"_index":2339,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["speak",{"_index":1035,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["special",{"_index":3879,"title":{},"body":{"license.html":{}}}],["specific",{"_index":121,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["specifically",{"_index":4002,"title":{},"body":{"license.html":{}}}],["specified",{"_index":131,"title":{},"body":{"classes/AccountIndex.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["specifies",{"_index":4422,"title":{},"body":{"license.html":{}}}],["specify",{"_index":4425,"title":{},"body":{"license.html":{}}}],["spinach",{"_index":2265,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["spinner",{"_index":496,"title":{},"body":{"modules/AccountsModule.html":{}}}],["spirit",{"_index":4417,"title":{},"body":{"license.html":{}}}],["src/.../account.ts",{"_index":4525,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../accountindex.ts",{"_index":4522,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../array",{"_index":3641,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../clipboard",{"_index":3642,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../environment.dev.ts",{"_index":4526,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../environment.prod.ts",{"_index":4527,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../environment.ts",{"_index":4528,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../export",{"_index":3643,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../http",{"_index":3644,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../mock",{"_index":4524,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../pgp",{"_index":4529,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../read",{"_index":3645,"title":{},"body":{"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["src/.../schema",{"_index":3646,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../token",{"_index":4523,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../transaction.service.ts",{"_index":4530,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../user.service.ts",{"_index":4531,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/app/_eth/accountindex.ts",{"_index":63,"title":{},"body":{"classes/AccountIndex.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_eth/accountindex.ts:121",{"_index":138,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:21",{"_index":97,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:23",{"_index":98,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:25",{"_index":87,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:57",{"_index":100,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:78",{"_index":118,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:95",{"_index":130,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/token",{"_index":3091,"title":{},"body":{"classes/TokenRegistry.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_guards/auth.guard.ts",{"_index":859,"title":{},"body":{"guards/AuthGuard.html":{},"coverage.html":{}}}],["src/app/_guards/auth.guard.ts:21",{"_index":865,"title":{},"body":{"guards/AuthGuard.html":{}}}],["src/app/_guards/auth.guard.ts:38",{"_index":876,"title":{},"body":{"guards/AuthGuard.html":{}}}],["src/app/_guards/role.guard.ts",{"_index":2923,"title":{},"body":{"guards/RoleGuard.html":{},"coverage.html":{}}}],["src/app/_guards/role.guard.ts:21",{"_index":2924,"title":{},"body":{"guards/RoleGuard.html":{}}}],["src/app/_guards/role.guard.ts:38",{"_index":2925,"title":{},"body":{"guards/RoleGuard.html":{}}}],["src/app/_helpers/array",{"_index":3546,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/clipboard",{"_index":3549,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/custom",{"_index":1265,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"coverage.html":{}}}],["src/app/_helpers/custom.validator.ts",{"_index":1297,"title":{},"body":{"classes/CustomValidator.html":{},"coverage.html":{}}}],["src/app/_helpers/custom.validator.ts:13",{"_index":1305,"title":{},"body":{"classes/CustomValidator.html":{}}}],["src/app/_helpers/custom.validator.ts:28",{"_index":1315,"title":{},"body":{"classes/CustomValidator.html":{}}}],["src/app/_helpers/export",{"_index":3552,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/global",{"_index":1430,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{}}}],["src/app/_helpers/http",{"_index":3555,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/mock",{"_index":1606,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_helpers/read",{"_index":3557,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["src/app/_helpers/schema",{"_index":3561,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_interceptors/error.interceptor.ts",{"_index":1364,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/error.interceptor.ts:21",{"_index":1372,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["src/app/_interceptors/error.interceptor.ts:42",{"_index":1379,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["src/app/_interceptors/http",{"_index":1498,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/logging.interceptor.ts",{"_index":1525,"title":{},"body":{"interceptors/LoggingInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/logging.interceptor.ts:20",{"_index":1527,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["src/app/_interceptors/logging.interceptor.ts:35",{"_index":1528,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["src/app/_models/account.ts",{"_index":6,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_models/mappings.ts",{"_index":512,"title":{},"body":{"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"coverage.html":{}}}],["src/app/_models/settings.ts",{"_index":2964,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{},"coverage.html":{}}}],["src/app/_models/settings.ts:16",{"_index":3536,"title":{},"body":{"classes/W3.html":{}}}],["src/app/_models/settings.ts:17",{"_index":3537,"title":{},"body":{"classes/W3.html":{}}}],["src/app/_models/settings.ts:2",{"_index":2972,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:6",{"_index":2971,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:7",{"_index":2970,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:8",{"_index":2969,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/staff.ts",{"_index":3054,"title":{},"body":{"interfaces/Staff.html":{},"coverage.html":{}}}],["src/app/_models/token.ts",{"_index":3057,"title":{},"body":{"interfaces/Token.html":{},"coverage.html":{}}}],["src/app/_models/transaction.ts",{"_index":1186,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{}}}],["src/app/_models/transaction.ts:12",{"_index":3480,"title":{},"body":{"classes/TxToken.html":{}}}],["src/app/_models/transaction.ts:13",{"_index":3481,"title":{},"body":{"classes/TxToken.html":{}}}],["src/app/_models/transaction.ts:14",{"_index":3482,"title":{},"body":{"classes/TxToken.html":{}}}],["src/app/_models/transaction.ts:18",{"_index":3475,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:19",{"_index":3476,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:20",{"_index":3477,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:21",{"_index":3478,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:22",{"_index":3479,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:26",{"_index":3195,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:27",{"_index":3197,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:28",{"_index":3198,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:29",{"_index":3196,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:30",{"_index":3199,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:31",{"_index":3200,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:32",{"_index":3202,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:33",{"_index":3201,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:37",{"_index":1211,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:38",{"_index":1212,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:39",{"_index":1213,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:4",{"_index":1196,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_models/transaction.ts:40",{"_index":1214,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:41",{"_index":1215,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:42",{"_index":1217,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:43",{"_index":1216,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:5",{"_index":1193,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_models/transaction.ts:6",{"_index":1194,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_models/transaction.ts:7",{"_index":1192,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_models/transaction.ts:8",{"_index":1195,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_pgp/pgp",{"_index":2589,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_services/auth.service.ts",{"_index":912,"title":{},"body":{"injectables/AuthService.html":{},"coverage.html":{}}}],["src/app/_services/auth.service.ts:116",{"_index":938,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:15",{"_index":952,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:150",{"_index":940,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:16",{"_index":951,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:160",{"_index":946,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:17",{"_index":929,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:188",{"_index":941,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:194",{"_index":933,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:200",{"_index":932,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:210",{"_index":931,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:27",{"_index":935,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:38",{"_index":949,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:42",{"_index":934,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:61",{"_index":943,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:84",{"_index":930,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:98",{"_index":936,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/block",{"_index":1078,"title":{},"body":{"injectables/BlockSyncService.html":{},"coverage.html":{}}}],["src/app/_services/error",{"_index":1344,"title":{},"body":{"injectables/ErrorDialogService.html":{},"coverage.html":{}}}],["src/app/_services/location.service.ts",{"_index":1509,"title":{},"body":{"injectables/LocationService.html":{},"coverage.html":{}}}],["src/app/_services/location.service.ts:10",{"_index":1513,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:13",{"_index":1516,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:17",{"_index":1515,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:21",{"_index":1519,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:25",{"_index":1518,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/logging.service.ts",{"_index":1541,"title":{},"body":{"injectables/LoggingService.html":{},"coverage.html":{}}}],["src/app/_services/logging.service.ts:18",{"_index":1565,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:22",{"_index":1555,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:26",{"_index":1561,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:30",{"_index":1563,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:34",{"_index":1567,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:38",{"_index":1557,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:42",{"_index":1559,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:8",{"_index":1568,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:9",{"_index":1553,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/registry.service.ts",{"_index":2902,"title":{},"body":{"injectables/RegistryService.html":{},"coverage.html":{}}}],["src/app/_services/registry.service.ts:11",{"_index":2918,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:12",{"_index":2910,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:13",{"_index":2917,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:19",{"_index":2906,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:26",{"_index":2907,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:30",{"_index":2908,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/token.service.ts",{"_index":3118,"title":{},"body":{"injectables/TokenService.html":{},"coverage.html":{}}}],["src/app/_services/token.service.ts:13",{"_index":3128,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:14",{"_index":3129,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:15",{"_index":3121,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:28",{"_index":3126,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:33",{"_index":3125,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:37",{"_index":3123,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/transaction.service.ts",{"_index":3278,"title":{},"body":{"injectables/TransactionService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_services/transaction.service.ts:111",{"_index":3293,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:119",{"_index":3298,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:124",{"_index":3295,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:130",{"_index":3306,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:26",{"_index":3310,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:27",{"_index":3309,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:28",{"_index":3312,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:29",{"_index":3313,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:30",{"_index":3314,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:31",{"_index":3290,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:45",{"_index":3297,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:49",{"_index":3296,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:53",{"_index":3302,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:87",{"_index":3300,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/user.service.ts",{"_index":3580,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/app",{"_index":788,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["src/app/app.component.ts",{"_index":644,"title":{},"body":{"components/AppComponent.html":{},"coverage.html":{}}}],["src/app/app.component.ts:18",{"_index":680,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:19",{"_index":678,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:20",{"_index":676,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:21",{"_index":661,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:51",{"_index":669,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:62",{"_index":671,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:87",{"_index":668,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:93",{"_index":666,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.module.ts",{"_index":751,"title":{},"body":{"modules/AppModule.html":{}}}],["src/app/auth/_directives/password",{"_index":2884,"title":{},"body":{"directives/PasswordToggleDirective.html":{},"coverage.html":{}}}],["src/app/auth/auth",{"_index":910,"title":{},"body":{"modules/AuthRoutingModule.html":{}}}],["src/app/auth/auth.component.ts",{"_index":799,"title":{},"body":{"components/AuthComponent.html":{},"coverage.html":{}}}],["src/app/auth/auth.component.ts:14",{"_index":817,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:15",{"_index":819,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:16",{"_index":818,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:17",{"_index":810,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:25",{"_index":812,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:36",{"_index":821,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:40",{"_index":813,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:52",{"_index":811,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:63",{"_index":814,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:71",{"_index":816,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.module.ts",{"_index":905,"title":{},"body":{"modules/AuthModule.html":{}}}],["src/app/pages/accounts/account",{"_index":182,"title":{},"body":{"components/AccountSearchComponent.html":{},"coverage.html":{}}}],["src/app/pages/accounts/accounts",{"_index":502,"title":{},"body":{"modules/AccountsRoutingModule.html":{}}}],["src/app/pages/accounts/accounts.component.ts",{"_index":344,"title":{},"body":{"components/AccountsComponent.html":{},"coverage.html":{}}}],["src/app/pages/accounts/accounts.component.ts:20",{"_index":375,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:21",{"_index":371,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:22",{"_index":379,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:23",{"_index":377,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:24",{"_index":382,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:25",{"_index":372,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:26",{"_index":373,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:28",{"_index":386,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:29",{"_index":362,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:50",{"_index":367,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:59",{"_index":364,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:63",{"_index":370,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:69",{"_index":366,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:80",{"_index":368,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:88",{"_index":365,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.module.ts",{"_index":454,"title":{},"body":{"modules/AccountsModule.html":{}}}],["src/app/pages/accounts/create",{"_index":1218,"title":{},"body":{"components/CreateAccountComponent.html":{},"coverage.html":{}}}],["src/app/pages/admin/admin",{"_index":643,"title":{},"body":{"modules/AdminRoutingModule.html":{}}}],["src/app/pages/admin/admin.component.ts",{"_index":556,"title":{},"body":{"components/AdminComponent.html":{},"coverage.html":{}}}],["src/app/pages/admin/admin.component.ts:25",{"_index":581,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:26",{"_index":584,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:27",{"_index":579,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:28",{"_index":580,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:30",{"_index":585,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:31",{"_index":565,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:43",{"_index":578,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:45",{"_index":573,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:49",{"_index":567,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:53",{"_index":570,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:64",{"_index":572,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:75",{"_index":576,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:79",{"_index":574,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.module.ts",{"_index":640,"title":{},"body":{"modules/AdminModule.html":{}}}],["src/app/pages/pages",{"_index":2872,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["src/app/pages/pages.component.ts",{"_index":2853,"title":{},"body":{"components/PagesComponent.html":{},"coverage.html":{}}}],["src/app/pages/pages.component.ts:10",{"_index":2857,"title":{},"body":{"components/PagesComponent.html":{}}}],["src/app/pages/pages.module.ts",{"_index":2866,"title":{},"body":{"modules/PagesModule.html":{}}}],["src/app/pages/settings/organization/organization.component.ts",{"_index":2758,"title":{},"body":{"components/OrganizationComponent.html":{},"coverage.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:12",{"_index":2767,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:13",{"_index":2768,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:14",{"_index":2764,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:18",{"_index":2765,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:26",{"_index":2770,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:30",{"_index":2766,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/settings",{"_index":3025,"title":{},"body":{"modules/SettingsRoutingModule.html":{}}}],["src/app/pages/settings/settings.component.ts",{"_index":2974,"title":{},"body":{"components/SettingsComponent.html":{},"coverage.html":{}}}],["src/app/pages/settings/settings.component.ts:16",{"_index":2983,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:17",{"_index":2982,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:18",{"_index":2985,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:19",{"_index":2987,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:21",{"_index":2986,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:22",{"_index":2977,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:26",{"_index":2981,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:35",{"_index":2978,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:39",{"_index":2979,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:43",{"_index":2980,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.module.ts",{"_index":3017,"title":{},"body":{"modules/SettingsModule.html":{}}}],["src/app/pages/tokens/token",{"_index":3058,"title":{},"body":{"components/TokenDetailsComponent.html":{},"coverage.html":{}}}],["src/app/pages/tokens/tokens",{"_index":3189,"title":{},"body":{"modules/TokensRoutingModule.html":{}}}],["src/app/pages/tokens/tokens.component.ts",{"_index":3151,"title":{},"body":{"components/TokensComponent.html":{},"coverage.html":{}}}],["src/app/pages/tokens/tokens.component.ts:18",{"_index":3164,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:19",{"_index":3163,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:20",{"_index":3165,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:21",{"_index":3166,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:22",{"_index":3157,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:30",{"_index":3160,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:41",{"_index":3158,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:45",{"_index":3162,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:49",{"_index":3159,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.module.ts",{"_index":3180,"title":{},"body":{"modules/TokensModule.html":{}}}],["src/app/pages/transactions/transaction",{"_index":3203,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"coverage.html":{}}}],["src/app/pages/transactions/transactions",{"_index":3474,"title":{},"body":{"modules/TransactionsRoutingModule.html":{}}}],["src/app/pages/transactions/transactions.component.ts",{"_index":3415,"title":{},"body":{"components/TransactionsComponent.html":{},"coverage.html":{}}}],["src/app/pages/transactions/transactions.component.ts:23",{"_index":3439,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:24",{"_index":3440,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:25",{"_index":3435,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:26",{"_index":3436,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:27",{"_index":3441,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:28",{"_index":3438,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:29",{"_index":3442,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:30",{"_index":3443,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:32",{"_index":3437,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:33",{"_index":3427,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:43",{"_index":3432,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:56",{"_index":3434,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:60",{"_index":3428,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:64",{"_index":3430,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:77",{"_index":3431,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:82",{"_index":3429,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.module.ts",{"_index":3470,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["src/app/shared/_directives/menu",{"_index":1581,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"coverage.html":{}}}],["src/app/shared/_pipes/safe.pipe.ts",{"_index":2954,"title":{},"body":{"pipes/SafePipe.html":{},"coverage.html":{}}}],["src/app/shared/_pipes/safe.pipe.ts:10",{"_index":2959,"title":{},"body":{"pipes/SafePipe.html":{}}}],["src/app/shared/_pipes/token",{"_index":3084,"title":{},"body":{"pipes/TokenRatioPipe.html":{},"coverage.html":{}}}],["src/app/shared/error",{"_index":1328,"title":{},"body":{"components/ErrorDialogComponent.html":{},"coverage.html":{}}}],["src/app/shared/footer/footer.component.ts",{"_index":1420,"title":{},"body":{"components/FooterComponent.html":{},"coverage.html":{}}}],["src/app/shared/footer/footer.component.ts:12",{"_index":1425,"title":{},"body":{"components/FooterComponent.html":{}}}],["src/app/shared/footer/footer.component.ts:9",{"_index":1424,"title":{},"body":{"components/FooterComponent.html":{}}}],["src/app/shared/network",{"_index":2737,"title":{},"body":{"components/NetworkStatusComponent.html":{},"coverage.html":{}}}],["src/app/shared/shared.module.ts",{"_index":3030,"title":{},"body":{"modules/SharedModule.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts",{"_index":3041,"title":{},"body":{"components/SidebarComponent.html":{},"coverage.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts:12",{"_index":3045,"title":{},"body":{"components/SidebarComponent.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts:9",{"_index":3044,"title":{},"body":{"components/SidebarComponent.html":{}}}],["src/app/shared/topbar/topbar.component.ts",{"_index":3190,"title":{},"body":{"components/TopbarComponent.html":{},"coverage.html":{}}}],["src/app/shared/topbar/topbar.component.ts:12",{"_index":3194,"title":{},"body":{"components/TopbarComponent.html":{}}}],["src/app/shared/topbar/topbar.component.ts:9",{"_index":3193,"title":{},"body":{"components/TopbarComponent.html":{}}}],["src/assets/js/ethtx/dist",{"_index":3324,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/assets/js/ethtx/dist/hex",{"_index":252,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["src/assets/js/ethtx/dist/tx",{"_index":3325,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/assets/js/hoba",{"_index":956,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/assets/js/hoba.js",{"_index":954,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/environments",{"_index":3744,"title":{},"body":{"index.html":{}}}],["src/environments/environment",{"_index":145,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AppModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/LocationService.html":{},"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["src/environments/environment.dev.ts",{"_index":3586,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/environments/environment.prod.ts",{"_index":3587,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/environments/environment.ts",{"_index":3588,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/testing/activated",{"_index":520,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"coverage.html":{}}}],["src/testing/router",{"_index":2937,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{},"coverage.html":{}}}],["src/testing/shared",{"_index":1427,"title":{},"body":{"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{},"coverage.html":{}}}],["src/testing/token",{"_index":3147,"title":{},"body":{"classes/TokenServiceStub.html":{},"coverage.html":{}}}],["src/testing/transaction",{"_index":3409,"title":{},"body":{"classes/TransactionServiceStub.html":{},"coverage.html":{}}}],["src/testing/user",{"_index":3484,"title":{},"body":{"classes/UserServiceStub.html":{},"coverage.html":{}}}],["srf",{"_index":3256,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["stack",{"_index":1457,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["stadium",{"_index":1787,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["staff",{"_index":629,"title":{"interfaces/Staff.html":{}},"body":{"components/AdminComponent.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"components/SettingsComponent.html":{},"interfaces/Staff.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["staff@grassrootseconomics.net",{"_index":1039,"title":{},"body":{"injectables/AuthService.html":{}}}],["stand",{"_index":3865,"title":{},"body":{"license.html":{}}}],["standard",{"_index":3963,"title":{},"body":{"license.html":{}}}],["standards",{"_index":3966,"title":{},"body":{"license.html":{}}}],["starehe",{"_index":1790,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["start",{"_index":4483,"title":{},"body":{"license.html":{}}}],["start:dev",{"_index":3703,"title":{},"body":{"index.html":{}}}],["started",{"_index":3691,"title":{"index.html":{},"license.html":{}},"body":{}}],["starts",{"_index":4498,"title":{},"body":{"license.html":{}}}],["starttime",{"_index":1533,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["state",{"_index":587,"title":{},"body":{"components/AdminComponent.html":{},"guards/AuthGuard.html":{},"classes/CustomErrorStateMatcher.html":{},"guards/RoleGuard.html":{},"coverage.html":{},"license.html":{}}}],["state('collapsed",{"_index":595,"title":{},"body":{"components/AdminComponent.html":{}}}],["state('expanded",{"_index":601,"title":{},"body":{"components/AdminComponent.html":{}}}],["state.url",{"_index":2936,"title":{},"body":{"guards/RoleGuard.html":{}}}],["stated",{"_index":4013,"title":{},"body":{"license.html":{}}}],["statement",{"_index":4269,"title":{},"body":{"license.html":{}}}],["statements",{"_index":3540,"title":{},"body":{"coverage.html":{}}}],["states",{"_index":2785,"title":{},"body":{"components/OrganizationComponent.html":{},"license.html":{}}}],["static",{"_index":1300,"title":{},"body":{"classes/CustomValidator.html":{}}}],["stating",{"_index":4078,"title":{},"body":{"license.html":{}}}],["station",{"_index":2386,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["status",{"_index":568,"title":{},"body":{"components/AdminComponent.html":{},"guards/AuthGuard.html":{},"classes/CustomErrorStateMatcher.html":{},"components/ErrorDialogComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.html":{},"classes/UserServiceStub.html":{},"license.html":{}}}],["status'},{'name",{"_index":313,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["status.component",{"_index":3040,"title":{},"body":{"modules/SharedModule.html":{}}}],["status.component.html",{"_index":2741,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["status.component.scss",{"_index":2740,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["status.component.ts",{"_index":2739,"title":{},"body":{"components/NetworkStatusComponent.html":{},"coverage.html":{}}}],["status.component.ts:10",{"_index":2746,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["status.component.ts:16",{"_index":2749,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["status.component.ts:18",{"_index":2748,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["status/network",{"_index":2738,"title":{},"body":{"components/NetworkStatusComponent.html":{},"modules/SharedModule.html":{},"coverage.html":{}}}],["step",{"_index":3006,"title":{},"body":{"components/SettingsComponent.html":{}}}],["steps",{"_index":3825,"title":{},"body":{"license.html":{}}}],["stima",{"_index":2438,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["storage",{"_index":4108,"title":{},"body":{"license.html":{}}}],["store",{"_index":2661,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["store.ts",{"_index":2590,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["store.ts:10",{"_index":2649,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:106",{"_index":2715,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:11",{"_index":2639,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:110",{"_index":2719,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:119",{"_index":2716,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:12",{"_index":2644,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:123",{"_index":2721,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:127",{"_index":2718,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:13",{"_index":2642,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:131",{"_index":2722,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:135",{"_index":2724,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:139",{"_index":2733,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:14",{"_index":2633,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:143",{"_index":2735,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:147",{"_index":2734,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:15",{"_index":2637,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:152",{"_index":2712,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:156",{"_index":2736,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:16",{"_index":2636,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:17",{"_index":2616,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:18",{"_index":2627,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:19",{"_index":2623,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:20",{"_index":2648,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:21",{"_index":2646,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:22",{"_index":2617,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:23",{"_index":2619,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:24",{"_index":2626,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:25",{"_index":2621,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:26",{"_index":2629,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:27",{"_index":2625,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:28",{"_index":2631,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:29",{"_index":2635,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:30",{"_index":2651,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:31",{"_index":2655,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:32",{"_index":2653,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:33",{"_index":2615,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:34",{"_index":2657,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:38",{"_index":2732,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:43",{"_index":2727,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:48",{"_index":2729,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:52",{"_index":2728,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:56",{"_index":2723,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:60",{"_index":2726,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:64",{"_index":2725,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:68",{"_index":2713,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:72",{"_index":2720,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:76",{"_index":2717,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:80",{"_index":2731,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:86",{"_index":2730,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:96",{"_index":2714,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["stored",{"_index":3725,"title":{},"body":{"index.html":{}}}],["string",{"_index":20,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"classes/CustomValidator.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{}}}],["stringfromurl",{"_index":2577,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["strip0x",{"_index":251,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["strip0x(abi",{"_index":3378,"title":{},"body":{"injectables/TransactionService.html":{}}}],["stub.ts",{"_index":522,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"components/FooterStubComponent.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SidebarStubComponent.html":{},"classes/TokenServiceStub.html":{},"components/TopbarStubComponent.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{},"coverage.html":{}}}],["stub.ts:10",{"_index":2943,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["stub.ts:11",{"_index":537,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["stub.ts:12",{"_index":3487,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:13",{"_index":2942,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["stub.ts:18",{"_index":540,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["stub.ts:2",{"_index":3150,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["stub.ts:21",{"_index":544,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"classes/UserServiceStub.html":{}}}],["stub.ts:37",{"_index":3522,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:4",{"_index":3412,"title":{},"body":{"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{}}}],["stub.ts:6",{"_index":3411,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["stub.ts:61",{"_index":3520,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:71",{"_index":3518,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:8",{"_index":3410,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["stub.ts:9",{"_index":2941,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["student",{"_index":1900,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["style",{"_index":588,"title":{},"body":{"components/AdminComponent.html":{},"components/AuthComponent.html":{}}}],["styles",{"_index":179,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["styleurls",{"_index":193,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["subdividing",{"_index":4318,"title":{},"body":{"license.html":{}}}],["subject",{"_index":534,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"license.html":{}}}],["subkeyid",{"_index":2632,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["sublicenses",{"_index":4347,"title":{},"body":{"license.html":{}}}],["sublicensing",{"_index":4039,"title":{},"body":{"license.html":{}}}],["submit",{"_index":1264,"title":{},"body":{"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["submitted",{"_index":804,"title":{},"body":{"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["subprograms",{"_index":4001,"title":{},"body":{"license.html":{}}}],["subroutine",{"_index":4508,"title":{},"body":{"license.html":{}}}],["subscribe",{"_index":3338,"title":{},"body":{"injectables/TransactionService.html":{}}}],["subscribe((res",{"_index":408,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["subscribe(async",{"_index":272,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["subscribe(this.authservice.mutablekeystore.importpublickey",{"_index":698,"title":{},"body":{"components/AppComponent.html":{}}}],["subscribers",{"_index":552,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["subsection",{"_index":4139,"title":{},"body":{"license.html":{}}}],["substantial",{"_index":4187,"title":{},"body":{"license.html":{}}}],["substantially",{"_index":3863,"title":{},"body":{"license.html":{}}}],["succeeded",{"_index":1535,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["success",{"_index":1200,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["successful",{"_index":115,"title":{},"body":{"classes/AccountIndex.html":{},"miscellaneous/functions.html":{}}}],["successfully",{"_index":2543,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TransactionDetailsComponent.html":{}}}],["such",{"_index":3814,"title":{},"body":{"license.html":{}}}],["sue",{"_index":4361,"title":{},"body":{"license.html":{}}}],["suffice",{"_index":4195,"title":{},"body":{"license.html":{}}}],["suffix",{"_index":2945,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["sugar",{"_index":2260,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["suger",{"_index":2261,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sukari",{"_index":2263,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sukuma",{"_index":2268,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sum",{"_index":3648,"title":{},"body":{"miscellaneous/functions.html":{}}}],["sum.ts",{"_index":3547,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["super",{"_index":1476,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["super(message",{"_index":1473,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["superadmin",{"_index":1627,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["supplement",{"_index":4223,"title":{},"body":{"license.html":{}}}],["supplier",{"_index":2128,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["supply",{"_index":2460,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"miscellaneous/variables.html":{}}}],["support",{"_index":2859,"title":{},"body":{"components/PagesComponent.html":{},"license.html":{},"modules.html":{}}}],["supports",{"_index":4145,"title":{},"body":{"license.html":{}}}],["supposed",{"_index":2673,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["sure",{"_index":3786,"title":{},"body":{"license.html":{}}}],["surname",{"_index":1242,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["surrender",{"_index":3810,"title":{},"body":{"license.html":{}}}],["survive",{"_index":4268,"title":{},"body":{"license.html":{}}}],["sustained",{"_index":4457,"title":{},"body":{"license.html":{}}}],["svg",{"_index":4516,"title":{},"body":{"modules.html":{}}}],["sweats",{"_index":2257,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sweet",{"_index":2256,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["switch",{"_index":1409,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["switchwindows",{"_index":807,"title":{},"body":{"components/AuthComponent.html":{}}}],["swupdate",{"_index":660,"title":{},"body":{"components/AppComponent.html":{}}}],["symbol",{"_index":1199,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"miscellaneous/variables.html":{}}}],["sync.service.ts",{"_index":1079,"title":{},"body":{"injectables/BlockSyncService.html":{},"coverage.html":{}}}],["sync.service.ts:118",{"_index":1097,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:14",{"_index":1115,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:15",{"_index":1088,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:23",{"_index":1092,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:46",{"_index":1105,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:81",{"_index":1102,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:89",{"_index":1099,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:97",{"_index":1113,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync/data",{"_index":2916,"title":{},"body":{"injectables/RegistryService.html":{}}}],["sync/data/accountregistry.json",{"_index":149,"title":{},"body":{"classes/AccountIndex.html":{},"miscellaneous/variables.html":{}}}],["sync/data/tokenuniquesymbolindex.json",{"_index":3111,"title":{},"body":{"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["sync/head.js",{"_index":1149,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync/ondemand.js",{"_index":1162,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["syncer",{"_index":3602,"title":{},"body":{"dependencies.html":{}}}],["system",{"_index":1033,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["systematic",{"_index":3853,"title":{},"body":{"license.html":{}}}],["taa",{"_index":2443,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["table",{"_index":2388,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["tablesort(document.getelementbyid('coverage",{"_index":3591,"title":{},"body":{"coverage.html":{}}}],["tag",{"_index":3056,"title":{},"body":{"interfaces/Staff.html":{}}}],["tailor",{"_index":2064,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["taka",{"_index":1981,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["takaungu",{"_index":1843,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["take",{"_index":3777,"title":{},"body":{"license.html":{}}}],["talk",{"_index":835,"title":{},"body":{"components/AuthComponent.html":{}}}],["tangible",{"_index":4167,"title":{},"body":{"license.html":{}}}],["tap",{"_index":1531,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["tasia",{"_index":1772,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tassia",{"_index":1771,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["taxi",{"_index":2412,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tea",{"_index":2269,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["teacher",{"_index":1896,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["technician",{"_index":2312,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["technological",{"_index":4048,"title":{},"body":{"license.html":{}}}],["tel",{"_index":36,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["tells",{"_index":3950,"title":{},"body":{"license.html":{}}}],["template",{"_index":178,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"index.html":{}}}],["templateurl",{"_index":195,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["term",{"_index":4011,"title":{},"body":{"license.html":{}}}],["terminal",{"_index":4496,"title":{},"body":{"license.html":{}}}],["terminate",{"_index":4274,"title":{},"body":{"license.html":{}}}],["terminated",{"_index":4295,"title":{},"body":{"license.html":{}}}],["terminates",{"_index":4283,"title":{},"body":{"license.html":{}}}],["termination",{"_index":4271,"title":{},"body":{"license.html":{}}}],["terms",{"_index":3822,"title":{},"body":{"license.html":{}}}],["test",{"_index":524,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["test:dev",{"_index":3733,"title":{},"body":{"index.html":{}}}],["testa",{"_index":2479,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["testb",{"_index":2475,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["testc",{"_index":2483,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["testkey",{"_index":2677,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["testkey.err",{"_index":2679,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["tests",{"_index":3732,"title":{},"body":{"index.html":{}}}],["tetra",{"_index":1646,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tetrapak",{"_index":1647,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["text",{"_index":975,"title":{},"body":{"injectables/AuthService.html":{},"directives/PasswordToggleDirective.html":{},"miscellaneous/functions.html":{}}}],["then((s",{"_index":2844,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["then((sig",{"_index":2832,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["therefore",{"_index":3811,"title":{},"body":{"license.html":{}}}],["thika",{"_index":1785,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["things",{"_index":3802,"title":{},"body":{"license.html":{}}}],["third",{"_index":895,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["this.accounts",{"_index":417,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.accounts.filter((account",{"_index":423,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.accountstype",{"_index":421,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.accounttypes",{"_index":409,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{}}}],["this.actions",{"_index":614,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.addresssearchform",{"_index":259,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchform.controls",{"_index":262,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchform.invalid",{"_index":280,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchloading",{"_index":281,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchsubmitted",{"_index":279,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addtransaction(conversion",{"_index":3354,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.addtransaction(transaction",{"_index":3344,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.algo",{"_index":2847,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.areanames",{"_index":1250,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.authservice.getprivatekey",{"_index":842,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.getpublickeys",{"_index":686,"title":{},"body":{"components/AppComponent.html":{}}}],["this.authservice.gettrustedusers",{"_index":2993,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.authservice.init",{"_index":685,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{}}}],["this.authservice.logout",{"_index":2997,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.authservice.mutablekeystore.getprivatekey",{"_index":3394,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.authservice.mutablekeystore.importpublickey(publickeys",{"_index":700,"title":{},"body":{"components/AppComponent.html":{}}}],["this.authservice.privatekey",{"_index":824,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.sessiontoken",{"_index":844,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.setkey(this.authservice.privatekey",{"_index":826,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.setkey(this.keyformstub.key.value",{"_index":831,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.blocksyncservice.blocksync",{"_index":3444,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.categories",{"_index":1247,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.cdr.detectchanges",{"_index":2754,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["this.contract",{"_index":157,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["this.contract.methods.accountindex(address).call",{"_index":167,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.accounts(i).call",{"_index":172,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.add(address).send",{"_index":165,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.addressof(id).call",{"_index":3115,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["this.contract.methods.count().call",{"_index":174,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.entry(serial).call",{"_index":3116,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["this.contract.methods.entrycount().call",{"_index":3117,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["this.contractaddress",{"_index":156,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["this.createform",{"_index":1239,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.createform.controls",{"_index":1253,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.createform.invalid",{"_index":1254,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.datasource",{"_index":411,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.datasource.data",{"_index":422,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.datasource.filter",{"_index":418,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.datasource.paginator",{"_index":413,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.datasource.sort",{"_index":415,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.date",{"_index":2990,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.dgst",{"_index":2828,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.dialog.open(errordialogcomponent",{"_index":1360,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["this.engine",{"_index":2846,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.errordialogservice.opendialog",{"_index":701,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{}}}],["this.errordialogservice.opendialog({message",{"_index":691,"title":{},"body":{"components/AppComponent.html":{}}}],["this.fetcher(settings",{"_index":1156,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.filegetter",{"_index":2914,"title":{},"body":{"injectables/RegistryService.html":{}}}],["this.formbuilder.group",{"_index":255,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["this.genders",{"_index":1252,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.getaccountinfo(res.body",{"_index":3340,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.getchallenge",{"_index":1020,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.getprivatekey",{"_index":2701,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["this.getwithtoken",{"_index":1017,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.handlenetworkchange",{"_index":2751,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["this.haveaccount(address",{"_index":164,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.httpclient",{"_index":1523,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.httpclient.get(`${environment.ciccacheurl}/tokens/${symbol",{"_index":3141,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.httpclient.get(`${environment.ciccacheurl}/tx/${address}/${offset}/${limit",{"_index":3331,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.httpclient.get(`${environment.ciccacheurl}/tx/${offset}/${limit",{"_index":3330,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.httpclient.get(`${environment.cicmetaurl}/areanames",{"_index":1520,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.httpclient.get(`${environment.cicmetaurl}/areanames/${location.tolowercase",{"_index":1521,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.httpclient.get(`${environment.cicmetaurl}/areatypes`).pipe(first",{"_index":1522,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.isdialogopen",{"_index":1358,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["this.iswarning(errortracestring",{"_index":1483,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.keyform",{"_index":822,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.keyform.controls",{"_index":827,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.keyform.invalid",{"_index":829,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.keystore",{"_index":2824,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.keystore.getfingerprint",{"_index":2827,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.keystore.getprivatekey",{"_index":2840,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.keystore.gettrustedkeys",{"_index":2834,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.linkparams",{"_index":2951,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["this.loadevent.next(date.now",{"_index":3136,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.loading",{"_index":830,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.locationservice",{"_index":1248,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.logerror(error",{"_index":1477,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.logger.debug(message",{"_index":1575,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.error(message",{"_index":1579,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.fatal(message",{"_index":1580,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.info(message",{"_index":1576,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.log(message",{"_index":1577,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.trace(message",{"_index":1574,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.warn(message",{"_index":1578,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.loggingservice.senderrorlevelmessage",{"_index":1062,"title":{},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loggingservice.senderrorlevelmessage('failed",{"_index":403,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.loggingservice.senderrorlevelmessage('login",{"_index":1018,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.loggingservice.senderrorlevelmessage('unable",{"_index":688,"title":{},"body":{"components/AppComponent.html":{}}}],["this.loggingservice.senderrorlevelmessage(e.message",{"_index":2837,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.loggingservice.senderrorlevelmessage(errormessage",{"_index":1408,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["this.loggingservice.senderrorlevelmessage(errortracestring",{"_index":1485,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loggingservice.sendinfolevelmessage(`loaded",{"_index":1137,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.loggingservice.sendinfolevelmessage(`result",{"_index":3405,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.loggingservice.sendinfolevelmessage(`transaction",{"_index":3407,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.loggingservice.sendinfolevelmessage(message",{"_index":1540,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["this.loggingservice.sendinfolevelmessage(request",{"_index":1532,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["this.loggingservice.sendinfolevelmessage(res",{"_index":619,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.loggingservice.sendinfolevelmessage(this.tokens",{"_index":3171,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.loggingservice.sendwarnlevelmessage(errortracestring",{"_index":1484,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loginresponse(o",{"_index":1016,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.loginview",{"_index":1065,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mediaquery.addeventlistener('change",{"_index":708,"title":{},"body":{"components/AppComponent.html":{}}}],["this.mutablekeystore",{"_index":963,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.getprivatekey",{"_index":1076,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.getprivatekeyid",{"_index":1047,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.getpublickeys().foreach((key",{"_index":1068,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.importprivatekey(localstorage.getitem(btoa('cicada_private_key",{"_index":970,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.importprivatekey(privatekeyarmored",{"_index":1059,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.isencryptedprivatekey(privatekeyarmored",{"_index":1056,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.isvalidkey(privatekeyarmored",{"_index":1050,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.loadkeyring",{"_index":964,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.name",{"_index":1475,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.namesearchform",{"_index":254,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.namesearchform.controls",{"_index":260,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.namesearchform.invalid",{"_index":264,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.namesearchloading",{"_index":265,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.namesearchsubmitted",{"_index":263,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.navigatedto",{"_index":2950,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["this.nointernetconnection",{"_index":2753,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["this.onmenuselect",{"_index":1594,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["this.onmenutoggle",{"_index":1600,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["this.onresize",{"_index":709,"title":{},"body":{"components/AppComponent.html":{}}}],["this.onresize(this.mediaquery",{"_index":710,"title":{},"body":{"components/AppComponent.html":{}}}],["this.onsign",{"_index":2825,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.onsign(this.signature",{"_index":2850,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.onsign(undefined",{"_index":2852,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.onverify",{"_index":2826,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.onverify(false",{"_index":2838,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.organizationform",{"_index":2771,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["this.organizationform.controls",{"_index":2775,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["this.organizationform.invalid",{"_index":2776,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["this.paginator",{"_index":414,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["this.paginator._changepagesize(this.paginator.pagesize",{"_index":425,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.phonesearchform",{"_index":257,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchform.controls",{"_index":261,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchform.invalid",{"_index":268,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchloading",{"_index":269,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchsubmitted",{"_index":267,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.readystate",{"_index":1145,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.readystateprocessor(settings",{"_index":1139,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.readystatetarget",{"_index":1146,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.recipientbloxberglink",{"_index":3233,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.registry",{"_index":2921,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["this.registry.addtoken(await",{"_index":3143,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.registry.declaratorhelper.addtrust(environment.trusteddeclaratoraddress",{"_index":2919,"title":{},"body":{"injectables/RegistryService.html":{}}}],["this.registry.getcontractaddressbyname",{"_index":3364,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.registry.getcontractaddressbyname('tokenregistry",{"_index":3135,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.registry.load",{"_index":2920,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["this.registry.onload",{"_index":3133,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.registryservice.getregistry",{"_index":1128,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.registryservice.getweb3",{"_index":1126,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{}}}],["this.renderer.listen(this.elementref.nativeelement",{"_index":1591,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["this.route.parammap.subscribe((params",{"_index":3068,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["this.router.navigate",{"_index":2933,"title":{},"body":{"guards/RoleGuard.html":{}}}],["this.router.navigate(['/auth",{"_index":899,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["this.router.navigate(['/home",{"_index":843,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.router.navigatebyurl",{"_index":275,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{}}}],["this.router.navigatebyurl('/auth').then",{"_index":1412,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(this.transaction.from",{"_index":3235,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(this.transaction.to",{"_index":3236,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(this.transaction.trader",{"_index":3237,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.navigatebyurl(`/tokens/${token.symbol",{"_index":3173,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.router.url",{"_index":1489,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.sanitizer.bypasssecuritytrustresourceurl(url",{"_index":2963,"title":{},"body":{"pipes/SafePipe.html":{}}}],["this.scanfilter",{"_index":2973,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["this.senderbloxberglink",{"_index":3231,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.sendinfolevelmessage('dropping",{"_index":1571,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.sendresponse(r",{"_index":1028,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sentencesforwarninglogging.foreach((whitelistsentence",{"_index":1487,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.sessionlogincount",{"_index":992,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sessiontoken",{"_index":969,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.setparammap(initialparams",{"_index":554,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["this.setstate('click",{"_index":993,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.signature",{"_index":2845,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.signeraddress",{"_index":159,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["this.snackbar.open(address",{"_index":3244,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.sort",{"_index":416,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["this.status",{"_index":1474,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.subject.asobservable",{"_index":539,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["this.subject.next(converttoparammap(params",{"_index":555,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["this.submitted",{"_index":828,"title":{},"body":{"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["this.swupdate.available.subscribe",{"_index":712,"title":{},"body":{"components/AppComponent.html":{}}}],["this.swupdate.isenabled",{"_index":711,"title":{},"body":{"components/AppComponent.html":{}}}],["this.toggledisplay(divone",{"_index":849,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.toggledisplay(divtwo",{"_index":850,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.togglepasswordvisibility",{"_index":2891,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["this.token",{"_index":3071,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["this.tokenregistry",{"_index":3134,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenregistry.entry(0",{"_index":3144,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenregistry.entry(i",{"_index":3140,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenregistry.totaltokens",{"_index":3137,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokens",{"_index":3169,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.tokenservice",{"_index":3069,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["this.tokenservice.gettokens",{"_index":3170,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.tokenservice.loadevent.subscribe(async",{"_index":3168,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.totalaccounts",{"_index":169,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.traderbloxberglink",{"_index":3228,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction",{"_index":3451,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transaction.from",{"_index":3241,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.to",{"_index":3240,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.token.address",{"_index":3239,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.value",{"_index":3242,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.from",{"_index":3232,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.to",{"_index":3234,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.trader",{"_index":3230,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.type",{"_index":3227,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transactiondatasource",{"_index":3446,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.data",{"_index":3454,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.paginator",{"_index":3448,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.sort",{"_index":3449,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionlist.asobservable",{"_index":3311,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactionlist.next(this.transactions",{"_index":3357,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions",{"_index":3358,"title":{},"body":{"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["this.transactions.filter",{"_index":3455,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactions.find((cachedtx",{"_index":3332,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions.length",{"_index":3356,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions.unshift(transaction",{"_index":3355,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactionservice",{"_index":1154,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.transactionservice.resettransactionslist",{"_index":1120,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.transactionservice.setconversion(conversion",{"_index":739,"title":{},"body":{"components/AppComponent.html":{}}}],["this.transactionservice.settransaction(transaction",{"_index":735,"title":{},"body":{"components/AppComponent.html":{}}}],["this.transactionservice.transactionssubject.subscribe((transactions",{"_index":3445,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionservice.transferrequest",{"_index":3238,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transactionstype",{"_index":3453,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionstypes",{"_index":3450,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.trustedusers",{"_index":2992,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.userservice",{"_index":405,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/CreateAccountComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["this.userservice.accountssubject.subscribe((accounts",{"_index":410,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.userservice.actionssubject.subscribe((actions",{"_index":612,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.userservice.getaccountbyaddress(this.addresssearchformstub.address.value",{"_index":282,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.userservice.getaccountbyphone(this.phonesearchformstub.phonenumber.value",{"_index":270,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.userservice.getactions",{"_index":611,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.userservice.loadaccounts(100",{"_index":401,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.userservice.searchaccountbyname(this.namesearchformstub.name.value",{"_index":266,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.web3",{"_index":2912,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TransactionService.html":{}}}],["this.web3.eth.getgasprice",{"_index":3384,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.gettransaction(result.transactionhash",{"_index":3406,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.gettransactioncount(senderaddress",{"_index":3381,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.sendsignedtransaction(txwire",{"_index":3404,"title":{},"body":{"injectables/TransactionService.html":{}}}],["those",{"_index":3861,"title":{},"body":{"license.html":{}}}],["though",{"_index":4226,"title":{},"body":{"license.html":{}}}],["threatened",{"_index":3871,"title":{},"body":{"license.html":{}}}],["three",{"_index":4128,"title":{},"body":{"license.html":{}}}],["threw",{"_index":1496,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["through",{"_index":2533,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["throw",{"_index":989,"title":{},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["throwerror",{"_index":1388,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["throwerror(err",{"_index":1419,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["thrown",{"_index":1449,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["throws",{"_index":1048,"title":{},"body":{"injectables/AuthService.html":{}}}],["thus",{"_index":4030,"title":{},"body":{"license.html":{}}}],["timber",{"_index":2426,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["timberyard",{"_index":2427,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["time",{"_index":886,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["timestamp",{"_index":1201,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["tissue",{"_index":2379,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["title",{"_index":651,"title":{},"body":{"components/AppComponent.html":{}}}],["titlecase",{"_index":1263,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["todo",{"_index":398,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"index.html":{}}}],["together",{"_index":966,"title":{},"body":{"injectables/AuthService.html":{}}}],["toggle.directive",{"_index":909,"title":{},"body":{"modules/AuthModule.html":{},"modules/SharedModule.html":{}}}],["toggle.directive.ts",{"_index":1595,"title":{},"body":{"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"coverage.html":{}}}],["toggle.directive.ts:11",{"_index":2888,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggle.directive.ts:14",{"_index":1599,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["toggle.directive.ts:19",{"_index":2890,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggle.directive.ts:6",{"_index":1598,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["toggle.directive.ts:8",{"_index":2889,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggledisplay",{"_index":808,"title":{},"body":{"components/AuthComponent.html":{}}}],["toggledisplay(element",{"_index":815,"title":{},"body":{"components/AuthComponent.html":{}}}],["togglepasswordvisibility",{"_index":2886,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["tohex",{"_index":3323,"title":{},"body":{"injectables/TransactionService.html":{}}}],["toi",{"_index":1806,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["toilet",{"_index":1976,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["token",{"_index":324,"title":{"interfaces/Token.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["token.address",{"_index":3073,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["token.name",{"_index":3072,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["token.owner",{"_index":3083,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["token.reserveratio",{"_index":3082,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["token.supply",{"_index":3081,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["token.symbol",{"_index":2576,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["tokenaddress",{"_index":3307,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tokenagent",{"_index":1620,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tokendetailscomponent",{"_index":323,"title":{"components/TokenDetailsComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["tokenratio",{"_index":435,"title":{},"body":{"components/AccountsComponent.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["tokenratiopipe",{"_index":3029,"title":{"pipes/TokenRatioPipe.html":{}},"body":{"modules/SharedModule.html":{},"pipes/TokenRatioPipe.html":{},"coverage.html":{},"overview.html":{}}}],["tokenregistry",{"_index":3090,"title":{"classes/TokenRegistry.html":{}},"body":{"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"coverage.html":{}}}],["tokens",{"_index":2455,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"modules/PagesRoutingModule.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"components/TokensComponent.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["tokens'},{'name",{"_index":326,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["tokens.component.html",{"_index":3153,"title":{},"body":{"components/TokensComponent.html":{}}}],["tokens.component.scss",{"_index":3152,"title":{},"body":{"components/TokensComponent.html":{}}}],["tokens.find((token",{"_index":2575,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["tokenscomponent",{"_index":325,"title":{"components/TokensComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["tokenservice",{"_index":3065,"title":{"injectables/TokenService.html":{}},"body":{"components/TokenDetailsComponent.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"coverage.html":{}}}],["tokenservicestub",{"_index":3146,"title":{"classes/TokenServiceStub.html":{}},"body":{"classes/TokenServiceStub.html":{},"coverage.html":{}}}],["tokensmodule",{"_index":3175,"title":{"modules/TokensModule.html":{}},"body":{"modules/TokensModule.html":{},"modules.html":{},"overview.html":{}}}],["tokensroutingmodule",{"_index":3179,"title":{"modules/TokensRoutingModule.html":{}},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["tom",{"_index":1622,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["tomato",{"_index":2185,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tomatoes",{"_index":2186,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["toolbox",{"_index":2999,"title":{},"body":{"components/SettingsComponent.html":{}}}],["tools",{"_index":3994,"title":{},"body":{"license.html":{}}}],["topbar",{"_index":1429,"title":{},"body":{"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{}}}],["topbar'},{'name",{"_index":328,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["topbar.component.html",{"_index":3192,"title":{},"body":{"components/TopbarComponent.html":{}}}],["topbar.component.scss",{"_index":3191,"title":{},"body":{"components/TopbarComponent.html":{}}}],["topbarcomponent",{"_index":327,"title":{"components/TopbarComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["topbarstubcomponent",{"_index":329,"title":{"components/TopbarStubComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["total",{"_index":139,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["totalaccounts",{"_index":83,"title":{},"body":{"classes/AccountIndex.html":{}}}],["totaltokens",{"_index":3094,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["tour",{"_index":2405,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tout",{"_index":2094,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tovalue",{"_index":1209,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"injectables/TransactionService.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["tovalue(value",{"_index":3390,"title":{},"body":{"injectables/TransactionService.html":{}}}],["town",{"_index":1814,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trace",{"_index":1458,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["trace|debug|info|log|warn|error|fatal|off",{"_index":1570,"title":{},"body":{"injectables/LoggingService.html":{}}}],["tracks",{"_index":1286,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["trade",{"_index":2119,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["trademark",{"_index":4252,"title":{},"body":{"license.html":{}}}],["trademarks",{"_index":4253,"title":{},"body":{"license.html":{}}}],["trader",{"_index":1210,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["traderbloxberglink",{"_index":3207,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["trading",{"_index":3076,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["trainer",{"_index":1938,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["transaction",{"_index":331,"title":{"classes/Transaction.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["transaction.destinationtoken.address",{"_index":3274,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.destinationtoken.name",{"_index":3275,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.destinationtoken.symbol",{"_index":3276,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.from",{"_index":3251,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.fromvalue",{"_index":3272,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.recipient",{"_index":3342,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transaction.recipient?.vcard.fn[0].value",{"_index":3253,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sender",{"_index":3339,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transaction.sender?.vcard.fn[0].value",{"_index":3250,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.address",{"_index":3269,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.name",{"_index":3270,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.symbol",{"_index":3271,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.to",{"_index":3254,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.token._address",{"_index":3258,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tovalue",{"_index":3277,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.trader",{"_index":3268,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.block",{"_index":3259,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.success",{"_index":3263,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.timestamp",{"_index":3264,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.txhash",{"_index":3262,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["transaction.tx.txindex",{"_index":3260,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.type",{"_index":3335,"title":{},"body":{"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["transaction.value",{"_index":3257,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["transaction?.recipient?.vcard.fn[0].value",{"_index":3460,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.sender?.vcard.fn[0].value",{"_index":3459,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.tovalue",{"_index":3462,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.tx.timestamp",{"_index":3463,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.type",{"_index":3464,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.value",{"_index":3461,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiondatasource",{"_index":3419,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiondetailscomponent",{"_index":330,"title":{"components/TransactionDetailsComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"coverage.html":{},"overview.html":{}}}],["transactiondisplayedcolumns",{"_index":3420,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactionhelper",{"_index":1116,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionhelper(settings.w3.engine",{"_index":1130,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionlist",{"_index":3279,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transactions",{"_index":333,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["transactions.component.html",{"_index":3418,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactions.component.scss",{"_index":3417,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactionscomponent",{"_index":332,"title":{"components/TransactionsComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"coverage.html":{},"overview.html":{}}}],["transactionservice",{"_index":658,"title":{"injectables/TransactionService.html":{}},"body":{"components/AppComponent.html":{},"injectables/BlockSyncService.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["transactionservicestub",{"_index":3408,"title":{"classes/TransactionServiceStub.html":{}},"body":{"classes/TransactionServiceStub.html":{},"coverage.html":{}}}],["transactionsinfo",{"_index":1096,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.filter_rounds",{"_index":1184,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.high",{"_index":1183,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.low",{"_index":1182,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsmodule",{"_index":450,"title":{"modules/TransactionsModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules/TransactionsModule.html":{},"modules.html":{},"overview.html":{}}}],["transactionsroutingmodule",{"_index":3469,"title":{"modules/TransactionsRoutingModule.html":{}},"body":{"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["transactionssubject",{"_index":3280,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transactionstype",{"_index":3421,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactionstypes",{"_index":3422,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiontype",{"_index":3458,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiontypes",{"_index":2487,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["transfer",{"_index":2773,"title":{},"body":{"components/OrganizationComponent.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["transferauthaddress",{"_index":3363,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferauthorization",{"_index":3365,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferred",{"_index":4201,"title":{},"body":{"license.html":{}}}],["transferrequest",{"_index":3289,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferrequest(tokenaddress",{"_index":3303,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferring",{"_index":4316,"title":{},"body":{"license.html":{}}}],["transfers",{"_index":3457,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transform",{"_index":2956,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{}}}],["transform(url",{"_index":2957,"title":{},"body":{"pipes/SafePipe.html":{}}}],["transform(value",{"_index":3086,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["transition",{"_index":589,"title":{},"body":{"components/AdminComponent.html":{}}}],["transition('expanded",{"_index":603,"title":{},"body":{"components/AdminComponent.html":{}}}],["transmission",{"_index":4157,"title":{},"body":{"license.html":{}}}],["transport",{"_index":2394,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["transpoter",{"_index":2421,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trash",{"_index":1989,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trasportion",{"_index":2416,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["travel",{"_index":2406,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["traverse",{"_index":888,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["treated",{"_index":4225,"title":{},"body":{"license.html":{}}}],["treaty",{"_index":4055,"title":{},"body":{"license.html":{}}}],["tree",{"_index":181,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"guards/RoleGuard.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"miscellaneous/variables.html":{}}}],["trigger",{"_index":590,"title":{},"body":{"components/AdminComponent.html":{},"directives/MenuToggleDirective.html":{}}}],["trigger('detailexpand",{"_index":594,"title":{},"body":{"components/AdminComponent.html":{}}}],["true",{"_index":114,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"modules/AppModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["trusted",{"_index":689,"title":{},"body":{"components/AppComponent.html":{},"components/SettingsComponent.html":{}}}],["trusteddeclaratoraddress",{"_index":4552,"title":{},"body":{"miscellaneous/variables.html":{}}}],["trustedusers",{"_index":1067,"title":{},"body":{"injectables/AuthService.html":{},"components/SettingsComponent.html":{}}}],["trustedusers.push(key.users[0].userid",{"_index":1069,"title":{},"body":{"injectables/AuthService.html":{}}}],["try",{"_index":397,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{},"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["ts",{"_index":2895,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["tslib",{"_index":3632,"title":{},"body":{"dependencies.html":{}}}],["tslint:disable",{"_index":1142,"title":{},"body":{"injectables/BlockSyncService.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["tsta",{"_index":2480,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tstb",{"_index":2476,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tstc",{"_index":2484,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tudor",{"_index":1825,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tuition",{"_index":1932,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tuktuk",{"_index":2411,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tution",{"_index":1931,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tv",{"_index":2095,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["two",{"_index":3005,"title":{},"body":{"components/SettingsComponent.html":{},"license.html":{}}}],["tx",{"_index":1100,"title":{"classes/Tx.html":{}},"body":{"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"modules/PagesRoutingModule.html":{},"classes/Transaction.html":{},"injectables/TransactionService.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{}}}],["tx(environment.bloxbergchainid",{"_index":3379,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.data",{"_index":3391,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.gaslimit",{"_index":3385,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.gasprice",{"_index":3382,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.message",{"_index":3393,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.nonce",{"_index":3380,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.setsignature(r",{"_index":3401,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.to",{"_index":3387,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.value",{"_index":3389,"title":{},"body":{"injectables/TransactionService.html":{}}}],["txhash",{"_index":1202,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["txhelper",{"_index":2966,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["txindex",{"_index":1203,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["txmsg",{"_index":3392,"title":{},"body":{"injectables/TransactionService.html":{}}}],["txtoken",{"_index":1198,"title":{"classes/TxToken.html":{}},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{}}}],["txwire",{"_index":3402,"title":{},"body":{"injectables/TransactionService.html":{}}}],["typ",{"_index":38,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["type",{"_index":18,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"classes/W3.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["typed",{"_index":1381,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["typeerror",{"_index":1492,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["types",{"_index":1447,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["typescript",{"_index":109,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/functions.html":{}}}],["typical",{"_index":4181,"title":{},"body":{"license.html":{}}}],["uchumi",{"_index":1782,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uchuuzi",{"_index":2273,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uchuzi",{"_index":2272,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ug",{"_index":2790,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ugali",{"_index":2271,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uganda",{"_index":2791,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ugoro",{"_index":2262,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uint256",{"_index":3376,"title":{},"body":{"injectables/TransactionService.html":{}}}],["uint8array",{"_index":1110,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["uint8array(blockfilterbinstr.length",{"_index":1170,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["uint8array(blocktxfilterbinstr.length",{"_index":1178,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["ujenzi",{"_index":2121,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uji",{"_index":2270,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ukulima",{"_index":2001,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ukunda",{"_index":1744,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["umena",{"_index":2195,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["umoja",{"_index":1784,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unable",{"_index":1034,"title":{},"body":{"injectables/AuthService.html":{}}}],["unacceptable",{"_index":3858,"title":{},"body":{"license.html":{}}}],["unapproved",{"_index":616,"title":{},"body":{"components/AdminComponent.html":{},"classes/UserServiceStub.html":{}}}],["unauthorized",{"_index":1411,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["undefined",{"_index":274,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"classes/Settings.html":{},"classes/W3.html":{}}}],["under",{"_index":3901,"title":{},"body":{"license.html":{}}}],["unga",{"_index":2253,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uniform",{"_index":2381,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unit",{"_index":3731,"title":{},"body":{"index.html":{}}}],["united",{"_index":2784,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["university",{"_index":1906,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unknown",{"_index":1888,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"pipes/SafePipe.html":{},"miscellaneous/variables.html":{}}}],["unless",{"_index":4189,"title":{},"body":{"license.html":{}}}],["unlimited",{"_index":4017,"title":{},"body":{"license.html":{}}}],["unmodified",{"_index":3918,"title":{},"body":{"license.html":{}}}],["unnecessary",{"_index":4042,"title":{},"body":{"license.html":{}}}],["unpacking",{"_index":4221,"title":{},"body":{"license.html":{}}}],["unsuccessful",{"_index":1399,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["until",{"_index":4282,"title":{},"body":{"license.html":{}}}],["update",{"_index":3003,"title":{},"body":{"components/SettingsComponent.html":{}}}],["updates",{"_index":4210,"title":{},"body":{"license.html":{}}}],["uploaded",{"_index":878,"title":{},"body":{"guards/AuthGuard.html":{}}}],["uppercase",{"_index":428,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"components/TransactionsComponent.html":{}}}],["urban",{"_index":1890,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["url",{"_index":870,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"components/PagesComponent.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{}}}],["url.endswith('/accounttypes",{"_index":2512,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/actions",{"_index":2513,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/areanames",{"_index":2518,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/areatypes",{"_index":2520,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/categories",{"_index":2522,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/genders",{"_index":2525,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/tokens",{"_index":2526,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/transactiontypes",{"_index":2530,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/actions\\/\\d",{"_index":2515,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/areanames\\/\\w",{"_index":2519,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/areatypes\\/\\w",{"_index":2521,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/categories\\/\\w",{"_index":2523,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/tokens\\/\\w",{"_index":2528,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.split",{"_index":2583,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urlparts",{"_index":2582,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urlparts[urlparts.length",{"_index":2588,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urltree",{"_index":890,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["usafi",{"_index":1986,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["use",{"_index":528,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"injectables/AuthService.html":{},"index.html":{},"license.html":{}}}],["useclass",{"_index":786,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["used",{"_index":887,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["useful",{"_index":4490,"title":{},"body":{"license.html":{}}}],["user",{"_index":515,"title":{},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"guards/AuthGuard.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"components/SettingsComponent.html":{},"classes/Transaction.html":{},"injectables/TransactionService.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["user's",{"_index":892,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"miscellaneous/variables.html":{}}}],["user.email",{"_index":3010,"title":{},"body":{"components/SettingsComponent.html":{}}}],["user.name",{"_index":3009,"title":{},"body":{"components/SettingsComponent.html":{}}}],["user.tokey(conversion.trader",{"_index":3351,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.tokey(transaction.from",{"_index":3337,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.tokey(transaction.to",{"_index":3341,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.userid",{"_index":3011,"title":{},"body":{"components/SettingsComponent.html":{}}}],["user?.balance",{"_index":434,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.date_registered",{"_index":432,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.location.area_name",{"_index":436,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.vcard.fn[0].value",{"_index":430,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.vcard.tel[0].value",{"_index":431,"title":{},"body":{"components/AccountsComponent.html":{}}}],["userid",{"_index":2984,"title":{},"body":{"components/SettingsComponent.html":{},"interfaces/Staff.html":{}}}],["userinfo",{"_index":3281,"title":{},"body":{"injectables/TransactionService.html":{}}}],["userkey",{"_index":3523,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["username",{"_index":3001,"title":{},"body":{"components/SettingsComponent.html":{}}}],["users",{"_index":2996,"title":{},"body":{"components/SettingsComponent.html":{},"classes/UserServiceStub.html":{},"index.html":{},"license.html":{}}}],["userservice",{"_index":217,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/CreateAccountComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["userservicestub",{"_index":3483,"title":{"classes/UserServiceStub.html":{}},"body":{"classes/UserServiceStub.html":{},"coverage.html":{}}}],["uses",{"_index":4184,"title":{},"body":{"license.html":{}}}],["using",{"_index":4155,"title":{},"body":{"license.html":{}}}],["ustadh",{"_index":1955,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ustadhi",{"_index":1956,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utencils",{"_index":2384,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utensils",{"_index":2385,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utils",{"_index":3319,"title":{},"body":{"injectables/TransactionService.html":{}}}],["utils.abicoder",{"_index":3374,"title":{},"body":{"injectables/TransactionService.html":{}}}],["uto",{"_index":2368,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uvuvi",{"_index":2061,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uyoma",{"_index":1863,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["v",{"_index":1172,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["v[i",{"_index":1173,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["valid",{"_index":72,"title":{},"body":{"classes/AccountIndex.html":{},"classes/CustomValidator.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["validated",{"_index":125,"title":{},"body":{"classes/AccountIndex.html":{},"classes/CustomValidator.html":{},"miscellaneous/functions.html":{}}}],["validates",{"_index":3685,"title":{},"body":{"miscellaneous/functions.html":{}}}],["validation",{"_index":1287,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{}}}],["validation.ts",{"_index":3562,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["validationerrors",{"_index":1314,"title":{},"body":{"classes/CustomValidator.html":{}}}],["validator",{"_index":3611,"title":{},"body":{"dependencies.html":{}}}],["validators",{"_index":246,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["validators.required",{"_index":256,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["value",{"_index":33,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"injectables/RegistryService.html":{},"directives/RouterLinkDirectiveStub.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"interfaces/Signature.html":{},"pipes/TokenRatioPipe.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"classes/Transaction.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["value.trim().tolocalelowercase",{"_index":419,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["values",{"_index":551,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"miscellaneous/functions.html":{}}}],["var",{"_index":291,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["variable",{"_index":3542,"title":{},"body":{"coverage.html":{}}}],["variables",{"_index":3718,"title":{"miscellaneous/variables.html":{}},"body":{"index.html":{},"miscellaneous/variables.html":{}}}],["vcard",{"_index":19,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"injectables/TransactionService.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["vcard.parse(atob(accountinfo.vcard",{"_index":3362,"title":{},"body":{"injectables/TransactionService.html":{}}}],["vcards",{"_index":3634,"title":{},"body":{"dependencies.html":{}}}],["vcardvalidation",{"_index":3564,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["vcardvalidation(vcard",{"_index":3689,"title":{},"body":{"miscellaneous/functions.html":{}}}],["vegetable",{"_index":2249,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vendor",{"_index":1619,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["verbatim",{"_index":3767,"title":{},"body":{"license.html":{}}}],["verification",{"_index":3008,"title":{},"body":{"components/SettingsComponent.html":{}}}],["verify",{"_index":2799,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signer.html":{}}}],["verify(digest",{"_index":2817,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["version",{"_index":39,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/AppComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["versions",{"_index":3783,"title":{},"body":{"license.html":{}}}],["vet",{"_index":2316,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["veterinary",{"_index":2315,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["via",{"_index":3675,"title":{},"body":{"miscellaneous/functions.html":{},"index.html":{}}}],["viatu",{"_index":2114,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["viazi",{"_index":2274,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vidziweni",{"_index":1742,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["view",{"_index":3252,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"license.html":{}}}],["view_in_ar",{"_index":286,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["viewaccount",{"_index":359,"title":{},"body":{"components/AccountsComponent.html":{}}}],["viewaccount(account",{"_index":369,"title":{},"body":{"components/AccountsComponent.html":{}}}],["viewchild",{"_index":389,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["viewchild(matpaginator",{"_index":385,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["viewchild(matsort",{"_index":388,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["viewrecipient",{"_index":3210,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["views",{"_index":869,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"guards/RoleGuard.html":{}}}],["viewsender",{"_index":3211,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["viewtoken",{"_index":3155,"title":{},"body":{"components/TokensComponent.html":{}}}],["viewtoken(token",{"_index":3161,"title":{},"body":{"components/TokensComponent.html":{}}}],["viewtrader",{"_index":3212,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["viewtransaction",{"_index":3425,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["viewtransaction(transaction",{"_index":3433,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["vigungani",{"_index":1741,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vijana",{"_index":1939,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikapu",{"_index":2380,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikinduni",{"_index":1729,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikolani",{"_index":1730,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["village",{"_index":1968,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vinyunduni",{"_index":1743,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["viogato",{"_index":1732,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["violates",{"_index":4216,"title":{},"body":{"license.html":{}}}],["violation",{"_index":4278,"title":{},"body":{"license.html":{}}}],["visibility",{"_index":599,"title":{},"body":{"components/AdminComponent.html":{}}}],["visible",{"_index":602,"title":{},"body":{"components/AdminComponent.html":{},"license.html":{}}}],["vistangani",{"_index":1734,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitabu",{"_index":1947,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitangani",{"_index":1731,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitenge",{"_index":2383,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitungu",{"_index":2227,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vivian",{"_index":1631,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["void",{"_index":221,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomValidator.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["volume",{"_index":4107,"title":{},"body":{"license.html":{}}}],["volunteer",{"_index":1919,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vsla",{"_index":2323,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vyogato",{"_index":1733,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vyombo",{"_index":2393,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["w",{"_index":1161,"title":{},"body":{"injectables/BlockSyncService.html":{},"license.html":{}}}],["w.onmessage",{"_index":1163,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["w.postmessage",{"_index":1164,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["w3",{"_index":2967,"title":{"classes/W3.html":{}},"body":{"classes/Settings.html":{},"classes/W3.html":{},"coverage.html":{}}}],["w3_provider",{"_index":1153,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["waiter",{"_index":2112,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waitress",{"_index":2113,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waive",{"_index":4063,"title":{},"body":{"license.html":{}}}],["waiver",{"_index":4470,"title":{},"body":{"license.html":{}}}],["wakulima",{"_index":2002,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["want",{"_index":3799,"title":{},"body":{"license.html":{}}}],["ward",{"_index":1969,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["warning",{"_index":1454,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["warnings",{"_index":1468,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["warranties",{"_index":3951,"title":{},"body":{"license.html":{}}}],["warranty",{"_index":3835,"title":{},"body":{"license.html":{}}}],["wash",{"_index":2018,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["washing",{"_index":2106,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waste",{"_index":1980,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["watchlady",{"_index":2122,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["watchman",{"_index":2111,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["water",{"_index":2287,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["way",{"_index":3790,"title":{},"body":{"license.html":{}}}],["ways",{"_index":4118,"title":{},"body":{"license.html":{}}}],["web",{"_index":3692,"title":{},"body":{"index.html":{}}}],["web3",{"_index":141,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"injectables/TransactionService.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["web3(environment.web3provider",{"_index":153,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["web3.eth.abi.encodeparameter('bytes32",{"_index":3113,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["web3.eth.accounts[0",{"_index":160,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["web3.eth.contract(abi",{"_index":158,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["web3.utils.tohex(identifier",{"_index":3114,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["web3provider",{"_index":4545,"title":{},"body":{"miscellaneous/variables.html":{}}}],["weight",{"_index":2467,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["welcome",{"_index":4500,"title":{},"body":{"license.html":{}}}],["welder",{"_index":2108,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["welding",{"_index":2109,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["well",{"_index":3935,"title":{},"body":{"license.html":{}}}],["went",{"_index":1404,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["west",{"_index":1748,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["whatever",{"_index":4320,"title":{},"body":{"license.html":{}}}],["wheadsync",{"_index":1147,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["wheadsync.onmessage",{"_index":1150,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["wheadsync.postmessage",{"_index":1152,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["whether",{"_index":120,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"classes/CustomErrorStateMatcher.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["whole",{"_index":3972,"title":{},"body":{"license.html":{}}}],["wholesaler",{"_index":2376,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["whose",{"_index":4164,"title":{},"body":{"license.html":{}}}],["widely",{"_index":3968,"title":{},"body":{"license.html":{}}}],["width",{"_index":633,"title":{},"body":{"components/AdminComponent.html":{},"components/AppComponent.html":{},"injectables/ErrorDialogService.html":{},"directives/MenuSelectionDirective.html":{}}}],["window",{"_index":3984,"title":{},"body":{"license.html":{}}}],["window.atob(transactionsinfo.block_filter",{"_index":1168,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.atob(transactionsinfo.blocktx_filter",{"_index":1176,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.dispatchevent(this.newconversionevent(transaction",{"_index":1134,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.dispatchevent(this.newtransferevent(transaction",{"_index":1132,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.getcomputedstyle(element).display",{"_index":851,"title":{},"body":{"components/AuthComponent.html":{}}}],["window.location.reload",{"_index":714,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{}}}],["window.location.search.substring(1",{"_index":978,"title":{},"body":{"injectables/AuthService.html":{}}}],["window.matchmedia('(max",{"_index":674,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["window.prompt('password",{"_index":2703,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{}}}],["window:cic_convert",{"_index":654,"title":{},"body":{"components/AppComponent.html":{}}}],["window:cic_convert(event",{"_index":664,"title":{},"body":{"components/AppComponent.html":{}}}],["window:cic_transfer",{"_index":655,"title":{},"body":{"components/AppComponent.html":{}}}],["window:cic_transfer(event",{"_index":667,"title":{},"body":{"components/AppComponent.html":{}}}],["wine",{"_index":2277,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["wipo",{"_index":4054,"title":{},"body":{"license.html":{}}}],["wish",{"_index":3797,"title":{},"body":{"license.html":{}}}],["within",{"_index":4263,"title":{},"body":{"license.html":{}}}],["without",{"_index":3921,"title":{},"body":{"license.html":{}}}],["wood",{"_index":2441,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["work",{"_index":2127,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["work's",{"_index":3993,"title":{},"body":{"license.html":{}}}],["worker",{"_index":684,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"injectables/BlockSyncService.html":{},"interceptors/MockBackendInterceptor.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["worker('./../assets/js/block",{"_index":1148,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["worker.js",{"_index":782,"title":{},"body":{"modules/AppModule.html":{}}}],["working",{"_index":2110,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["works",{"_index":3773,"title":{},"body":{"license.html":{}}}],["world",{"_index":3414,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["world!'",{"_index":3656,"title":{},"body":{"miscellaneous/functions.html":{}}}],["worldwide",{"_index":4350,"title":{},"body":{"license.html":{}}}],["wote",{"_index":1883,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["wrap",{"_index":2493,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["write",{"_index":1461,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["writing",{"_index":4432,"title":{},"body":{"license.html":{}}}],["written",{"_index":4127,"title":{},"body":{"license.html":{}}}],["wrong",{"_index":1405,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["ws.dev.grassrootseconomics.net",{"_index":4547,"title":{},"body":{"miscellaneous/variables.html":{}}}],["wss://bloxberg",{"_index":4546,"title":{},"body":{"miscellaneous/variables.html":{}}}],["xhr",{"_index":972,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.addeventlistener('load",{"_index":986,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.getresponseheader('token",{"_index":1007,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.getresponseheader('www",{"_index":1013,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.onload",{"_index":1011,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.open('get",{"_index":976,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.responsetype",{"_index":974,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.send",{"_index":995,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.setrequestheader('authorization",{"_index":979,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.setrequestheader('content",{"_index":981,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.setrequestheader('x",{"_index":983,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.status",{"_index":987,"title":{},"body":{"injectables/AuthService.html":{}}}],["xmlhttprequest",{"_index":973,"title":{},"body":{"injectables/AuthService.html":{}}}],["yapha",{"_index":1735,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yava",{"_index":1736,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["years",{"_index":4129,"title":{},"body":{"license.html":{}}}],["yes",{"_index":96,"title":{},"body":{"classes/AccountIndex.html":{},"classes/ActivatedRouteStub.html":{},"classes/TokenRegistry.html":{}}}],["yoga",{"_index":2115,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yoghurt",{"_index":2275,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yogurt",{"_index":2276,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yourself",{"_index":4368,"title":{},"body":{"license.html":{}}}],["youth",{"_index":1940,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yowani",{"_index":1737,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ziwani",{"_index":1738,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["zone.js",{"_index":3638,"title":{},"body":{"dependencies.html":{}}}],["zoom",{"_index":451,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"overview.html":{}}}]],"pipeline":["stemmer"]}, - "store": {"interfaces/AccountDetails.html":{"url":"interfaces/AccountDetails.html","title":"interface - AccountDetails","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n AccountDetails\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/account.ts\n \n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n age\n \n \n Optional\n balance\n \n \n Optional\n category\n \n \n date_registered\n \n \n gender\n \n \n identities\n \n \n location\n \n \n products\n \n \n Optional\n type\n \n \n vcard\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n age\n \n \n \n \n age: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n balance\n \n \n \n \n balance: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n category\n \n \n \n \n category: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n date_registered\n \n \n \n \n date_registered: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n gender\n \n \n \n \n gender: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n identities\n \n \n \n \n identities: literal type\n\n \n \n\n\n \n \n Type : literal type\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n location\n \n \n \n \n location: literal type\n\n \n \n\n\n \n \n Type : literal type\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n products\n \n \n \n \n products: string[]\n\n \n \n\n\n \n \n Type : string[]\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n type\n \n \n \n \n type: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n vcard\n \n \n \n \n vcard: literal type\n\n \n \n\n\n \n \n Type : literal type\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n interface AccountDetails {\n date_registered: number;\n gender: string;\n age?: string;\n type?: string;\n balance?: number;\n identities: {\n evm: {\n 'bloxberg:8996': string[];\n 'oldchain:1': string[];\n };\n latitude: number;\n longitude: number;\n };\n location: {\n area?: string;\n area_name: string;\n area_type?: string;\n };\n products: string[];\n category?: string;\n vcard: {\n email: [\n {\n value: string;\n }\n ];\n fn: [\n {\n value: string;\n }\n ];\n n: [\n {\n value: string[];\n }\n ];\n tel: [\n {\n meta: {\n TYP: string[];\n };\n value: string;\n }\n ];\n version: [\n {\n value: string;\n }\n ];\n };\n}\n\ninterface Signature {\n algo: string;\n data: string;\n digest: string;\n engine: string;\n}\n\ninterface Meta {\n data: AccountDetails;\n id: string;\n signature: Signature;\n}\n\ninterface MetaResponse {\n id: string;\n m: Meta;\n}\n\nconst defaultAccount: AccountDetails = {\n date_registered: Date.now(),\n gender: 'other',\n identities: {\n evm: {\n 'bloxberg:8996': [''],\n 'oldchain:1': [''],\n },\n latitude: 0,\n longitude: 0,\n },\n location: {\n area_name: 'Kilifi',\n },\n products: [],\n vcard: {\n email: [\n {\n value: '',\n },\n ],\n fn: [\n {\n value: 'Sarafu Contract',\n },\n ],\n n: [\n {\n value: ['Sarafu', 'Contract'],\n },\n ],\n tel: [\n {\n meta: {\n TYP: [],\n },\n value: '',\n },\n ],\n version: [\n {\n value: '3.0',\n },\n ],\n },\n};\n\nexport { AccountDetails, Signature, Meta, MetaResponse, defaultAccount };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/AccountIndex.html":{"url":"classes/AccountIndex.html","title":"class - AccountIndex","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n AccountIndex\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_eth/accountIndex.ts\n \n\n \n Description\n \n \n Provides an instance of the accounts registry contract.\nAllows querying of accounts that have been registered as valid accounts in the network.\n\n \n\n\n\n \n Example\n \n \n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n contract\n \n \n contractAddress\n \n \n signerAddress\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n Async\n addToAccountRegistry\n \n \n Public\n Async\n haveAccount\n \n \n Public\n Async\n last\n \n \n Public\n Async\n totalAccounts\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(contractAddress: string, signerAddress?: string)\n \n \n \n \n Defined in src/app/_eth/accountIndex.ts:25\n \n \n\n \n \n Create a connection to the deployed account registry contract.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n contractAddress\n \n \n string\n \n \n \n No\n \n \n \n \nThe deployed account registry contract's address.\n\n\n \n \n \n signerAddress\n \n \n string\n \n \n \n Yes\n \n \n \n \nThe account address of the account that deployed the account registry contract.\n\n\n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n contract\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/app/_eth/accountIndex.ts:21\n \n \n\n \n \n The instance of the account registry contract. \n\n \n \n\n \n \n \n \n \n \n \n \n \n contractAddress\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/_eth/accountIndex.ts:23\n \n \n\n \n \n The deployed account registry contract's address. \n\n \n \n\n \n \n \n \n \n \n \n \n \n signerAddress\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/_eth/accountIndex.ts:25\n \n \n\n \n \n The account address of the account that deployed the account registry contract. \n\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Public\n Async\n addToAccountRegistry\n \n \n \n \n \n \n \n \n addToAccountRegistry(address: string)\n \n \n\n\n \n \n Defined in src/app/_eth/accountIndex.ts:57\n \n \n\n\n \n \n Registers an account to the accounts registry.\nRequires availability of the signer address.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n address\n \n string\n \n\n \n No\n \n\n\n \n \nThe account address to be registered to the accounts registry contract.\n\n\n \n \n \n \n \n \n Example :\n \n Prints "true" for registration of '0xc0ffee254729296a45a3885639AC7E10F9d54979':\n```typescript\n\nconsole.log(await addToAccountRegistry('0xc0ffee254729296a45a3885639AC7E10F9d54979'));\n```\n\n \n \n \n Returns : Promise\n\n \n \n true - If registration is successful or account had already been registered.\n\n \n \n \n \n \n \n \n \n \n \n \n \n Public\n Async\n haveAccount\n \n \n \n \n \n \n \n \n haveAccount(address: string)\n \n \n\n\n \n \n Defined in src/app/_eth/accountIndex.ts:78\n \n \n\n\n \n \n Checks whether a specific account address has been registered in the accounts registry.\nReturns \"true\" for available and \"false\" otherwise.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n address\n \n string\n \n\n \n No\n \n\n\n \n \nThe account address to be validated.\n\n\n \n \n \n \n \n \n Example :\n \n Prints "true" or "false" depending on whether '0xc0ffee254729296a45a3885639AC7E10F9d54979' has been registered:\n```typescript\n\nconsole.log(await haveAccount('0xc0ffee254729296a45a3885639AC7E10F9d54979'));\n```\n\n \n \n \n Returns : Promise\n\n \n \n true - If the address has been registered in the accounts registry.\n\n \n \n \n \n \n \n \n \n \n \n \n \n Public\n Async\n last\n \n \n \n \n \n \n \n \n last(numberOfAccounts: number)\n \n \n\n\n \n \n Defined in src/app/_eth/accountIndex.ts:95\n \n \n\n\n \n \n Returns a specified number of the most recently registered accounts.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n numberOfAccounts\n \n number\n \n\n \n No\n \n\n\n \n \nThe number of accounts to return from the accounts registry.\n\n\n \n \n \n \n \n \n Example :\n \n Prints an array of accounts:\n```typescript\n\nconsole.log(await last(5));\n```\n\n \n \n \n Returns : Promise>\n\n \n \n An array of registered account addresses.\n\n \n \n \n \n \n \n \n \n \n \n \n \n Public\n Async\n totalAccounts\n \n \n \n \n \n \n \n \n totalAccounts()\n \n \n\n\n \n \n Defined in src/app/_eth/accountIndex.ts:121\n \n \n\n\n \n \n Returns the total number of accounts that have been registered in the network.\n\n\n \n Example :\n \n Prints the total number of registered accounts:\n```typescript\n\nconsole.log(await totalAccounts());\n```\n\n \n \n \n Returns : Promise\n\n \n \n The total number of registered accounts.\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n import Web3 from 'web3';\n\n// Application imports\nimport { environment } from '@src/environments/environment';\n\n/** Fetch the account registry contract's ABI. */\nconst abi: Array = require('@src/assets/js/block-sync/data/AccountRegistry.json');\n/** Establish a connection to the blockchain network. */\nconst web3: Web3 = new Web3(environment.web3Provider);\n\n/**\n * Provides an instance of the accounts registry contract.\n * Allows querying of accounts that have been registered as valid accounts in the network.\n *\n * @remarks\n * This is our interface to the accounts registry contract.\n */\nexport class AccountIndex {\n /** The instance of the account registry contract. */\n contract: any;\n /** The deployed account registry contract's address. */\n contractAddress: string;\n /** The account address of the account that deployed the account registry contract. */\n signerAddress: string;\n\n /**\n * Create a connection to the deployed account registry contract.\n *\n * @param contractAddress - The deployed account registry contract's address.\n * @param signerAddress - The account address of the account that deployed the account registry contract.\n */\n constructor(contractAddress: string, signerAddress?: string) {\n this.contractAddress = contractAddress;\n this.contract = new web3.eth.Contract(abi, this.contractAddress);\n if (signerAddress) {\n this.signerAddress = signerAddress;\n } else {\n this.signerAddress = web3.eth.accounts[0];\n }\n }\n\n /**\n * Registers an account to the accounts registry.\n * Requires availability of the signer address.\n *\n * @async\n * @example\n * Prints \"true\" for registration of '0xc0ffee254729296a45a3885639AC7E10F9d54979':\n * ```typescript\n * console.log(await addToAccountRegistry('0xc0ffee254729296a45a3885639AC7E10F9d54979'));\n * ```\n *\n * @param address - The account address to be registered to the accounts registry contract.\n * @returns true - If registration is successful or account had already been registered.\n */\n public async addToAccountRegistry(address: string): Promise {\n if (!(await this.haveAccount(address))) {\n return await this.contract.methods.add(address).send({ from: this.signerAddress });\n }\n return true;\n }\n\n /**\n * Checks whether a specific account address has been registered in the accounts registry.\n * Returns \"true\" for available and \"false\" otherwise.\n *\n * @async\n * @example\n * Prints \"true\" or \"false\" depending on whether '0xc0ffee254729296a45a3885639AC7E10F9d54979' has been registered:\n * ```typescript\n * console.log(await haveAccount('0xc0ffee254729296a45a3885639AC7E10F9d54979'));\n * ```\n *\n * @param address - The account address to be validated.\n * @returns true - If the address has been registered in the accounts registry.\n */\n public async haveAccount(address: string): Promise {\n return (await this.contract.methods.accountIndex(address).call()) !== 0;\n }\n\n /**\n * Returns a specified number of the most recently registered accounts.\n *\n * @async\n * @example\n * Prints an array of accounts:\n * ```typescript\n * console.log(await last(5));\n * ```\n *\n * @param numberOfAccounts - The number of accounts to return from the accounts registry.\n * @returns An array of registered account addresses.\n */\n public async last(numberOfAccounts: number): Promise> {\n const count: number = await this.totalAccounts();\n let lowest: number = count - numberOfAccounts - 1;\n if (lowest = [];\n for (let i = count - 1; i > lowest; i--) {\n const account: string = await this.contract.methods.accounts(i).call();\n accounts.push(account);\n }\n return accounts;\n }\n\n /**\n * Returns the total number of accounts that have been registered in the network.\n *\n * @async\n * @example\n * Prints the total number of registered accounts:\n * ```typescript\n * console.log(await totalAccounts());\n * ```\n *\n * @returns The total number of registered accounts.\n */\n public async totalAccounts(): Promise {\n return await this.contract.methods.count().call();\n }\n}\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/AccountSearchComponent.html":{"url":"components/AccountSearchComponent.html","title":"component - AccountSearchComponent","body":"\n \n\n\n\n\n\n Components\n AccountSearchComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/pages/accounts/account-search/account-search.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-account-search\n \n\n \n styleUrls\n ./account-search.component.scss\n \n\n\n\n \n templateUrl\n ./account-search.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n addressSearchForm\n \n \n addressSearchLoading\n \n \n addressSearchSubmitted\n \n \n matcher\n \n \n nameSearchForm\n \n \n nameSearchLoading\n \n \n nameSearchSubmitted\n \n \n phoneSearchForm\n \n \n phoneSearchLoading\n \n \n phoneSearchSubmitted\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n Async\n onAddressSearch\n \n \n onNameSearch\n \n \n Async\n onPhoneSearch\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n nameSearchFormStub\n \n \n phoneSearchFormStub\n \n \n addressSearchFormStub\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(formBuilder: FormBuilder, userService: UserService, router: Router)\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:25\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n formBuilder\n \n \n FormBuilder\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:33\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n onAddressSearch\n \n \n \n \n \n \n \n \n onAddressSearch()\n \n \n\n\n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:85\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n onNameSearch\n \n \n \n \n \n \n \nonNameSearch()\n \n \n\n\n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:55\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n onPhoneSearch\n \n \n \n \n \n \n \n \n onPhoneSearch()\n \n \n\n\n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:65\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n addressSearchForm\n \n \n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:22\n \n \n\n\n \n \n \n \n \n \n \n \n \n addressSearchLoading\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:24\n \n \n\n\n \n \n \n \n \n \n \n \n \n addressSearchSubmitted\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:23\n \n \n\n\n \n \n \n \n \n \n \n \n \n matcher\n \n \n \n \n \n \n Type : CustomErrorStateMatcher\n\n \n \n \n \n Default value : new CustomErrorStateMatcher()\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:25\n \n \n\n\n \n \n \n \n \n \n \n \n \n nameSearchForm\n \n \n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:16\n \n \n\n\n \n \n \n \n \n \n \n \n \n nameSearchLoading\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:18\n \n \n\n\n \n \n \n \n \n \n \n \n \n nameSearchSubmitted\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:17\n \n \n\n\n \n \n \n \n \n \n \n \n \n phoneSearchForm\n \n \n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:19\n \n \n\n\n \n \n \n \n \n \n \n \n \n phoneSearchLoading\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:21\n \n \n\n\n \n \n \n \n \n \n \n \n \n phoneSearchSubmitted\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:20\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n nameSearchFormStub\n \n \n\n \n \n getnameSearchFormStub()\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:45\n \n \n\n \n \n \n \n \n \n \n phoneSearchFormStub\n \n \n\n \n \n getphoneSearchFormStub()\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:48\n \n \n\n \n \n \n \n \n \n \n addressSearchFormStub\n \n \n\n \n \n getaddressSearchFormStub()\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:51\n \n \n\n \n \n\n\n\n\n \n import { Component, OnInit, ChangeDetectionStrategy } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators } from '@angular/forms';\nimport { CustomErrorStateMatcher } from '@app/_helpers';\nimport { UserService } from '@app/_services';\nimport { Router } from '@angular/router';\nimport { strip0x } from '@src/assets/js/ethtx/dist/hex';\nimport { environment } from '@src/environments/environment';\n\n@Component({\n selector: 'app-account-search',\n templateUrl: './account-search.component.html',\n styleUrls: ['./account-search.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class AccountSearchComponent implements OnInit {\n nameSearchForm: FormGroup;\n nameSearchSubmitted: boolean = false;\n nameSearchLoading: boolean = false;\n phoneSearchForm: FormGroup;\n phoneSearchSubmitted: boolean = false;\n phoneSearchLoading: boolean = false;\n addressSearchForm: FormGroup;\n addressSearchSubmitted: boolean = false;\n addressSearchLoading: boolean = false;\n matcher: CustomErrorStateMatcher = new CustomErrorStateMatcher();\n\n constructor(\n private formBuilder: FormBuilder,\n private userService: UserService,\n private router: Router\n ) {}\n\n ngOnInit(): void {\n this.nameSearchForm = this.formBuilder.group({\n name: ['', Validators.required],\n });\n this.phoneSearchForm = this.formBuilder.group({\n phoneNumber: ['', Validators.required],\n });\n this.addressSearchForm = this.formBuilder.group({\n address: ['', Validators.required],\n });\n }\n\n get nameSearchFormStub(): any {\n return this.nameSearchForm.controls;\n }\n get phoneSearchFormStub(): any {\n return this.phoneSearchForm.controls;\n }\n get addressSearchFormStub(): any {\n return this.addressSearchForm.controls;\n }\n\n onNameSearch(): void {\n this.nameSearchSubmitted = true;\n if (this.nameSearchForm.invalid) {\n return;\n }\n this.nameSearchLoading = true;\n this.userService.searchAccountByName(this.nameSearchFormStub.name.value);\n this.nameSearchLoading = false;\n }\n\n async onPhoneSearch(): Promise {\n this.phoneSearchSubmitted = true;\n if (this.phoneSearchForm.invalid) {\n return;\n }\n this.phoneSearchLoading = true;\n (\n await this.userService.getAccountByPhone(this.phoneSearchFormStub.phoneNumber.value, 100)\n ).subscribe(async (res) => {\n if (res !== undefined) {\n await this.router.navigateByUrl(\n `/accounts/${strip0x(res.identities.evm[`bloxberg:${environment.bloxbergChainId}`][0])}`\n );\n } else {\n alert('Account not found!');\n }\n });\n this.phoneSearchLoading = false;\n }\n\n async onAddressSearch(): Promise {\n this.addressSearchSubmitted = true;\n if (this.addressSearchForm.invalid) {\n return;\n }\n this.addressSearchLoading = true;\n (\n await this.userService.getAccountByAddress(this.addressSearchFormStub.address.value, 100)\n ).subscribe(async (res) => {\n if (res !== undefined) {\n await this.router.navigateByUrl(\n `/accounts/${strip0x(res.identities.evm[`bloxberg:${environment.bloxbergChainId}`][0])}`\n );\n } else {\n alert('Account not found!');\n }\n });\n this.addressSearchLoading = false;\n }\n}\n\n \n\n \n \n\n \n\n \n \n \n\n \n \n \n \n \n \n Home\n Accounts\n Search\n \n \n \n \n Accounts\n \n \n \n \n \n \n Search \n \n Phone Number is required.\n phone\n Phone Number\n \n SEARCH \n \n \n \n \n \n Search \n \n Account Address is required.\n view_in_ar\n Account Address\n \n SEARCH \n \n \n \n \n \n \n \n \n \n \n \n\n\n \n\n \n \n ./account-search.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Home Accounts Search Accounts Search Phone Number is required. phone Phone Number SEARCH Search Account Address is required. view_in_ar Account Address SEARCH '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'AccountSearchComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/AccountsComponent.html":{"url":"components/AccountsComponent.html","title":"component - AccountsComponent","body":"\n \n\n\n\n\n\n Components\n AccountsComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/pages/accounts/accounts.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-accounts\n \n\n \n styleUrls\n ./accounts.component.scss\n \n\n\n\n \n templateUrl\n ./accounts.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n accounts\n \n \n accountsType\n \n \n accountTypes\n \n \n dataSource\n \n \n defaultPageSize\n \n \n displayedColumns\n \n \n pageSizeOptions\n \n \n paginator\n \n \n sort\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n doFilter\n \n \n downloadCsv\n \n \n filterAccounts\n \n \n ngOnInit\n \n \n refreshPaginator\n \n \n Async\n viewAccount\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, loggingService: LoggingService, router: Router)\n \n \n \n \n Defined in src/app/pages/accounts/accounts.component.ts:29\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n loggingService\n \n \n LoggingService\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n doFilter\n \n \n \n \n \n \n \ndoFilter(value: string)\n \n \n\n\n \n \n Defined in src/app/pages/accounts/accounts.component.ts:59\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n downloadCsv\n \n \n \n \n \n \n \ndownloadCsv()\n \n \n\n\n \n \n Defined in src/app/pages/accounts/accounts.component.ts:88\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n filterAccounts\n \n \n \n \n \n \n \nfilterAccounts()\n \n \n\n\n \n \n Defined in src/app/pages/accounts/accounts.component.ts:69\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/pages/accounts/accounts.component.ts:50\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n refreshPaginator\n \n \n \n \n \n \n \nrefreshPaginator()\n \n \n\n\n \n \n Defined in src/app/pages/accounts/accounts.component.ts:80\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n viewAccount\n \n \n \n \n \n \n \n \n viewAccount(account)\n \n \n\n\n \n \n Defined in src/app/pages/accounts/accounts.component.ts:63\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n account\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n accounts\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in src/app/pages/accounts/accounts.component.ts:21\n \n \n\n\n \n \n \n \n \n \n \n \n \n accountsType\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : 'all'\n \n \n \n \n Defined in src/app/pages/accounts/accounts.component.ts:25\n \n \n\n\n \n \n \n \n \n \n \n \n \n accountTypes\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Defined in src/app/pages/accounts/accounts.component.ts:26\n \n \n\n\n \n \n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : MatTableDataSource\n\n \n \n \n \n Defined in src/app/pages/accounts/accounts.component.ts:20\n \n \n\n\n \n \n \n \n \n \n \n \n \n defaultPageSize\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Default value : 10\n \n \n \n \n Defined in src/app/pages/accounts/accounts.component.ts:23\n \n \n\n\n \n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : ['name', 'phone', 'created', 'balance', 'location']\n \n \n \n \n Defined in src/app/pages/accounts/accounts.component.ts:22\n \n \n\n\n \n \n \n \n \n \n \n \n \n pageSizeOptions\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : [10, 20, 50, 100]\n \n \n \n \n Defined in src/app/pages/accounts/accounts.component.ts:24\n \n \n\n\n \n \n \n \n \n \n \n \n \n paginator\n \n \n \n \n \n \n Type : MatPaginator\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatPaginator)\n \n \n \n \n \n Defined in src/app/pages/accounts/accounts.component.ts:28\n \n \n\n\n \n \n \n \n \n \n \n \n \n sort\n \n \n \n \n \n \n Type : MatSort\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatSort)\n \n \n \n \n \n Defined in src/app/pages/accounts/accounts.component.ts:29\n \n \n\n\n \n \n\n\n\n\n\n \n import { ChangeDetectionStrategy, Component, OnInit, ViewChild } from '@angular/core';\nimport { MatTableDataSource } from '@angular/material/table';\nimport { MatPaginator } from '@angular/material/paginator';\nimport { MatSort } from '@angular/material/sort';\nimport { LoggingService, UserService } from '@app/_services';\nimport { Router } from '@angular/router';\nimport { exportCsv } from '@app/_helpers';\nimport { strip0x } from '@src/assets/js/ethtx/dist/hex';\nimport { first } from 'rxjs/operators';\nimport { environment } from '@src/environments/environment';\nimport { AccountDetails } from '@app/_models';\n\n@Component({\n selector: 'app-accounts',\n templateUrl: './accounts.component.html',\n styleUrls: ['./accounts.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class AccountsComponent implements OnInit {\n dataSource: MatTableDataSource;\n accounts: Array = [];\n displayedColumns: Array = ['name', 'phone', 'created', 'balance', 'location'];\n defaultPageSize: number = 10;\n pageSizeOptions: Array = [10, 20, 50, 100];\n accountsType: string = 'all';\n accountTypes: Array;\n\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n\n constructor(\n private userService: UserService,\n private loggingService: LoggingService,\n private router: Router\n ) {\n (async () => {\n try {\n // TODO it feels like this should be in the onInit handler\n await this.userService.loadAccounts(100);\n } catch (error) {\n this.loggingService.sendErrorLevelMessage('Failed to load accounts', this, { error });\n }\n })();\n this.userService\n .getAccountTypes()\n .pipe(first())\n .subscribe((res) => (this.accountTypes = res));\n }\n\n ngOnInit(): void {\n this.userService.accountsSubject.subscribe((accounts) => {\n this.dataSource = new MatTableDataSource(accounts);\n this.dataSource.paginator = this.paginator;\n this.dataSource.sort = this.sort;\n this.accounts = accounts;\n });\n }\n\n doFilter(value: string): void {\n this.dataSource.filter = value.trim().toLocaleLowerCase();\n }\n\n async viewAccount(account): Promise {\n await this.router.navigateByUrl(\n `/accounts/${strip0x(account.identities.evm[`bloxberg:${environment.bloxbergChainId}`][0])}`\n );\n }\n\n filterAccounts(): void {\n if (this.accountsType === 'all') {\n this.userService.accountsSubject.subscribe((accounts) => {\n this.dataSource.data = accounts;\n this.accounts = accounts;\n });\n } else {\n this.dataSource.data = this.accounts.filter((account) => account.type === this.accountsType);\n }\n }\n\n refreshPaginator(): void {\n if (!this.dataSource.paginator) {\n this.dataSource.paginator = this.paginator;\n }\n\n this.paginator._changePageSize(this.paginator.pageSize);\n }\n\n downloadCsv(): void {\n exportCsv(this.accounts, 'accounts');\n }\n}\n\n \n\n \n \n\n \n\n \n \n \n\n \n \n \n \n \n \n Home\n Accounts\n \n \n \n \n Accounts\n \n \n \n \n ACCOUNT TYPE \n \n ALL\n \n {{accountType | uppercase}}\n \n \n \n SEARCH \n EXPORT \n \n\n \n Filter \n \n search\n \n\n \n\n \n NAME \n {{user?.vcard.fn[0].value}} \n \n\n \n PHONE NUMBER \n {{user?.vcard.tel[0].value}} \n \n\n \n CREATED \n {{user?.date_registered | date}} \n \n\n \n BALANCE \n {{user?.balance | tokenRatio}} \n \n\n \n LOCATION \n {{user?.location.area_name}} \n \n\n \n \n \n\n \n \n \n \n \n \n \n \n \n\n\n \n\n \n \n ./accounts.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Home Accounts Accounts ACCOUNT TYPE ALL {{accountType | uppercase}} SEARCH EXPORT Filter search NAME {{user?.vcard.fn[0].value}} PHONE NUMBER {{user?.vcard.tel[0].value}} CREATED {{user?.date_registered | date}} BALANCE {{user?.balance | tokenRatio}} LOCATION {{user?.location.area_name}} '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'AccountsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AccountsModule.html":{"url":"modules/AccountsModule.html","title":"module - AccountsModule","body":"\n \n\n\n\n\n Modules\n AccountsModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AccountsModule\n\n\n\ncluster_AccountsModule_declarations\n\n\n\ncluster_AccountsModule_imports\n\n\n\n\nAccountDetailsComponent\n\nAccountDetailsComponent\n\n\n\nAccountsModule\n\nAccountsModule\n\nAccountsModule -->\n\nAccountDetailsComponent->AccountsModule\n\n\n\n\n\nAccountSearchComponent\n\nAccountSearchComponent\n\nAccountsModule -->\n\nAccountSearchComponent->AccountsModule\n\n\n\n\n\nAccountsComponent\n\nAccountsComponent\n\nAccountsModule -->\n\nAccountsComponent->AccountsModule\n\n\n\n\n\nCreateAccountComponent\n\nCreateAccountComponent\n\nAccountsModule -->\n\nCreateAccountComponent->AccountsModule\n\n\n\n\n\nAccountsRoutingModule\n\nAccountsRoutingModule\n\nAccountsModule -->\n\nAccountsRoutingModule->AccountsModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nAccountsModule -->\n\nSharedModule->AccountsModule\n\n\n\n\n\nTransactionsModule\n\nTransactionsModule\n\nAccountsModule -->\n\nTransactionsModule->AccountsModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/pages/accounts/accounts.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n AccountDetailsComponent\n \n \n AccountSearchComponent\n \n \n AccountsComponent\n \n \n CreateAccountComponent\n \n \n \n \n Imports\n \n \n AccountsRoutingModule\n \n \n SharedModule\n \n \n TransactionsModule\n \n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { AccountsRoutingModule } from '@pages/accounts/accounts-routing.module';\nimport { AccountsComponent } from '@pages/accounts/accounts.component';\nimport { SharedModule } from '@app/shared/shared.module';\nimport { AccountDetailsComponent } from '@pages/accounts/account-details/account-details.component';\nimport { DataTablesModule } from 'angular-datatables';\nimport { CreateAccountComponent } from '@pages/accounts/create-account/create-account.component';\nimport { MatTableModule } from '@angular/material/table';\nimport { MatSortModule } from '@angular/material/sort';\nimport { MatCheckboxModule } from '@angular/material/checkbox';\nimport { MatPaginatorModule } from '@angular/material/paginator';\nimport { MatInputModule } from '@angular/material/input';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatCardModule } from '@angular/material/card';\nimport { MatIconModule } from '@angular/material/icon';\nimport { MatSelectModule } from '@angular/material/select';\nimport { TransactionsModule } from '@pages/transactions/transactions.module';\nimport { MatTabsModule } from '@angular/material/tabs';\nimport { MatRippleModule } from '@angular/material/core';\nimport { MatProgressSpinnerModule } from '@angular/material/progress-spinner';\nimport { ReactiveFormsModule } from '@angular/forms';\nimport { AccountSearchComponent } from './account-search/account-search.component';\nimport { MatSnackBarModule } from '@angular/material/snack-bar';\n\n@NgModule({\n declarations: [\n AccountsComponent,\n AccountDetailsComponent,\n CreateAccountComponent,\n AccountSearchComponent,\n ],\n imports: [\n CommonModule,\n AccountsRoutingModule,\n SharedModule,\n DataTablesModule,\n MatTableModule,\n MatSortModule,\n MatCheckboxModule,\n MatPaginatorModule,\n MatInputModule,\n MatFormFieldModule,\n MatButtonModule,\n MatCardModule,\n MatIconModule,\n MatSelectModule,\n TransactionsModule,\n MatTabsModule,\n MatRippleModule,\n MatProgressSpinnerModule,\n ReactiveFormsModule,\n MatSnackBarModule,\n ],\n})\nexport class AccountsModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AccountsRoutingModule.html":{"url":"modules/AccountsRoutingModule.html","title":"module - AccountsRoutingModule","body":"\n \n\n\n\n\n Modules\n AccountsRoutingModule\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/pages/accounts/accounts-routing.module.ts\n \n\n\n\n\n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { AccountsComponent } from '@pages/accounts/accounts.component';\nimport { CreateAccountComponent } from '@pages/accounts/create-account/create-account.component';\nimport { AccountDetailsComponent } from '@pages/accounts/account-details/account-details.component';\nimport { AccountSearchComponent } from '@pages/accounts/account-search/account-search.component';\n\nconst routes: Routes = [\n { path: '', component: AccountsComponent },\n { path: 'search', component: AccountSearchComponent },\n // { path: 'create', component: CreateAccountComponent },\n { path: ':id', component: AccountDetailsComponent },\n { path: '**', redirectTo: '', pathMatch: 'full' },\n];\n\n@NgModule({\n imports: [RouterModule.forChild(routes)],\n exports: [RouterModule],\n})\nexport class AccountsRoutingModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Action.html":{"url":"interfaces/Action.html","title":"interface - Action","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Action\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/mappings.ts\n \n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n action\n \n \n approval\n \n \n id\n \n \n role\n \n \n user\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n action\n \n \n \n \n action: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n approval\n \n \n \n \n approval: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n id\n \n \n \n \n id: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n role\n \n \n \n \n role: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n user\n \n \n \n \n user: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n interface Action {\n id: number;\n user: string;\n role: string;\n action: string;\n approval: boolean;\n}\n\ninterface Category {\n name: string;\n products: Array;\n}\n\ninterface AreaName {\n name: string;\n locations: Array;\n}\n\ninterface AreaType {\n name: string;\n area: Array;\n}\n\nexport { Action, Category, AreaName, AreaType };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/ActivatedRouteStub.html":{"url":"classes/ActivatedRouteStub.html","title":"class - ActivatedRouteStub","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n ActivatedRouteStub\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/testing/activated-route-stub.ts\n \n\n \n Description\n \n \n An ActivateRoute test double with a paramMap observable.\nUse the setParamMap() method to add the next paramMap value.\n\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Readonly\n paramMap\n \n \n Private\n subject\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n setParamMap\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(initialParams?: Params)\n \n \n \n \n Defined in src/testing/activated-route-stub.ts:11\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n initialParams\n \n \n Params\n \n \n \n Yes\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Readonly\n paramMap\n \n \n \n \n \n \n Default value : this.subject.asObservable()\n \n \n \n \n Defined in src/testing/activated-route-stub.ts:18\n \n \n\n \n \n The mock paramMap observable \n\n \n \n\n \n \n \n \n \n \n \n \n \n Private\n subject\n \n \n \n \n \n \n Default value : new ReplaySubject()\n \n \n \n \n Defined in src/testing/activated-route-stub.ts:11\n \n \n\n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n setParamMap\n \n \n \n \n \n \n \nsetParamMap(params?: Params)\n \n \n\n\n \n \n Defined in src/testing/activated-route-stub.ts:21\n \n \n\n\n \n \n Set the paramMap observables's next value \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n params\n \n Params\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n import { convertToParamMap, ParamMap, Params } from '@angular/router';\nimport { ReplaySubject } from 'rxjs';\n\n/**\n * An ActivateRoute test double with a `paramMap` observable.\n * Use the `setParamMap()` method to add the next `paramMap` value.\n */\nexport class ActivatedRouteStub {\n // Use a ReplaySubject to share previous values with subscribers\n // and pump new values into the `paramMap` observable\n private subject = new ReplaySubject();\n\n constructor(initialParams?: Params) {\n this.setParamMap(initialParams);\n }\n\n /** The mock paramMap observable */\n readonly paramMap = this.subject.asObservable();\n\n /** Set the paramMap observables's next value */\n setParamMap(params?: Params): void {\n this.subject.next(convertToParamMap(params));\n }\n}\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/AdminComponent.html":{"url":"components/AdminComponent.html","title":"component - AdminComponent","body":"\n \n\n\n\n\n\n Components\n AdminComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/pages/admin/admin.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-admin\n \n\n \n styleUrls\n ./admin.component.scss\n \n\n\n\n \n templateUrl\n ./admin.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n action\n \n \n actions\n \n \n dataSource\n \n \n displayedColumns\n \n \n paginator\n \n \n sort\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n approvalStatus\n \n \n approveAction\n \n \n disapproveAction\n \n \n doFilter\n \n \n downloadCsv\n \n \n expandCollapse\n \n \n ngOnInit\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, loggingService: LoggingService)\n \n \n \n \n Defined in src/app/pages/admin/admin.component.ts:31\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n loggingService\n \n \n LoggingService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n approvalStatus\n \n \n \n \n \n \n \napprovalStatus(status: boolean)\n \n \n\n\n \n \n Defined in src/app/pages/admin/admin.component.ts:49\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n status\n \n boolean\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n approveAction\n \n \n \n \n \n \n \napproveAction(action: any)\n \n \n\n\n \n \n Defined in src/app/pages/admin/admin.component.ts:53\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n action\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n disapproveAction\n \n \n \n \n \n \n \ndisapproveAction(action: any)\n \n \n\n\n \n \n Defined in src/app/pages/admin/admin.component.ts:64\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n action\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n doFilter\n \n \n \n \n \n \n \ndoFilter(value: string)\n \n \n\n\n \n \n Defined in src/app/pages/admin/admin.component.ts:45\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n downloadCsv\n \n \n \n \n \n \n \ndownloadCsv()\n \n \n\n\n \n \n Defined in src/app/pages/admin/admin.component.ts:79\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n expandCollapse\n \n \n \n \n \n \n \nexpandCollapse(row)\n \n \n\n\n \n \n Defined in src/app/pages/admin/admin.component.ts:75\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n row\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/pages/admin/admin.component.ts:43\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n action\n \n \n \n \n \n \n Type : Action\n\n \n \n \n \n Defined in src/app/pages/admin/admin.component.ts:27\n \n \n\n\n \n \n \n \n \n \n \n \n \n actions\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Defined in src/app/pages/admin/admin.component.ts:28\n \n \n\n\n \n \n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : MatTableDataSource\n\n \n \n \n \n Defined in src/app/pages/admin/admin.component.ts:25\n \n \n\n\n \n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : ['expand', 'user', 'role', 'action', 'status', 'approve']\n \n \n \n \n Defined in src/app/pages/admin/admin.component.ts:26\n \n \n\n\n \n \n \n \n \n \n \n \n \n paginator\n \n \n \n \n \n \n Type : MatPaginator\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatPaginator)\n \n \n \n \n \n Defined in src/app/pages/admin/admin.component.ts:30\n \n \n\n\n \n \n \n \n \n \n \n \n \n sort\n \n \n \n \n \n \n Type : MatSort\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatSort)\n \n \n \n \n \n Defined in src/app/pages/admin/admin.component.ts:31\n \n \n\n\n \n \n\n\n\n\n\n \n import { ChangeDetectionStrategy, Component, OnInit, ViewChild } from '@angular/core';\nimport { MatTableDataSource } from '@angular/material/table';\nimport { MatPaginator } from '@angular/material/paginator';\nimport { MatSort } from '@angular/material/sort';\nimport { LoggingService, UserService } from '@app/_services';\nimport { animate, state, style, transition, trigger } from '@angular/animations';\nimport { first } from 'rxjs/operators';\nimport { exportCsv } from '@app/_helpers';\nimport { Action } from '../../_models';\n\n@Component({\n selector: 'app-admin',\n templateUrl: './admin.component.html',\n styleUrls: ['./admin.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n animations: [\n trigger('detailExpand', [\n state('collapsed', style({ height: '0px', minHeight: 0, visibility: 'hidden' })),\n state('expanded', style({ height: '*', visibility: 'visible' })),\n transition('expanded collapsed', animate('225ms cubic-bezier(0.4, 0.0, 0.2, 1)')),\n ]),\n ],\n})\nexport class AdminComponent implements OnInit {\n dataSource: MatTableDataSource;\n displayedColumns: Array = ['expand', 'user', 'role', 'action', 'status', 'approve'];\n action: Action;\n actions: Array;\n\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n\n constructor(private userService: UserService, private loggingService: LoggingService) {\n this.userService.getActions();\n this.userService.actionsSubject.subscribe((actions) => {\n this.dataSource = new MatTableDataSource(actions);\n this.dataSource.paginator = this.paginator;\n this.dataSource.sort = this.sort;\n this.actions = actions;\n });\n }\n\n ngOnInit(): void {}\n\n doFilter(value: string): void {\n this.dataSource.filter = value.trim().toLocaleLowerCase();\n }\n\n approvalStatus(status: boolean): string {\n return status ? 'Approved' : 'Unapproved';\n }\n\n approveAction(action: any): void {\n if (!confirm('Approve action?')) {\n return;\n }\n this.userService\n .approveAction(action.id)\n .pipe(first())\n .subscribe((res) => this.loggingService.sendInfoLevelMessage(res));\n this.userService.getActions();\n }\n\n disapproveAction(action: any): void {\n if (!confirm('Disapprove action?')) {\n return;\n }\n this.userService\n .revokeAction(action.id)\n .pipe(first())\n .subscribe((res) => this.loggingService.sendInfoLevelMessage(res));\n this.userService.getActions();\n }\n\n expandCollapse(row): void {\n row.isExpanded = !row.isExpanded;\n }\n\n downloadCsv(): void {\n exportCsv(this.actions, 'actions');\n }\n}\n\n \n\n \n \n\n \n\n \n \n \n\n \n \n \n \n \n \n Home\n Admin\n \n \n \n \n \n Actions\n EXPORT \n \n \n \n\n \n Filter \n \n search\n \n\n \n\n \n \n Expand \n \n + \n - \n \n \n\n \n NAME \n {{action.user}} \n \n\n \n ROLE \n {{action.role}} \n \n\n \n ACTION \n {{action.action}} \n \n\n \n STATUS \n \n {{approvalStatus(action.approval)}} \n {{approvalStatus(action.approval)}} \n \n \n\n \n APPROVE \n \n Approve \n Disapprove \n \n \n\n \n \n \n \n Staff Name: {{action.user}}\n Role: {{action.role}}\n Action Details: {{action.action}}\n Approval Status: {{action.approval}}\n \n \n \n\n \n \n \n \n\n \n \n \n \n \n \n \n \n \n\n\n\n \n\n \n \n ./admin.component.scss\n \n button {\n width: 6rem;\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Home Admin Actions EXPORT Filter search Expand + - NAME {{action.user}} ROLE {{action.role}} ACTION {{action.action}} STATUS {{approvalStatus(action.approval)}} {{approvalStatus(action.approval)}} APPROVE Approve Disapprove Staff Name: {{action.user}} Role: {{action.role}} Action Details: {{action.action}} Approval Status: {{action.approval}} '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'AdminComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AdminModule.html":{"url":"modules/AdminModule.html","title":"module - AdminModule","body":"\n \n\n\n\n\n Modules\n AdminModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AdminModule\n\n\n\ncluster_AdminModule_declarations\n\n\n\ncluster_AdminModule_imports\n\n\n\n\nAdminComponent\n\nAdminComponent\n\n\n\nAdminModule\n\nAdminModule\n\nAdminModule -->\n\nAdminComponent->AdminModule\n\n\n\n\n\nAdminRoutingModule\n\nAdminRoutingModule\n\nAdminModule -->\n\nAdminRoutingModule->AdminModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nAdminModule -->\n\nSharedModule->AdminModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/pages/admin/admin.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n AdminComponent\n \n \n \n \n Imports\n \n \n AdminRoutingModule\n \n \n SharedModule\n \n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { AdminRoutingModule } from '@pages/admin/admin-routing.module';\nimport { AdminComponent } from '@pages/admin/admin.component';\nimport { SharedModule } from '@app/shared/shared.module';\nimport { MatCardModule } from '@angular/material/card';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatInputModule } from '@angular/material/input';\nimport { MatIconModule } from '@angular/material/icon';\nimport { MatTableModule } from '@angular/material/table';\nimport { MatSortModule } from '@angular/material/sort';\nimport { MatPaginatorModule } from '@angular/material/paginator';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatRippleModule } from '@angular/material/core';\n\n@NgModule({\n declarations: [AdminComponent],\n imports: [\n CommonModule,\n AdminRoutingModule,\n SharedModule,\n MatCardModule,\n MatFormFieldModule,\n MatInputModule,\n MatIconModule,\n MatTableModule,\n MatSortModule,\n MatPaginatorModule,\n MatButtonModule,\n MatRippleModule,\n ],\n})\nexport class AdminModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AdminRoutingModule.html":{"url":"modules/AdminRoutingModule.html","title":"module - AdminRoutingModule","body":"\n \n\n\n\n\n Modules\n AdminRoutingModule\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/pages/admin/admin-routing.module.ts\n \n\n\n\n\n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { AdminComponent } from '@pages/admin/admin.component';\n\nconst routes: Routes = [{ path: '', component: AdminComponent }];\n\n@NgModule({\n imports: [RouterModule.forChild(routes)],\n exports: [RouterModule],\n})\nexport class AdminRoutingModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/AppComponent.html":{"url":"components/AppComponent.html","title":"component - AppComponent","body":"\n \n\n\n\n\n\n Components\n AppComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/app.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-root\n \n\n \n styleUrls\n ./app.component.scss\n \n\n\n\n \n templateUrl\n ./app.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n mediaQuery\n \n \n readyState\n \n \n readyStateTarget\n \n \n title\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n onResize\n \n \n \n \n\n\n\n\n \n \n HostListeners\n \n \n \n \n \n \n window:cic_convert\n \n \n window:cic_transfer\n \n \n \n \n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(authService: AuthService, transactionService: TransactionService, loggingService: LoggingService, errorDialogService: ErrorDialogService, swUpdate: SwUpdate)\n \n \n \n \n Defined in src/app/app.component.ts:21\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n authService\n \n \n AuthService\n \n \n \n No\n \n \n \n \n transactionService\n \n \n TransactionService\n \n \n \n No\n \n \n \n \n loggingService\n \n \n LoggingService\n \n \n \n No\n \n \n \n \n errorDialogService\n \n \n ErrorDialogService\n \n \n \n No\n \n \n \n \n swUpdate\n \n \n SwUpdate\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n \n HostListeners \n \n \n \n \n \n \n window:cic_convert\n \n \n \n \n \n \n \n Arguments : '$event' \n \n \n \n \nwindow:cic_convert(event: CustomEvent)\n \n \n\n\n \n \n Defined in src/app/app.component.ts:93\n \n \n\n\n \n \n \n \n \n \n \n \n \n window:cic_transfer\n \n \n \n \n \n \n \n Arguments : '$event' \n \n \n \n \nwindow:cic_transfer(event: CustomEvent)\n \n \n\n\n \n \n Defined in src/app/app.component.ts:87\n \n \n\n\n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/app.component.ts:51\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n onResize\n \n \n \n \n \n \n \nonResize(e)\n \n \n\n\n \n \n Defined in src/app/app.component.ts:62\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n e\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n mediaQuery\n \n \n \n \n \n \n Type : MediaQueryList\n\n \n \n \n \n Default value : window.matchMedia('(max-width: 768px)')\n \n \n \n \n Defined in src/app/app.component.ts:21\n \n \n\n\n \n \n \n \n \n \n \n \n \n readyState\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Default value : 0\n \n \n \n \n Defined in src/app/app.component.ts:20\n \n \n\n\n \n \n \n \n \n \n \n \n \n readyStateTarget\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Default value : 3\n \n \n \n \n Defined in src/app/app.component.ts:19\n \n \n\n\n \n \n \n \n \n \n \n \n \n title\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : 'CICADA'\n \n \n \n \n Defined in src/app/app.component.ts:18\n \n \n\n\n \n \n\n\n\n\n\n \n import { ChangeDetectionStrategy, Component, HostListener, OnInit } from '@angular/core';\nimport {\n AuthService,\n ErrorDialogService,\n LoggingService,\n TransactionService,\n} from '@app/_services';\nimport { catchError } from 'rxjs/operators';\nimport { SwUpdate } from '@angular/service-worker';\n\n@Component({\n selector: 'app-root',\n templateUrl: './app.component.html',\n styleUrls: ['./app.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class AppComponent implements OnInit {\n title = 'CICADA';\n readyStateTarget: number = 3;\n readyState: number = 0;\n mediaQuery: MediaQueryList = window.matchMedia('(max-width: 768px)');\n\n constructor(\n private authService: AuthService,\n private transactionService: TransactionService,\n private loggingService: LoggingService,\n private errorDialogService: ErrorDialogService,\n private swUpdate: SwUpdate\n ) {\n (async () => {\n try {\n await this.authService.init();\n // this.authService.getPublicKeys()\n // .pipe(catchError(async (error) => {\n // this.loggingService.sendErrorLevelMessage('Unable to load trusted public keys.', this, {error});\n // this.errorDialogService.openDialog({message: 'Trusted keys endpoint can\\'t be reached. Please try again later.'});\n // })).subscribe(this.authService.mutableKeyStore.importPublicKey);\n const publicKeys = await this.authService.getPublicKeys();\n await this.authService.mutableKeyStore.importPublicKey(publicKeys);\n } catch (error) {\n this.errorDialogService.openDialog({\n message: 'Trusted keys endpoint cannot be reached. Please try again later.',\n });\n // TODO do something to halt user progress...show a sad cicada page 🦗?\n }\n })();\n this.mediaQuery.addEventListener('change', this.onResize);\n this.onResize(this.mediaQuery);\n }\n\n ngOnInit(): void {\n if (!this.swUpdate.isEnabled) {\n this.swUpdate.available.subscribe(() => {\n if (confirm('New Version available. Load New Version?')) {\n window.location.reload();\n }\n });\n }\n }\n\n // Load resize\n onResize(e): void {\n const sidebar: HTMLElement = document.getElementById('sidebar');\n const content: HTMLElement = document.getElementById('content');\n const sidebarCollapse: HTMLElement = document.getElementById('sidebarCollapse');\n if (sidebarCollapse?.classList.contains('active')) {\n sidebarCollapse?.classList.remove('active');\n }\n if (e.matches) {\n if (!sidebar?.classList.contains('active')) {\n sidebar?.classList.add('active');\n }\n if (!content?.classList.contains('active')) {\n content?.classList.add('active');\n }\n } else {\n if (sidebar?.classList.contains('active')) {\n sidebar?.classList.remove('active');\n }\n if (content?.classList.contains('active')) {\n content?.classList.remove('active');\n }\n }\n }\n\n @HostListener('window:cic_transfer', ['$event'])\n async cicTransfer(event: CustomEvent): Promise {\n const transaction: any = event.detail.tx;\n await this.transactionService.setTransaction(transaction, 100);\n }\n\n @HostListener('window:cic_convert', ['$event'])\n async cicConvert(event: CustomEvent): Promise {\n const conversion: any = event.detail.tx;\n await this.transactionService.setConversion(conversion, 100);\n }\n}\n\n \n\n \n \n\n\n \n\n \n \n ./app.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'AppComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AppModule.html":{"url":"modules/AppModule.html","title":"module - AppModule","body":"\n \n\n\n\n\n Modules\n AppModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AppModule\n\n\n\ncluster_AppModule_imports\n\n\n\ncluster_AppModule_declarations\n\n\n\ncluster_AppModule_bootstrap\n\n\n\ncluster_AppModule_providers\n\n\n\n\nAppComponent\n\nAppComponent\n\n\n\nAppModule\n\nAppModule\n\nAppModule -->\n\nAppComponent->AppModule\n\n\n\n\n\nAppComponent \n\nAppComponent \n\nAppComponent -->\n\nAppModule->AppComponent \n\n\n\n\n\nAppRoutingModule\n\nAppRoutingModule\n\nAppModule -->\n\nAppRoutingModule->AppModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nAppModule -->\n\nSharedModule->AppModule\n\n\n\n\n\nErrorInterceptor\n\nErrorInterceptor\n\nAppModule -->\n\nErrorInterceptor->AppModule\n\n\n\n\n\nGlobalErrorHandler\n\nGlobalErrorHandler\n\nAppModule -->\n\nGlobalErrorHandler->AppModule\n\n\n\n\n\nHttpConfigInterceptor\n\nHttpConfigInterceptor\n\nAppModule -->\n\nHttpConfigInterceptor->AppModule\n\n\n\n\n\nLoggingInterceptor\n\nLoggingInterceptor\n\nAppModule -->\n\nLoggingInterceptor->AppModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/app.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n AppComponent\n \n \n \n \n Providers\n \n \n ErrorInterceptor\n \n \n GlobalErrorHandler\n \n \n HttpConfigInterceptor\n \n \n LoggingInterceptor\n \n \n \n \n Imports\n \n \n AppRoutingModule\n \n \n SharedModule\n \n \n \n \n Bootstrap\n \n \n AppComponent\n \n \n \n \n \n\n\n \n\n\n \n import { BrowserModule } from '@angular/platform-browser';\nimport { ErrorHandler, NgModule } from '@angular/core';\n\nimport { AppRoutingModule } from '@app/app-routing.module';\nimport { AppComponent } from '@app/app.component';\nimport { BrowserAnimationsModule } from '@angular/platform-browser/animations';\nimport { HTTP_INTERCEPTORS, HttpClientModule } from '@angular/common/http';\nimport { GlobalErrorHandler, MockBackendProvider } from '@app/_helpers';\nimport { DataTablesModule } from 'angular-datatables';\nimport { SharedModule } from '@app/shared/shared.module';\nimport { MatTableModule } from '@angular/material/table';\nimport { AuthGuard } from '@app/_guards';\nimport { LoggerModule } from 'ngx-logger';\nimport { environment } from '@src/environments/environment';\nimport { ErrorInterceptor, HttpConfigInterceptor, LoggingInterceptor } from '@app/_interceptors';\nimport { MutablePgpKeyStore } from '@app/_pgp';\nimport { ServiceWorkerModule } from '@angular/service-worker';\n\n@NgModule({\n declarations: [AppComponent],\n imports: [\n BrowserModule,\n AppRoutingModule,\n BrowserAnimationsModule,\n HttpClientModule,\n DataTablesModule,\n SharedModule,\n MatTableModule,\n LoggerModule.forRoot({\n level: environment.logLevel,\n serverLogLevel: environment.serverLogLevel,\n serverLoggingUrl: `${environment.loggingUrl}/api/logs/`,\n disableConsoleLogging: false,\n }),\n ServiceWorkerModule.register('ngsw-worker.js', { enabled: environment.production }),\n ],\n providers: [\n AuthGuard,\n MutablePgpKeyStore,\n MockBackendProvider,\n GlobalErrorHandler,\n { provide: ErrorHandler, useClass: GlobalErrorHandler },\n { provide: HTTP_INTERCEPTORS, useClass: HttpConfigInterceptor, multi: true },\n { provide: HTTP_INTERCEPTORS, useClass: ErrorInterceptor, multi: true },\n { provide: HTTP_INTERCEPTORS, useClass: LoggingInterceptor, multi: true },\n ],\n bootstrap: [AppComponent],\n})\nexport class AppModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AppRoutingModule.html":{"url":"modules/AppRoutingModule.html","title":"module - AppRoutingModule","body":"\n \n\n\n\n\n Modules\n AppRoutingModule\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/app-routing.module.ts\n \n\n\n\n\n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { Routes, RouterModule, PreloadAllModules } from '@angular/router';\nimport { AuthGuard } from '@app/_guards';\n\nconst routes: Routes = [\n { path: 'auth', loadChildren: () => \"import('@app/auth/auth.module').then((m) => m.AuthModule)\" },\n {\n path: '',\n loadChildren: () => \"import('@pages/pages.module').then((m) => m.PagesModule)\",\n canActivate: [AuthGuard],\n },\n { path: '**', redirectTo: '', pathMatch: 'full' },\n];\n\n@NgModule({\n imports: [\n RouterModule.forRoot(routes, {\n preloadingStrategy: PreloadAllModules,\n }),\n ],\n exports: [RouterModule],\n})\nexport class AppRoutingModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/AreaName.html":{"url":"interfaces/AreaName.html","title":"interface - AreaName","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n AreaName\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/mappings.ts\n \n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n locations\n \n \n name\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n locations\n \n \n \n \n locations: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n interface Action {\n id: number;\n user: string;\n role: string;\n action: string;\n approval: boolean;\n}\n\ninterface Category {\n name: string;\n products: Array;\n}\n\ninterface AreaName {\n name: string;\n locations: Array;\n}\n\ninterface AreaType {\n name: string;\n area: Array;\n}\n\nexport { Action, Category, AreaName, AreaType };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/AreaType.html":{"url":"interfaces/AreaType.html","title":"interface - AreaType","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n AreaType\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/mappings.ts\n \n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n area\n \n \n name\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n area\n \n \n \n \n area: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n interface Action {\n id: number;\n user: string;\n role: string;\n action: string;\n approval: boolean;\n}\n\ninterface Category {\n name: string;\n products: Array;\n}\n\ninterface AreaName {\n name: string;\n locations: Array;\n}\n\ninterface AreaType {\n name: string;\n area: Array;\n}\n\nexport { Action, Category, AreaName, AreaType };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/AuthComponent.html":{"url":"components/AuthComponent.html","title":"component - AuthComponent","body":"\n \n\n\n\n\n\n Components\n AuthComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/auth/auth.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-auth\n \n\n \n styleUrls\n ./auth.component.scss\n \n\n\n\n \n templateUrl\n ./auth.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n keyForm\n \n \n loading\n \n \n matcher\n \n \n submitted\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n login\n \n \n Async\n ngOnInit\n \n \n Async\n onSubmit\n \n \n switchWindows\n \n \n toggleDisplay\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n keyFormStub\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(authService: AuthService, formBuilder: FormBuilder, router: Router)\n \n \n \n \n Defined in src/app/auth/auth.component.ts:17\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n authService\n \n \n AuthService\n \n \n \n No\n \n \n \n \n formBuilder\n \n \n FormBuilder\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n login\n \n \n \n \n \n \n \nlogin()\n \n \n\n\n \n \n Defined in src/app/auth/auth.component.ts:52\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n ngOnInit\n \n \n \n \n \n \n \n \n ngOnInit()\n \n \n\n\n \n \n Defined in src/app/auth/auth.component.ts:25\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n onSubmit\n \n \n \n \n \n \n \n \n onSubmit()\n \n \n\n\n \n \n Defined in src/app/auth/auth.component.ts:40\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n switchWindows\n \n \n \n \n \n \n \nswitchWindows()\n \n \n\n\n \n \n Defined in src/app/auth/auth.component.ts:63\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n toggleDisplay\n \n \n \n \n \n \n \ntoggleDisplay(element: any)\n \n \n\n\n \n \n Defined in src/app/auth/auth.component.ts:71\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n element\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n keyForm\n \n \n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Defined in src/app/auth/auth.component.ts:14\n \n \n\n\n \n \n \n \n \n \n \n \n \n loading\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/app/auth/auth.component.ts:16\n \n \n\n\n \n \n \n \n \n \n \n \n \n matcher\n \n \n \n \n \n \n Type : CustomErrorStateMatcher\n\n \n \n \n \n Default value : new CustomErrorStateMatcher()\n \n \n \n \n Defined in src/app/auth/auth.component.ts:17\n \n \n\n\n \n \n \n \n \n \n \n \n \n submitted\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/app/auth/auth.component.ts:15\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n keyFormStub\n \n \n\n \n \n getkeyFormStub()\n \n \n \n \n Defined in src/app/auth/auth.component.ts:36\n \n \n\n \n \n\n\n\n\n \n import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators } from '@angular/forms';\nimport { CustomErrorStateMatcher } from '@app/_helpers';\nimport { AuthService } from '@app/_services';\nimport { Router } from '@angular/router';\n\n@Component({\n selector: 'app-auth',\n templateUrl: './auth.component.html',\n styleUrls: ['./auth.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class AuthComponent implements OnInit {\n keyForm: FormGroup;\n submitted: boolean = false;\n loading: boolean = false;\n matcher: CustomErrorStateMatcher = new CustomErrorStateMatcher();\n\n constructor(\n private authService: AuthService,\n private formBuilder: FormBuilder,\n private router: Router\n ) {}\n\n async ngOnInit(): Promise {\n this.keyForm = this.formBuilder.group({\n key: ['', Validators.required],\n });\n await this.authService.init();\n // if (this.authService.privateKey !== undefined) {\n // const setKey = await this.authService.setKey(this.authService.privateKey);\n // }\n // }\n }\n\n get keyFormStub(): any {\n return this.keyForm.controls;\n }\n\n async onSubmit(): Promise {\n this.submitted = true;\n\n if (this.keyForm.invalid) {\n return;\n }\n\n this.loading = true;\n await this.authService.setKey(this.keyFormStub.key.value);\n this.loading = false;\n }\n\n login(): void {\n // TODO check if we have privatekey\n // Send us to home if we have a private key\n // talk to meta somehow\n // in the error interceptor if 401/403 handle it\n // if 200 go /home\n if (this.authService.getPrivateKey()) {\n this.router.navigate(['/home']);\n }\n }\n\n switchWindows(): void {\n this.authService.sessionToken = undefined;\n const divOne: HTMLElement = document.getElementById('one');\n const divTwo: HTMLElement = document.getElementById('two');\n this.toggleDisplay(divOne);\n this.toggleDisplay(divTwo);\n }\n\n toggleDisplay(element: any): void {\n const style: string = window.getComputedStyle(element).display;\n if (style === 'block') {\n element.style.display = 'none';\n } else {\n element.style.display = 'block';\n }\n }\n}\n\n \n\n \n \n \n \n \n \n \n CICADA\n \n \n \n\n \n Add Private Key\n \n\n \n\n \n Private Key\n \n \n Private Key is required.\n \n \n\n \n \n Add Key\n \n\n \n \n \n\n \n \n Login \n \n\n \n \n Change private key? Enter private key\n \n \n \n \n \n \n \n\n\n \n\n \n \n ./auth.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' CICADA Add Private Key Private Key Private Key is required. Add Key Login Change private key? Enter private key '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'AuthComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"guards/AuthGuard.html":{"url":"guards/AuthGuard.html","title":"guard - AuthGuard","body":"\n \n\n\n\n\n\n\n\n\n\n\n Guards\n AuthGuard\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_guards/auth.guard.ts\n \n\n \n Description\n \n \n Auth guard implementation.\nDictates access to routes depending on the authentication status.\n\n \n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n canActivate\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(router: Router)\n \n \n \n \n Defined in src/app/_guards/auth.guard.ts:21\n \n \n\n \n \n Instantiates the auth guard class.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \nA service that provides navigation among views and URL manipulation capabilities.\n\n\n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n canActivate\n \n \n \n \n \n \n \ncanActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot)\n \n \n\n\n \n \n Defined in src/app/_guards/auth.guard.ts:38\n \n \n\n\n \n \n Returns whether navigation to a specific route is acceptable.\nChecks if the user has uploaded a private key.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n route\n \n ActivatedRouteSnapshot\n \n\n \n No\n \n\n\n \n \nContains the information about a route associated with a component loaded in an outlet at a particular moment in time.\nActivatedRouteSnapshot can also be used to traverse the router state tree.\n\n\n \n \n \n state\n \n RouterStateSnapshot\n \n\n \n No\n \n\n\n \n \nRepresents the state of the router at a moment in time.\n\n\n \n \n \n \n \n \n \n \n Returns : Observable | Promise | boolean | UrlTree\n\n \n \n true - If there is an active private key in the user's localStorage.\n\n \n \n \n \n \n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport {\n ActivatedRouteSnapshot,\n CanActivate,\n Router,\n RouterStateSnapshot,\n UrlTree,\n} from '@angular/router';\n\n// Third party imports\nimport { Observable } from 'rxjs';\n\n/**\n * Auth guard implementation.\n * Dictates access to routes depending on the authentication status.\n */\n@Injectable({\n providedIn: 'root',\n})\nexport class AuthGuard implements CanActivate {\n /**\n * Instantiates the auth guard class.\n *\n * @param router - A service that provides navigation among views and URL manipulation capabilities.\n */\n constructor(private router: Router) {}\n\n /**\n * Returns whether navigation to a specific route is acceptable.\n * Checks if the user has uploaded a private key.\n *\n * @param route - Contains the information about a route associated with a component loaded in an outlet at a particular moment in time.\n * ActivatedRouteSnapshot can also be used to traverse the router state tree.\n * @param state - Represents the state of the router at a moment in time.\n * @returns true - If there is an active private key in the user's localStorage.\n */\n canActivate(\n route: ActivatedRouteSnapshot,\n state: RouterStateSnapshot\n ): Observable | Promise | boolean | UrlTree {\n if (localStorage.getItem(btoa('CICADA_PRIVATE_KEY'))) {\n return true;\n }\n this.router.navigate(['/auth']);\n return false;\n }\n}\n\n \n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AuthModule.html":{"url":"modules/AuthModule.html","title":"module - AuthModule","body":"\n \n\n\n\n\n Modules\n AuthModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AuthModule\n\n\n\ncluster_AuthModule_imports\n\n\n\ncluster_AuthModule_declarations\n\n\n\n\nAuthComponent\n\nAuthComponent\n\n\n\nAuthModule\n\nAuthModule\n\nAuthModule -->\n\nAuthComponent->AuthModule\n\n\n\n\n\nPasswordToggleDirective\n\nPasswordToggleDirective\n\nAuthModule -->\n\nPasswordToggleDirective->AuthModule\n\n\n\n\n\nAuthRoutingModule\n\nAuthRoutingModule\n\nAuthModule -->\n\nAuthRoutingModule->AuthModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/auth/auth.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n AuthComponent\n \n \n PasswordToggleDirective\n \n \n \n \n Imports\n \n \n AuthRoutingModule\n \n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { AuthRoutingModule } from '@app/auth/auth-routing.module';\nimport { AuthComponent } from '@app/auth/auth.component';\nimport { ReactiveFormsModule } from '@angular/forms';\nimport { PasswordToggleDirective } from '@app/auth/_directives/password-toggle.directive';\nimport { MatCardModule } from '@angular/material/card';\nimport { MatSelectModule } from '@angular/material/select';\nimport { MatInputModule } from '@angular/material/input';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatRippleModule } from '@angular/material/core';\n\n@NgModule({\n declarations: [AuthComponent, PasswordToggleDirective],\n imports: [\n CommonModule,\n AuthRoutingModule,\n ReactiveFormsModule,\n MatCardModule,\n MatSelectModule,\n MatInputModule,\n MatButtonModule,\n MatRippleModule,\n ],\n})\nexport class AuthModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AuthRoutingModule.html":{"url":"modules/AuthRoutingModule.html","title":"module - AuthRoutingModule","body":"\n \n\n\n\n\n Modules\n AuthRoutingModule\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/auth/auth-routing.module.ts\n \n\n\n\n\n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { AuthComponent } from '@app/auth/auth.component';\n\nconst routes: Routes = [\n { path: '', component: AuthComponent },\n { path: '**', redirectTo: '', pathMatch: 'full' },\n];\n\n@NgModule({\n imports: [RouterModule.forChild(routes)],\n exports: [RouterModule],\n})\nexport class AuthRoutingModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/AuthService.html":{"url":"injectables/AuthService.html","title":"injectable - AuthService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n AuthService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_services/auth.service.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n mutableKeyStore\n \n \n sessionLoginCount\n \n \n sessionToken\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n getChallenge\n \n \n getPrivateKey\n \n \n Async\n getPublicKeys\n \n \n getTrustedUsers\n \n \n getWithToken\n \n \n Async\n init\n \n \n login\n \n \n Async\n loginResponse\n \n \n loginView\n \n \n logout\n \n \n sendResponse\n \n \n Async\n setKey\n \n \n setState\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(httpClient: HttpClient, loggingService: LoggingService, errorDialogService: ErrorDialogService)\n \n \n \n \n Defined in src/app/_services/auth.service.ts:17\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n httpClient\n \n \n HttpClient\n \n \n \n No\n \n \n \n \n loggingService\n \n \n LoggingService\n \n \n \n No\n \n \n \n \n errorDialogService\n \n \n ErrorDialogService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n getChallenge\n \n \n \n \n \n \n \ngetChallenge()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:84\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n getPrivateKey\n \n \n \n \n \n \n \ngetPrivateKey()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:210\n \n \n\n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n getPublicKeys\n \n \n \n \n \n \n \n \n getPublicKeys()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:200\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n getTrustedUsers\n \n \n \n \n \n \n \ngetTrustedUsers()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:194\n \n \n\n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n getWithToken\n \n \n \n \n \n \n \ngetWithToken()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:42\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n init\n \n \n \n \n \n \n \n \n init()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:27\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n login\n \n \n \n \n \n \n \nlogin()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:98\n \n \n\n\n \n \n\n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n loginResponse\n \n \n \n \n \n \n \n \n loginResponse(o: literal type)\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:116\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n o\n \n literal type\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n loginView\n \n \n \n \n \n \n \nloginView()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:150\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n logout\n \n \n \n \n \n \n \nlogout()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:188\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n sendResponse\n \n \n \n \n \n \n \nsendResponse(hobaResponseEncoded: any)\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:61\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n hobaResponseEncoded\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Async\n setKey\n \n \n \n \n \n \n \n \n setKey(privateKeyArmored)\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:160\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n Description\n \n \n \n \n privateKeyArmored\n\n \n No\n \n\n\n \n \nPrivate key.\n\n\n \n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n setState\n \n \n \n \n \n \n \nsetState(s)\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:38\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n s\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n mutableKeyStore\n \n \n \n \n \n \n Type : MutableKeyStore\n\n \n \n \n \n Defined in src/app/_services/auth.service.ts:17\n \n \n\n\n \n \n \n \n \n \n \n \n \n sessionLoginCount\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Default value : 0\n \n \n \n \n Defined in src/app/_services/auth.service.ts:16\n \n \n\n\n \n \n \n \n \n \n \n \n \n sessionToken\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/app/_services/auth.service.ts:15\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { hobaParseChallengeHeader } from '@src/assets/js/hoba.js';\nimport { signChallenge } from '@src/assets/js/hoba-pgp.js';\nimport { environment } from '@src/environments/environment';\nimport { LoggingService } from '@app/_services/logging.service';\nimport { MutableKeyStore, MutablePgpKeyStore } from '@app/_pgp';\nimport { ErrorDialogService } from '@app/_services/error-dialog.service';\nimport { HttpClient } from '@angular/common/http';\nimport { HttpError } from '@app/_helpers/global-error-handler';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class AuthService {\n sessionToken: any;\n sessionLoginCount: number = 0;\n mutableKeyStore: MutableKeyStore;\n\n constructor(\n private httpClient: HttpClient,\n private loggingService: LoggingService,\n private errorDialogService: ErrorDialogService\n ) {\n this.mutableKeyStore = new MutablePgpKeyStore();\n }\n\n async init(): Promise {\n await this.mutableKeyStore.loadKeyring();\n // TODO setting these together should be atomic\n if (sessionStorage.getItem(btoa('CICADA_SESSION_TOKEN'))) {\n this.sessionToken = sessionStorage.getItem(btoa('CICADA_SESSION_TOKEN'));\n }\n if (localStorage.getItem(btoa('CICADA_PRIVATE_KEY'))) {\n await this.mutableKeyStore.importPrivateKey(localStorage.getItem(btoa('CICADA_PRIVATE_KEY')));\n }\n }\n\n setState(s): void {\n document.getElementById('state').innerHTML = s;\n }\n\n getWithToken(): void {\n const xhr: XMLHttpRequest = new XMLHttpRequest();\n xhr.responseType = 'text';\n xhr.open('GET', environment.cicMetaUrl + window.location.search.substring(1));\n xhr.setRequestHeader('Authorization', 'Bearer ' + this.sessionToken);\n xhr.setRequestHeader('Content-Type', 'application/json');\n xhr.setRequestHeader('x-cic-automerge', 'none');\n xhr.addEventListener('load', (e) => {\n if (xhr.status === 401) {\n throw new Error('login rejected');\n }\n this.sessionLoginCount++;\n this.setState('Click button to log in');\n return;\n });\n xhr.send();\n }\n\n // TODO rename to send signed challenge and set session. Also separate these responsibilities\n sendResponse(hobaResponseEncoded: any): Promise {\n return new Promise((resolve, reject) => {\n const xhr: XMLHttpRequest = new XMLHttpRequest();\n xhr.responseType = 'text';\n xhr.open('GET', environment.cicMetaUrl + window.location.search.substring(1));\n xhr.setRequestHeader('Authorization', 'HOBA ' + hobaResponseEncoded);\n xhr.setRequestHeader('Content-Type', 'application/json');\n xhr.setRequestHeader('x-cic-automerge', 'none');\n xhr.addEventListener('load', (e) => {\n if (xhr.status !== 200) {\n const error = new HttpError(xhr.statusText, xhr.status);\n return reject(error);\n }\n this.sessionToken = xhr.getResponseHeader('Token');\n sessionStorage.setItem(btoa('CICADA_SESSION_TOKEN'), this.sessionToken);\n this.sessionLoginCount++;\n this.setState('Click button to log in');\n return resolve(true);\n });\n xhr.send();\n });\n }\n\n getChallenge(): void {\n const xhr: XMLHttpRequest = new XMLHttpRequest();\n xhr.responseType = 'arraybuffer';\n xhr.open('GET', environment.cicMetaUrl + window.location.search.substring(1));\n xhr.onload = async (e) => {\n if (xhr.status === 401) {\n const authHeader = xhr.getResponseHeader('WWW-Authenticate');\n const o = hobaParseChallengeHeader(authHeader);\n this.loginResponse(o);\n }\n };\n xhr.send();\n }\n\n login(): boolean {\n if (this.sessionToken !== undefined) {\n try {\n this.getWithToken();\n return true;\n } catch (e) {\n this.loggingService.sendErrorLevelMessage('Login token failed', this, { error: e });\n }\n } else {\n try {\n this.getChallenge();\n } catch (e) {\n this.loggingService.sendErrorLevelMessage('Login challenge failed', this, { error: e });\n }\n }\n return false;\n }\n\n async loginResponse(o: { challenge: string; realm: any }): Promise {\n return new Promise(async (resolve, reject) => {\n try {\n const r = await signChallenge(\n o.challenge,\n o.realm,\n environment.cicMetaUrl,\n this.mutableKeyStore\n );\n const sessionTokenResult: boolean = await this.sendResponse(r);\n } catch (error) {\n if (error instanceof HttpError) {\n if (error.status === 403) {\n this.errorDialogService.openDialog({\n message: 'You are not authorized to use this system',\n });\n }\n if (error.status === 401) {\n this.errorDialogService.openDialog({\n message:\n 'Unable to authenticate with the service. ' +\n 'Please speak with the staff at Grassroots ' +\n 'Economics for requesting access ' +\n 'staff@grassrootseconomics.net.',\n });\n }\n }\n // TODO define this error\n this.errorDialogService.openDialog({ message: 'Incorrect key passphrase.' });\n resolve(false);\n }\n });\n }\n\n loginView(): void {\n document.getElementById('one').style.display = 'none';\n document.getElementById('two').style.display = 'block';\n this.setState('Click button to log in with PGP key ' + this.mutableKeyStore.getPrivateKeyId());\n }\n\n /**\n * @throws\n * @param privateKeyArmored - Private key.\n */\n async setKey(privateKeyArmored): Promise {\n try {\n const isValidKeyCheck = await this.mutableKeyStore.isValidKey(privateKeyArmored);\n if (!isValidKeyCheck) {\n throw Error('The private key is invalid');\n }\n // TODO leaving this out for now.\n // const isEncryptedKeyCheck = await this.mutableKeyStore.isEncryptedPrivateKey(privateKeyArmored);\n // if (!isEncryptedKeyCheck) {\n // throw Error('The private key doesn\\'t have a password!');\n // }\n const key = await this.mutableKeyStore.importPrivateKey(privateKeyArmored);\n localStorage.setItem(btoa('CICADA_PRIVATE_KEY'), privateKeyArmored);\n } catch (err) {\n this.loggingService.sendErrorLevelMessage(\n `Failed to set key: ${err.message || err.statusText}`,\n this,\n { error: err }\n );\n this.errorDialogService.openDialog({\n message: `Failed to set key: ${err.message || err.statusText}`,\n });\n return false;\n }\n this.loginView();\n return true;\n }\n\n logout(): void {\n sessionStorage.removeItem(btoa('CICADA_SESSION_TOKEN'));\n this.sessionToken = undefined;\n window.location.reload();\n }\n\n getTrustedUsers(): any {\n const trustedUsers: Array = [];\n this.mutableKeyStore.getPublicKeys().forEach((key) => trustedUsers.push(key.users[0].userId));\n return trustedUsers;\n }\n\n async getPublicKeys(): Promise {\n return await fetch(environment.publicKeysUrl).then((res) => {\n if (!res.ok) {\n // TODO does angular recommend an error interface?\n throw Error(`${res.statusText} - ${res.status}`);\n }\n return res.text();\n });\n }\n\n getPrivateKey(): any {\n return this.mutableKeyStore.getPrivateKey();\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/BlockSyncService.html":{"url":"injectables/BlockSyncService.html","title":"injectable - BlockSyncService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n BlockSyncService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_services/block-sync.service.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n readyState\n \n \n readyStateTarget\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n blockSync\n \n \n fetcher\n \n \n newConversionEvent\n \n \n newTransferEvent\n \n \n readyStateProcessor\n \n \n Async\n scan\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(transactionService: TransactionService, loggingService: LoggingService, registryService: RegistryService)\n \n \n \n \n Defined in src/app/_services/block-sync.service.ts:15\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n transactionService\n \n \n TransactionService\n \n \n \n No\n \n \n \n \n loggingService\n \n \n LoggingService\n \n \n \n No\n \n \n \n \n registryService\n \n \n RegistryService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n blockSync\n \n \n \n \n \n \n \nblockSync(address: string, offset: number, limit: number)\n \n \n\n\n \n \n Defined in src/app/_services/block-sync.service.ts:23\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n address\n \n string\n \n\n \n No\n \n\n \n null\n \n\n \n \n offset\n \n number\n \n\n \n No\n \n\n \n 0\n \n\n \n \n limit\n \n number\n \n\n \n No\n \n\n \n 100\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n fetcher\n \n \n \n \n \n \n \nfetcher(settings: Settings, transactionsInfo: any)\n \n \n\n\n \n \n Defined in src/app/_services/block-sync.service.ts:118\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n settings\n \n Settings\n \n\n \n No\n \n\n\n \n \n transactionsInfo\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n newConversionEvent\n \n \n \n \n \n \n \nnewConversionEvent(tx: any)\n \n \n\n\n \n \n Defined in src/app/_services/block-sync.service.ts:89\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n tx\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n newTransferEvent\n \n \n \n \n \n \n \nnewTransferEvent(tx: any)\n \n \n\n\n \n \n Defined in src/app/_services/block-sync.service.ts:81\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n tx\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n readyStateProcessor\n \n \n \n \n \n \n \nreadyStateProcessor(settings: Settings, bit: number, address: string, offset: number, limit: number)\n \n \n\n\n \n \n Defined in src/app/_services/block-sync.service.ts:46\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n settings\n \n Settings\n \n\n \n No\n \n\n\n \n \n bit\n \n number\n \n\n \n No\n \n\n\n \n \n address\n \n string\n \n\n \n No\n \n\n\n \n \n offset\n \n number\n \n\n \n No\n \n\n\n \n \n limit\n \n number\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Async\n scan\n \n \n \n \n \n \n \n \n scan(settings: Settings, lo: number, hi: number, bloomBlockBytes: Uint8Array, bloomBlocktxBytes: Uint8Array, bloomRounds: any)\n \n \n\n\n \n \n Defined in src/app/_services/block-sync.service.ts:97\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n settings\n \n Settings\n \n\n \n No\n \n\n\n \n \n lo\n \n number\n \n\n \n No\n \n\n\n \n \n hi\n \n number\n \n\n \n No\n \n\n\n \n \n bloomBlockBytes\n \n Uint8Array\n \n\n \n No\n \n\n\n \n \n bloomBlocktxBytes\n \n Uint8Array\n \n\n \n No\n \n\n\n \n \n bloomRounds\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n readyState\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Default value : 0\n \n \n \n \n Defined in src/app/_services/block-sync.service.ts:15\n \n \n\n\n \n \n \n \n \n \n \n \n \n readyStateTarget\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Default value : 2\n \n \n \n \n Defined in src/app/_services/block-sync.service.ts:14\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { Settings } from '@app/_models';\nimport { TransactionHelper } from 'cic-client';\nimport { first } from 'rxjs/operators';\nimport { TransactionService } from '@app/_services/transaction.service';\nimport { environment } from '@src/environments/environment';\nimport { LoggingService } from '@app/_services/logging.service';\nimport { RegistryService } from '@app/_services/registry.service';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class BlockSyncService {\n readyStateTarget: number = 2;\n readyState: number = 0;\n\n constructor(\n private transactionService: TransactionService,\n private loggingService: LoggingService,\n private registryService: RegistryService\n ) {}\n\n blockSync(address: string = null, offset: number = 0, limit: number = 100): void {\n this.transactionService.resetTransactionsList();\n const settings: Settings = new Settings(this.scan);\n const readyStateElements: { network: number } = { network: 2 };\n settings.w3.provider = environment.web3Provider;\n settings.w3.engine = this.registryService.getWeb3();\n settings.registry = this.registryService.getRegistry();\n settings.txHelper = new TransactionHelper(settings.w3.engine, settings.registry);\n\n settings.txHelper.ontransfer = async (transaction: any): Promise => {\n window.dispatchEvent(this.newTransferEvent(transaction));\n };\n settings.txHelper.onconversion = async (transaction: any): Promise => {\n window.dispatchEvent(this.newConversionEvent(transaction));\n };\n settings.registry.onload = (addressReturned: number): void => {\n this.loggingService.sendInfoLevelMessage(`Loaded network contracts ${addressReturned}`);\n this.readyStateProcessor(settings, readyStateElements.network, address, offset, limit);\n };\n\n settings.registry.load();\n }\n\n readyStateProcessor(\n settings: Settings,\n bit: number,\n address: string,\n offset: number,\n limit: number\n ): void {\n // tslint:disable-next-line:no-bitwise\n this.readyState |= bit;\n if (this.readyStateTarget === this.readyState && this.readyStateTarget) {\n const wHeadSync: Worker = new Worker('./../assets/js/block-sync/head.js');\n wHeadSync.onmessage = (m) => {\n settings.txHelper.processReceipt(m.data);\n };\n wHeadSync.postMessage({\n w3_provider: settings.w3.provider,\n });\n if (address === null) {\n this.transactionService\n .getAllTransactions(offset, limit)\n .pipe(first())\n .subscribe((res) => {\n this.fetcher(settings, res);\n });\n } else {\n this.transactionService\n .getAddressTransactions(address, offset, limit)\n .pipe(first())\n .subscribe((res) => {\n this.fetcher(settings, res);\n });\n }\n }\n }\n\n newTransferEvent(tx: any): any {\n return new CustomEvent('cic_transfer', {\n detail: {\n tx,\n },\n });\n }\n\n newConversionEvent(tx: any): any {\n return new CustomEvent('cic_convert', {\n detail: {\n tx,\n },\n });\n }\n\n async scan(\n settings: Settings,\n lo: number,\n hi: number,\n bloomBlockBytes: Uint8Array,\n bloomBlocktxBytes: Uint8Array,\n bloomRounds: any\n ): Promise {\n const w: Worker = new Worker('./../assets/js/block-sync/ondemand.js');\n w.onmessage = (m) => {\n settings.txHelper.processReceipt(m.data);\n };\n w.postMessage({\n w3_provider: settings.w3.provider,\n lo,\n hi,\n filters: [bloomBlockBytes, bloomBlocktxBytes],\n filter_rounds: bloomRounds,\n });\n }\n\n fetcher(settings: Settings, transactionsInfo: any): void {\n const blockFilterBinstr: string = window.atob(transactionsInfo.block_filter);\n const bOne: Uint8Array = new Uint8Array(blockFilterBinstr.length);\n bOne.map((e, i, v) => (v[i] = blockFilterBinstr.charCodeAt(i)));\n\n const blocktxFilterBinstr: string = window.atob(transactionsInfo.blocktx_filter);\n const bTwo: Uint8Array = new Uint8Array(blocktxFilterBinstr.length);\n bTwo.map((e, i, v) => (v[i] = blocktxFilterBinstr.charCodeAt(i)));\n\n settings.scanFilter(\n settings,\n transactionsInfo.low,\n transactionsInfo.high,\n bOne,\n bTwo,\n transactionsInfo.filter_rounds\n );\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/BlocksBloom.html":{"url":"classes/BlocksBloom.html","title":"class - BlocksBloom","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n BlocksBloom\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/transaction.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n alg\n \n \n blockFilter\n \n \n blocktxFilter\n \n \n filterRounds\n \n \n low\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n alg\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:7\n \n \n\n\n \n \n \n \n \n \n \n \n \n blockFilter\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:5\n \n \n\n\n \n \n \n \n \n \n \n \n \n blocktxFilter\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:6\n \n \n\n\n \n \n \n \n \n \n \n \n \n filterRounds\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:8\n \n \n\n\n \n \n \n \n \n \n \n \n \n low\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:4\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n \n import { AccountDetails } from '@app/_models/account';\n\nclass BlocksBloom {\n low: number;\n blockFilter: string;\n blocktxFilter: string;\n alg: string;\n filterRounds: number;\n}\n\nclass TxToken {\n address: string;\n name: string;\n symbol: string;\n}\n\nclass Tx {\n block: number;\n success: boolean;\n timestamp: number;\n txHash: string;\n txIndex: number;\n}\n\nclass Transaction {\n from: string;\n sender: AccountDetails;\n to: string;\n recipient: AccountDetails;\n token: TxToken;\n tx: Tx;\n value: number;\n type?: string;\n}\n\nclass Conversion {\n destinationToken: TxToken;\n fromValue: number;\n sourceToken: TxToken;\n toValue: number;\n trader: string;\n user: AccountDetails;\n tx: Tx;\n}\n\nexport { BlocksBloom, TxToken, Tx, Transaction, Conversion };\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Category.html":{"url":"interfaces/Category.html","title":"interface - Category","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Category\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/mappings.ts\n \n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n name\n \n \n products\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n name\n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n products\n \n \n \n \n products: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n interface Action {\n id: number;\n user: string;\n role: string;\n action: string;\n approval: boolean;\n}\n\ninterface Category {\n name: string;\n products: Array;\n}\n\ninterface AreaName {\n name: string;\n locations: Array;\n}\n\ninterface AreaType {\n name: string;\n area: Array;\n}\n\nexport { Action, Category, AreaName, AreaType };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/Conversion.html":{"url":"classes/Conversion.html","title":"class - Conversion","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n Conversion\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/transaction.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n destinationToken\n \n \n fromValue\n \n \n sourceToken\n \n \n toValue\n \n \n trader\n \n \n tx\n \n \n user\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n destinationToken\n \n \n \n \n \n \n Type : TxToken\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:37\n \n \n\n\n \n \n \n \n \n \n \n \n \n fromValue\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:38\n \n \n\n\n \n \n \n \n \n \n \n \n \n sourceToken\n \n \n \n \n \n \n Type : TxToken\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:39\n \n \n\n\n \n \n \n \n \n \n \n \n \n toValue\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:40\n \n \n\n\n \n \n \n \n \n \n \n \n \n trader\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:41\n \n \n\n\n \n \n \n \n \n \n \n \n \n tx\n \n \n \n \n \n \n Type : Tx\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:43\n \n \n\n\n \n \n \n \n \n \n \n \n \n user\n \n \n \n \n \n \n Type : AccountDetails\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:42\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n \n import { AccountDetails } from '@app/_models/account';\n\nclass BlocksBloom {\n low: number;\n blockFilter: string;\n blocktxFilter: string;\n alg: string;\n filterRounds: number;\n}\n\nclass TxToken {\n address: string;\n name: string;\n symbol: string;\n}\n\nclass Tx {\n block: number;\n success: boolean;\n timestamp: number;\n txHash: string;\n txIndex: number;\n}\n\nclass Transaction {\n from: string;\n sender: AccountDetails;\n to: string;\n recipient: AccountDetails;\n token: TxToken;\n tx: Tx;\n value: number;\n type?: string;\n}\n\nclass Conversion {\n destinationToken: TxToken;\n fromValue: number;\n sourceToken: TxToken;\n toValue: number;\n trader: string;\n user: AccountDetails;\n tx: Tx;\n}\n\nexport { BlocksBloom, TxToken, Tx, Transaction, Conversion };\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/CreateAccountComponent.html":{"url":"components/CreateAccountComponent.html","title":"component - CreateAccountComponent","body":"\n \n\n\n\n\n\n Components\n CreateAccountComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/pages/accounts/create-account/create-account.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-create-account\n \n\n \n styleUrls\n ./create-account.component.scss\n \n\n\n\n \n templateUrl\n ./create-account.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n accountTypes\n \n \n areaNames\n \n \n categories\n \n \n createForm\n \n \n genders\n \n \n matcher\n \n \n submitted\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n onSubmit\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n createFormStub\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(formBuilder: FormBuilder, locationService: LocationService, userService: UserService)\n \n \n \n \n Defined in src/app/pages/accounts/create-account/create-account.component.ts:21\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n formBuilder\n \n \n FormBuilder\n \n \n \n No\n \n \n \n \n locationService\n \n \n LocationService\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/pages/accounts/create-account/create-account.component.ts:29\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n onSubmit\n \n \n \n \n \n \n \nonSubmit()\n \n \n\n\n \n \n Defined in src/app/pages/accounts/create-account/create-account.component.ts:64\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n accountTypes\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Defined in src/app/pages/accounts/create-account/create-account.component.ts:20\n \n \n\n\n \n \n \n \n \n \n \n \n \n areaNames\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Defined in src/app/pages/accounts/create-account/create-account.component.ts:19\n \n \n\n\n \n \n \n \n \n \n \n \n \n categories\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Defined in src/app/pages/accounts/create-account/create-account.component.ts:18\n \n \n\n\n \n \n \n \n \n \n \n \n \n createForm\n \n \n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Defined in src/app/pages/accounts/create-account/create-account.component.ts:15\n \n \n\n\n \n \n \n \n \n \n \n \n \n genders\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Defined in src/app/pages/accounts/create-account/create-account.component.ts:21\n \n \n\n\n \n \n \n \n \n \n \n \n \n matcher\n \n \n \n \n \n \n Type : CustomErrorStateMatcher\n\n \n \n \n \n Default value : new CustomErrorStateMatcher()\n \n \n \n \n Defined in src/app/pages/accounts/create-account/create-account.component.ts:16\n \n \n\n\n \n \n \n \n \n \n \n \n \n submitted\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/app/pages/accounts/create-account/create-account.component.ts:17\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n createFormStub\n \n \n\n \n \n getcreateFormStub()\n \n \n \n \n Defined in src/app/pages/accounts/create-account/create-account.component.ts:60\n \n \n\n \n \n\n\n\n\n \n import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators } from '@angular/forms';\nimport { LocationService, UserService } from '@app/_services';\nimport { CustomErrorStateMatcher } from '@app/_helpers';\nimport { first } from 'rxjs/operators';\nimport { AreaName, Category } from '@app/_models';\n\n@Component({\n selector: 'app-create-account',\n templateUrl: './create-account.component.html',\n styleUrls: ['./create-account.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CreateAccountComponent implements OnInit {\n createForm: FormGroup;\n matcher: CustomErrorStateMatcher = new CustomErrorStateMatcher();\n submitted: boolean = false;\n categories: Array;\n areaNames: Array;\n accountTypes: Array;\n genders: Array;\n\n constructor(\n private formBuilder: FormBuilder,\n private locationService: LocationService,\n private userService: UserService\n ) {}\n\n ngOnInit(): void {\n this.createForm = this.formBuilder.group({\n accountType: ['', Validators.required],\n idNumber: ['', Validators.required],\n phoneNumber: ['', Validators.required],\n givenName: ['', Validators.required],\n surname: ['', Validators.required],\n directoryEntry: ['', Validators.required],\n location: ['', Validators.required],\n gender: ['', Validators.required],\n referrer: ['', Validators.required],\n businessCategory: ['', Validators.required],\n });\n this.userService\n .getCategories()\n .pipe(first())\n .subscribe((res) => (this.categories = res));\n this.locationService\n .getAreaNames()\n .pipe(first())\n .subscribe((res) => (this.areaNames = res));\n this.userService\n .getAccountTypes()\n .pipe(first())\n .subscribe((res) => (this.accountTypes = res));\n this.userService\n .getGenders()\n .pipe(first())\n .subscribe((res) => (this.genders = res));\n }\n\n get createFormStub(): any {\n return this.createForm.controls;\n }\n\n onSubmit(): void {\n this.submitted = true;\n if (this.createForm.invalid || !confirm('Create account?')) {\n return;\n }\n this.submitted = false;\n }\n}\n\n \n\n \n \n\n \n\n \n \n \n\n \n \n \n \n \n \n Home\n Accounts\n Create Account\n \n \n \n \n CREATE A USER ACCOUNT\n \n \n \n \n \n Account Type: \n \n \n {{accountType | uppercase}}\n \n \n Account type is required.\n \n \n\n \n \n ID Number: \n \n ID Number is required.\n \n \n\n \n \n Phone Number: \n \n Phone Number is required.\n \n \n\n \n \n Given Name(s):* \n \n Given Names are required.\n \n \n\n \n \n Family/Surname: \n \n Surname is required.\n \n \n\n \n \n Directory Entry: \n \n Directory Entry is required.\n \n \n\n \n \n Location: \n \n \n {{area | uppercase}}\n \n \n Location is required.\n \n \n\n \n \n Gender: \n \n \n {{gender | uppercase}}\n \n \n Gender is required.\n \n \n\n \n \n Referrer Phone Number: \n \n Referrer is required.\n \n \n\n \n \n Business Category: \n \n \n {{category | titlecase}}\n \n \n Business Category is required.\n \n \n\n Submit\n \n \n \n \n \n \n \n \n \n\n\n \n\n \n \n ./create-account.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Home Accounts Create Account CREATE A USER ACCOUNT Account Type: {{accountType | uppercase}} Account type is required. ID Number: ID Number is required. Phone Number: Phone Number is required. Given Name(s):* Given Names are required. Family/Surname: Surname is required. Directory Entry: Directory Entry is required. Location: {{area | uppercase}} Location is required. Gender: {{gender | uppercase}} Gender is required. Referrer Phone Number: Referrer is required. Business Category: {{category | titlecase}} Business Category is required. Submit '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'CreateAccountComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/CustomErrorStateMatcher.html":{"url":"classes/CustomErrorStateMatcher.html","title":"class - CustomErrorStateMatcher","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n CustomErrorStateMatcher\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_helpers/custom-error-state-matcher.ts\n \n\n \n Description\n \n \n Custom provider that defines how form controls behave with regards to displaying error messages.\n\n \n\n\n \n Implements\n \n \n ErrorStateMatcher\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n isErrorState\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n isErrorState\n \n \n \n \n \n \n \nisErrorState(control: FormControl | null, form: FormGroupDirective | NgForm | null)\n \n \n\n\n \n \n Defined in src/app/_helpers/custom-error-state-matcher.ts:17\n \n \n\n\n \n \n Checks whether an invalid input has been made and an error should be made.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n control\n \n FormControl | null\n \n\n \n No\n \n\n\n \n \nTracks the value and validation status of an individual form control.\n\n\n \n \n \n form\n \n FormGroupDirective | NgForm | null\n \n\n \n No\n \n\n\n \n \nBinding of an existing FormGroup to a DOM element.\n\n\n \n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n true - If an invalid input has been made to the form control.\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n import { ErrorStateMatcher } from '@angular/material/core';\nimport { FormControl, FormGroupDirective, NgForm } from '@angular/forms';\n\n/**\n * Custom provider that defines how form controls behave with regards to displaying error messages.\n *\n */\nexport class CustomErrorStateMatcher implements ErrorStateMatcher {\n /**\n * Checks whether an invalid input has been made and an error should be made.\n *\n * @param control - Tracks the value and validation status of an individual form control.\n * @param form - Binding of an existing FormGroup to a DOM element.\n * @returns true - If an invalid input has been made to the form control.\n */\n isErrorState(control: FormControl | null, form: FormGroupDirective | NgForm | null): boolean {\n const isSubmitted: boolean = form && form.submitted;\n return !!(control && control.invalid && (control.dirty || control.touched || isSubmitted));\n }\n}\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/CustomValidator.html":{"url":"classes/CustomValidator.html","title":"class - CustomValidator","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n CustomValidator\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_helpers/custom.validator.ts\n \n\n \n Description\n \n \n Provides methods to perform custom validation to form inputs.\n\n \n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n Static\n passwordMatchValidator\n \n \n Static\n patternValidator\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Static\n passwordMatchValidator\n \n \n \n \n \n \n \n \n passwordMatchValidator(control: AbstractControl)\n \n \n\n\n \n \n Defined in src/app/_helpers/custom.validator.ts:13\n \n \n\n\n \n \n Sets errors to the confirm password input field if it does not match with the value in the password input field.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n control\n \n AbstractControl\n \n\n \n No\n \n\n\n \n \nThe control object of the form being validated.\n\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Static\n patternValidator\n \n \n \n \n \n \n \n \n patternValidator(regex: RegExp, error: ValidationErrors)\n \n \n\n\n \n \n Defined in src/app/_helpers/custom.validator.ts:28\n \n \n\n\n \n \n Sets errors to a form field if it does not match with the regular expression given.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n regex\n \n RegExp\n \n\n \n No\n \n\n\n \n \nThe regular expression to match with the form field.\n\n\n \n \n \n error\n \n ValidationErrors\n \n\n \n No\n \n\n\n \n \nDefines the map of errors to return from failed validation checks.\n\n\n \n \n \n \n \n \n \n \n Returns : ValidationErrors | null\n\n \n \n The map of errors returned from failed validation checks.\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n import { AbstractControl, ValidationErrors } from '@angular/forms';\n\n/**\n * Provides methods to perform custom validation to form inputs.\n */\nexport class CustomValidator {\n /**\n * Sets errors to the confirm password input field if it does not match with the value in the password input field.\n *\n * @param control - The control object of the form being validated.\n */\n static passwordMatchValidator(control: AbstractControl): void {\n const password: string = control.get('password').value;\n const confirmPassword: string = control.get('confirmPassword').value;\n if (password !== confirmPassword) {\n control.get('confirmPassword').setErrors({ NoPasswordMatch: true });\n }\n }\n\n /**\n * Sets errors to a form field if it does not match with the regular expression given.\n *\n * @param regex - The regular expression to match with the form field.\n * @param error - Defines the map of errors to return from failed validation checks.\n * @returns The map of errors returned from failed validation checks.\n */\n static patternValidator(regex: RegExp, error: ValidationErrors): ValidationErrors | null {\n return (control: AbstractControl): { [key: string]: any } => {\n if (!control.value) {\n return null;\n }\n\n const valid: boolean = regex.test(control.value);\n return valid ? null : error;\n };\n }\n}\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ErrorDialogComponent.html":{"url":"components/ErrorDialogComponent.html","title":"component - ErrorDialogComponent","body":"\n \n\n\n\n\n\n Components\n ErrorDialogComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/shared/error-dialog/error-dialog.component.ts\n\n\n\n\n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-error-dialog\n \n\n \n styleUrls\n ./error-dialog.component.scss\n \n\n\n\n \n templateUrl\n ./error-dialog.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n data\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(data: any)\n \n \n \n \n Defined in src/app/shared/error-dialog/error-dialog.component.ts:10\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n data\n \n \n any\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n data\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Decorators : \n \n \n @Inject(MAT_DIALOG_DATA)\n \n \n \n \n \n Defined in src/app/shared/error-dialog/error-dialog.component.ts:11\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, ChangeDetectionStrategy, Inject } from '@angular/core';\nimport { MAT_DIALOG_DATA } from '@angular/material/dialog';\n\n@Component({\n selector: 'app-error-dialog',\n templateUrl: './error-dialog.component.html',\n styleUrls: ['./error-dialog.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ErrorDialogComponent {\n constructor(@Inject(MAT_DIALOG_DATA) public data: any) {}\n}\n\n \n\n \n \n \n \n Message: {{ data.message }}\n \n \n Status: {{ data?.status }}\n \n \n\n\n \n\n \n \n ./error-dialog.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Message: {{ data.message }} Status: {{ data?.status }} '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'ErrorDialogComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/ErrorDialogService.html":{"url":"injectables/ErrorDialogService.html","title":"injectable - ErrorDialogService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n ErrorDialogService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_services/error-dialog.service.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n dialog\n \n \n Public\n isDialogOpen\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n openDialog\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(dialog: MatDialog)\n \n \n \n \n Defined in src/app/_services/error-dialog.service.ts:9\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n openDialog\n \n \n \n \n \n \n \nopenDialog(data)\n \n \n\n\n \n \n Defined in src/app/_services/error-dialog.service.ts:13\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n data\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n dialog\n \n \n \n \n \n \n Type : MatDialog\n\n \n \n \n \n Defined in src/app/_services/error-dialog.service.ts:11\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n isDialogOpen\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/app/_services/error-dialog.service.ts:9\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { MatDialog, MatDialogRef } from '@angular/material/dialog';\nimport { ErrorDialogComponent } from '@app/shared/error-dialog/error-dialog.component';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class ErrorDialogService {\n public isDialogOpen: boolean = false;\n\n constructor(public dialog: MatDialog) {}\n\n openDialog(data): any {\n if (this.isDialogOpen) {\n return false;\n }\n this.isDialogOpen = true;\n const dialogRef: MatDialogRef = this.dialog.open(ErrorDialogComponent, {\n width: '300px',\n data,\n });\n\n dialogRef.afterClosed().subscribe(() => (this.isDialogOpen = false));\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interceptors/ErrorInterceptor.html":{"url":"interceptors/ErrorInterceptor.html","title":"interceptor - ErrorInterceptor","body":"\n \n\n\n\n\n\n\n\n\n\n Interceptors\n ErrorInterceptor\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_interceptors/error.interceptor.ts\n \n\n \n Description\n \n \n Intercepts and handles errors from outgoing HTTP request. \n\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n intercept\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(errorDialogService: ErrorDialogService, loggingService: LoggingService, router: Router)\n \n \n \n \n Defined in src/app/_interceptors/error.interceptor.ts:21\n \n \n\n \n \n Initialization of the error interceptor.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n errorDialogService\n \n \n ErrorDialogService\n \n \n \n No\n \n \n \n \nA service that provides a dialog box for displaying errors to the user.\n\n\n \n \n \n loggingService\n \n \n LoggingService\n \n \n \n No\n \n \n \n \nA service that provides logging capabilities.\n\n\n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \nA service that provides navigation among views and URL manipulation capabilities.\n\n\n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n intercept\n \n \n \n \n \n \n \nintercept(request: HttpRequest, next: HttpHandler)\n \n \n\n\n \n \n Defined in src/app/_interceptors/error.interceptor.ts:42\n \n \n\n\n \n \n Intercepts HTTP requests.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n request\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \nAn outgoing HTTP request with an optional typed body.\n\n\n \n \n \n next\n \n HttpHandler\n \n\n \n No\n \n\n\n \n \nThe next HTTP handler or the outgoing request dispatcher.\n\n\n \n \n \n \n \n \n \n \n Returns : Observable>\n\n \n \n The error caught from the request.\n\n \n \n \n \n \n\n\n \n\n\n \n import {\n HttpErrorResponse,\n HttpEvent,\n HttpHandler,\n HttpInterceptor,\n HttpRequest,\n} from '@angular/common/http';\nimport { Injectable } from '@angular/core';\nimport { Router } from '@angular/router';\n\n// Third party imports\nimport { Observable, throwError } from 'rxjs';\nimport { catchError } from 'rxjs/operators';\n\n// Application imports\nimport { ErrorDialogService, LoggingService } from '@app/_services';\n\n/** Intercepts and handles errors from outgoing HTTP request. */\n@Injectable()\nexport class ErrorInterceptor implements HttpInterceptor {\n /**\n * Initialization of the error interceptor.\n *\n * @param errorDialogService - A service that provides a dialog box for displaying errors to the user.\n * @param loggingService - A service that provides logging capabilities.\n * @param router - A service that provides navigation among views and URL manipulation capabilities.\n */\n constructor(\n private errorDialogService: ErrorDialogService,\n private loggingService: LoggingService,\n private router: Router\n ) {}\n\n /**\n * Intercepts HTTP requests.\n *\n * @param request - An outgoing HTTP request with an optional typed body.\n * @param next - The next HTTP handler or the outgoing request dispatcher.\n * @returns The error caught from the request.\n */\n intercept(request: HttpRequest, next: HttpHandler): Observable> {\n return next.handle(request).pipe(\n catchError((err: HttpErrorResponse) => {\n let errorMessage: string;\n if (err.error instanceof ErrorEvent) {\n // A client-side or network error occurred. Handle it accordingly.\n errorMessage = `An error occurred: ${err.error.message}`;\n } else {\n // The backend returned an unsuccessful response code.\n // The response body may contain clues as to what went wrong.\n errorMessage = `Backend returned code ${err.status}, body was: ${JSON.stringify(\n err.error\n )}`;\n }\n this.loggingService.sendErrorLevelMessage(errorMessage, this, { error: err });\n switch (err.status) {\n case 401: // unauthorized\n this.router.navigateByUrl('/auth').then();\n break;\n case 403: // forbidden\n alert('Access to resource is not allowed!');\n break;\n }\n // Return an observable with a user-facing error message.\n return throwError(err);\n })\n );\n }\n}\n\n \n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/FooterComponent.html":{"url":"components/FooterComponent.html","title":"component - FooterComponent","body":"\n \n\n\n\n\n\n Components\n FooterComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/shared/footer/footer.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-footer\n \n\n \n styleUrls\n ./footer.component.scss\n \n\n\n\n \n templateUrl\n ./footer.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in src/app/shared/footer/footer.component.ts:9\n \n \n\n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/shared/footer/footer.component.ts:12\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n\n\n\n\n \n import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'app-footer',\n templateUrl: './footer.component.html',\n styleUrls: ['./footer.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class FooterComponent implements OnInit {\n constructor() {}\n\n ngOnInit(): void {}\n}\n\n \n\n \n \n\n 2020 © Grassroots Economics\n\n\n\n \n\n \n \n ./footer.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' 2020 © Grassroots Economics'\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'FooterComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/FooterStubComponent.html":{"url":"components/FooterStubComponent.html","title":"component - FooterStubComponent","body":"\n \n\n\n\n\n\n Components\n FooterStubComponent\n\n\n\n \n Info\n \n \n Source\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/testing/shared-module-stub.ts\n\n\n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n app-footer\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n import {Component} from '@angular/core';\n\n@Component({selector: 'app-sidebar', template: ''})\nexport class SidebarStubComponent {}\n\n@Component({selector: 'app-topbar', template: ''})\nexport class TopbarStubComponent {}\n\n@Component({selector: 'app-footer', template: ''})\nexport class FooterStubComponent {}\n\n \n\n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'FooterStubComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/GlobalErrorHandler.html":{"url":"injectables/GlobalErrorHandler.html","title":"injectable - GlobalErrorHandler","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n GlobalErrorHandler\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_helpers/global-error-handler.ts\n \n\n \n Description\n \n \n Provides a hook for centralized exception handling.\n\n \n\n \n Extends\n \n \n ErrorHandler\n \n\n \n Example\n \n \n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n sentencesForWarningLogging\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n handleError\n \n \n Private\n isWarning\n \n \n logError\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(loggingService: LoggingService, router: Router)\n \n \n \n \n Defined in src/app/_helpers/global-error-handler.ts:41\n \n \n\n \n \n Initialization of the Global Error Handler.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n loggingService\n \n \n LoggingService\n \n \n \n No\n \n \n \n \nA service that provides logging capabilities.\n\n\n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \nA service that provides navigation among views and URL manipulation capabilities.\n\n\n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n handleError\n \n \n \n \n \n \n \nhandleError(error: Error)\n \n \n\n\n \n \n Defined in src/app/_helpers/global-error-handler.ts:58\n \n \n\n\n \n \n Handles different types of errors.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n error\n \n Error\n \n\n \n No\n \n\n\n \n \nAn error objects thrown when a runtime errors occurs.\n\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Private\n isWarning\n \n \n \n \n \n \n \n \n isWarning(errorTraceString: string)\n \n \n\n\n \n \n Defined in src/app/_helpers/global-error-handler.ts:84\n \n \n\n\n \n \n Checks if an error is of type warning.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n errorTraceString\n \n string\n \n\n \n No\n \n\n\n \n \nA description of the error and it's stack trace.\n\n\n \n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n true - If the error is of type warning.\n\n \n \n \n \n \n \n \n \n \n \n \n \n logError\n \n \n \n \n \n \n \nlogError(error: any)\n \n \n\n\n \n \n Defined in src/app/_helpers/global-error-handler.ts:104\n \n \n\n\n \n \n Write appropriate logs according to the type of error.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n error\n \n any\n \n\n \n No\n \n\n\n \n \nAn error objects thrown when a runtime errors occurs.\n\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Private\n sentencesForWarningLogging\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in src/app/_helpers/global-error-handler.ts:41\n \n \n\n \n \n An array of sentence sections that denote warnings.\n\n \n \n\n \n \n\n\n \n\n\n \n import { HttpErrorResponse } from '@angular/common/http';\nimport { ErrorHandler, Injectable } from '@angular/core';\nimport { Router } from '@angular/router';\n\n// Application imports\nimport { LoggingService } from '@app/_services/logging.service';\n\n/**\n * A generalized http response error.\n *\n * @extends Error\n */\nexport class HttpError extends Error {\n /** The error's status code. */\n public status: number;\n\n /**\n * Initialize the HttpError class.\n *\n * @param message - The message given by the error.\n * @param status - The status code given by the error.\n */\n constructor(message: string, status: number) {\n super(message);\n this.status = status;\n this.name = 'HttpError';\n }\n}\n\n/**\n * Provides a hook for centralized exception handling.\n *\n * @extends ErrorHandler\n */\n@Injectable()\nexport class GlobalErrorHandler extends ErrorHandler {\n /**\n * An array of sentence sections that denote warnings.\n */\n private sentencesForWarningLogging: Array = [];\n\n /**\n * Initialization of the Global Error Handler.\n *\n * @param loggingService - A service that provides logging capabilities.\n * @param router - A service that provides navigation among views and URL manipulation capabilities.\n */\n constructor(private loggingService: LoggingService, private router: Router) {\n super();\n }\n\n /**\n * Handles different types of errors.\n *\n * @param error - An error objects thrown when a runtime errors occurs.\n */\n handleError(error: Error): void {\n this.logError(error);\n const message: string = error.message ? error.message : error.toString();\n\n // if (error.status) {\n // error = new Error(message);\n // }\n\n const errorTraceString: string = `Error message:\\n${message}.\\nStack trace: ${error.stack}`;\n\n const isWarning: boolean = this.isWarning(errorTraceString);\n if (isWarning) {\n this.loggingService.sendWarnLevelMessage(errorTraceString, { error });\n } else {\n this.loggingService.sendErrorLevelMessage(errorTraceString, this, { error });\n }\n\n throw error;\n }\n\n /**\n * Checks if an error is of type warning.\n *\n * @param errorTraceString - A description of the error and it's stack trace.\n * @returns true - If the error is of type warning.\n */\n private isWarning(errorTraceString: string): boolean {\n let isWarning: boolean = true;\n if (errorTraceString.includes('/src/app/')) {\n isWarning = false;\n }\n\n this.sentencesForWarningLogging.forEach((whiteListSentence: string) => {\n if (errorTraceString.includes(whiteListSentence)) {\n isWarning = true;\n }\n });\n\n return isWarning;\n }\n\n /**\n * Write appropriate logs according to the type of error.\n *\n * @param error - An error objects thrown when a runtime errors occurs.\n */\n logError(error: any): void {\n const route: string = this.router.url;\n if (error instanceof HttpErrorResponse) {\n this.loggingService.sendErrorLevelMessage(\n `There was an HTTP error on route ${route}.\\n${error.message}.\\nStatus code: ${\n (error as HttpErrorResponse).status\n }`,\n this,\n { error }\n );\n } else if (error instanceof TypeError) {\n this.loggingService.sendErrorLevelMessage(\n `There was a Type error on route ${route}.\\n${error.message}`,\n this,\n { error }\n );\n } else if (error instanceof Error) {\n this.loggingService.sendErrorLevelMessage(\n `There was a general error on route ${route}.\\n${error.message}`,\n this,\n { error }\n );\n } else {\n this.loggingService.sendErrorLevelMessage(\n `Nobody threw an error but something happened on route ${route}!`,\n this,\n { error }\n );\n }\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interceptors/HttpConfigInterceptor.html":{"url":"interceptors/HttpConfigInterceptor.html","title":"interceptor - HttpConfigInterceptor","body":"\n \n\n\n\n\n\n\n\n\n\n Interceptors\n HttpConfigInterceptor\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_interceptors/http-config.interceptor.ts\n \n\n \n Description\n \n \n Intercepts and handles setting of configurations to outgoing HTTP request. \n\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n intercept\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in src/app/_interceptors/http-config.interceptor.ts:10\n \n \n\n \n \n Initialization of http config interceptor. \n\n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n intercept\n \n \n \n \n \n \n \nintercept(request: HttpRequest, next: HttpHandler)\n \n \n\n\n \n \n Defined in src/app/_interceptors/http-config.interceptor.ts:21\n \n \n\n\n \n \n Intercepts HTTP requests.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n request\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \nAn outgoing HTTP request with an optional typed body.\n\n\n \n \n \n next\n \n HttpHandler\n \n\n \n No\n \n\n\n \n \nThe next HTTP handler or the outgoing request dispatcher.\n\n\n \n \n \n \n \n \n \n \n Returns : Observable>\n\n \n \n The forwarded request.\n\n \n \n \n \n \n\n\n \n\n\n \n import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http';\nimport { Injectable } from '@angular/core';\n\n// Third party imports\nimport { Observable } from 'rxjs';\n\n/** Intercepts and handles setting of configurations to outgoing HTTP request. */\n@Injectable()\nexport class HttpConfigInterceptor implements HttpInterceptor {\n /** Initialization of http config interceptor. */\n constructor() {}\n\n /**\n * Intercepts HTTP requests.\n *\n * @param request - An outgoing HTTP request with an optional typed body.\n * @param next - The next HTTP handler or the outgoing request dispatcher.\n * @returns The forwarded request.\n */\n intercept(request: HttpRequest, next: HttpHandler): Observable> {\n // const token: string = sessionStorage.getItem(btoa('CICADA_SESSION_TOKEN'));\n\n // if (token) {\n // request = request.clone({headers: request.headers.set('Authorization', 'Bearer ' + token)});\n // }\n\n return next.handle(request);\n }\n}\n\n \n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/HttpError.html":{"url":"classes/HttpError.html","title":"class - HttpError","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n HttpError\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_helpers/global-error-handler.ts\n \n\n \n Description\n \n \n A generalized http response error.\n\n \n\n \n Extends\n \n \n Error\n \n\n\n \n Example\n \n \n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n status\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(message: string, status: number)\n \n \n \n \n Defined in src/app/_helpers/global-error-handler.ts:16\n \n \n\n \n \n Initialize the HttpError class.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n message\n \n \n string\n \n \n \n No\n \n \n \n \nThe message given by the error.\n\n\n \n \n \n status\n \n \n number\n \n \n \n No\n \n \n \n \nThe status code given by the error.\n\n\n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n status\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Defined in src/app/_helpers/global-error-handler.ts:16\n \n \n\n \n \n The error's status code. \n\n \n \n\n \n \n\n\n\n\n\n\n\n\n \n\n\n \n import { HttpErrorResponse } from '@angular/common/http';\nimport { ErrorHandler, Injectable } from '@angular/core';\nimport { Router } from '@angular/router';\n\n// Application imports\nimport { LoggingService } from '@app/_services/logging.service';\n\n/**\n * A generalized http response error.\n *\n * @extends Error\n */\nexport class HttpError extends Error {\n /** The error's status code. */\n public status: number;\n\n /**\n * Initialize the HttpError class.\n *\n * @param message - The message given by the error.\n * @param status - The status code given by the error.\n */\n constructor(message: string, status: number) {\n super(message);\n this.status = status;\n this.name = 'HttpError';\n }\n}\n\n/**\n * Provides a hook for centralized exception handling.\n *\n * @extends ErrorHandler\n */\n@Injectable()\nexport class GlobalErrorHandler extends ErrorHandler {\n /**\n * An array of sentence sections that denote warnings.\n */\n private sentencesForWarningLogging: Array = [];\n\n /**\n * Initialization of the Global Error Handler.\n *\n * @param loggingService - A service that provides logging capabilities.\n * @param router - A service that provides navigation among views and URL manipulation capabilities.\n */\n constructor(private loggingService: LoggingService, private router: Router) {\n super();\n }\n\n /**\n * Handles different types of errors.\n *\n * @param error - An error objects thrown when a runtime errors occurs.\n */\n handleError(error: Error): void {\n this.logError(error);\n const message: string = error.message ? error.message : error.toString();\n\n // if (error.status) {\n // error = new Error(message);\n // }\n\n const errorTraceString: string = `Error message:\\n${message}.\\nStack trace: ${error.stack}`;\n\n const isWarning: boolean = this.isWarning(errorTraceString);\n if (isWarning) {\n this.loggingService.sendWarnLevelMessage(errorTraceString, { error });\n } else {\n this.loggingService.sendErrorLevelMessage(errorTraceString, this, { error });\n }\n\n throw error;\n }\n\n /**\n * Checks if an error is of type warning.\n *\n * @param errorTraceString - A description of the error and it's stack trace.\n * @returns true - If the error is of type warning.\n */\n private isWarning(errorTraceString: string): boolean {\n let isWarning: boolean = true;\n if (errorTraceString.includes('/src/app/')) {\n isWarning = false;\n }\n\n this.sentencesForWarningLogging.forEach((whiteListSentence: string) => {\n if (errorTraceString.includes(whiteListSentence)) {\n isWarning = true;\n }\n });\n\n return isWarning;\n }\n\n /**\n * Write appropriate logs according to the type of error.\n *\n * @param error - An error objects thrown when a runtime errors occurs.\n */\n logError(error: any): void {\n const route: string = this.router.url;\n if (error instanceof HttpErrorResponse) {\n this.loggingService.sendErrorLevelMessage(\n `There was an HTTP error on route ${route}.\\n${error.message}.\\nStatus code: ${\n (error as HttpErrorResponse).status\n }`,\n this,\n { error }\n );\n } else if (error instanceof TypeError) {\n this.loggingService.sendErrorLevelMessage(\n `There was a Type error on route ${route}.\\n${error.message}`,\n this,\n { error }\n );\n } else if (error instanceof Error) {\n this.loggingService.sendErrorLevelMessage(\n `There was a general error on route ${route}.\\n${error.message}`,\n this,\n { error }\n );\n } else {\n this.loggingService.sendErrorLevelMessage(\n `Nobody threw an error but something happened on route ${route}!`,\n this,\n { error }\n );\n }\n }\n}\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/LocationService.html":{"url":"injectables/LocationService.html","title":"injectable - LocationService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n LocationService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_services/location.service.ts\n \n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getAreaNameByLocation\n \n \n getAreaNames\n \n \n getAreaTypeByArea\n \n \n getAreaTypes\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(httpClient: HttpClient)\n \n \n \n \n Defined in src/app/_services/location.service.ts:10\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n httpClient\n \n \n HttpClient\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n getAreaNameByLocation\n \n \n \n \n \n \n \ngetAreaNameByLocation(location: string)\n \n \n\n\n \n \n Defined in src/app/_services/location.service.ts:17\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n location\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getAreaNames\n \n \n \n \n \n \n \ngetAreaNames()\n \n \n\n\n \n \n Defined in src/app/_services/location.service.ts:13\n \n \n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n getAreaTypeByArea\n \n \n \n \n \n \n \ngetAreaTypeByArea(area: string)\n \n \n\n\n \n \n Defined in src/app/_services/location.service.ts:25\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n area\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getAreaTypes\n \n \n \n \n \n \n \ngetAreaTypes()\n \n \n\n\n \n \n Defined in src/app/_services/location.service.ts:21\n \n \n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { Observable } from 'rxjs';\nimport { environment } from '@src/environments/environment';\nimport { first } from 'rxjs/operators';\nimport { HttpClient } from '@angular/common/http';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class LocationService {\n constructor(private httpClient: HttpClient) {}\n\n getAreaNames(): Observable {\n return this.httpClient.get(`${environment.cicMetaUrl}/areanames`);\n }\n\n getAreaNameByLocation(location: string): Observable {\n return this.httpClient.get(`${environment.cicMetaUrl}/areanames/${location.toLowerCase()}`);\n }\n\n getAreaTypes(): Observable {\n return this.httpClient.get(`${environment.cicMetaUrl}/areatypes`).pipe(first());\n }\n\n getAreaTypeByArea(area: string): Observable {\n return this.httpClient\n .get(`${environment.cicMetaUrl}/areatypes/${area.toLowerCase()}`)\n .pipe(first());\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interceptors/LoggingInterceptor.html":{"url":"interceptors/LoggingInterceptor.html","title":"interceptor - LoggingInterceptor","body":"\n \n\n\n\n\n\n\n\n\n\n Interceptors\n LoggingInterceptor\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_interceptors/logging.interceptor.ts\n \n\n \n Description\n \n \n Intercepts and handles of events from outgoing HTTP request. \n\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n intercept\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(loggingService: LoggingService)\n \n \n \n \n Defined in src/app/_interceptors/logging.interceptor.ts:20\n \n \n\n \n \n Initialization of the logging interceptor.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n loggingService\n \n \n LoggingService\n \n \n \n No\n \n \n \n \nA service that provides logging capabilities.\n\n\n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n intercept\n \n \n \n \n \n \n \nintercept(request: HttpRequest, next: HttpHandler)\n \n \n\n\n \n \n Defined in src/app/_interceptors/logging.interceptor.ts:35\n \n \n\n\n \n \n Intercepts HTTP requests.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n request\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \nAn outgoing HTTP request with an optional typed body.\n\n\n \n \n \n next\n \n HttpHandler\n \n\n \n No\n \n\n\n \n \nThe next HTTP handler or the outgoing request dispatcher.\n\n\n \n \n \n \n \n \n \n \n Returns : Observable>\n\n \n \n The forwarded request.\n\n \n \n \n \n \n\n\n \n\n\n \n import {\n HttpEvent,\n HttpHandler,\n HttpInterceptor,\n HttpRequest,\n HttpResponse,\n} from '@angular/common/http';\nimport { Injectable } from '@angular/core';\n\n// Third party imports\nimport { Observable } from 'rxjs';\nimport { finalize, tap } from 'rxjs/operators';\n\n// Application imports\nimport { LoggingService } from '@app/_services/logging.service';\n\n/** Intercepts and handles of events from outgoing HTTP request. */\n@Injectable()\nexport class LoggingInterceptor implements HttpInterceptor {\n /**\n * Initialization of the logging interceptor.\n *\n * @param loggingService - A service that provides logging capabilities.\n */\n constructor(private loggingService: LoggingService) {}\n\n /**\n * Intercepts HTTP requests.\n *\n * @param request - An outgoing HTTP request with an optional typed body.\n * @param next - The next HTTP handler or the outgoing request dispatcher.\n * @returns The forwarded request.\n */\n intercept(request: HttpRequest, next: HttpHandler): Observable> {\n return next.handle(request);\n // this.loggingService.sendInfoLevelMessage(request);\n // const startTime: number = Date.now();\n // let status: string;\n //\n // return next.handle(request).pipe(tap(event => {\n // status = '';\n // if (event instanceof HttpResponse) {\n // status = 'succeeded';\n // }\n // }, error => status = 'failed'),\n // finalize(() => {\n // const elapsedTime: number = Date.now() - startTime;\n // const message: string = `${request.method} request for ${request.urlWithParams} ${status} in ${elapsedTime} ms`;\n // this.loggingService.sendInfoLevelMessage(message);\n // }));\n }\n}\n\n \n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/LoggingService.html":{"url":"injectables/LoggingService.html","title":"injectable - LoggingService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n LoggingService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_services/logging.service.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n canDebug\n \n \n env\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n sendDebugLevelMessage\n \n \n sendErrorLevelMessage\n \n \n sendFatalLevelMessage\n \n \n sendInfoLevelMessage\n \n \n sendLogLevelMessage\n \n \n sendTraceLevelMessage\n \n \n sendWarnLevelMessage\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(logger: NGXLogger)\n \n \n \n \n Defined in src/app/_services/logging.service.ts:9\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n logger\n \n \n NGXLogger\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n sendDebugLevelMessage\n \n \n \n \n \n \n \nsendDebugLevelMessage(message: any, source: any, error: any)\n \n \n\n\n \n \n Defined in src/app/_services/logging.service.ts:22\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n message\n \n any\n \n\n \n No\n \n\n\n \n \n source\n \n any\n \n\n \n No\n \n\n\n \n \n error\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n sendErrorLevelMessage\n \n \n \n \n \n \n \nsendErrorLevelMessage(message: any, source: any, error: any)\n \n \n\n\n \n \n Defined in src/app/_services/logging.service.ts:38\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n message\n \n any\n \n\n \n No\n \n\n\n \n \n source\n \n any\n \n\n \n No\n \n\n\n \n \n error\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n sendFatalLevelMessage\n \n \n \n \n \n \n \nsendFatalLevelMessage(message: any, source: any, error: any)\n \n \n\n\n \n \n Defined in src/app/_services/logging.service.ts:42\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n message\n \n any\n \n\n \n No\n \n\n\n \n \n source\n \n any\n \n\n \n No\n \n\n\n \n \n error\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n sendInfoLevelMessage\n \n \n \n \n \n \n \nsendInfoLevelMessage(message: any)\n \n \n\n\n \n \n Defined in src/app/_services/logging.service.ts:26\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n message\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n sendLogLevelMessage\n \n \n \n \n \n \n \nsendLogLevelMessage(message: any, source: any, error: any)\n \n \n\n\n \n \n Defined in src/app/_services/logging.service.ts:30\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n message\n \n any\n \n\n \n No\n \n\n\n \n \n source\n \n any\n \n\n \n No\n \n\n\n \n \n error\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n sendTraceLevelMessage\n \n \n \n \n \n \n \nsendTraceLevelMessage(message: any, source: any, error: any)\n \n \n\n\n \n \n Defined in src/app/_services/logging.service.ts:18\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n message\n \n any\n \n\n \n No\n \n\n\n \n \n source\n \n any\n \n\n \n No\n \n\n\n \n \n error\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n sendWarnLevelMessage\n \n \n \n \n \n \n \nsendWarnLevelMessage(message: any, error: any)\n \n \n\n\n \n \n Defined in src/app/_services/logging.service.ts:34\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n message\n \n any\n \n\n \n No\n \n\n\n \n \n error\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n canDebug\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in src/app/_services/logging.service.ts:9\n \n \n\n\n \n \n \n \n \n \n \n \n \n env\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/_services/logging.service.ts:8\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable, isDevMode } from '@angular/core';\nimport { NGXLogger } from 'ngx-logger';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class LoggingService {\n env: string;\n canDebug: boolean;\n\n constructor(private logger: NGXLogger) {\n // TRACE|DEBUG|INFO|LOG|WARN|ERROR|FATAL|OFF\n if (isDevMode()) {\n this.sendInfoLevelMessage('Dropping into debug mode');\n }\n }\n\n sendTraceLevelMessage(message: any, source: any, error: any): void {\n this.logger.trace(message, source, error);\n }\n\n sendDebugLevelMessage(message: any, source: any, error: any): void {\n this.logger.debug(message, source, error);\n }\n\n sendInfoLevelMessage(message: any): void {\n this.logger.info(message);\n }\n\n sendLogLevelMessage(message: any, source: any, error: any): void {\n this.logger.log(message, source, error);\n }\n\n sendWarnLevelMessage(message: any, error: any): void {\n this.logger.warn(message, error);\n }\n\n sendErrorLevelMessage(message: any, source: any, error: any): void {\n this.logger.error(message, source, error);\n }\n\n sendFatalLevelMessage(message: any, source: any, error: any): void {\n this.logger.fatal(message, source, error);\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"directives/MenuSelectionDirective.html":{"url":"directives/MenuSelectionDirective.html","title":"directive - MenuSelectionDirective","body":"\n \n\n\n\n\n\n\n\n Directives\n MenuSelectionDirective\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/shared/_directives/menu-selection.directive.ts\n \n\n\n\n\n \n Metadata\n \n \n\n \n Selector\n [appMenuSelection]\n \n\n \n \n \n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n onMenuSelect\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(elementRef: ElementRef, renderer: Renderer2)\n \n \n \n \n Defined in src/app/shared/_directives/menu-selection.directive.ts:6\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n elementRef\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n renderer\n \n \n Renderer2\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n onMenuSelect\n \n \n \n \n \n \n \nonMenuSelect()\n \n \n\n\n \n \n Defined in src/app/shared/_directives/menu-selection.directive.ts:16\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n\n\n \n\n\n \n import { Directive, ElementRef, Renderer2 } from '@angular/core';\n\n@Directive({\n selector: '[appMenuSelection]',\n})\nexport class MenuSelectionDirective {\n constructor(private elementRef: ElementRef, private renderer: Renderer2) {\n this.renderer.listen(this.elementRef.nativeElement, 'click', () => {\n const mediaQuery = window.matchMedia('(max-width: 768px)');\n if (mediaQuery.matches) {\n this.onMenuSelect();\n }\n });\n }\n\n onMenuSelect(): void {\n const sidebar: HTMLElement = document.getElementById('sidebar');\n if (!sidebar?.classList.contains('active')) {\n sidebar?.classList.add('active');\n }\n const content: HTMLElement = document.getElementById('content');\n if (!content?.classList.contains('active')) {\n content?.classList.add('active');\n }\n const sidebarCollapse: HTMLElement = document.getElementById('sidebarCollapse');\n if (sidebarCollapse?.classList.contains('active')) {\n sidebarCollapse?.classList.remove('active');\n }\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"directives/MenuToggleDirective.html":{"url":"directives/MenuToggleDirective.html","title":"directive - MenuToggleDirective","body":"\n \n\n\n\n\n\n\n\n Directives\n MenuToggleDirective\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/shared/_directives/menu-toggle.directive.ts\n \n\n\n\n\n \n Metadata\n \n \n\n \n Selector\n [appMenuToggle]\n \n\n \n \n \n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n onMenuToggle\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(elementRef: ElementRef, renderer: Renderer2)\n \n \n \n \n Defined in src/app/shared/_directives/menu-toggle.directive.ts:6\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n elementRef\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n renderer\n \n \n Renderer2\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n onMenuToggle\n \n \n \n \n \n \n \nonMenuToggle()\n \n \n\n\n \n \n Defined in src/app/shared/_directives/menu-toggle.directive.ts:14\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n\n\n \n\n\n \n import { Directive, ElementRef, Renderer2 } from '@angular/core';\n\n@Directive({\n selector: '[appMenuToggle]',\n})\nexport class MenuToggleDirective {\n constructor(private elementRef: ElementRef, private renderer: Renderer2) {\n this.renderer.listen(this.elementRef.nativeElement, 'click', () => {\n this.onMenuToggle();\n });\n }\n\n // Menu Trigger\n onMenuToggle(): void {\n const sidebar: HTMLElement = document.getElementById('sidebar');\n sidebar?.classList.toggle('active');\n const content: HTMLElement = document.getElementById('content');\n content?.classList.toggle('active');\n const sidebarCollapse: HTMLElement = document.getElementById('sidebarCollapse');\n sidebarCollapse?.classList.toggle('active');\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Meta.html":{"url":"interfaces/Meta.html","title":"interface - Meta","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Meta\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/account.ts\n \n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n data\n \n \n id\n \n \n signature\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n data\n \n \n \n \n data: AccountDetails\n\n \n \n\n\n \n \n Type : AccountDetails\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n id\n \n \n \n \n id: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n signature\n \n \n \n \n signature: Signature\n\n \n \n\n\n \n \n Type : Signature\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n interface AccountDetails {\n date_registered: number;\n gender: string;\n age?: string;\n type?: string;\n balance?: number;\n identities: {\n evm: {\n 'bloxberg:8996': string[];\n 'oldchain:1': string[];\n };\n latitude: number;\n longitude: number;\n };\n location: {\n area?: string;\n area_name: string;\n area_type?: string;\n };\n products: string[];\n category?: string;\n vcard: {\n email: [\n {\n value: string;\n }\n ];\n fn: [\n {\n value: string;\n }\n ];\n n: [\n {\n value: string[];\n }\n ];\n tel: [\n {\n meta: {\n TYP: string[];\n };\n value: string;\n }\n ];\n version: [\n {\n value: string;\n }\n ];\n };\n}\n\ninterface Signature {\n algo: string;\n data: string;\n digest: string;\n engine: string;\n}\n\ninterface Meta {\n data: AccountDetails;\n id: string;\n signature: Signature;\n}\n\ninterface MetaResponse {\n id: string;\n m: Meta;\n}\n\nconst defaultAccount: AccountDetails = {\n date_registered: Date.now(),\n gender: 'other',\n identities: {\n evm: {\n 'bloxberg:8996': [''],\n 'oldchain:1': [''],\n },\n latitude: 0,\n longitude: 0,\n },\n location: {\n area_name: 'Kilifi',\n },\n products: [],\n vcard: {\n email: [\n {\n value: '',\n },\n ],\n fn: [\n {\n value: 'Sarafu Contract',\n },\n ],\n n: [\n {\n value: ['Sarafu', 'Contract'],\n },\n ],\n tel: [\n {\n meta: {\n TYP: [],\n },\n value: '',\n },\n ],\n version: [\n {\n value: '3.0',\n },\n ],\n },\n};\n\nexport { AccountDetails, Signature, Meta, MetaResponse, defaultAccount };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/MetaResponse.html":{"url":"interfaces/MetaResponse.html","title":"interface - MetaResponse","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n MetaResponse\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/account.ts\n \n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n id\n \n \n m\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n id\n \n \n \n \n id: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n m\n \n \n \n \n m: Meta\n\n \n \n\n\n \n \n Type : Meta\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n interface AccountDetails {\n date_registered: number;\n gender: string;\n age?: string;\n type?: string;\n balance?: number;\n identities: {\n evm: {\n 'bloxberg:8996': string[];\n 'oldchain:1': string[];\n };\n latitude: number;\n longitude: number;\n };\n location: {\n area?: string;\n area_name: string;\n area_type?: string;\n };\n products: string[];\n category?: string;\n vcard: {\n email: [\n {\n value: string;\n }\n ];\n fn: [\n {\n value: string;\n }\n ];\n n: [\n {\n value: string[];\n }\n ];\n tel: [\n {\n meta: {\n TYP: string[];\n };\n value: string;\n }\n ];\n version: [\n {\n value: string;\n }\n ];\n };\n}\n\ninterface Signature {\n algo: string;\n data: string;\n digest: string;\n engine: string;\n}\n\ninterface Meta {\n data: AccountDetails;\n id: string;\n signature: Signature;\n}\n\ninterface MetaResponse {\n id: string;\n m: Meta;\n}\n\nconst defaultAccount: AccountDetails = {\n date_registered: Date.now(),\n gender: 'other',\n identities: {\n evm: {\n 'bloxberg:8996': [''],\n 'oldchain:1': [''],\n },\n latitude: 0,\n longitude: 0,\n },\n location: {\n area_name: 'Kilifi',\n },\n products: [],\n vcard: {\n email: [\n {\n value: '',\n },\n ],\n fn: [\n {\n value: 'Sarafu Contract',\n },\n ],\n n: [\n {\n value: ['Sarafu', 'Contract'],\n },\n ],\n tel: [\n {\n meta: {\n TYP: [],\n },\n value: '',\n },\n ],\n version: [\n {\n value: '3.0',\n },\n ],\n },\n};\n\nexport { AccountDetails, Signature, Meta, MetaResponse, defaultAccount };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interceptors/MockBackendInterceptor.html":{"url":"interceptors/MockBackendInterceptor.html","title":"interceptor - MockBackendInterceptor","body":"\n \n\n\n\n\n\n\n\n\n\n Interceptors\n MockBackendInterceptor\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_helpers/mock-backend.ts\n \n\n \n Description\n \n \n Intercepts HTTP requests and handles some specified requests internally.\nProvides a backend that can handle requests for certain data items.\n\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n intercept\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n intercept\n \n \n \n \n \n \n \nintercept(request: HttpRequest, next: HttpHandler)\n \n \n\n\n \n \n Defined in src/app/_helpers/mock-backend.ts:1097\n \n \n\n\n \n \n Intercepts HTTP requests.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n request\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \nAn outgoing HTTP request with an optional typed body.\n\n\n \n \n \n next\n \n HttpHandler\n \n\n \n No\n \n\n\n \n \nThe next HTTP handler or the outgoing request dispatcher.\n\n\n \n \n \n \n \n \n \n \n Returns : Observable>\n\n \n \n The response from the resolved request.\n\n \n \n \n \n \n\n\n \n\n\n \n import {\n HTTP_INTERCEPTORS,\n HttpEvent,\n HttpHandler,\n HttpInterceptor,\n HttpRequest,\n HttpResponse,\n} from '@angular/common/http';\nimport { Injectable } from '@angular/core';\n\n// Third party imports\nimport { Observable, of, throwError } from 'rxjs';\nimport { delay, dematerialize, materialize, mergeMap } from 'rxjs/operators';\n\n// Application imports\nimport { Action, AreaName, AreaType, Category, Token } from '@app/_models';\n\n/** A mock of the curated account types. */\nconst accountTypes: Array = ['user', 'cashier', 'vendor', 'tokenagent', 'group'];\n\n/** A mock of actions made by the admin staff. */\nconst actions: Array = [\n { id: 1, user: 'Tom', role: 'enroller', action: 'Disburse RSV 100', approval: false },\n { id: 2, user: 'Christine', role: 'admin', action: 'Change user phone number', approval: true },\n { id: 3, user: 'Will', role: 'superadmin', action: 'Reclaim RSV 1000', approval: true },\n { id: 4, user: 'Vivian', role: 'enroller', action: 'Complete user profile', approval: true },\n { id: 5, user: 'Jack', role: 'enroller', action: 'Reclaim RSV 200', approval: false },\n { id: 6, user: 'Patience', role: 'enroller', action: 'Change user information', approval: false },\n];\n\n/** A mock of curated area names. */\nconst areaNames: Array = [\n {\n name: 'Mukuru Nairobi',\n locations: [\n 'kayaba',\n 'kayba',\n 'kambi',\n 'mukuru',\n 'masai',\n 'hazina',\n 'south',\n 'tetra',\n 'tetrapak',\n 'ruben',\n 'rueben',\n 'kingston',\n 'korokocho',\n 'kingstone',\n 'kamongo',\n 'lungalunga',\n 'sinai',\n 'sigei',\n 'lungu',\n 'lunga lunga',\n 'owino road',\n 'seigei',\n ],\n },\n {\n name: 'Kinango Kwale',\n locations: [\n 'amani',\n 'bofu',\n 'chibuga',\n 'chikomani',\n 'chilongoni',\n 'chigojoni',\n 'chinguluni',\n 'chigato',\n 'chigale',\n 'chikole',\n 'chilongoni',\n 'chilumani',\n 'chigojoni',\n 'chikomani',\n 'chizini',\n 'chikomeni',\n 'chidzuvini',\n 'chidzivuni',\n 'chikuyu',\n 'chizingo',\n 'doti',\n 'dzugwe',\n 'dzivani',\n 'dzovuni',\n 'hanje',\n 'kasemeni',\n 'katundani',\n 'kibandaogo',\n 'kibandaongo',\n 'kwale',\n 'kinango',\n 'kidzuvini',\n 'kalalani',\n 'kafuduni',\n 'kaloleni',\n 'kilibole',\n 'lutsangani',\n 'peku',\n 'gona',\n 'guro',\n 'gandini',\n 'mkanyeni',\n 'myenzeni',\n 'miyenzeni',\n 'miatsiani',\n 'mienzeni',\n 'mnyenzeni',\n 'minyenzeni',\n 'miyani',\n 'mioleni',\n 'makuluni',\n 'mariakani',\n 'makobeni',\n 'madewani',\n 'mwangaraba',\n 'mwashanga',\n 'miloeni',\n 'mabesheni',\n 'mazeras',\n 'mazera',\n 'mlola',\n 'muugano',\n 'mulunguni',\n 'mabesheni',\n 'miatsani',\n 'miatsiani',\n 'mwache',\n 'mwangani',\n 'mwehavikonje',\n 'miguneni',\n 'nzora',\n 'nzovuni',\n 'vikinduni',\n 'vikolani',\n 'vitangani',\n 'viogato',\n 'vyogato',\n 'vistangani',\n 'yapha',\n 'yava',\n 'yowani',\n 'ziwani',\n 'majengo',\n 'matuga',\n 'vigungani',\n 'vidziweni',\n 'vinyunduni',\n 'ukunda',\n 'kokotoni',\n 'mikindani',\n ],\n },\n {\n name: 'Misc Nairobi',\n locations: [\n 'nairobi',\n 'west',\n 'lindi',\n 'kibera',\n 'kibira',\n 'kibra',\n 'makina',\n 'soweto',\n 'olympic',\n 'kangemi',\n 'ruiru',\n 'congo',\n 'kawangware',\n 'kwangware',\n 'donholm',\n 'dagoreti',\n 'dandora',\n 'kabete',\n 'sinai',\n 'donhom',\n 'donholm',\n 'huruma',\n 'kitengela',\n 'makadara',\n ',mlolongo',\n 'kenyatta',\n 'mlolongo',\n 'tassia',\n 'tasia',\n 'gatina',\n '56',\n 'industrial',\n 'kariobangi',\n 'kasarani',\n 'kayole',\n 'mathare',\n 'pipe',\n 'juja',\n 'uchumi',\n 'jogoo',\n 'umoja',\n 'thika',\n 'kikuyu',\n 'stadium',\n 'buru buru',\n 'ngong',\n 'starehe',\n 'mwiki',\n 'fuata',\n 'kware',\n 'kabiro',\n 'embakassi',\n 'embakasi',\n 'kmoja',\n 'east',\n 'githurai',\n 'landi',\n 'langata',\n 'limuru',\n 'mathere',\n 'dagoretti',\n 'kirembe',\n 'muugano',\n 'mwiki',\n 'toi market',\n ],\n },\n {\n name: 'Misc Mombasa',\n locations: [\n 'mombasa',\n 'likoni',\n 'bangla',\n 'bangladesh',\n 'kizingo',\n 'old town',\n 'makupa',\n 'mvita',\n 'ngombeni',\n 'ngómbeni',\n 'ombeni',\n 'magongo',\n 'miritini',\n 'changamwe',\n 'jomvu',\n 'ohuru',\n 'tudor',\n 'diani',\n ],\n },\n {\n name: 'Kisauni',\n locations: [\n 'bamburi',\n 'kisauni',\n 'mworoni',\n 'nyali',\n 'shanzu',\n 'bombolulu',\n 'mtopanga',\n 'mjambere',\n 'majaoni',\n 'manyani',\n 'magogoni',\n 'junda',\n 'mwakirunge',\n 'mshomoroni',\n ],\n },\n {\n name: 'Kilifi',\n locations: [\n 'kilfi',\n 'kilifi',\n 'mtwapa',\n 'takaungu',\n 'makongeni',\n 'mnarani',\n 'mnarani',\n 'office',\n 'g.e',\n 'ge',\n 'raibai',\n 'ribe',\n ],\n },\n {\n name: 'Kakuma',\n locations: ['kakuma'],\n },\n {\n name: 'Kitui',\n locations: ['kitui', 'mwingi'],\n },\n {\n name: 'Nyanza',\n locations: [\n 'busia',\n 'nyalgunga',\n 'mbita',\n 'siaya',\n 'kisumu',\n 'nyalenda',\n 'hawinga',\n 'rangala',\n 'uyoma',\n 'mumias',\n 'homabay',\n 'homaboy',\n 'migori',\n 'kusumu',\n ],\n },\n {\n name: 'Misc Rural Counties',\n locations: [\n 'makueni',\n 'meru',\n 'kisii',\n 'bomet',\n 'machakos',\n 'bungoma',\n 'eldoret',\n 'kakamega',\n 'kericho',\n 'kajiado',\n 'nandi',\n 'nyeri',\n 'wote',\n 'kiambu',\n 'mwea',\n 'nakuru',\n 'narok',\n ],\n },\n {\n name: 'other',\n locations: ['other', 'none', 'unknown'],\n },\n];\n\n/** A mock of curated area types. */\nconst areaTypes: Array = [\n {\n name: 'urban',\n area: ['urban', 'nairobi', 'mombasa'],\n },\n {\n name: 'rural',\n area: ['rural', 'kakuma', 'kwale', 'kinango', 'kitui', 'nyanza'],\n },\n {\n name: 'periurban',\n area: ['kilifi', 'periurban'],\n },\n {\n name: 'other',\n area: ['other'],\n },\n];\n\n/** A mock of the user's business categories */\nconst categories: Array = [\n {\n name: 'system',\n products: ['system', 'office main', 'office main phone'],\n },\n {\n name: 'education',\n products: [\n 'book',\n 'coach',\n 'teacher',\n 'sch',\n 'school',\n 'pry',\n 'education',\n 'student',\n 'mwalimu',\n 'maalim',\n 'consultant',\n 'consult',\n 'college',\n 'university',\n 'lecturer',\n 'primary',\n 'secondary',\n 'daycare',\n 'babycare',\n 'baby care',\n 'elim',\n 'eimu',\n 'nursery',\n 'red cross',\n 'volunteer',\n 'instructor',\n 'journalist',\n 'lesson',\n 'academy',\n 'headmistress',\n 'headteacher',\n 'cyber',\n 'researcher',\n 'professor',\n 'demo',\n 'expert',\n 'tution',\n 'tuition',\n 'children',\n 'headmaster',\n 'educator',\n 'Marital counsellor',\n 'counsellor',\n 'trainer',\n 'vijana',\n 'youth',\n 'intern',\n 'redcross',\n 'KRCS',\n 'danish',\n 'science',\n 'data',\n 'facilitator',\n 'vitabu',\n 'kitabu',\n ],\n },\n {\n name: 'faith',\n products: [\n 'pastor',\n 'imam',\n 'madrasa',\n 'religous',\n 'religious',\n 'ustadh',\n 'ustadhi',\n 'Marital counsellor',\n 'counsellor',\n 'church',\n 'kanisa',\n 'mksiti',\n 'donor',\n ],\n },\n {\n name: 'government',\n products: [\n 'elder',\n 'chief',\n 'police',\n 'government',\n 'country',\n 'county',\n 'soldier',\n 'village admin',\n 'ward',\n 'leader',\n 'kra',\n 'mailman',\n 'immagration',\n 'immigration',\n ],\n },\n {\n name: 'environment',\n products: [\n 'conservation',\n 'toilet',\n 'choo',\n 'garbage',\n 'fagio',\n 'waste',\n 'tree',\n 'taka',\n 'scrap',\n 'cleaning',\n 'gardener',\n 'rubbish',\n 'usafi',\n 'mazingira',\n 'miti',\n 'trash',\n 'cleaner',\n 'plastic',\n 'collection',\n 'seedling',\n 'seedlings',\n 'recycling',\n ],\n },\n {\n name: 'farming',\n products: [\n 'farm',\n 'farmer',\n 'farming',\n 'mkulima',\n 'kulima',\n 'ukulima',\n 'wakulima',\n 'jembe',\n 'shamba',\n ],\n },\n {\n name: 'labour',\n products: [\n 'artist',\n 'agent',\n 'guard',\n 'askari',\n 'accountant',\n 'baker',\n 'beadwork',\n 'beauty',\n 'business',\n 'barber',\n 'casual',\n 'electrian',\n 'caretaker',\n 'car wash',\n 'capenter',\n 'construction',\n 'chef',\n 'catering',\n 'cobler',\n 'cobbler',\n 'carwash',\n 'dhobi',\n 'landlord',\n 'design',\n 'carpenter',\n 'fundi',\n 'hawking',\n 'hawker',\n 'househelp',\n 'hsehelp',\n 'house help',\n 'help',\n 'housegirl',\n 'kushona',\n 'juakali',\n 'jualikali',\n 'juacali',\n 'jua kali',\n 'shepherd',\n 'makuti',\n 'kujenga',\n 'kinyozi',\n 'kazi',\n 'knitting',\n 'kufua',\n 'fua',\n 'hustler',\n 'biashara',\n 'labour',\n 'labor',\n 'laundry',\n 'repair',\n 'hair',\n 'posho',\n 'mill',\n 'mtambo',\n 'uvuvi',\n 'engineer',\n 'manager',\n 'tailor',\n 'nguo',\n 'mason',\n 'mtumba',\n 'garage',\n 'mechanic',\n 'mjenzi',\n 'mfugaji',\n 'painter',\n 'receptionist',\n 'printing',\n 'programming',\n 'plumb',\n 'charging',\n 'salon',\n 'mpishi',\n 'msusi',\n 'mgema',\n 'footballer',\n 'photocopy',\n 'peddler',\n 'staff',\n 'sales',\n 'service',\n 'saloon',\n 'seremala',\n 'security',\n 'insurance',\n 'secretary',\n 'shoe',\n 'shepard',\n 'shephard',\n 'tout',\n 'tv',\n 'mvuvi',\n 'mawe',\n 'majani',\n 'maembe',\n 'freelance',\n 'mjengo',\n 'electronics',\n 'photographer',\n 'programmer',\n 'electrician',\n 'washing',\n 'bricks',\n 'welder',\n 'welding',\n 'working',\n 'worker',\n 'watchman',\n 'waiter',\n 'waitress',\n 'viatu',\n 'yoga',\n 'guitarist',\n 'house',\n 'artisan',\n 'musician',\n 'trade',\n 'makonge',\n 'ujenzi',\n 'vendor',\n 'watchlady',\n 'marketing',\n 'beautician',\n 'photo',\n 'metal work',\n 'supplier',\n 'law firm',\n 'brewer',\n ],\n },\n {\n name: 'food',\n products: [\n 'avocado',\n 'bhajia',\n 'bajia',\n 'mbonga',\n 'bofu',\n 'beans',\n 'biscuits',\n 'biringanya',\n 'banana',\n 'bananas',\n 'crisps',\n 'chakula',\n 'coconut',\n 'chapati',\n 'cereal',\n 'chipo',\n 'chapo',\n 'chai',\n 'chips',\n 'cassava',\n 'cake',\n 'cereals',\n 'cook',\n 'corn',\n 'coffee',\n 'chicken',\n 'dagaa',\n 'donut',\n 'dough',\n 'groundnuts',\n 'hotel',\n 'holel',\n 'hoteli',\n 'butcher',\n 'butchery',\n 'fruit',\n 'food',\n 'fruits',\n 'fish',\n 'githeri',\n 'grocery',\n 'grocer',\n 'pojo',\n 'papa',\n 'goats',\n 'mabenda',\n 'mbenda',\n 'poultry',\n 'soda',\n 'peanuts',\n 'potatoes',\n 'samosa',\n 'soko',\n 'samaki',\n 'tomato',\n 'tomatoes',\n 'mchele',\n 'matunda',\n 'mango',\n 'melon',\n 'mellon',\n 'nyanya',\n 'nyama',\n 'omena',\n 'umena',\n 'ndizi',\n 'njugu',\n 'kamba kamba',\n 'khaimati',\n 'kaimati',\n 'kunde',\n 'kuku',\n 'kahawa',\n 'keki',\n 'muguka',\n 'miraa',\n 'milk',\n 'choma',\n 'maziwa',\n 'mboga',\n 'mbog',\n 'busaa',\n 'chumvi',\n 'cabbages',\n 'mabuyu',\n 'machungwa',\n 'mbuzi',\n 'mnazi',\n 'mchicha',\n 'ngombe',\n 'ngano',\n 'nazi',\n 'oranges',\n 'peanuts',\n 'mkate',\n 'bread',\n 'mikate',\n 'vitungu',\n 'sausages',\n 'maize',\n 'mbata',\n 'mchuzi',\n 'mchuuzi',\n 'mandazi',\n 'mbaazi',\n 'mahindi',\n 'maandazi',\n 'mogoka',\n 'meat',\n 'mhogo',\n 'mihogo',\n 'muhogo',\n 'maharagwe',\n 'miwa',\n 'mahamri',\n 'mitumba',\n 'simsim',\n 'porridge',\n 'pilau',\n 'vegetable',\n 'egg',\n 'mayai',\n 'mifugo',\n 'unga',\n 'good',\n 'sima',\n 'sweet',\n 'sweats',\n 'sambusa',\n 'snacks',\n 'sugar',\n 'suger',\n 'ugoro',\n 'sukari',\n 'soup',\n 'spinach',\n 'smokie',\n 'smokies',\n 'sukuma',\n 'tea',\n 'uji',\n 'ugali',\n 'uchuzi',\n 'uchuuzi',\n 'viazi',\n 'yoghurt',\n 'yogurt',\n 'wine',\n 'marondo',\n 'maandzi',\n 'matoke',\n 'omeno',\n 'onions',\n 'nzugu',\n 'korosho',\n 'barafu',\n 'juice',\n ],\n },\n {\n name: 'water',\n products: ['maji', 'water'],\n },\n {\n name: 'health',\n products: [\n 'agrovet',\n 'dispensary',\n 'barakoa',\n 'chemist',\n 'Chemicals',\n 'chv',\n 'doctor',\n 'daktari',\n 'dawa',\n 'hospital',\n 'herbalist',\n 'mganga',\n 'sabuni',\n 'soap',\n 'nurse',\n 'heath',\n 'community health worker',\n 'clinic',\n 'clinical',\n 'mask',\n 'medicine',\n 'lab technician',\n 'pharmacy',\n 'cosmetics',\n 'veterinary',\n 'vet',\n 'sickly',\n 'emergency response',\n 'emergency',\n ],\n },\n {\n name: 'savings',\n products: ['chama', 'group', 'savings', 'loan', 'silc', 'vsla', 'credit', 'finance'],\n },\n {\n name: 'shop',\n products: [\n 'bag',\n 'bead',\n 'belt',\n 'bedding',\n 'jik',\n 'bed',\n 'cement',\n 'botique',\n 'boutique',\n 'lines',\n 'kibanda',\n 'kiosk',\n 'spareparts',\n 'candy',\n 'cloth',\n 'electricals',\n 'mutumba',\n 'cafe',\n 'leso',\n 'lesso',\n 'duka',\n 'spare parts',\n 'socks',\n 'malimali',\n 'mitungi',\n 'mali mali',\n 'hardware',\n 'detergent',\n 'detergents',\n 'dera',\n 'retail',\n 'kamba',\n 'pombe',\n 'pampers',\n 'pool',\n 'phone',\n 'simu',\n 'mangwe',\n 'mikeka',\n 'movie',\n 'shop',\n 'acces',\n 'mchanga',\n 'uto',\n 'airtime',\n 'matress',\n 'mattress',\n 'mattresses',\n 'mpsea',\n 'mpesa',\n 'shirt',\n 'wholesaler',\n 'perfume',\n 'playstation',\n 'tissue',\n 'vikapu',\n 'uniform',\n 'flowers',\n 'vitenge',\n 'utencils',\n 'utensils',\n 'station',\n 'jewel',\n 'pool table',\n 'club',\n 'pub',\n 'bar',\n 'furniture',\n 'm-pesa',\n 'vyombo',\n ],\n },\n {\n name: 'transport',\n products: [\n 'kebeba',\n 'beba',\n 'bebabeba',\n 'bike',\n 'bicycle',\n 'matatu',\n 'boda',\n 'bodaboda',\n 'cart',\n 'carrier',\n 'tour',\n 'travel',\n 'driver',\n 'dereva',\n 'tout',\n 'conductor',\n 'kubeba',\n 'tuktuk',\n 'taxi',\n 'piki',\n 'pikipiki',\n 'manamba',\n 'trasportion',\n 'mkokoteni',\n 'mover',\n 'motorist',\n 'motorbike',\n 'transport',\n 'transpoter',\n 'gari',\n 'magari',\n 'makanga',\n 'car',\n ],\n },\n {\n name: 'fuel/energy',\n products: [\n 'timber',\n 'timberyard',\n 'biogas',\n 'charcol',\n 'charcoal',\n 'kuni',\n 'mbao',\n 'fuel',\n 'makaa',\n 'mafuta',\n 'moto',\n 'solar',\n 'stima',\n 'fire',\n 'firewood',\n 'wood',\n 'oil',\n 'taa',\n 'gas',\n 'paraffin',\n 'parrafin',\n 'parafin',\n 'petrol',\n 'petro',\n 'kerosine',\n 'kerosene',\n 'diesel',\n ],\n },\n {\n name: 'other',\n products: ['other', 'none', 'unknown', 'none'],\n },\n];\n\n/** A mock of curated genders */\nconst genders: Array = ['male', 'female', 'other'];\n\n/** A mock of the tokens in the system. */\nconst tokens: Array = [\n {\n name: 'Giftable Reserve',\n symbol: 'GRZ',\n address: '0xa686005CE37Dce7738436256982C3903f2E4ea8E',\n supply: '1000000001000000000000000000',\n decimals: '18',\n reserves: {},\n },\n {\n name: 'Demo Token',\n symbol: 'DEMO',\n address: '0xc80D6aFF8194114c52AEcD84c9f15fd5c8abb187',\n supply: '99999999999999998976',\n decimals: '18',\n reserves: {\n '0xa686005CE37Dce7738436256982C3903f2E4ea8E': {\n weight: '1000000',\n balance: '99999999999999998976',\n },\n },\n reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a',\n },\n {\n name: 'Foo Token',\n symbol: 'FOO',\n address: '0x9ceD86089f7aBB5A97B40eb0E7521e7aa308d354',\n supply: '1000000000000000001014',\n decimals: '18',\n reserves: {\n '0xa686005CE37Dce7738436256982C3903f2E4ea8E': {\n weight: '1000000',\n balance: '1000000000000000001014',\n },\n },\n reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a',\n },\n {\n name: 'testb',\n symbol: 'tstb',\n address: '0xC63cFA91A3BFf41cE31Ff436f67D3ACBC977DB95',\n supply: '99000',\n decimals: '18',\n reserves: {\n '0xa686005CE37Dce7738436256982C3903f2E4ea8E': { weight: '1000000', balance: '99000' },\n },\n reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a',\n },\n {\n name: 'testa',\n symbol: 'tsta',\n address: '0x8fA4101ef19D0a078239d035659e92b278bD083C',\n supply: '9981',\n decimals: '18',\n reserves: {\n '0xa686005CE37Dce7738436256982C3903f2E4ea8E': { weight: '1000000', balance: '9981' },\n },\n reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a',\n },\n {\n name: 'testc',\n symbol: 'tstc',\n address: '0x4A6fA6bc3BfE4C9661bC692D9798425350C9e3D4',\n supply: '100990',\n decimals: '18',\n reserves: {\n '0xa686005CE37Dce7738436256982C3903f2E4ea8E': { weight: '1000000', balance: '100990' },\n },\n reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a',\n },\n];\n\n/** A mock of curated transaction types. */\nconst transactionTypes: Array = [\n 'transactions',\n 'conversions',\n 'disbursements',\n 'rewards',\n 'reclamation',\n];\n\n/**\n * Intercepts HTTP requests and handles some specified requests internally.\n * Provides a backend that can handle requests for certain data items.\n */\n@Injectable()\nexport class MockBackendInterceptor implements HttpInterceptor {\n /**\n * Intercepts HTTP requests.\n *\n * @param request - An outgoing HTTP request with an optional typed body.\n * @param next - The next HTTP handler or the outgoing request dispatcher.\n * @returns The response from the resolved request.\n */\n intercept(request: HttpRequest, next: HttpHandler): Observable> {\n const { url, method, headers, body } = request;\n\n // wrap in delayed observable to simulate server api call\\\n // call materialize and dematerialize to ensure delay even is thrown\n return of(null)\n .pipe(mergeMap(handleRoute))\n .pipe(materialize())\n .pipe(delay(500))\n .pipe(dematerialize());\n\n /** Forward requests from select routes to their internal handlers. */\n function handleRoute(): Observable {\n switch (true) {\n case url.endsWith('/accounttypes') && method === 'GET':\n return getAccountTypes();\n case url.endsWith('/actions') && method === 'GET':\n return getActions();\n case url.match(/\\/actions\\/\\d+$/) && method === 'GET':\n return getActionById();\n case url.match(/\\/actions\\/\\d+$/) && method === 'POST':\n return approveAction();\n case url.endsWith('/areanames') && method === 'GET':\n return getAreaNames();\n case url.match(/\\/areanames\\/\\w+$/) && method === 'GET':\n return getAreaNameByLocation();\n case url.endsWith('/areatypes') && method === 'GET':\n return getAreaTypes();\n case url.match(/\\/areatypes\\/\\w+$/) && method === 'GET':\n return getAreaTypeByArea();\n case url.endsWith('/categories') && method === 'GET':\n return getCategories();\n case url.match(/\\/categories\\/\\w+$/) && method === 'GET':\n return getCategoryByProduct();\n case url.endsWith('/genders') && method === 'GET':\n return getGenders();\n case url.endsWith('/tokens') && method === 'GET':\n return getTokens();\n case url.match(/\\/tokens\\/\\w+$/) && method === 'GET':\n return getTokenBySymbol();\n case url.endsWith('/transactiontypes') && method === 'GET':\n return getTransactionTypes();\n default:\n // pass through any requests not handled above\n return next.handle(request);\n }\n }\n\n // route functions\n\n function approveAction(): Observable> {\n const queriedAction: Action = actions.find((action) => action.id === idFromUrl());\n queriedAction.approval = body.approval;\n const message: string = `Action approval status set to ${body.approval} successfully!`;\n return ok(message);\n }\n\n function getAccountTypes(): Observable> {\n return ok(accountTypes);\n }\n\n function getActions(): Observable> {\n return ok(actions);\n }\n\n function getActionById(): Observable> {\n const queriedAction: Action = actions.find((action) => action.id === idFromUrl());\n return ok(queriedAction);\n }\n\n function getAreaNames(): Observable> {\n const areaNameList: Array = areaNames.map((areaName) => areaName.name);\n return ok(areaNameList);\n }\n\n function getAreaNameByLocation(): Observable> {\n const queriedAreaName: AreaName = areaNames.find((areaName) =>\n areaName.locations.includes(stringFromUrl())\n );\n return ok(queriedAreaName.name);\n }\n\n function getAreaTypes(): Observable> {\n const areaTypeList: Array = areaTypes.map((areaType) => areaType.name);\n return ok(areaTypeList);\n }\n\n function getAreaTypeByArea(): Observable> {\n const queriedAreaType: AreaType = areaTypes.find((areaType) =>\n areaType.area.includes(stringFromUrl())\n );\n return ok(queriedAreaType.name);\n }\n\n function getCategories(): Observable> {\n const categoryList: Array = categories.map((category) => category.name);\n return ok(categoryList);\n }\n\n function getCategoryByProduct(): Observable> {\n const queriedCategory: Category = categories.find((category) =>\n category.products.includes(stringFromUrl())\n );\n return ok(queriedCategory.name);\n }\n\n function getGenders(): Observable> {\n return ok(genders);\n }\n\n function getTokens(): Observable> {\n return ok(tokens);\n }\n\n function getTokenBySymbol(): Observable> {\n const queriedToken: Token = tokens.find((token) => token.symbol === stringFromUrl());\n return ok(queriedToken);\n }\n\n function getTransactionTypes(): Observable> {\n return ok(transactionTypes);\n }\n\n // helper functions\n\n function error(message): Observable {\n return throwError({ status: 400, error: { message } });\n }\n\n function idFromUrl(): number {\n const urlParts: Array = url.split('/');\n return parseInt(urlParts[urlParts.length - 1], 10);\n }\n\n function ok(responseBody: any): Observable> {\n return of(new HttpResponse({ status: 200, body: responseBody }));\n }\n\n function stringFromUrl(): string {\n const urlParts: Array = url.split('/');\n return urlParts[urlParts.length - 1];\n }\n }\n}\n\n/** Exports the MockBackendInterceptor as an Angular provider. */\nexport const MockBackendProvider = {\n provide: HTTP_INTERCEPTORS,\n useClass: MockBackendInterceptor,\n multi: true,\n};\n\n \n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/MutableKeyStore.html":{"url":"interfaces/MutableKeyStore.html","title":"interface - MutableKeyStore","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n MutableKeyStore\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_pgp/pgp-key-store.ts\n \n\n\n \n Extends\n \n \n KeyStore\n \n\n \n Index\n \n \n \n \n Methods\n \n \n \n \n \n \n clearKeysInKeyring\n \n \n getEncryptKeys\n \n \n getFingerprint\n \n \n getKeyId\n \n \n getKeysForId\n \n \n getPrivateKey\n \n \n getPrivateKeyForId\n \n \n getPrivateKeyId\n \n \n getPrivateKeys\n \n \n getPublicKeyForId\n \n \n getPublicKeyForSubkeyId\n \n \n getPublicKeys\n \n \n getPublicKeysForAddress\n \n \n getTrustedActiveKeys\n \n \n getTrustedKeys\n \n \n importKeyPair\n \n \n importPrivateKey\n \n \n importPublicKey\n \n \n isEncryptedPrivateKey\n \n \n isValidKey\n \n \n loadKeyring\n \n \n removeKeysForId\n \n \n removePublicKey\n \n \n removePublicKeyForId\n \n \n sign\n \n \n \n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n clearKeysInKeyring\n \n \n \n \n \n \n \nclearKeysInKeyring()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:33\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n getEncryptKeys\n \n \n \n \n \n \n \ngetEncryptKeys()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:17\n \n \n\n\n \n \n\n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n getFingerprint\n \n \n \n \n \n \n \ngetFingerprint()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:22\n \n \n\n\n \n \n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n getKeyId\n \n \n \n \n \n \n \ngetKeyId(key: any)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:23\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getKeysForId\n \n \n \n \n \n \n \ngetKeysForId(keyId: string)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:25\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n keyId\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getPrivateKey\n \n \n \n \n \n \n \ngetPrivateKey()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:19\n \n \n\n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n getPrivateKeyForId\n \n \n \n \n \n \n \ngetPrivateKeyForId(keyId: string)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:27\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n keyId\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getPrivateKeyId\n \n \n \n \n \n \n \ngetPrivateKeyId()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:24\n \n \n\n\n \n \n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n getPrivateKeys\n \n \n \n \n \n \n \ngetPrivateKeys()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:18\n \n \n\n\n \n \n\n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n getPublicKeyForId\n \n \n \n \n \n \n \ngetPublicKeyForId(keyId: string)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:26\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n keyId\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getPublicKeyForSubkeyId\n \n \n \n \n \n \n \ngetPublicKeyForSubkeyId(subkeyId: string)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:28\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n subkeyId\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getPublicKeys\n \n \n \n \n \n \n \ngetPublicKeys()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:14\n \n \n\n\n \n \n\n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n getPublicKeysForAddress\n \n \n \n \n \n \n \ngetPublicKeysForAddress(address: string)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:29\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n address\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getTrustedActiveKeys\n \n \n \n \n \n \n \ngetTrustedActiveKeys()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:16\n \n \n\n\n \n \n\n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n getTrustedKeys\n \n \n \n \n \n \n \ngetTrustedKeys()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:15\n \n \n\n\n \n \n\n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n importKeyPair\n \n \n \n \n \n \n \nimportKeyPair(publicKey: any, privateKey: any)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:11\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n publicKey\n \n any\n \n\n \n No\n \n\n\n \n \n privateKey\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n importPrivateKey\n \n \n \n \n \n \n \nimportPrivateKey(privateKey: any)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:13\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n privateKey\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n importPublicKey\n \n \n \n \n \n \n \nimportPublicKey(publicKey: any)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:12\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n publicKey\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n isEncryptedPrivateKey\n \n \n \n \n \n \n \nisEncryptedPrivateKey(privateKey: any)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:21\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n privateKey\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n isValidKey\n \n \n \n \n \n \n \nisValidKey(key: any)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:20\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n loadKeyring\n \n \n \n \n \n \n \nloadKeyring()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:10\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n removeKeysForId\n \n \n \n \n \n \n \nremoveKeysForId(keyId: string)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:30\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n keyId\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n removePublicKey\n \n \n \n \n \n \n \nremovePublicKey(publicKey: any)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:32\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n publicKey\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n removePublicKeyForId\n \n \n \n \n \n \n \nremovePublicKeyForId(keyId: string)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:31\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n keyId\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n sign\n \n \n \n \n \n \n \nsign(plainText: string)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:34\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n plainText\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n \n import { KeyStore } from 'cic-client-meta';\n// TODO should we put this on the mutable key store object\nimport * as openpgp from 'openpgp';\nconst keyring = new openpgp.Keyring();\n\n/**\n * @extends\n */\ninterface MutableKeyStore extends KeyStore {\n loadKeyring(): void;\n importKeyPair(publicKey: any, privateKey: any): Promise;\n importPublicKey(publicKey: any): void;\n importPrivateKey(privateKey: any): Promise;\n getPublicKeys(): Array;\n getTrustedKeys(): Array;\n getTrustedActiveKeys(): Array;\n getEncryptKeys(): Array;\n getPrivateKeys(): Array;\n getPrivateKey(): any;\n isValidKey(key: any): Promise;\n isEncryptedPrivateKey(privateKey: any): Promise;\n getFingerprint(): string;\n getKeyId(key: any): string;\n getPrivateKeyId(): string;\n getKeysForId(keyId: string): Array;\n getPublicKeyForId(keyId: string): any;\n getPrivateKeyForId(keyId: string): any;\n getPublicKeyForSubkeyId(subkeyId: string): any;\n getPublicKeysForAddress(address: string): Array;\n removeKeysForId(keyId: string): Array;\n removePublicKeyForId(keyId: string): any;\n removePublicKey(publicKey: any): any;\n clearKeysInKeyring(): void;\n sign(plainText: string): Promise;\n}\n\nclass MutablePgpKeyStore implements MutableKeyStore {\n async loadKeyring(): Promise {\n await keyring.load();\n await keyring.store();\n }\n\n async importKeyPair(publicKey: any, privateKey: any): Promise {\n await keyring.publicKeys.importKey(publicKey);\n await keyring.privateKeys.importKey(privateKey);\n }\n\n importPublicKey(publicKey: any): void {\n keyring.publicKeys.importKey(publicKey);\n }\n\n async importPrivateKey(privateKey: any): Promise {\n await keyring.privateKeys.importKey(privateKey);\n }\n\n getPublicKeys(): Array {\n return keyring.publicKeys.keys;\n }\n\n getTrustedKeys(): Array {\n return keyring.publicKeys.keys;\n }\n\n getTrustedActiveKeys(): Array {\n return keyring.publicKeys.keys;\n }\n\n getEncryptKeys(): Array {\n return [];\n }\n\n getPrivateKeys(): Array {\n return keyring.privateKeys.keys;\n }\n\n getPrivateKey(): any {\n return keyring.privateKeys && keyring.privateKeys.keys[0];\n }\n\n async isValidKey(key): Promise {\n // There is supposed to be an openpgp.readKey() method but I can't find it?\n const testKey = await openpgp.key.readArmored(key);\n return !testKey.err;\n }\n\n async isEncryptedPrivateKey(privateKey: any): Promise {\n const imported = await openpgp.key.readArmored(privateKey);\n for (const key of imported.keys) {\n if (key.isDecrypted()) {\n return false;\n }\n }\n return true;\n }\n\n getFingerprint(): string {\n // TODO Handle multiple keys\n return (\n keyring.privateKeys &&\n keyring.privateKeys.keys[0] &&\n keyring.privateKeys.keys[0].keyPacket &&\n keyring.privateKeys.keys[0].keyPacket.fingerprint\n );\n }\n\n getKeyId(key: any): string {\n return key.getKeyId().toHex();\n }\n\n getPrivateKeyId(): string {\n // TODO is there a library that comes with angular for doing this?\n return (\n keyring.privateKeys &&\n keyring.privateKeys.keys[0] &&\n keyring.privateKeys.keys[0].getKeyId().toHex()\n );\n }\n\n getKeysForId(keyId: string): Array {\n return keyring.getKeysForId(keyId);\n }\n\n getPublicKeyForId(keyId): any {\n return keyring.publicKeys.getForId(keyId);\n }\n\n getPrivateKeyForId(keyId): any {\n return keyring.privateKeys.getForId(keyId);\n }\n\n getPublicKeyForSubkeyId(subkeyId): any {\n return keyring.publicKeys.getForId(subkeyId, true);\n }\n\n getPublicKeysForAddress(address): Array {\n return keyring.publicKeys.getForAddress(address);\n }\n\n removeKeysForId(keyId): Array {\n return keyring.removeKeysForId(keyId);\n }\n\n removePublicKeyForId(keyId): any {\n return keyring.publicKeys.removeForId(keyId);\n }\n\n removePublicKey(publicKey: any): any {\n const keyId = publicKey.getKeyId().toHex();\n return keyring.publicKeys.removeForId(keyId);\n }\n\n clearKeysInKeyring(): void {\n keyring.clear();\n }\n\n async sign(plainText): Promise {\n const privateKey = this.getPrivateKey();\n if (!privateKey.isDecrypted()) {\n const password = window.prompt('password');\n await privateKey.decrypt(password);\n }\n const opts = {\n message: openpgp.message.fromText(plainText),\n privateKeys: [privateKey],\n detached: true,\n };\n const signatureObject = await openpgp.sign(opts);\n return signatureObject.signature;\n }\n}\n\nexport { MutablePgpKeyStore, MutableKeyStore };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/MutablePgpKeyStore.html":{"url":"classes/MutablePgpKeyStore.html","title":"class - MutablePgpKeyStore","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n MutablePgpKeyStore\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_pgp/pgp-key-store.ts\n \n\n\n\n \n Implements\n \n \n MutableKeyStore\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n clearKeysInKeyring\n \n \n getEncryptKeys\n \n \n getFingerprint\n \n \n getKeyId\n \n \n getKeysForId\n \n \n getPrivateKey\n \n \n getPrivateKeyForId\n \n \n getPrivateKeyId\n \n \n getPrivateKeys\n \n \n getPublicKeyForId\n \n \n getPublicKeyForSubkeyId\n \n \n getPublicKeys\n \n \n getPublicKeysForAddress\n \n \n getTrustedActiveKeys\n \n \n getTrustedKeys\n \n \n Async\n importKeyPair\n \n \n Async\n importPrivateKey\n \n \n importPublicKey\n \n \n Async\n isEncryptedPrivateKey\n \n \n Async\n isValidKey\n \n \n Async\n loadKeyring\n \n \n removeKeysForId\n \n \n removePublicKey\n \n \n removePublicKeyForId\n \n \n Async\n sign\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n clearKeysInKeyring\n \n \n \n \n \n \n \nclearKeysInKeyring()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:152\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n getEncryptKeys\n \n \n \n \n \n \n \ngetEncryptKeys()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:68\n \n \n\n\n \n \n\n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n getFingerprint\n \n \n \n \n \n \n \ngetFingerprint()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:96\n \n \n\n\n \n \n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n getKeyId\n \n \n \n \n \n \n \ngetKeyId(key: any)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:106\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getKeysForId\n \n \n \n \n \n \n \ngetKeysForId(keyId: string)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:119\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n keyId\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getPrivateKey\n \n \n \n \n \n \n \ngetPrivateKey()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:76\n \n \n\n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n getPrivateKeyForId\n \n \n \n \n \n \n \ngetPrivateKeyForId(keyId)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:127\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n keyId\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getPrivateKeyId\n \n \n \n \n \n \n \ngetPrivateKeyId()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:110\n \n \n\n\n \n \n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n getPrivateKeys\n \n \n \n \n \n \n \ngetPrivateKeys()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:72\n \n \n\n\n \n \n\n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n getPublicKeyForId\n \n \n \n \n \n \n \ngetPublicKeyForId(keyId)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:123\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n keyId\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getPublicKeyForSubkeyId\n \n \n \n \n \n \n \ngetPublicKeyForSubkeyId(subkeyId)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:131\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n subkeyId\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getPublicKeys\n \n \n \n \n \n \n \ngetPublicKeys()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:56\n \n \n\n\n \n \n\n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n getPublicKeysForAddress\n \n \n \n \n \n \n \ngetPublicKeysForAddress(address)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:135\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n address\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getTrustedActiveKeys\n \n \n \n \n \n \n \ngetTrustedActiveKeys()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:64\n \n \n\n\n \n \n\n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n getTrustedKeys\n \n \n \n \n \n \n \ngetTrustedKeys()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:60\n \n \n\n\n \n \n\n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n importKeyPair\n \n \n \n \n \n \n \n \n importKeyPair(publicKey: any, privateKey: any)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:43\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n publicKey\n \n any\n \n\n \n No\n \n\n\n \n \n privateKey\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Async\n importPrivateKey\n \n \n \n \n \n \n \n \n importPrivateKey(privateKey: any)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:52\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n privateKey\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n importPublicKey\n \n \n \n \n \n \n \nimportPublicKey(publicKey: any)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:48\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n publicKey\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Async\n isEncryptedPrivateKey\n \n \n \n \n \n \n \n \n isEncryptedPrivateKey(privateKey: any)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:86\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n privateKey\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Async\n isValidKey\n \n \n \n \n \n \n \n \n isValidKey(key)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:80\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n key\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Async\n loadKeyring\n \n \n \n \n \n \n \n \n loadKeyring()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:38\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n removeKeysForId\n \n \n \n \n \n \n \nremoveKeysForId(keyId)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:139\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n keyId\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n removePublicKey\n \n \n \n \n \n \n \nremovePublicKey(publicKey: any)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:147\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n publicKey\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n removePublicKeyForId\n \n \n \n \n \n \n \nremovePublicKeyForId(keyId)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:143\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n keyId\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Async\n sign\n \n \n \n \n \n \n \n \n sign(plainText)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:156\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n plainText\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n import { KeyStore } from 'cic-client-meta';\n// TODO should we put this on the mutable key store object\nimport * as openpgp from 'openpgp';\nconst keyring = new openpgp.Keyring();\n\n/**\n * @extends\n */\ninterface MutableKeyStore extends KeyStore {\n loadKeyring(): void;\n importKeyPair(publicKey: any, privateKey: any): Promise;\n importPublicKey(publicKey: any): void;\n importPrivateKey(privateKey: any): Promise;\n getPublicKeys(): Array;\n getTrustedKeys(): Array;\n getTrustedActiveKeys(): Array;\n getEncryptKeys(): Array;\n getPrivateKeys(): Array;\n getPrivateKey(): any;\n isValidKey(key: any): Promise;\n isEncryptedPrivateKey(privateKey: any): Promise;\n getFingerprint(): string;\n getKeyId(key: any): string;\n getPrivateKeyId(): string;\n getKeysForId(keyId: string): Array;\n getPublicKeyForId(keyId: string): any;\n getPrivateKeyForId(keyId: string): any;\n getPublicKeyForSubkeyId(subkeyId: string): any;\n getPublicKeysForAddress(address: string): Array;\n removeKeysForId(keyId: string): Array;\n removePublicKeyForId(keyId: string): any;\n removePublicKey(publicKey: any): any;\n clearKeysInKeyring(): void;\n sign(plainText: string): Promise;\n}\n\nclass MutablePgpKeyStore implements MutableKeyStore {\n async loadKeyring(): Promise {\n await keyring.load();\n await keyring.store();\n }\n\n async importKeyPair(publicKey: any, privateKey: any): Promise {\n await keyring.publicKeys.importKey(publicKey);\n await keyring.privateKeys.importKey(privateKey);\n }\n\n importPublicKey(publicKey: any): void {\n keyring.publicKeys.importKey(publicKey);\n }\n\n async importPrivateKey(privateKey: any): Promise {\n await keyring.privateKeys.importKey(privateKey);\n }\n\n getPublicKeys(): Array {\n return keyring.publicKeys.keys;\n }\n\n getTrustedKeys(): Array {\n return keyring.publicKeys.keys;\n }\n\n getTrustedActiveKeys(): Array {\n return keyring.publicKeys.keys;\n }\n\n getEncryptKeys(): Array {\n return [];\n }\n\n getPrivateKeys(): Array {\n return keyring.privateKeys.keys;\n }\n\n getPrivateKey(): any {\n return keyring.privateKeys && keyring.privateKeys.keys[0];\n }\n\n async isValidKey(key): Promise {\n // There is supposed to be an openpgp.readKey() method but I can't find it?\n const testKey = await openpgp.key.readArmored(key);\n return !testKey.err;\n }\n\n async isEncryptedPrivateKey(privateKey: any): Promise {\n const imported = await openpgp.key.readArmored(privateKey);\n for (const key of imported.keys) {\n if (key.isDecrypted()) {\n return false;\n }\n }\n return true;\n }\n\n getFingerprint(): string {\n // TODO Handle multiple keys\n return (\n keyring.privateKeys &&\n keyring.privateKeys.keys[0] &&\n keyring.privateKeys.keys[0].keyPacket &&\n keyring.privateKeys.keys[0].keyPacket.fingerprint\n );\n }\n\n getKeyId(key: any): string {\n return key.getKeyId().toHex();\n }\n\n getPrivateKeyId(): string {\n // TODO is there a library that comes with angular for doing this?\n return (\n keyring.privateKeys &&\n keyring.privateKeys.keys[0] &&\n keyring.privateKeys.keys[0].getKeyId().toHex()\n );\n }\n\n getKeysForId(keyId: string): Array {\n return keyring.getKeysForId(keyId);\n }\n\n getPublicKeyForId(keyId): any {\n return keyring.publicKeys.getForId(keyId);\n }\n\n getPrivateKeyForId(keyId): any {\n return keyring.privateKeys.getForId(keyId);\n }\n\n getPublicKeyForSubkeyId(subkeyId): any {\n return keyring.publicKeys.getForId(subkeyId, true);\n }\n\n getPublicKeysForAddress(address): Array {\n return keyring.publicKeys.getForAddress(address);\n }\n\n removeKeysForId(keyId): Array {\n return keyring.removeKeysForId(keyId);\n }\n\n removePublicKeyForId(keyId): any {\n return keyring.publicKeys.removeForId(keyId);\n }\n\n removePublicKey(publicKey: any): any {\n const keyId = publicKey.getKeyId().toHex();\n return keyring.publicKeys.removeForId(keyId);\n }\n\n clearKeysInKeyring(): void {\n keyring.clear();\n }\n\n async sign(plainText): Promise {\n const privateKey = this.getPrivateKey();\n if (!privateKey.isDecrypted()) {\n const password = window.prompt('password');\n await privateKey.decrypt(password);\n }\n const opts = {\n message: openpgp.message.fromText(plainText),\n privateKeys: [privateKey],\n detached: true,\n };\n const signatureObject = await openpgp.sign(opts);\n return signatureObject.signature;\n }\n}\n\nexport { MutablePgpKeyStore, MutableKeyStore };\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/NetworkStatusComponent.html":{"url":"components/NetworkStatusComponent.html","title":"component - NetworkStatusComponent","body":"\n \n\n\n\n\n\n Components\n NetworkStatusComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/shared/network-status/network-status.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-network-status\n \n\n \n styleUrls\n ./network-status.component.scss\n \n\n\n\n \n templateUrl\n ./network-status.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n noInternetConnection\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n handleNetworkChange\n \n \n ngOnInit\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(cdr: ChangeDetectorRef)\n \n \n \n \n Defined in src/app/shared/network-status/network-status.component.ts:10\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n cdr\n \n \n ChangeDetectorRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n handleNetworkChange\n \n \n \n \n \n \n \nhandleNetworkChange()\n \n \n\n\n \n \n Defined in src/app/shared/network-status/network-status.component.ts:18\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/shared/network-status/network-status.component.ts:16\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n noInternetConnection\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : !navigator.onLine\n \n \n \n \n Defined in src/app/shared/network-status/network-status.component.ts:10\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, OnInit, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core';\n\n@Component({\n selector: 'app-network-status',\n templateUrl: './network-status.component.html',\n styleUrls: ['./network-status.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class NetworkStatusComponent implements OnInit {\n noInternetConnection: boolean = !navigator.onLine;\n\n constructor(private cdr: ChangeDetectorRef) {\n this.handleNetworkChange();\n }\n\n ngOnInit(): void {}\n\n handleNetworkChange(): void {\n setTimeout(() => {\n if (!navigator.onLine !== this.noInternetConnection) {\n this.noInternetConnection = !navigator.onLine;\n this.cdr.detectChanges();\n }\n this.handleNetworkChange();\n }, 5000);\n }\n}\n\n \n\n \n \n \n \n \n OFFLINE \n \n \n \n ONLINE \n \n \n \n\n\n \n\n \n \n ./network-status.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' OFFLINE ONLINE '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'NetworkStatusComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/OrganizationComponent.html":{"url":"components/OrganizationComponent.html","title":"component - OrganizationComponent","body":"\n \n\n\n\n\n\n Components\n OrganizationComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/pages/settings/organization/organization.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-organization\n \n\n \n styleUrls\n ./organization.component.scss\n \n\n\n\n \n templateUrl\n ./organization.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n matcher\n \n \n organizationForm\n \n \n submitted\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n onSubmit\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n organizationFormStub\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(formBuilder: FormBuilder)\n \n \n \n \n Defined in src/app/pages/settings/organization/organization.component.ts:14\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n formBuilder\n \n \n FormBuilder\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/pages/settings/organization/organization.component.ts:18\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n onSubmit\n \n \n \n \n \n \n \nonSubmit()\n \n \n\n\n \n \n Defined in src/app/pages/settings/organization/organization.component.ts:30\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n matcher\n \n \n \n \n \n \n Type : CustomErrorStateMatcher\n\n \n \n \n \n Default value : new CustomErrorStateMatcher()\n \n \n \n \n Defined in src/app/pages/settings/organization/organization.component.ts:14\n \n \n\n\n \n \n \n \n \n \n \n \n \n organizationForm\n \n \n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Defined in src/app/pages/settings/organization/organization.component.ts:12\n \n \n\n\n \n \n \n \n \n \n \n \n \n submitted\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/app/pages/settings/organization/organization.component.ts:13\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n organizationFormStub\n \n \n\n \n \n getorganizationFormStub()\n \n \n \n \n Defined in src/app/pages/settings/organization/organization.component.ts:26\n \n \n\n \n \n\n\n\n\n \n import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators } from '@angular/forms';\nimport { CustomErrorStateMatcher } from '@app/_helpers';\n\n@Component({\n selector: 'app-organization',\n templateUrl: './organization.component.html',\n styleUrls: ['./organization.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class OrganizationComponent implements OnInit {\n organizationForm: FormGroup;\n submitted: boolean = false;\n matcher: CustomErrorStateMatcher = new CustomErrorStateMatcher();\n\n constructor(private formBuilder: FormBuilder) {}\n\n ngOnInit(): void {\n this.organizationForm = this.formBuilder.group({\n disbursement: ['', Validators.required],\n transfer: '',\n countryCode: ['', Validators.required],\n });\n }\n\n get organizationFormStub(): any {\n return this.organizationForm.controls;\n }\n\n onSubmit(): void {\n this.submitted = true;\n if (this.organizationForm.invalid || !confirm('Set organization information?')) {\n return;\n }\n this.submitted = false;\n }\n}\n\n \n\n \n \n\n \n\n \n \n \n\n \n \n \n \n \n \n Home\n Settings\n Organization Settings\n \n \n \n \n \n DEFAULT ORGANISATION SETTINGS\n \n \n \n \n Default Disbursement *\n \n RCU\n \n Default Disbursement is required.\n \n \n \n Require Transfer Card *\n \n \n Default Country Code *\n \n KE Kenya\n US United States\n ETH Ethiopia\n GER Germany\n UG Uganda\n \n \n Country Code is required.\n \n \n Submit\n \n \n \n \n \n \n \n \n \n \n\n\n \n\n \n \n ./organization.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Home Settings Organization Settings DEFAULT ORGANISATION SETTINGS Default Disbursement * RCU Default Disbursement is required. Require Transfer Card * Default Country Code * KE Kenya US United States ETH Ethiopia GER Germany UG Uganda Country Code is required. Submit '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'OrganizationComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/PGPSigner.html":{"url":"classes/PGPSigner.html","title":"class - PGPSigner","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n PGPSigner\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_pgp/pgp-signer.ts\n \n\n\n\n \n Implements\n \n \n Signer\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n algo\n \n \n dgst\n \n \n engine\n \n \n keyStore\n \n \n loggingService\n \n \n onsign\n \n \n onverify\n \n \n signature\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n fingerprint\n \n \n Public\n prepare\n \n \n Public\n Async\n sign\n \n \n Public\n verify\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(keyStore: MutableKeyStore)\n \n \n \n \n Defined in src/app/_pgp/pgp-signer.ts:34\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n keyStore\n \n \n MutableKeyStore\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n algo\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : 'sha256'\n \n \n \n \n Defined in src/app/_pgp/pgp-signer.ts:28\n \n \n\n\n \n \n \n \n \n \n \n \n \n dgst\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/_pgp/pgp-signer.ts:29\n \n \n\n\n \n \n \n \n \n \n \n \n \n engine\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : 'pgp'\n \n \n \n \n Defined in src/app/_pgp/pgp-signer.ts:27\n \n \n\n\n \n \n \n \n \n \n \n \n \n keyStore\n \n \n \n \n \n \n Type : MutableKeyStore\n\n \n \n \n \n Defined in src/app/_pgp/pgp-signer.ts:31\n \n \n\n\n \n \n \n \n \n \n \n \n \n loggingService\n \n \n \n \n \n \n Type : LoggingService\n\n \n \n \n \n Defined in src/app/_pgp/pgp-signer.ts:34\n \n \n\n\n \n \n \n \n \n \n \n \n \n onsign\n \n \n \n \n \n \n Type : function\n\n \n \n \n \n Defined in src/app/_pgp/pgp-signer.ts:32\n \n \n\n\n \n \n \n \n \n \n \n \n \n onverify\n \n \n \n \n \n \n Type : function\n\n \n \n \n \n Defined in src/app/_pgp/pgp-signer.ts:33\n \n \n\n\n \n \n \n \n \n \n \n \n \n signature\n \n \n \n \n \n \n Type : Signature\n\n \n \n \n \n Defined in src/app/_pgp/pgp-signer.ts:30\n \n \n\n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Public\n fingerprint\n \n \n \n \n \n \n \n \n fingerprint()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-signer.ts:42\n \n \n\n\n \n \n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n Public\n prepare\n \n \n \n \n \n \n \n \n prepare(material: Signable)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-signer.ts:46\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n material\n \n Signable\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n Async\n sign\n \n \n \n \n \n \n \n \n sign(digest: string)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-signer.ts:83\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n digest\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n verify\n \n \n \n \n \n \n \n \n verify(digest: string, signature: Signature)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-signer.ts:51\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n digest\n \n string\n \n\n \n No\n \n\n\n \n \n signature\n \n Signature\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n import { MutableKeyStore } from '@app/_pgp/pgp-key-store';\nimport { LoggingService } from '@app/_services/logging.service';\n\nconst openpgp = require('openpgp');\n\ninterface Signable {\n digest(): string;\n}\n\ninterface Signature {\n engine: string;\n algo: string;\n data: string;\n digest: string;\n}\n\ninterface Signer {\n onsign(signature: Signature): void;\n onverify(flag: boolean): void;\n fingerprint(): string;\n prepare(material: Signable): boolean;\n verify(digest: string, signature: Signature): void;\n sign(digest: string): Promise;\n}\n\nclass PGPSigner implements Signer {\n engine = 'pgp';\n algo = 'sha256';\n dgst: string;\n signature: Signature;\n keyStore: MutableKeyStore;\n onsign: (signature: Signature) => void;\n onverify: (flag: boolean) => void;\n loggingService: LoggingService;\n\n constructor(keyStore: MutableKeyStore) {\n this.keyStore = keyStore;\n this.onsign = (signature: Signature) => {};\n this.onverify = (flag: boolean) => {};\n }\n\n public fingerprint(): string {\n return this.keyStore.getFingerprint();\n }\n\n public prepare(material: Signable): boolean {\n this.dgst = material.digest();\n return true;\n }\n\n public verify(digest: string, signature: Signature): void {\n openpgp.signature\n .readArmored(signature.data)\n .then((sig) => {\n const opts = {\n message: openpgp.cleartext.fromText(digest),\n publicKeys: this.keyStore.getTrustedKeys(),\n signature: sig,\n };\n openpgp.verify(opts).then((v) => {\n let i = 0;\n for (i = 0; i {\n this.loggingService.sendErrorLevelMessage(e.message, this, { error: e });\n this.onverify(false);\n });\n }\n\n public async sign(digest: string): Promise {\n const m = openpgp.cleartext.fromText(digest);\n const pk = this.keyStore.getPrivateKey();\n if (!pk.isDecrypted()) {\n const password = window.prompt('password');\n await pk.decrypt(password);\n }\n const opts = {\n message: m,\n privateKeys: [pk],\n detached: true,\n };\n openpgp\n .sign(opts)\n .then((s) => {\n this.signature = {\n engine: this.engine,\n algo: this.algo,\n data: s.signature,\n // TODO: fix for browser later\n digest,\n };\n this.onsign(this.signature);\n })\n .catch((e) => {\n this.loggingService.sendErrorLevelMessage(e.message, this, { error: e });\n this.onsign(undefined);\n });\n }\n}\n\nexport { Signable, Signature, Signer, PGPSigner };\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/PagesComponent.html":{"url":"components/PagesComponent.html","title":"component - PagesComponent","body":"\n \n\n\n\n\n\n Components\n PagesComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/pages/pages.component.ts\n\n\n\n\n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-pages\n \n\n \n styleUrls\n ./pages.component.scss\n \n\n\n\n \n templateUrl\n ./pages.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n url\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in src/app/pages/pages.component.ts:10\n \n \n\n \n \n\n\n\n\n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n url\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : 'https://dashboard.sarafu.network/'\n \n \n \n \n Defined in src/app/pages/pages.component.ts:10\n \n \n\n\n \n \n\n\n\n\n\n \n import { ChangeDetectionStrategy, Component } from '@angular/core';\n\n@Component({\n selector: 'app-pages',\n templateUrl: './pages.component.html',\n styleUrls: ['./pages.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class PagesComponent {\n url: string = 'https://dashboard.sarafu.network/';\n\n constructor() {}\n}\n\n \n\n \n \n\n \n\n \n \n \n\n \n \n \n \n \n \n Home\n \n \n \n \n \n Your browser does not support iframes. \n \n \n \n \n \n \n \n \n \n\n\n \n\n \n \n ./pages.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Home Your browser does not support iframes. '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'PagesComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/PagesModule.html":{"url":"modules/PagesModule.html","title":"module - PagesModule","body":"\n \n\n\n\n\n Modules\n PagesModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_PagesModule\n\n\n\ncluster_PagesModule_imports\n\n\n\ncluster_PagesModule_declarations\n\n\n\n\nPagesComponent\n\nPagesComponent\n\n\n\nPagesModule\n\nPagesModule\n\nPagesModule -->\n\nPagesComponent->PagesModule\n\n\n\n\n\nPagesRoutingModule\n\nPagesRoutingModule\n\nPagesModule -->\n\nPagesRoutingModule->PagesModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nPagesModule -->\n\nSharedModule->PagesModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/pages/pages.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n PagesComponent\n \n \n \n \n Imports\n \n \n PagesRoutingModule\n \n \n SharedModule\n \n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { PagesRoutingModule } from '@pages/pages-routing.module';\nimport { PagesComponent } from '@pages/pages.component';\nimport { SharedModule } from '@app/shared/shared.module';\nimport { ChartsModule } from 'ng2-charts';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatSelectModule } from '@angular/material/select';\nimport { MatInputModule } from '@angular/material/input';\nimport { MatCardModule } from '@angular/material/card';\n\n@NgModule({\n declarations: [PagesComponent],\n imports: [\n CommonModule,\n PagesRoutingModule,\n SharedModule,\n ChartsModule,\n MatButtonModule,\n MatFormFieldModule,\n MatSelectModule,\n MatInputModule,\n MatCardModule,\n ],\n})\nexport class PagesModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/PagesRoutingModule.html":{"url":"modules/PagesRoutingModule.html","title":"module - PagesRoutingModule","body":"\n \n\n\n\n\n Modules\n PagesRoutingModule\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/pages/pages-routing.module.ts\n \n\n\n\n\n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { PagesComponent } from './pages.component';\n\nconst routes: Routes = [\n { path: 'home', component: PagesComponent },\n {\n path: 'tx',\n loadChildren: () =>\n \"import('@pages/transactions/transactions.module').then((m) => m.TransactionsModule)\",\n },\n {\n path: 'settings',\n loadChildren: () => \"import('@pages/settings/settings.module').then((m) => m.SettingsModule)\",\n },\n {\n path: 'accounts',\n loadChildren: () => \"import('@pages/accounts/accounts.module').then((m) => m.AccountsModule)\",\n },\n {\n path: 'tokens',\n loadChildren: () => \"import('@pages/tokens/tokens.module').then((m) => m.TokensModule)\",\n },\n {\n path: 'admin',\n loadChildren: () => \"import('@pages/admin/admin.module').then((m) => m.AdminModule)\",\n },\n { path: '**', redirectTo: 'home', pathMatch: 'full' },\n];\n\n@NgModule({\n imports: [RouterModule.forChild(routes)],\n exports: [RouterModule],\n})\nexport class PagesRoutingModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"directives/PasswordToggleDirective.html":{"url":"directives/PasswordToggleDirective.html","title":"directive - PasswordToggleDirective","body":"\n \n\n\n\n\n\n\n\n Directives\n PasswordToggleDirective\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/auth/_directives/password-toggle.directive.ts\n \n\n\n\n\n \n Metadata\n \n \n\n \n Selector\n [appPasswordToggle]\n \n\n \n \n \n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n togglePasswordVisibility\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n iconId\n \n \n id\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(elementRef: ElementRef, renderer: Renderer2)\n \n \n \n \n Defined in src/app/auth/_directives/password-toggle.directive.ts:11\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n elementRef\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n renderer\n \n \n Renderer2\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n iconId\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/auth/_directives/password-toggle.directive.ts:11\n \n \n \n \n \n \n \n \n \n id\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/auth/_directives/password-toggle.directive.ts:8\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n togglePasswordVisibility\n \n \n \n \n \n \n \ntogglePasswordVisibility()\n \n \n\n\n \n \n Defined in src/app/auth/_directives/password-toggle.directive.ts:19\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n\n\n \n\n\n \n import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\n\n@Directive({\n selector: '[appPasswordToggle]',\n})\nexport class PasswordToggleDirective {\n @Input()\n id: string;\n\n @Input()\n iconId: string;\n\n constructor(private elementRef: ElementRef, private renderer: Renderer2) {\n this.renderer.listen(this.elementRef.nativeElement, 'click', () => {\n this.togglePasswordVisibility();\n });\n }\n\n togglePasswordVisibility(): void {\n const password: HTMLElement = document.getElementById(this.id);\n const icon: HTMLElement = document.getElementById(this.iconId);\n // @ts-ignore\n if (password.type === 'password') {\n // @ts-ignore\n password.type = 'text';\n icon.classList.remove('fa-eye');\n icon.classList.add('fa-eye-slash');\n } else {\n // @ts-ignore\n password.type = 'password';\n icon.classList.remove('fa-eye-slash');\n icon.classList.add('fa-eye');\n }\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/RegistryService.html":{"url":"injectables/RegistryService.html","title":"injectable - RegistryService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n RegistryService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_services/registry.service.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n fileGetter\n \n \n registry\n \n \n web3\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n getRegistry\n \n \n getWeb3\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in src/app/_services/registry.service.ts:19\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n getRegistry\n \n \n \n \n \n \n \ngetRegistry()\n \n \n\n\n \n \n Defined in src/app/_services/registry.service.ts:26\n \n \n\n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n getWeb3\n \n \n \n \n \n \n \ngetWeb3()\n \n \n\n\n \n \n Defined in src/app/_services/registry.service.ts:30\n \n \n\n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n fileGetter\n \n \n \n \n \n \n Type : FileGetter\n\n \n \n \n \n Default value : new HttpGetter()\n \n \n \n \n Defined in src/app/_services/registry.service.ts:12\n \n \n\n\n \n \n \n \n \n \n \n \n \n registry\n \n \n \n \n \n \n Type : CICRegistry\n\n \n \n \n \n Default value : new CICRegistry(\n this.web3,\n environment.registryAddress,\n 'CICRegistry',\n this.fileGetter,\n ['../../assets/js/block-sync/data']\n )\n \n \n \n \n Defined in src/app/_services/registry.service.ts:13\n \n \n\n\n \n \n \n \n \n \n \n \n \n web3\n \n \n \n \n \n \n Type : Web3\n\n \n \n \n \n Default value : new Web3(environment.web3Provider)\n \n \n \n \n Defined in src/app/_services/registry.service.ts:11\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport Web3 from 'web3';\nimport { environment } from '@src/environments/environment';\nimport { CICRegistry, FileGetter } from 'cic-client';\nimport { HttpGetter } from '@app/_helpers';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class RegistryService {\n web3: Web3 = new Web3(environment.web3Provider);\n fileGetter: FileGetter = new HttpGetter();\n registry: CICRegistry = new CICRegistry(\n this.web3,\n environment.registryAddress,\n 'CICRegistry',\n this.fileGetter,\n ['../../assets/js/block-sync/data']\n );\n\n constructor() {\n this.registry.declaratorHelper.addTrust(environment.trustedDeclaratorAddress);\n this.registry.load();\n }\n\n getRegistry(): any {\n return this.registry;\n }\n\n getWeb3(): any {\n return this.web3;\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"guards/RoleGuard.html":{"url":"guards/RoleGuard.html","title":"guard - RoleGuard","body":"\n \n\n\n\n\n\n\n\n\n\n\n Guards\n RoleGuard\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_guards/role.guard.ts\n \n\n \n Description\n \n \n Role guard implementation.\nDictates access to routes depending on the user's role.\n\n \n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n canActivate\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(router: Router)\n \n \n \n \n Defined in src/app/_guards/role.guard.ts:21\n \n \n\n \n \n Instantiates the role guard class.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \nA service that provides navigation among views and URL manipulation capabilities.\n\n\n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n canActivate\n \n \n \n \n \n \n \ncanActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot)\n \n \n\n\n \n \n Defined in src/app/_guards/role.guard.ts:38\n \n \n\n\n \n \n Returns whether navigation to a specific route is acceptable.\nChecks if the user has the required role to access the route.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n route\n \n ActivatedRouteSnapshot\n \n\n \n No\n \n\n\n \n \nContains the information about a route associated with a component loaded in an outlet at a particular moment in time.\nActivatedRouteSnapshot can also be used to traverse the router state tree.\n\n\n \n \n \n state\n \n RouterStateSnapshot\n \n\n \n No\n \n\n\n \n \nRepresents the state of the router at a moment in time.\n\n\n \n \n \n \n \n \n \n \n Returns : Observable | Promise | boolean | UrlTree\n\n \n \n true - If the user's role matches with accepted roles.\n\n \n \n \n \n \n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport {\n ActivatedRouteSnapshot,\n CanActivate,\n Router,\n RouterStateSnapshot,\n UrlTree,\n} from '@angular/router';\n\n// Third party imports\nimport { Observable } from 'rxjs';\n\n/**\n * Role guard implementation.\n * Dictates access to routes depending on the user's role.\n */\n@Injectable({\n providedIn: 'root',\n})\nexport class RoleGuard implements CanActivate {\n /**\n * Instantiates the role guard class.\n *\n * @param router - A service that provides navigation among views and URL manipulation capabilities.\n */\n constructor(private router: Router) {}\n\n /**\n * Returns whether navigation to a specific route is acceptable.\n * Checks if the user has the required role to access the route.\n *\n * @param route - Contains the information about a route associated with a component loaded in an outlet at a particular moment in time.\n * ActivatedRouteSnapshot can also be used to traverse the router state tree.\n * @param state - Represents the state of the router at a moment in time.\n * @returns true - If the user's role matches with accepted roles.\n */\n canActivate(\n route: ActivatedRouteSnapshot,\n state: RouterStateSnapshot\n ): Observable | Promise | boolean | UrlTree {\n const currentUser = JSON.parse(localStorage.getItem(atob('CICADA_USER')));\n if (currentUser) {\n if (route.data.roles && route.data.roles.indexOf(currentUser.role) === -1) {\n this.router.navigate(['/']);\n return false;\n }\n return true;\n }\n\n this.router.navigate(['/auth'], { queryParams: { returnUrl: state.url } });\n return false;\n }\n}\n\n \n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"directives/RouterLinkDirectiveStub.html":{"url":"directives/RouterLinkDirectiveStub.html","title":"directive - RouterLinkDirectiveStub","body":"\n \n\n\n\n\n\n\n\n Directives\n RouterLinkDirectiveStub\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/testing/router-link-directive-stub.ts\n \n\n\n\n\n \n Metadata\n \n \n\n \n Selector\n [appRouterLink]\n \n\n \n \n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n navigatedTo\n \n \n \n \n\n\n \n \n Inputs\n \n \n \n \n \n \n routerLink\n \n \n \n \n\n\n\n \n \n HostListeners\n \n \n \n \n \n \n click\n \n \n \n \n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n routerLink\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/testing/router-link-directive-stub.ts:9\n \n \n \n \n\n\n\n \n HostListeners \n \n \n \n \n \n \n click\n \n \n \n \n \n \n \nclick()\n \n \n\n\n \n \n Defined in src/testing/router-link-directive-stub.ts:13\n \n \n\n\n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n navigatedTo\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Default value : null\n \n \n \n \n Defined in src/testing/router-link-directive-stub.ts:10\n \n \n\n\n \n \n\n\n\n \n\n\n \n import {Directive, HostListener, Input} from '@angular/core';\n\n@Directive({\n selector: '[appRouterLink]'\n})\n// tslint:disable-next-line:directive-class-suffix\nexport class RouterLinkDirectiveStub {\n // tslint:disable-next-line:no-input-rename\n @Input('routerLink') linkParams: any;\n navigatedTo: any = null;\n\n @HostListener('click')\n onClick(): void {\n this.navigatedTo = this.linkParams;\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"pipes/SafePipe.html":{"url":"pipes/SafePipe.html","title":"pipe - SafePipe","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n Pipes\n SafePipe\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/shared/_pipes/safe.pipe.ts\n \n\n\n\n \n Metadata\n \n \n \n Name\n safe\n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n transform\n \n \n \n \n \n \n \ntransform(url: string, ...args: unknown[])\n \n \n\n\n \n \n Defined in src/app/shared/_pipes/safe.pipe.ts:10\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n url\n \n string\n \n\n \n No\n \n\n\n \n \n args\n \n unknown[]\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : unknown\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n \n import { Pipe, PipeTransform } from '@angular/core';\nimport { DomSanitizer } from '@angular/platform-browser';\n\n@Pipe({\n name: 'safe',\n})\nexport class SafePipe implements PipeTransform {\n constructor(private sanitizer: DomSanitizer) {}\n\n transform(url: string, ...args: unknown[]): unknown {\n return this.sanitizer.bypassSecurityTrustResourceUrl(url);\n }\n}\n\n \n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/Settings.html":{"url":"classes/Settings.html","title":"class - Settings","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n Settings\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/settings.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n registry\n \n \n scanFilter\n \n \n txHelper\n \n \n w3\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(scanFilter: any)\n \n \n \n \n Defined in src/app/_models/settings.ts:8\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n scanFilter\n \n \n any\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n registry\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/app/_models/settings.ts:7\n \n \n\n\n \n \n \n \n \n \n \n \n \n scanFilter\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/app/_models/settings.ts:6\n \n \n\n\n \n \n \n \n \n \n \n \n \n txHelper\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/app/_models/settings.ts:8\n \n \n\n\n \n \n \n \n \n \n \n \n \n w3\n \n \n \n \n \n \n Type : W3\n\n \n \n \n \n Default value : {\n engine: undefined,\n provider: undefined,\n }\n \n \n \n \n Defined in src/app/_models/settings.ts:2\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n \n class Settings {\n w3: W3 = {\n engine: undefined,\n provider: undefined,\n };\n scanFilter: any;\n registry: any;\n txHelper: any;\n\n constructor(scanFilter: any) {\n this.scanFilter = scanFilter;\n }\n}\n\nclass W3 {\n engine: any;\n provider: any;\n}\n\nexport { Settings, W3 };\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/SettingsComponent.html":{"url":"components/SettingsComponent.html","title":"component - SettingsComponent","body":"\n \n\n\n\n\n\n Components\n SettingsComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/pages/settings/settings.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-settings\n \n\n \n styleUrls\n ./settings.component.scss\n \n\n\n\n \n templateUrl\n ./settings.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n dataSource\n \n \n date\n \n \n displayedColumns\n \n \n paginator\n \n \n sort\n \n \n trustedUsers\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n doFilter\n \n \n downloadCsv\n \n \n logout\n \n \n ngOnInit\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(authService: AuthService)\n \n \n \n \n Defined in src/app/pages/settings/settings.component.ts:22\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n authService\n \n \n AuthService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n doFilter\n \n \n \n \n \n \n \ndoFilter(value: string)\n \n \n\n\n \n \n Defined in src/app/pages/settings/settings.component.ts:35\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n downloadCsv\n \n \n \n \n \n \n \ndownloadCsv()\n \n \n\n\n \n \n Defined in src/app/pages/settings/settings.component.ts:39\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n logout\n \n \n \n \n \n \n \nlogout()\n \n \n\n\n \n \n Defined in src/app/pages/settings/settings.component.ts:43\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/pages/settings/settings.component.ts:26\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : MatTableDataSource\n\n \n \n \n \n Defined in src/app/pages/settings/settings.component.ts:17\n \n \n\n\n \n \n \n \n \n \n \n \n \n date\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/pages/settings/settings.component.ts:16\n \n \n\n\n \n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : ['name', 'email', 'userId']\n \n \n \n \n Defined in src/app/pages/settings/settings.component.ts:18\n \n \n\n\n \n \n \n \n \n \n \n \n \n paginator\n \n \n \n \n \n \n Type : MatPaginator\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatPaginator)\n \n \n \n \n \n Defined in src/app/pages/settings/settings.component.ts:21\n \n \n\n\n \n \n \n \n \n \n \n \n \n sort\n \n \n \n \n \n \n Type : MatSort\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatSort)\n \n \n \n \n \n Defined in src/app/pages/settings/settings.component.ts:22\n \n \n\n\n \n \n \n \n \n \n \n \n \n trustedUsers\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Defined in src/app/pages/settings/settings.component.ts:19\n \n \n\n\n \n \n\n\n\n\n\n \n import { ChangeDetectionStrategy, Component, OnInit, ViewChild } from '@angular/core';\nimport { MatTableDataSource } from '@angular/material/table';\nimport { MatPaginator } from '@angular/material/paginator';\nimport { MatSort } from '@angular/material/sort';\nimport { AuthService } from '@app/_services';\nimport { Staff } from '@app/_models/staff';\nimport { exportCsv } from '@app/_helpers';\n\n@Component({\n selector: 'app-settings',\n templateUrl: './settings.component.html',\n styleUrls: ['./settings.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class SettingsComponent implements OnInit {\n date: string;\n dataSource: MatTableDataSource;\n displayedColumns: Array = ['name', 'email', 'userId'];\n trustedUsers: Array;\n\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n\n constructor(private authService: AuthService) {}\n\n ngOnInit(): void {\n const d = new Date();\n this.date = `${d.getDate()}/${d.getMonth()}/${d.getFullYear()}`;\n this.trustedUsers = this.authService.getTrustedUsers();\n this.dataSource = new MatTableDataSource(this.trustedUsers);\n this.dataSource.paginator = this.paginator;\n this.dataSource.sort = this.sort;\n }\n\n doFilter(value: string): void {\n this.dataSource.filter = value.trim().toLocaleLowerCase();\n }\n\n downloadCsv(): void {\n exportCsv(this.trustedUsers, 'users');\n }\n\n logout(): void {\n this.authService.logout();\n }\n}\n\n \n\n \n \n\n \n\n \n \n \n\n \n \n \n \n \n \n Home\n Settings\n \n \n \n \n \n \n SETTINGS\n \n \n Kobo Toolbox Credentials\n Username: admin_reserve \n Password: ******** \n \n \n \n Organization Settings\n Update your organization settings\n \n \n \n \n \n \n ACCOUNT MANAGEMENT\n \n \n Change Password\n Change your account password\n \n \n \n Two-step authentication\n Secure your account with two step verification\n \n \n \n LOGOUT ADMIN \n \n \n \n \n \n \n \n TRUSTED USERS\n EXPORT \n \n \n \n \n Filter \n \n search\n \n \n\n \n NAME \n {{user.name}} \n \n\n \n EMAIL \n {{user.email}} \n \n\n \n USER ID \n {{user.userid}} \n \n\n \n \n \n\n \n\n \n \n \n \n \n \n \n \n \n \n\n\n \n\n \n \n ./settings.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Home Settings SETTINGS Kobo Toolbox Credentials Username: admin_reserve Password: ******** Organization Settings Update your organization settings ACCOUNT MANAGEMENT Change Password Change your account password Two-step authentication Secure your account with two step verification LOGOUT ADMIN TRUSTED USERS EXPORT Filter search NAME {{user.name}} EMAIL {{user.email}} USER ID {{user.userid}} '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'SettingsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/SettingsModule.html":{"url":"modules/SettingsModule.html","title":"module - SettingsModule","body":"\n \n\n\n\n\n Modules\n SettingsModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_SettingsModule\n\n\n\ncluster_SettingsModule_imports\n\n\n\ncluster_SettingsModule_declarations\n\n\n\n\nOrganizationComponent\n\nOrganizationComponent\n\n\n\nSettingsModule\n\nSettingsModule\n\nSettingsModule -->\n\nOrganizationComponent->SettingsModule\n\n\n\n\n\nSettingsComponent\n\nSettingsComponent\n\nSettingsModule -->\n\nSettingsComponent->SettingsModule\n\n\n\n\n\nSettingsRoutingModule\n\nSettingsRoutingModule\n\nSettingsModule -->\n\nSettingsRoutingModule->SettingsModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nSettingsModule -->\n\nSharedModule->SettingsModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/pages/settings/settings.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n OrganizationComponent\n \n \n SettingsComponent\n \n \n \n \n Imports\n \n \n SettingsRoutingModule\n \n \n SharedModule\n \n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { SettingsRoutingModule } from '@pages/settings/settings-routing.module';\nimport { SettingsComponent } from '@pages/settings/settings.component';\nimport { SharedModule } from '@app/shared/shared.module';\nimport { OrganizationComponent } from '@pages/settings/organization/organization.component';\nimport { MatTableModule } from '@angular/material/table';\nimport { MatSortModule } from '@angular/material/sort';\nimport { MatPaginatorModule } from '@angular/material/paginator';\nimport { MatInputModule } from '@angular/material/input';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatIconModule } from '@angular/material/icon';\nimport { MatCardModule } from '@angular/material/card';\nimport { MatRadioModule } from '@angular/material/radio';\nimport { MatCheckboxModule } from '@angular/material/checkbox';\nimport { MatSelectModule } from '@angular/material/select';\nimport { MatMenuModule } from '@angular/material/menu';\nimport { ReactiveFormsModule } from '@angular/forms';\n\n@NgModule({\n declarations: [SettingsComponent, OrganizationComponent],\n imports: [\n CommonModule,\n SettingsRoutingModule,\n SharedModule,\n MatTableModule,\n MatSortModule,\n MatPaginatorModule,\n MatInputModule,\n MatFormFieldModule,\n MatButtonModule,\n MatIconModule,\n MatCardModule,\n MatRadioModule,\n MatCheckboxModule,\n MatSelectModule,\n MatMenuModule,\n ReactiveFormsModule,\n ],\n})\nexport class SettingsModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/SettingsRoutingModule.html":{"url":"modules/SettingsRoutingModule.html","title":"module - SettingsRoutingModule","body":"\n \n\n\n\n\n Modules\n SettingsRoutingModule\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/pages/settings/settings-routing.module.ts\n \n\n\n\n\n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { SettingsComponent } from '@pages/settings/settings.component';\nimport { OrganizationComponent } from '@pages/settings/organization/organization.component';\n\nconst routes: Routes = [\n { path: '', component: SettingsComponent },\n { path: 'organization', component: OrganizationComponent },\n { path: '**', redirectTo: '', pathMatch: 'full' },\n];\n\n@NgModule({\n imports: [RouterModule.forChild(routes)],\n exports: [RouterModule],\n})\nexport class SettingsRoutingModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/SharedModule.html":{"url":"modules/SharedModule.html","title":"module - SharedModule","body":"\n \n\n\n\n\n Modules\n SharedModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_SharedModule\n\n\n\ncluster_SharedModule_declarations\n\n\n\ncluster_SharedModule_exports\n\n\n\n\nErrorDialogComponent\n\nErrorDialogComponent\n\n\n\nSharedModule\n\nSharedModule\n\nSharedModule -->\n\nErrorDialogComponent->SharedModule\n\n\n\n\n\nFooterComponent\n\nFooterComponent\n\nSharedModule -->\n\nFooterComponent->SharedModule\n\n\n\n\n\nMenuSelectionDirective\n\nMenuSelectionDirective\n\nSharedModule -->\n\nMenuSelectionDirective->SharedModule\n\n\n\n\n\nMenuToggleDirective\n\nMenuToggleDirective\n\nSharedModule -->\n\nMenuToggleDirective->SharedModule\n\n\n\n\n\nNetworkStatusComponent\n\nNetworkStatusComponent\n\nSharedModule -->\n\nNetworkStatusComponent->SharedModule\n\n\n\n\n\nSafePipe\n\nSafePipe\n\nSharedModule -->\n\nSafePipe->SharedModule\n\n\n\n\n\nSidebarComponent\n\nSidebarComponent\n\nSharedModule -->\n\nSidebarComponent->SharedModule\n\n\n\n\n\nTokenRatioPipe\n\nTokenRatioPipe\n\nSharedModule -->\n\nTokenRatioPipe->SharedModule\n\n\n\n\n\nTopbarComponent\n\nTopbarComponent\n\nSharedModule -->\n\nTopbarComponent->SharedModule\n\n\n\n\n\nFooterComponent \n\nFooterComponent \n\nFooterComponent -->\n\nSharedModule->FooterComponent \n\n\n\n\n\nMenuSelectionDirective \n\nMenuSelectionDirective \n\nMenuSelectionDirective -->\n\nSharedModule->MenuSelectionDirective \n\n\n\n\n\nNetworkStatusComponent \n\nNetworkStatusComponent \n\nNetworkStatusComponent -->\n\nSharedModule->NetworkStatusComponent \n\n\n\n\n\nSafePipe \n\nSafePipe \n\nSafePipe -->\n\nSharedModule->SafePipe \n\n\n\n\n\nSidebarComponent \n\nSidebarComponent \n\nSidebarComponent -->\n\nSharedModule->SidebarComponent \n\n\n\n\n\nTokenRatioPipe \n\nTokenRatioPipe \n\nTokenRatioPipe -->\n\nSharedModule->TokenRatioPipe \n\n\n\n\n\nTopbarComponent \n\nTopbarComponent \n\nTopbarComponent -->\n\nSharedModule->TopbarComponent \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/shared/shared.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n ErrorDialogComponent\n \n \n FooterComponent\n \n \n MenuSelectionDirective\n \n \n MenuToggleDirective\n \n \n NetworkStatusComponent\n \n \n SafePipe\n \n \n SidebarComponent\n \n \n TokenRatioPipe\n \n \n TopbarComponent\n \n \n \n \n Exports\n \n \n FooterComponent\n \n \n MenuSelectionDirective\n \n \n NetworkStatusComponent\n \n \n SafePipe\n \n \n SidebarComponent\n \n \n TokenRatioPipe\n \n \n TopbarComponent\n \n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { TopbarComponent } from '@app/shared/topbar/topbar.component';\nimport { FooterComponent } from '@app/shared/footer/footer.component';\nimport { SidebarComponent } from '@app/shared/sidebar/sidebar.component';\nimport { MenuSelectionDirective } from '@app/shared/_directives/menu-selection.directive';\nimport { MenuToggleDirective } from '@app/shared/_directives/menu-toggle.directive';\nimport { RouterModule } from '@angular/router';\nimport { MatIconModule } from '@angular/material/icon';\nimport { TokenRatioPipe } from '@app/shared/_pipes/token-ratio.pipe';\nimport { ErrorDialogComponent } from '@app/shared/error-dialog/error-dialog.component';\nimport { MatDialogModule } from '@angular/material/dialog';\nimport { SafePipe } from '@app/shared/_pipes/safe.pipe';\nimport { NetworkStatusComponent } from './network-status/network-status.component';\n\n@NgModule({\n declarations: [\n TopbarComponent,\n FooterComponent,\n SidebarComponent,\n MenuSelectionDirective,\n MenuToggleDirective,\n TokenRatioPipe,\n ErrorDialogComponent,\n SafePipe,\n NetworkStatusComponent,\n ],\n exports: [\n TopbarComponent,\n FooterComponent,\n SidebarComponent,\n MenuSelectionDirective,\n TokenRatioPipe,\n SafePipe,\n NetworkStatusComponent,\n ],\n imports: [CommonModule, RouterModule, MatIconModule, MatDialogModule],\n})\nexport class SharedModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/SidebarComponent.html":{"url":"components/SidebarComponent.html","title":"component - SidebarComponent","body":"\n \n\n\n\n\n\n Components\n SidebarComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/shared/sidebar/sidebar.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-sidebar\n \n\n \n styleUrls\n ./sidebar.component.scss\n \n\n\n\n \n templateUrl\n ./sidebar.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in src/app/shared/sidebar/sidebar.component.ts:9\n \n \n\n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/shared/sidebar/sidebar.component.ts:12\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n\n\n\n\n \n import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'app-sidebar',\n templateUrl: './sidebar.component.html',\n styleUrls: ['./sidebar.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class SidebarComponent implements OnInit {\n constructor() {}\n\n ngOnInit(): void {}\n}\n\n \n\n \n \n\n \n\n \n \n \n \n CICADA\n \n\n \n \n \n \n Dashboard \n \n \n \n \n \n Accounts \n \n \n \n \n \n Transactions \n \n \n \n \n \n Tokens \n \n \n \n \n \n Settings \n \n \n \n \n \n Admin \n \n \n \n \n\n\n\n \n\n \n \n ./sidebar.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' CICADA Dashboard Accounts Transactions Tokens Settings Admin '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'SidebarComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/SidebarStubComponent.html":{"url":"components/SidebarStubComponent.html","title":"component - SidebarStubComponent","body":"\n \n\n\n\n\n\n Components\n SidebarStubComponent\n\n\n\n \n Info\n \n \n Source\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/testing/shared-module-stub.ts\n\n\n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n app-sidebar\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n import {Component} from '@angular/core';\n\n@Component({selector: 'app-sidebar', template: ''})\nexport class SidebarStubComponent {}\n\n@Component({selector: 'app-topbar', template: ''})\nexport class TopbarStubComponent {}\n\n@Component({selector: 'app-footer', template: ''})\nexport class FooterStubComponent {}\n\n \n\n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'SidebarStubComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Signable.html":{"url":"interfaces/Signable.html","title":"interface - Signable","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Signable\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_pgp/pgp-signer.ts\n \n\n\n\n \n Index\n \n \n \n \n Methods\n \n \n \n \n \n \n digest\n \n \n \n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n digest\n \n \n \n \n \n \n \ndigest()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-signer.ts:7\n \n \n\n\n \n \n\n \n Returns : string\n\n \n \n \n \n \n\n\n \n\n\n \n import { MutableKeyStore } from '@app/_pgp/pgp-key-store';\nimport { LoggingService } from '@app/_services/logging.service';\n\nconst openpgp = require('openpgp');\n\ninterface Signable {\n digest(): string;\n}\n\ninterface Signature {\n engine: string;\n algo: string;\n data: string;\n digest: string;\n}\n\ninterface Signer {\n onsign(signature: Signature): void;\n onverify(flag: boolean): void;\n fingerprint(): string;\n prepare(material: Signable): boolean;\n verify(digest: string, signature: Signature): void;\n sign(digest: string): Promise;\n}\n\nclass PGPSigner implements Signer {\n engine = 'pgp';\n algo = 'sha256';\n dgst: string;\n signature: Signature;\n keyStore: MutableKeyStore;\n onsign: (signature: Signature) => void;\n onverify: (flag: boolean) => void;\n loggingService: LoggingService;\n\n constructor(keyStore: MutableKeyStore) {\n this.keyStore = keyStore;\n this.onsign = (signature: Signature) => {};\n this.onverify = (flag: boolean) => {};\n }\n\n public fingerprint(): string {\n return this.keyStore.getFingerprint();\n }\n\n public prepare(material: Signable): boolean {\n this.dgst = material.digest();\n return true;\n }\n\n public verify(digest: string, signature: Signature): void {\n openpgp.signature\n .readArmored(signature.data)\n .then((sig) => {\n const opts = {\n message: openpgp.cleartext.fromText(digest),\n publicKeys: this.keyStore.getTrustedKeys(),\n signature: sig,\n };\n openpgp.verify(opts).then((v) => {\n let i = 0;\n for (i = 0; i {\n this.loggingService.sendErrorLevelMessage(e.message, this, { error: e });\n this.onverify(false);\n });\n }\n\n public async sign(digest: string): Promise {\n const m = openpgp.cleartext.fromText(digest);\n const pk = this.keyStore.getPrivateKey();\n if (!pk.isDecrypted()) {\n const password = window.prompt('password');\n await pk.decrypt(password);\n }\n const opts = {\n message: m,\n privateKeys: [pk],\n detached: true,\n };\n openpgp\n .sign(opts)\n .then((s) => {\n this.signature = {\n engine: this.engine,\n algo: this.algo,\n data: s.signature,\n // TODO: fix for browser later\n digest,\n };\n this.onsign(this.signature);\n })\n .catch((e) => {\n this.loggingService.sendErrorLevelMessage(e.message, this, { error: e });\n this.onsign(undefined);\n });\n }\n}\n\nexport { Signable, Signature, Signer, PGPSigner };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Signature.html":{"url":"interfaces/Signature.html","title":"interface - Signature","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Signature\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/account.ts\n \n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n algo\n \n \n data\n \n \n digest\n \n \n engine\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n algo\n \n \n \n \n algo: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n data\n \n \n \n \n data: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n digest\n \n \n \n \n digest: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n engine\n \n \n \n \n engine: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n interface AccountDetails {\n date_registered: number;\n gender: string;\n age?: string;\n type?: string;\n balance?: number;\n identities: {\n evm: {\n 'bloxberg:8996': string[];\n 'oldchain:1': string[];\n };\n latitude: number;\n longitude: number;\n };\n location: {\n area?: string;\n area_name: string;\n area_type?: string;\n };\n products: string[];\n category?: string;\n vcard: {\n email: [\n {\n value: string;\n }\n ];\n fn: [\n {\n value: string;\n }\n ];\n n: [\n {\n value: string[];\n }\n ];\n tel: [\n {\n meta: {\n TYP: string[];\n };\n value: string;\n }\n ];\n version: [\n {\n value: string;\n }\n ];\n };\n}\n\ninterface Signature {\n algo: string;\n data: string;\n digest: string;\n engine: string;\n}\n\ninterface Meta {\n data: AccountDetails;\n id: string;\n signature: Signature;\n}\n\ninterface MetaResponse {\n id: string;\n m: Meta;\n}\n\nconst defaultAccount: AccountDetails = {\n date_registered: Date.now(),\n gender: 'other',\n identities: {\n evm: {\n 'bloxberg:8996': [''],\n 'oldchain:1': [''],\n },\n latitude: 0,\n longitude: 0,\n },\n location: {\n area_name: 'Kilifi',\n },\n products: [],\n vcard: {\n email: [\n {\n value: '',\n },\n ],\n fn: [\n {\n value: 'Sarafu Contract',\n },\n ],\n n: [\n {\n value: ['Sarafu', 'Contract'],\n },\n ],\n tel: [\n {\n meta: {\n TYP: [],\n },\n value: '',\n },\n ],\n version: [\n {\n value: '3.0',\n },\n ],\n },\n};\n\nexport { AccountDetails, Signature, Meta, MetaResponse, defaultAccount };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Signature-1.html":{"url":"interfaces/Signature-1.html","title":"interface - Signature-1","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Signature\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_pgp/pgp-signer.ts\n \n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n algo\n \n \n data\n \n \n digest\n \n \n engine\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n algo\n \n \n \n \n algo: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n data\n \n \n \n \n data: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n digest\n \n \n \n \n digest: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n engine\n \n \n \n \n engine: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { MutableKeyStore } from '@app/_pgp/pgp-key-store';\nimport { LoggingService } from '@app/_services/logging.service';\n\nconst openpgp = require('openpgp');\n\ninterface Signable {\n digest(): string;\n}\n\ninterface Signature {\n engine: string;\n algo: string;\n data: string;\n digest: string;\n}\n\ninterface Signer {\n onsign(signature: Signature): void;\n onverify(flag: boolean): void;\n fingerprint(): string;\n prepare(material: Signable): boolean;\n verify(digest: string, signature: Signature): void;\n sign(digest: string): Promise;\n}\n\nclass PGPSigner implements Signer {\n engine = 'pgp';\n algo = 'sha256';\n dgst: string;\n signature: Signature;\n keyStore: MutableKeyStore;\n onsign: (signature: Signature) => void;\n onverify: (flag: boolean) => void;\n loggingService: LoggingService;\n\n constructor(keyStore: MutableKeyStore) {\n this.keyStore = keyStore;\n this.onsign = (signature: Signature) => {};\n this.onverify = (flag: boolean) => {};\n }\n\n public fingerprint(): string {\n return this.keyStore.getFingerprint();\n }\n\n public prepare(material: Signable): boolean {\n this.dgst = material.digest();\n return true;\n }\n\n public verify(digest: string, signature: Signature): void {\n openpgp.signature\n .readArmored(signature.data)\n .then((sig) => {\n const opts = {\n message: openpgp.cleartext.fromText(digest),\n publicKeys: this.keyStore.getTrustedKeys(),\n signature: sig,\n };\n openpgp.verify(opts).then((v) => {\n let i = 0;\n for (i = 0; i {\n this.loggingService.sendErrorLevelMessage(e.message, this, { error: e });\n this.onverify(false);\n });\n }\n\n public async sign(digest: string): Promise {\n const m = openpgp.cleartext.fromText(digest);\n const pk = this.keyStore.getPrivateKey();\n if (!pk.isDecrypted()) {\n const password = window.prompt('password');\n await pk.decrypt(password);\n }\n const opts = {\n message: m,\n privateKeys: [pk],\n detached: true,\n };\n openpgp\n .sign(opts)\n .then((s) => {\n this.signature = {\n engine: this.engine,\n algo: this.algo,\n data: s.signature,\n // TODO: fix for browser later\n digest,\n };\n this.onsign(this.signature);\n })\n .catch((e) => {\n this.loggingService.sendErrorLevelMessage(e.message, this, { error: e });\n this.onsign(undefined);\n });\n }\n}\n\nexport { Signable, Signature, Signer, PGPSigner };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Signer.html":{"url":"interfaces/Signer.html","title":"interface - Signer","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Signer\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_pgp/pgp-signer.ts\n \n\n\n\n \n Index\n \n \n \n \n Methods\n \n \n \n \n \n \n fingerprint\n \n \n onsign\n \n \n onverify\n \n \n prepare\n \n \n sign\n \n \n verify\n \n \n \n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n fingerprint\n \n \n \n \n \n \n \nfingerprint()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-signer.ts:20\n \n \n\n\n \n \n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n onsign\n \n \n \n \n \n \n \nonsign(signature: Signature)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-signer.ts:18\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n signature\n \n Signature\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n onverify\n \n \n \n \n \n \n \nonverify(flag: boolean)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-signer.ts:19\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n flag\n \n boolean\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n prepare\n \n \n \n \n \n \n \nprepare(material: Signable)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-signer.ts:21\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n material\n \n Signable\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n sign\n \n \n \n \n \n \n \nsign(digest: string)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-signer.ts:23\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n digest\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n verify\n \n \n \n \n \n \n \nverify(digest: string, signature: Signature)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-signer.ts:22\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n digest\n \n string\n \n\n \n No\n \n\n\n \n \n signature\n \n Signature\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n \n import { MutableKeyStore } from '@app/_pgp/pgp-key-store';\nimport { LoggingService } from '@app/_services/logging.service';\n\nconst openpgp = require('openpgp');\n\ninterface Signable {\n digest(): string;\n}\n\ninterface Signature {\n engine: string;\n algo: string;\n data: string;\n digest: string;\n}\n\ninterface Signer {\n onsign(signature: Signature): void;\n onverify(flag: boolean): void;\n fingerprint(): string;\n prepare(material: Signable): boolean;\n verify(digest: string, signature: Signature): void;\n sign(digest: string): Promise;\n}\n\nclass PGPSigner implements Signer {\n engine = 'pgp';\n algo = 'sha256';\n dgst: string;\n signature: Signature;\n keyStore: MutableKeyStore;\n onsign: (signature: Signature) => void;\n onverify: (flag: boolean) => void;\n loggingService: LoggingService;\n\n constructor(keyStore: MutableKeyStore) {\n this.keyStore = keyStore;\n this.onsign = (signature: Signature) => {};\n this.onverify = (flag: boolean) => {};\n }\n\n public fingerprint(): string {\n return this.keyStore.getFingerprint();\n }\n\n public prepare(material: Signable): boolean {\n this.dgst = material.digest();\n return true;\n }\n\n public verify(digest: string, signature: Signature): void {\n openpgp.signature\n .readArmored(signature.data)\n .then((sig) => {\n const opts = {\n message: openpgp.cleartext.fromText(digest),\n publicKeys: this.keyStore.getTrustedKeys(),\n signature: sig,\n };\n openpgp.verify(opts).then((v) => {\n let i = 0;\n for (i = 0; i {\n this.loggingService.sendErrorLevelMessage(e.message, this, { error: e });\n this.onverify(false);\n });\n }\n\n public async sign(digest: string): Promise {\n const m = openpgp.cleartext.fromText(digest);\n const pk = this.keyStore.getPrivateKey();\n if (!pk.isDecrypted()) {\n const password = window.prompt('password');\n await pk.decrypt(password);\n }\n const opts = {\n message: m,\n privateKeys: [pk],\n detached: true,\n };\n openpgp\n .sign(opts)\n .then((s) => {\n this.signature = {\n engine: this.engine,\n algo: this.algo,\n data: s.signature,\n // TODO: fix for browser later\n digest,\n };\n this.onsign(this.signature);\n })\n .catch((e) => {\n this.loggingService.sendErrorLevelMessage(e.message, this, { error: e });\n this.onsign(undefined);\n });\n }\n}\n\nexport { Signable, Signature, Signer, PGPSigner };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Staff.html":{"url":"interfaces/Staff.html","title":"interface - Staff","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Staff\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/staff.ts\n \n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n comment\n \n \n email\n \n \n name\n \n \n tag\n \n \n userid\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n comment\n \n \n \n \n comment: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n email\n \n \n \n \n email: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n tag\n \n \n \n \n tag: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n userid\n \n \n \n \n userid: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n interface Staff {\n comment: string;\n email: string;\n name: string;\n tag: number;\n userid: string;\n}\n\nexport { Staff };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Token.html":{"url":"interfaces/Token.html","title":"interface - Token","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Token\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/token.ts\n \n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n address\n \n \n decimals\n \n \n name\n \n \n Optional\n owner\n \n \n Optional\n reserveRatio\n \n \n reserves\n \n \n supply\n \n \n symbol\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n address\n \n \n \n \n address: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n decimals\n \n \n \n \n decimals: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n owner\n \n \n \n \n owner: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n reserveRatio\n \n \n \n \n reserveRatio: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n reserves\n \n \n \n \n reserves: literal type\n\n \n \n\n\n \n \n Type : literal type\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n supply\n \n \n \n \n supply: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n symbol\n \n \n \n \n symbol: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n interface Token {\n name: string;\n symbol: string;\n address: string;\n supply: string;\n decimals: string;\n reserves: {\n '0xa686005CE37Dce7738436256982C3903f2E4ea8E'?: {\n weight: string;\n balance: string;\n };\n };\n reserveRatio?: string;\n owner?: string;\n}\n\nexport { Token };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/TokenDetailsComponent.html":{"url":"components/TokenDetailsComponent.html","title":"component - TokenDetailsComponent","body":"\n \n\n\n\n\n\n Components\n TokenDetailsComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/pages/tokens/token-details/token-details.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-token-details\n \n\n \n styleUrls\n ./token-details.component.scss\n \n\n\n\n \n templateUrl\n ./token-details.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n token\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(route: ActivatedRoute, tokenService: TokenService)\n \n \n \n \n Defined in src/app/pages/tokens/token-details/token-details.component.ts:14\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n route\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n tokenService\n \n \n TokenService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/pages/tokens/token-details/token-details.component.ts:27\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n token\n \n \n \n \n \n \n Type : Token\n\n \n \n \n \n Defined in src/app/pages/tokens/token-details/token-details.component.ts:14\n \n \n\n\n \n \n\n\n\n\n\n \n import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';\nimport { ActivatedRoute, Params } from '@angular/router';\nimport { TokenService } from '@app/_services';\nimport { first } from 'rxjs/operators';\nimport { Token } from '../../../_models';\n\n@Component({\n selector: 'app-token-details',\n templateUrl: './token-details.component.html',\n styleUrls: ['./token-details.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TokenDetailsComponent implements OnInit {\n token: Token;\n\n constructor(private route: ActivatedRoute, private tokenService: TokenService) {\n this.route.paramMap.subscribe((params: Params) => {\n this.tokenService\n .getTokenBySymbol(params.get('id'))\n .pipe(first())\n .subscribe((res) => {\n this.token = res;\n });\n });\n }\n\n ngOnInit(): void {}\n}\n\n \n\n \n \n\n \n\n \n \n \n\n \n \n \n \n \n \n Home\n Tokens\n {{token.name}}\n \n \n \n \n \n Token\n \n \n \n Name: {{token.name}}\n \n \n Symbol: {{token.symbol}}\n \n \n Address: {{token.address}}\n \n \n Details: A community inclusive currency for trading among lower to middle income societies.\n \n \n Supply: {{token.supply | tokenRatio}}\n \n \n Reserve\n \n Weight: {{token.reserveRatio}}\n \n \n Owner: {{token.owner}}\n \n \n \n \n \n \n \n \n \n \n \n\n\n\n \n\n \n \n ./token-details.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Home Tokens {{token.name}} Token Name: {{token.name}} Symbol: {{token.symbol}} Address: {{token.address}} Details: A community inclusive currency for trading among lower to middle income societies. Supply: {{token.supply | tokenRatio}} Reserve Weight: {{token.reserveRatio}} Owner: {{token.owner}} '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'TokenDetailsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"pipes/TokenRatioPipe.html":{"url":"pipes/TokenRatioPipe.html","title":"pipe - TokenRatioPipe","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n Pipes\n TokenRatioPipe\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/shared/_pipes/token-ratio.pipe.ts\n \n\n\n\n \n Metadata\n \n \n \n Name\n tokenRatio\n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n transform\n \n \n \n \n \n \n \ntransform(value: any, ...args: any[])\n \n \n\n\n \n \n Defined in src/app/shared/_pipes/token-ratio.pipe.ts:5\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n any\n \n\n \n No\n \n\n\n \n \n args\n \n any[]\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n \n import { Pipe, PipeTransform } from '@angular/core';\n\n@Pipe({ name: 'tokenRatio' })\nexport class TokenRatioPipe implements PipeTransform {\n transform(value: any, ...args): any {\n return Number(value) / Math.pow(10, 6);\n }\n}\n\n \n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/TokenRegistry.html":{"url":"classes/TokenRegistry.html","title":"class - TokenRegistry","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n TokenRegistry\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_eth/token-registry.ts\n \n\n \n Description\n \n \n Provides an instance of the token registry contract.\nAllows querying of tokens that have been registered as valid tokens in the network.\n\n \n\n\n\n \n Example\n \n \n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n contract\n \n \n contractAddress\n \n \n signerAddress\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n Async\n addressOf\n \n \n Public\n Async\n entry\n \n \n Public\n Async\n totalTokens\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(contractAddress: string, signerAddress?: string)\n \n \n \n \n Defined in src/app/_eth/token-registry.ts:25\n \n \n\n \n \n Create a connection to the deployed token registry contract.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n contractAddress\n \n \n string\n \n \n \n No\n \n \n \n \nThe deployed token registry contract's address.\n\n\n \n \n \n signerAddress\n \n \n string\n \n \n \n Yes\n \n \n \n \nThe account address of the account that deployed the token registry contract.\n\n\n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n contract\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/app/_eth/token-registry.ts:21\n \n \n\n \n \n The instance of the token registry contract. \n\n \n \n\n \n \n \n \n \n \n \n \n \n contractAddress\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/_eth/token-registry.ts:23\n \n \n\n \n \n The deployed token registry contract's address. \n\n \n \n\n \n \n \n \n \n \n \n \n \n signerAddress\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/_eth/token-registry.ts:25\n \n \n\n \n \n The account address of the account that deployed the token registry contract. \n\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Public\n Async\n addressOf\n \n \n \n \n \n \n \n \n addressOf(identifier: string)\n \n \n\n\n \n \n Defined in src/app/_eth/token-registry.ts:56\n \n \n\n\n \n \n Returns the address of the token with a given identifier.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n identifier\n \n string\n \n\n \n No\n \n\n\n \n \nThe name or identifier of the token to be fetched from the token registry.\n\n\n \n \n \n \n \n \n Example :\n \n Prints the address of the token with the identifier 'sarafu':\n```typescript\n\nconsole.log(await addressOf('sarafu'));\n```\n\n \n \n \n Returns : Promise\n\n \n \n The address of the token assigned the specified identifier in the token registry.\n\n \n \n \n \n \n \n \n \n \n \n \n \n Public\n Async\n entry\n \n \n \n \n \n \n \n \n entry(serial: number)\n \n \n\n\n \n \n Defined in src/app/_eth/token-registry.ts:74\n \n \n\n\n \n \n Returns the address of a token with the given serial in the token registry.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n serial\n \n number\n \n\n \n No\n \n\n\n \n \nThe serial number of the token to be fetched.\n\n\n \n \n \n \n \n \n Example :\n \n Prints the address of the token with the serial '2':\n```typescript\n\nconsole.log(await entry(2));\n```\n\n \n \n \n Returns : Promise\n\n \n \n The address of the token with the specified serial number.\n\n \n \n \n \n \n \n \n \n \n \n \n \n Public\n Async\n totalTokens\n \n \n \n \n \n \n \n \n totalTokens()\n \n \n\n\n \n \n Defined in src/app/_eth/token-registry.ts:90\n \n \n\n\n \n \n Returns the total number of tokens that have been registered in the network.\n\n\n \n Example :\n \n Prints the total number of registered tokens:\n```typescript\n\nconsole.log(await totalTokens());\n```\n\n \n \n \n Returns : Promise\n\n \n \n The total number of registered tokens.\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n import Web3 from 'web3';\n\n// Application imports\nimport { environment } from '@src/environments/environment';\n\n/** Fetch the token registry contract's ABI. */\nconst abi: Array = require('@src/assets/js/block-sync/data/TokenUniqueSymbolIndex.json');\n/** Establish a connection to the blockchain network. */\nconst web3: Web3 = new Web3(environment.web3Provider);\n\n/**\n * Provides an instance of the token registry contract.\n * Allows querying of tokens that have been registered as valid tokens in the network.\n *\n * @remarks\n * This is our interface to the token registry contract.\n */\nexport class TokenRegistry {\n /** The instance of the token registry contract. */\n contract: any;\n /** The deployed token registry contract's address. */\n contractAddress: string;\n /** The account address of the account that deployed the token registry contract. */\n signerAddress: string;\n\n /**\n * Create a connection to the deployed token registry contract.\n *\n * @param contractAddress - The deployed token registry contract's address.\n * @param signerAddress - The account address of the account that deployed the token registry contract.\n */\n constructor(contractAddress: string, signerAddress?: string) {\n this.contractAddress = contractAddress;\n this.contract = new web3.eth.Contract(abi, this.contractAddress);\n if (signerAddress) {\n this.signerAddress = signerAddress;\n } else {\n this.signerAddress = web3.eth.accounts[0];\n }\n }\n\n /**\n * Returns the address of the token with a given identifier.\n *\n * @async\n * @example\n * Prints the address of the token with the identifier 'sarafu':\n * ```typescript\n * console.log(await addressOf('sarafu'));\n * ```\n *\n * @param identifier - The name or identifier of the token to be fetched from the token registry.\n * @returns The address of the token assigned the specified identifier in the token registry.\n */\n public async addressOf(identifier: string): Promise {\n const id: string = web3.eth.abi.encodeParameter('bytes32', web3.utils.toHex(identifier));\n return await this.contract.methods.addressOf(id).call();\n }\n\n /**\n * Returns the address of a token with the given serial in the token registry.\n *\n * @async\n * @example\n * Prints the address of the token with the serial '2':\n * ```typescript\n * console.log(await entry(2));\n * ```\n *\n * @param serial - The serial number of the token to be fetched.\n * @return The address of the token with the specified serial number.\n */\n public async entry(serial: number): Promise {\n return await this.contract.methods.entry(serial).call();\n }\n\n /**\n * Returns the total number of tokens that have been registered in the network.\n *\n * @async\n * @example\n * Prints the total number of registered tokens:\n * ```typescript\n * console.log(await totalTokens());\n * ```\n *\n * @returns The total number of registered tokens.\n */\n public async totalTokens(): Promise {\n return await this.contract.methods.entryCount().call();\n }\n}\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/TokenService.html":{"url":"injectables/TokenService.html","title":"injectable - TokenService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n TokenService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_services/token.service.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n LoadEvent\n \n \n registry\n \n \n tokenRegistry\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Async\n getTokenBalance\n \n \n getTokenBySymbol\n \n \n Async\n getTokens\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(httpClient: HttpClient, registryService: RegistryService)\n \n \n \n \n Defined in src/app/_services/token.service.ts:15\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n httpClient\n \n \n HttpClient\n \n \n \n No\n \n \n \n \n registryService\n \n \n RegistryService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Async\n getTokenBalance\n \n \n \n \n \n \n \n \n getTokenBalance(address: string)\n \n \n\n\n \n \n Defined in src/app/_services/token.service.ts:37\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n address\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getTokenBySymbol\n \n \n \n \n \n \n \ngetTokenBySymbol(symbol: string)\n \n \n\n\n \n \n Defined in src/app/_services/token.service.ts:33\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n symbol\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Async\n getTokens\n \n \n \n \n \n \n \n \n getTokens()\n \n \n\n\n \n \n Defined in src/app/_services/token.service.ts:28\n \n \n\n\n \n \n\n \n Returns : Promise>>\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n LoadEvent\n \n \n \n \n \n \n Type : EventEmitter\n\n \n \n \n \n Default value : new EventEmitter()\n \n \n \n \n Defined in src/app/_services/token.service.ts:15\n \n \n\n\n \n \n \n \n \n \n \n \n \n registry\n \n \n \n \n \n \n Type : CICRegistry\n\n \n \n \n \n Defined in src/app/_services/token.service.ts:13\n \n \n\n\n \n \n \n \n \n \n \n \n \n tokenRegistry\n \n \n \n \n \n \n Type : TokenRegistry\n\n \n \n \n \n Defined in src/app/_services/token.service.ts:14\n \n \n\n\n \n \n\n\n \n\n\n \n import { EventEmitter, Injectable } from '@angular/core';\nimport { environment } from '@src/environments/environment';\nimport { BehaviorSubject, Observable } from 'rxjs';\nimport { CICRegistry } from 'cic-client';\nimport { TokenRegistry } from '@app/_eth';\nimport { HttpClient } from '@angular/common/http';\nimport { RegistryService } from '@app/_services/registry.service';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class TokenService {\n registry: CICRegistry;\n tokenRegistry: TokenRegistry;\n LoadEvent: EventEmitter = new EventEmitter();\n\n constructor(private httpClient: HttpClient, private registryService: RegistryService) {\n this.registry = registryService.getRegistry();\n this.registry.load();\n this.registry.onload = async (address: string): Promise => {\n this.tokenRegistry = new TokenRegistry(\n await this.registry.getContractAddressByName('TokenRegistry')\n );\n this.LoadEvent.next(Date.now());\n };\n }\n\n async getTokens(): Promise>> {\n const count: number = await this.tokenRegistry.totalTokens();\n return Array.from({ length: count }, async (v, i) => await this.tokenRegistry.entry(i));\n }\n\n getTokenBySymbol(symbol: string): Observable {\n return this.httpClient.get(`${environment.cicCacheUrl}/tokens/${symbol}`);\n }\n\n async getTokenBalance(address: string): Promise {\n const sarafuToken = await this.registry.addToken(await this.tokenRegistry.entry(0));\n return await sarafuToken.methods.balanceOf(address).call();\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/TokenServiceStub.html":{"url":"classes/TokenServiceStub.html","title":"class - TokenServiceStub","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n TokenServiceStub\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/testing/token-service-stub.ts\n \n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getBySymbol\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n getBySymbol\n \n \n \n \n \n \n \ngetBySymbol(symbol: string)\n \n \n\n\n \n \n Defined in src/testing/token-service-stub.ts:2\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n symbol\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n export class TokenServiceStub {\n getBySymbol(symbol: string): any {\n return {\n name: 'Reserve',\n symbol: 'RSV'\n };\n }\n}\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/TokensComponent.html":{"url":"components/TokensComponent.html","title":"component - TokensComponent","body":"\n \n\n\n\n\n\n Components\n TokensComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/pages/tokens/tokens.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-tokens\n \n\n \n styleUrls\n ./tokens.component.scss\n \n\n\n\n \n templateUrl\n ./tokens.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n columnsToDisplay\n \n \n dataSource\n \n \n paginator\n \n \n sort\n \n \n tokens\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n doFilter\n \n \n downloadCsv\n \n \n Async\n ngOnInit\n \n \n Async\n viewToken\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(tokenService: TokenService, loggingService: LoggingService, router: Router)\n \n \n \n \n Defined in src/app/pages/tokens/tokens.component.ts:22\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n tokenService\n \n \n TokenService\n \n \n \n No\n \n \n \n \n loggingService\n \n \n LoggingService\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n doFilter\n \n \n \n \n \n \n \ndoFilter(value: string)\n \n \n\n\n \n \n Defined in src/app/pages/tokens/tokens.component.ts:41\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n downloadCsv\n \n \n \n \n \n \n \ndownloadCsv()\n \n \n\n\n \n \n Defined in src/app/pages/tokens/tokens.component.ts:49\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n ngOnInit\n \n \n \n \n \n \n \n \n ngOnInit()\n \n \n\n\n \n \n Defined in src/app/pages/tokens/tokens.component.ts:30\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n viewToken\n \n \n \n \n \n \n \n \n viewToken(token)\n \n \n\n\n \n \n Defined in src/app/pages/tokens/tokens.component.ts:45\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n token\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n columnsToDisplay\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : ['name', 'symbol', 'address', 'supply']\n \n \n \n \n Defined in src/app/pages/tokens/tokens.component.ts:19\n \n \n\n\n \n \n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : MatTableDataSource\n\n \n \n \n \n Defined in src/app/pages/tokens/tokens.component.ts:18\n \n \n\n\n \n \n \n \n \n \n \n \n \n paginator\n \n \n \n \n \n \n Type : MatPaginator\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatPaginator)\n \n \n \n \n \n Defined in src/app/pages/tokens/tokens.component.ts:20\n \n \n\n\n \n \n \n \n \n \n \n \n \n sort\n \n \n \n \n \n \n Type : MatSort\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatSort)\n \n \n \n \n \n Defined in src/app/pages/tokens/tokens.component.ts:21\n \n \n\n\n \n \n \n \n \n \n \n \n \n tokens\n \n \n \n \n \n \n Type : Array>\n\n \n \n \n \n Defined in src/app/pages/tokens/tokens.component.ts:22\n \n \n\n\n \n \n\n\n\n\n\n \n import { ChangeDetectionStrategy, Component, OnInit, ViewChild } from '@angular/core';\nimport { MatPaginator } from '@angular/material/paginator';\nimport { MatSort } from '@angular/material/sort';\nimport { LoggingService, TokenService } from '@app/_services';\nimport { MatTableDataSource } from '@angular/material/table';\nimport { Router } from '@angular/router';\nimport { exportCsv } from '@app/_helpers';\nimport { TokenRegistry } from '../../_eth';\nimport { Token } from '../../_models';\n\n@Component({\n selector: 'app-tokens',\n templateUrl: './tokens.component.html',\n styleUrls: ['./tokens.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TokensComponent implements OnInit {\n dataSource: MatTableDataSource;\n columnsToDisplay: Array = ['name', 'symbol', 'address', 'supply'];\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n tokens: Array>;\n\n constructor(\n private tokenService: TokenService,\n private loggingService: LoggingService,\n private router: Router\n ) {}\n\n async ngOnInit(): Promise {\n this.tokenService.LoadEvent.subscribe(async () => {\n this.tokens = await this.tokenService.getTokens();\n });\n this.tokens = await this.tokenService.getTokens();\n this.loggingService.sendInfoLevelMessage(this.tokens);\n this.dataSource = new MatTableDataSource(this.tokens);\n this.dataSource.paginator = this.paginator;\n this.dataSource.sort = this.sort;\n }\n\n doFilter(value: string): void {\n this.dataSource.filter = value.trim().toLocaleLowerCase();\n }\n\n async viewToken(token): Promise {\n await this.router.navigateByUrl(`/tokens/${token.symbol}`);\n }\n\n downloadCsv(): void {\n exportCsv(this.tokens, 'tokens');\n }\n}\n\n \n\n \n \n\n \n\n \n \n \n\n \n \n \n \n \n \n Home\n Tokens\n \n \n \n \n \n Tokens\n EXPORT \n \n \n \n \n Filter \n \n search\n \n\n \n \n Name \n {{token.name}} \n \n\n \n Symbol \n {{token.symbol}} \n \n\n \n Address \n {{token.address}} \n \n\n \n Supply \n {{token.supply | tokenRatio}} \n \n\n \n \n \n\n \n \n \n \n \n \n \n \n \n\n\n\n \n\n \n \n ./tokens.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Home Tokens Tokens EXPORT Filter search Name {{token.name}} Symbol {{token.symbol}} Address {{token.address}} Supply {{token.supply | tokenRatio}} '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'TokensComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/TokensModule.html":{"url":"modules/TokensModule.html","title":"module - TokensModule","body":"\n \n\n\n\n\n Modules\n TokensModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_TokensModule\n\n\n\ncluster_TokensModule_imports\n\n\n\ncluster_TokensModule_declarations\n\n\n\n\nTokenDetailsComponent\n\nTokenDetailsComponent\n\n\n\nTokensModule\n\nTokensModule\n\nTokensModule -->\n\nTokenDetailsComponent->TokensModule\n\n\n\n\n\nTokensComponent\n\nTokensComponent\n\nTokensModule -->\n\nTokensComponent->TokensModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nTokensModule -->\n\nSharedModule->TokensModule\n\n\n\n\n\nTokensRoutingModule\n\nTokensRoutingModule\n\nTokensModule -->\n\nTokensRoutingModule->TokensModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/pages/tokens/tokens.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n TokenDetailsComponent\n \n \n TokensComponent\n \n \n \n \n Imports\n \n \n SharedModule\n \n \n TokensRoutingModule\n \n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { TokensRoutingModule } from '@pages/tokens/tokens-routing.module';\nimport { TokensComponent } from '@pages/tokens/tokens.component';\nimport { TokenDetailsComponent } from '@pages/tokens/token-details/token-details.component';\nimport { SharedModule } from '@app/shared/shared.module';\nimport { MatTableModule } from '@angular/material/table';\nimport { MatPaginatorModule } from '@angular/material/paginator';\nimport { MatSortModule } from '@angular/material/sort';\nimport { MatPseudoCheckboxModule, MatRippleModule } from '@angular/material/core';\nimport { MatCheckboxModule } from '@angular/material/checkbox';\nimport { MatInputModule } from '@angular/material/input';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatIconModule } from '@angular/material/icon';\nimport { MatSidenavModule } from '@angular/material/sidenav';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatToolbarModule } from '@angular/material/toolbar';\nimport { MatCardModule } from '@angular/material/card';\n\n@NgModule({\n declarations: [TokensComponent, TokenDetailsComponent],\n imports: [\n CommonModule,\n TokensRoutingModule,\n SharedModule,\n MatTableModule,\n MatPaginatorModule,\n MatSortModule,\n MatPseudoCheckboxModule,\n MatCheckboxModule,\n MatInputModule,\n MatFormFieldModule,\n MatIconModule,\n MatSidenavModule,\n MatButtonModule,\n MatToolbarModule,\n MatCardModule,\n MatRippleModule,\n ],\n})\nexport class TokensModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/TokensRoutingModule.html":{"url":"modules/TokensRoutingModule.html","title":"module - TokensRoutingModule","body":"\n \n\n\n\n\n Modules\n TokensRoutingModule\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/pages/tokens/tokens-routing.module.ts\n \n\n\n\n\n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { TokensComponent } from '@pages/tokens/tokens.component';\nimport { TokenDetailsComponent } from '@pages/tokens/token-details/token-details.component';\n\nconst routes: Routes = [\n { path: '', component: TokensComponent },\n { path: ':id', component: TokenDetailsComponent },\n];\n\n@NgModule({\n imports: [RouterModule.forChild(routes)],\n exports: [RouterModule],\n})\nexport class TokensRoutingModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/TopbarComponent.html":{"url":"components/TopbarComponent.html","title":"component - TopbarComponent","body":"\n \n\n\n\n\n\n Components\n TopbarComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/shared/topbar/topbar.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-topbar\n \n\n \n styleUrls\n ./topbar.component.scss\n \n\n\n\n \n templateUrl\n ./topbar.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in src/app/shared/topbar/topbar.component.ts:9\n \n \n\n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/shared/topbar/topbar.component.ts:12\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n\n\n\n\n \n import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'app-topbar',\n templateUrl: './topbar.component.html',\n styleUrls: ['./topbar.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TopbarComponent implements OnInit {\n constructor() {}\n\n ngOnInit(): void {}\n}\n\n \n\n \n \n\n \n \n \n \n \n \n \n\n\n\n \n\n \n \n ./topbar.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'TopbarComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/TopbarStubComponent.html":{"url":"components/TopbarStubComponent.html","title":"component - TopbarStubComponent","body":"\n \n\n\n\n\n\n Components\n TopbarStubComponent\n\n\n\n \n Info\n \n \n Source\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/testing/shared-module-stub.ts\n\n\n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n app-topbar\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n import {Component} from '@angular/core';\n\n@Component({selector: 'app-sidebar', template: ''})\nexport class SidebarStubComponent {}\n\n@Component({selector: 'app-topbar', template: ''})\nexport class TopbarStubComponent {}\n\n@Component({selector: 'app-footer', template: ''})\nexport class FooterStubComponent {}\n\n \n\n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'TopbarStubComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/Transaction.html":{"url":"classes/Transaction.html","title":"class - Transaction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n Transaction\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/transaction.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n from\n \n \n recipient\n \n \n sender\n \n \n to\n \n \n token\n \n \n tx\n \n \n Optional\n type\n \n \n value\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n from\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:26\n \n \n\n\n \n \n \n \n \n \n \n \n \n recipient\n \n \n \n \n \n \n Type : AccountDetails\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:29\n \n \n\n\n \n \n \n \n \n \n \n \n \n sender\n \n \n \n \n \n \n Type : AccountDetails\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:27\n \n \n\n\n \n \n \n \n \n \n \n \n \n to\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:28\n \n \n\n\n \n \n \n \n \n \n \n \n \n token\n \n \n \n \n \n \n Type : TxToken\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:30\n \n \n\n\n \n \n \n \n \n \n \n \n \n tx\n \n \n \n \n \n \n Type : Tx\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:31\n \n \n\n\n \n \n \n \n \n \n \n \n \n Optional\n type\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:33\n \n \n\n\n \n \n \n \n \n \n \n \n \n value\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:32\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n \n import { AccountDetails } from '@app/_models/account';\n\nclass BlocksBloom {\n low: number;\n blockFilter: string;\n blocktxFilter: string;\n alg: string;\n filterRounds: number;\n}\n\nclass TxToken {\n address: string;\n name: string;\n symbol: string;\n}\n\nclass Tx {\n block: number;\n success: boolean;\n timestamp: number;\n txHash: string;\n txIndex: number;\n}\n\nclass Transaction {\n from: string;\n sender: AccountDetails;\n to: string;\n recipient: AccountDetails;\n token: TxToken;\n tx: Tx;\n value: number;\n type?: string;\n}\n\nclass Conversion {\n destinationToken: TxToken;\n fromValue: number;\n sourceToken: TxToken;\n toValue: number;\n trader: string;\n user: AccountDetails;\n tx: Tx;\n}\n\nexport { BlocksBloom, TxToken, Tx, Transaction, Conversion };\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/TransactionDetailsComponent.html":{"url":"components/TransactionDetailsComponent.html","title":"component - TransactionDetailsComponent","body":"\n \n\n\n\n\n\n Components\n TransactionDetailsComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/pages/transactions/transaction-details/transaction-details.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-transaction-details\n \n\n \n styleUrls\n ./transaction-details.component.scss\n \n\n\n\n \n templateUrl\n ./transaction-details.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n recipientBloxbergLink\n \n \n senderBloxbergLink\n \n \n traderBloxbergLink\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n copyAddress\n \n \n ngOnInit\n \n \n Async\n reverseTransaction\n \n \n Async\n viewRecipient\n \n \n Async\n viewSender\n \n \n Async\n viewTrader\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n transaction\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(router: Router, transactionService: TransactionService, snackBar: MatSnackBar)\n \n \n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:18\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n transactionService\n \n \n TransactionService\n \n \n \n No\n \n \n \n \n snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n transaction\n \n \n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:15\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n copyAddress\n \n \n \n \n \n \n \ncopyAddress(address: string)\n \n \n\n\n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:59\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n address\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:26\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n reverseTransaction\n \n \n \n \n \n \n \n \n reverseTransaction()\n \n \n\n\n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:50\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n viewRecipient\n \n \n \n \n \n \n \n \n viewRecipient()\n \n \n\n\n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:42\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n viewSender\n \n \n \n \n \n \n \n \n viewSender()\n \n \n\n\n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:38\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n viewTrader\n \n \n \n \n \n \n \n \n viewTrader()\n \n \n\n\n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:46\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n recipientBloxbergLink\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:17\n \n \n\n\n \n \n \n \n \n \n \n \n \n senderBloxbergLink\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:16\n \n \n\n\n \n \n \n \n \n \n \n \n \n traderBloxbergLink\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:18\n \n \n\n\n \n \n\n\n\n\n\n \n import { ChangeDetectionStrategy, Component, Input, OnInit } from '@angular/core';\nimport { Router } from '@angular/router';\nimport { TransactionService } from '@app/_services';\nimport { copyToClipboard } from '@app/_helpers';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { strip0x } from '@src/assets/js/ethtx/dist/hex';\n\n@Component({\n selector: 'app-transaction-details',\n templateUrl: './transaction-details.component.html',\n styleUrls: ['./transaction-details.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TransactionDetailsComponent implements OnInit {\n @Input() transaction;\n senderBloxbergLink: string;\n recipientBloxbergLink: string;\n traderBloxbergLink: string;\n\n constructor(\n private router: Router,\n private transactionService: TransactionService,\n private snackBar: MatSnackBar\n ) {}\n\n ngOnInit(): void {\n if (this.transaction?.type === 'conversion') {\n this.traderBloxbergLink =\n 'https://blockexplorer.bloxberg.org/address/' + this.transaction?.trader + '/transactions';\n } else {\n this.senderBloxbergLink =\n 'https://blockexplorer.bloxberg.org/address/' + this.transaction?.from + '/transactions';\n this.recipientBloxbergLink =\n 'https://blockexplorer.bloxberg.org/address/' + this.transaction?.to + '/transactions';\n }\n }\n\n async viewSender(): Promise {\n await this.router.navigateByUrl(`/accounts/${strip0x(this.transaction.from)}`);\n }\n\n async viewRecipient(): Promise {\n await this.router.navigateByUrl(`/accounts/${strip0x(this.transaction.to)}`);\n }\n\n async viewTrader(): Promise {\n await this.router.navigateByUrl(`/accounts/${strip0x(this.transaction.trader)}`);\n }\n\n async reverseTransaction(): Promise {\n await this.transactionService.transferRequest(\n this.transaction.token.address,\n this.transaction.to,\n this.transaction.from,\n this.transaction.value\n );\n }\n\n copyAddress(address: string): void {\n if (copyToClipboard(address)) {\n this.snackBar.open(address + ' copied successfully!', 'Close', { duration: 3000 });\n }\n }\n}\n\n \n\n \n \n \n \n \n TRANSACTION DETAILS\n CLOSE \n \n \n \n \n \n Exchange: \n \n \n Sender: {{transaction.sender?.vcard.fn[0].value}}\n \n Sender Address:\n {{transaction.from}} \n \n \n View Sender\n \n \n Recipient: {{transaction.recipient?.vcard.fn[0].value}}\n \n Recipient Address:\n {{transaction.to}} \n \n \n View Recipient\n \n \n Amount: SRF {{transaction.value | tokenRatio}}\n \n \n Token: \n \n \n \n Address:\n {{transaction.token._address}}\n \n \n \n \n Name: Sarafu Token\n \n \n Symbol: SRF\n \n \n \n \n Transaction: \n \n \n Block: {{transaction.tx.block}}\n \n \n Index: {{transaction.tx.txIndex}}\n \n \n Hash: {{transaction.tx.txHash}}\n \n \n Success: {{transaction.tx.success}}\n \n \n Timestamp: {{transaction.tx.timestamp | date}}\n \n \n \n Resend SMS\n \n \n Reverse Transaction\n \n \n \n \n \n Exchange: \n \n \n Trader: {{transaction.sender?.vcard.fn[0].value}}\n \n \n \n Trader Address:\n {{transaction.trader}} \n \n \n \n \n View Trader\n \n \n \n Source Token: \n \n \n \n Address:\n {{transaction.sourceToken.address}}\n \n \n \n \n Name: {{transaction.sourceToken.name}}\n \n \n Symbol: {{transaction.sourceToken.symbol}}\n \n \n Amount: {{transaction.sourceToken.symbol + ' ' + transaction.fromValue}}\n \n \n \n \n Destination Token: \n \n \n \n Address:\n {{transaction.destinationToken.address}}\n \n \n \n \n Name: {{transaction.destinationToken.name}}\n \n \n Symbol: {{transaction.destinationToken.symbol}}\n \n \n Amount: {{transaction.destinationToken.symbol + ' ' + transaction.toValue}}\n \n \n \n \n Resend SMS\n \n \n Reverse Transaction\n \n \n \n \n\n\n \n\n \n \n ./transaction-details.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' TRANSACTION DETAILS CLOSE Exchange: Sender: {{transaction.sender?.vcard.fn[0].value}} Sender Address: {{transaction.from}} View Sender Recipient: {{transaction.recipient?.vcard.fn[0].value}} Recipient Address: {{transaction.to}} View Recipient Amount: SRF {{transaction.value | tokenRatio}} Token: Address: {{transaction.token._address}} Name: Sarafu Token Symbol: SRF Transaction: Block: {{transaction.tx.block}} Index: {{transaction.tx.txIndex}} Hash: {{transaction.tx.txHash}} Success: {{transaction.tx.success}} Timestamp: {{transaction.tx.timestamp | date}} Resend SMS Reverse Transaction Exchange: Trader: {{transaction.sender?.vcard.fn[0].value}} Trader Address: {{transaction.trader}} View Trader Source Token: Address: {{transaction.sourceToken.address}} Name: {{transaction.sourceToken.name}} Symbol: {{transaction.sourceToken.symbol}} Amount: {{transaction.sourceToken.symbol + \\' \\' + transaction.fromValue}} Destination Token: Address: {{transaction.destinationToken.address}} Name: {{transaction.destinationToken.name}} Symbol: {{transaction.destinationToken.symbol}} Amount: {{transaction.destinationToken.symbol + \\' \\' + transaction.toValue}} Resend SMS Reverse Transaction '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'TransactionDetailsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/TransactionService.html":{"url":"injectables/TransactionService.html","title":"injectable - TransactionService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n TransactionService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_services/transaction.service.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n registry\n \n \n Private\n transactionList\n \n \n transactions\n \n \n transactionsSubject\n \n \n userInfo\n \n \n web3\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n addTransaction\n \n \n getAccountInfo\n \n \n getAddressTransactions\n \n \n getAllTransactions\n \n \n resetTransactionsList\n \n \n Async\n setConversion\n \n \n Async\n setTransaction\n \n \n Async\n transferRequest\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(httpClient: HttpClient, authService: AuthService, userService: UserService, loggingService: LoggingService, registryService: RegistryService)\n \n \n \n \n Defined in src/app/_services/transaction.service.ts:31\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n httpClient\n \n \n HttpClient\n \n \n \n No\n \n \n \n \n authService\n \n \n AuthService\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n loggingService\n \n \n LoggingService\n \n \n \n No\n \n \n \n \n registryService\n \n \n RegistryService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n addTransaction\n \n \n \n \n \n \n \naddTransaction(transaction, cacheSize: number)\n \n \n\n\n \n \n Defined in src/app/_services/transaction.service.ts:111\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n transaction\n \n \n\n \n No\n \n\n\n \n \n cacheSize\n \n number\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getAccountInfo\n \n \n \n \n \n \n \ngetAccountInfo(account: string)\n \n \n\n\n \n \n Defined in src/app/_services/transaction.service.ts:124\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n account\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getAddressTransactions\n \n \n \n \n \n \n \ngetAddressTransactions(address: string, offset: number, limit: number)\n \n \n\n\n \n \n Defined in src/app/_services/transaction.service.ts:49\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n address\n \n string\n \n\n \n No\n \n\n\n \n \n offset\n \n number\n \n\n \n No\n \n\n\n \n \n limit\n \n number\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getAllTransactions\n \n \n \n \n \n \n \ngetAllTransactions(offset: number, limit: number)\n \n \n\n\n \n \n Defined in src/app/_services/transaction.service.ts:45\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n offset\n \n number\n \n\n \n No\n \n\n\n \n \n limit\n \n number\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n resetTransactionsList\n \n \n \n \n \n \n \nresetTransactionsList()\n \n \n\n\n \n \n Defined in src/app/_services/transaction.service.ts:119\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n setConversion\n \n \n \n \n \n \n \n \n setConversion(conversion, cacheSize)\n \n \n\n\n \n \n Defined in src/app/_services/transaction.service.ts:87\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n conversion\n\n \n No\n \n\n\n \n \n cacheSize\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Async\n setTransaction\n \n \n \n \n \n \n \n \n setTransaction(transaction, cacheSize: number)\n \n \n\n\n \n \n Defined in src/app/_services/transaction.service.ts:53\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n transaction\n \n \n\n \n No\n \n\n\n \n \n cacheSize\n \n number\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Async\n transferRequest\n \n \n \n \n \n \n \n \n transferRequest(tokenAddress: string, senderAddress: string, recipientAddress: string, value: number)\n \n \n\n\n \n \n Defined in src/app/_services/transaction.service.ts:130\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n tokenAddress\n \n string\n \n\n \n No\n \n\n\n \n \n senderAddress\n \n string\n \n\n \n No\n \n\n\n \n \n recipientAddress\n \n string\n \n\n \n No\n \n\n\n \n \n value\n \n number\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n registry\n \n \n \n \n \n \n Type : CICRegistry\n\n \n \n \n \n Defined in src/app/_services/transaction.service.ts:31\n \n \n\n\n \n \n \n \n \n \n \n \n \n Private\n transactionList\n \n \n \n \n \n \n Default value : new BehaviorSubject(this.transactions)\n \n \n \n \n Defined in src/app/_services/transaction.service.ts:27\n \n \n\n\n \n \n \n \n \n \n \n \n \n transactions\n \n \n \n \n \n \n Type : any[]\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in src/app/_services/transaction.service.ts:26\n \n \n\n\n \n \n \n \n \n \n \n \n \n transactionsSubject\n \n \n \n \n \n \n Default value : this.transactionList.asObservable()\n \n \n \n \n Defined in src/app/_services/transaction.service.ts:28\n \n \n\n\n \n \n \n \n \n \n \n \n \n userInfo\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/app/_services/transaction.service.ts:29\n \n \n\n\n \n \n \n \n \n \n \n \n \n web3\n \n \n \n \n \n \n Type : Web3\n\n \n \n \n \n Defined in src/app/_services/transaction.service.ts:30\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { first } from 'rxjs/operators';\nimport { BehaviorSubject, Observable } from 'rxjs';\nimport { environment } from '@src/environments/environment';\nimport { Envelope, User } from 'cic-client-meta';\nimport { UserService } from '@app/_services/user.service';\nimport { Keccak } from 'sha3';\nimport { utils } from 'ethers';\nimport { add0x, fromHex, strip0x, toHex } from '@src/assets/js/ethtx/dist/hex';\nimport { Tx } from '@src/assets/js/ethtx/dist';\nimport { toValue } from '@src/assets/js/ethtx/dist/tx';\nimport * as secp256k1 from 'secp256k1';\nimport { AuthService } from '@app/_services/auth.service';\nimport { defaultAccount } from '@app/_models';\nimport { LoggingService } from '@app/_services/logging.service';\nimport { HttpClient } from '@angular/common/http';\nimport { CICRegistry } from 'cic-client';\nimport { RegistryService } from '@app/_services/registry.service';\nimport Web3 from 'web3';\nconst vCard = require('vcard-parser');\n\n@Injectable({\n providedIn: 'root',\n})\nexport class TransactionService {\n transactions: any[] = [];\n private transactionList = new BehaviorSubject(this.transactions);\n transactionsSubject = this.transactionList.asObservable();\n userInfo: any;\n web3: Web3;\n registry: CICRegistry;\n\n constructor(\n private httpClient: HttpClient,\n private authService: AuthService,\n private userService: UserService,\n private loggingService: LoggingService,\n private registryService: RegistryService\n ) {\n this.web3 = this.registryService.getWeb3();\n this.registry = registryService.getRegistry();\n this.registry.load();\n }\n\n getAllTransactions(offset: number, limit: number): Observable {\n return this.httpClient.get(`${environment.cicCacheUrl}/tx/${offset}/${limit}`);\n }\n\n getAddressTransactions(address: string, offset: number, limit: number): Observable {\n return this.httpClient.get(`${environment.cicCacheUrl}/tx/${address}/${offset}/${limit}`);\n }\n\n async setTransaction(transaction, cacheSize: number): Promise {\n if (this.transactions.find((cachedTx) => cachedTx.tx.txHash === transaction.tx.txHash)) {\n return;\n }\n transaction.value = Number(transaction.value);\n transaction.type = 'transaction';\n try {\n this.userService\n .getAccountDetailsFromMeta(await User.toKey(transaction.from))\n .pipe(first())\n .subscribe(\n (res) => {\n transaction.sender = this.getAccountInfo(res.body);\n },\n (error) => {\n transaction.sender = defaultAccount;\n }\n );\n this.userService\n .getAccountDetailsFromMeta(await User.toKey(transaction.to))\n .pipe(first())\n .subscribe(\n (res) => {\n transaction.recipient = this.getAccountInfo(res.body);\n },\n (error) => {\n transaction.recipient = defaultAccount;\n }\n );\n } finally {\n this.addTransaction(transaction, cacheSize);\n }\n }\n\n async setConversion(conversion, cacheSize): Promise {\n if (this.transactions.find((cachedTx) => cachedTx.tx.txHash === conversion.tx.txHash)) {\n return;\n }\n conversion.type = 'conversion';\n conversion.fromValue = Number(conversion.fromValue);\n conversion.toValue = Number(conversion.toValue);\n try {\n this.userService\n .getAccountDetailsFromMeta(await User.toKey(conversion.trader))\n .pipe(first())\n .subscribe(\n (res) => {\n conversion.sender = conversion.recipient = this.getAccountInfo(res.body);\n },\n (error) => {\n conversion.sender = conversion.recipient = defaultAccount;\n }\n );\n } finally {\n this.addTransaction(conversion, cacheSize);\n }\n }\n\n addTransaction(transaction, cacheSize: number): void {\n this.transactions.unshift(transaction);\n if (this.transactions.length > cacheSize) {\n this.transactions.length = cacheSize;\n }\n this.transactionList.next(this.transactions);\n }\n\n resetTransactionsList(): void {\n this.transactions = [];\n this.transactionList.next(this.transactions);\n }\n\n getAccountInfo(account: string): any {\n const accountInfo = Envelope.fromJSON(JSON.stringify(account)).unwrap().m.data;\n accountInfo.vcard = vCard.parse(atob(accountInfo.vcard));\n return accountInfo;\n }\n\n async transferRequest(\n tokenAddress: string,\n senderAddress: string,\n recipientAddress: string,\n value: number\n ): Promise {\n const transferAuthAddress = await this.registry.getContractAddressByName(\n 'TransferAuthorization'\n );\n const hashFunction = new Keccak(256);\n hashFunction.update('createRequest(address,address,address,uint256)');\n const hash = hashFunction.digest();\n const methodSignature = hash.toString('hex').substring(0, 8);\n const abiCoder = new utils.AbiCoder();\n const abi = await abiCoder.encode(\n ['address', 'address', 'address', 'uint256'],\n [senderAddress, recipientAddress, tokenAddress, value]\n );\n const data = fromHex(methodSignature + strip0x(abi));\n const tx = new Tx(environment.bloxbergChainId);\n tx.nonce = await this.web3.eth.getTransactionCount(senderAddress);\n tx.gasPrice = Number(await this.web3.eth.getGasPrice());\n tx.gasLimit = 8000000;\n tx.to = fromHex(strip0x(transferAuthAddress));\n tx.value = toValue(value);\n tx.data = data;\n const txMsg = tx.message();\n const privateKey = this.authService.mutableKeyStore.getPrivateKey();\n if (!privateKey.isDecrypted()) {\n const password = window.prompt('password');\n await privateKey.decrypt(password);\n }\n const signatureObject = secp256k1.ecdsaSign(txMsg, privateKey.keyPacket.privateParams.d);\n const r = signatureObject.signature.slice(0, 32);\n const s = signatureObject.signature.slice(32);\n const v = signatureObject.recid;\n tx.setSignature(r, s, v);\n const txWire = add0x(toHex(tx.serializeRLP()));\n const result = await this.web3.eth.sendSignedTransaction(txWire);\n this.loggingService.sendInfoLevelMessage(`Result: ${result}`);\n const transaction = await this.web3.eth.getTransaction(result.transactionHash);\n this.loggingService.sendInfoLevelMessage(`Transaction: ${transaction}`);\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/TransactionServiceStub.html":{"url":"classes/TransactionServiceStub.html","title":"class - TransactionServiceStub","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n TransactionServiceStub\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/testing/transaction-service-stub.ts\n \n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getAllTransactions\n \n \n setConversion\n \n \n setTransaction\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n getAllTransactions\n \n \n \n \n \n \n \ngetAllTransactions(offset: number, limit: number)\n \n \n\n\n \n \n Defined in src/testing/transaction-service-stub.ts:8\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n offset\n \n number\n \n\n \n No\n \n\n\n \n \n limit\n \n number\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n setConversion\n \n \n \n \n \n \n \nsetConversion(conversion: any)\n \n \n\n\n \n \n Defined in src/testing/transaction-service-stub.ts:6\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n conversion\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n setTransaction\n \n \n \n \n \n \n \nsetTransaction(transaction: any, cacheSize: number)\n \n \n\n\n \n \n Defined in src/testing/transaction-service-stub.ts:4\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n transaction\n \n any\n \n\n \n No\n \n\n\n \n \n cacheSize\n \n number\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n import {Observable, of} from 'rxjs';\n\nexport class TransactionServiceStub {\n setTransaction(transaction: any, cacheSize: number): void {}\n\n setConversion(conversion: any): void {}\n\n getAllTransactions(offset: number, limit: number): Observable {\n return of('Hello World');\n }\n}\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/TransactionsComponent.html":{"url":"components/TransactionsComponent.html","title":"component - TransactionsComponent","body":"\n \n\n\n\n\n\n Components\n TransactionsComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/pages/transactions/transactions.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n AfterViewInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-transactions\n \n\n \n styleUrls\n ./transactions.component.scss\n \n\n\n\n \n templateUrl\n ./transactions.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n defaultPageSize\n \n \n pageSizeOptions\n \n \n paginator\n \n \n sort\n \n \n transaction\n \n \n transactionDataSource\n \n \n transactionDisplayedColumns\n \n \n transactions\n \n \n transactionsType\n \n \n transactionsTypes\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n doFilter\n \n \n downloadCsv\n \n \n filterTransactions\n \n \n ngAfterViewInit\n \n \n ngOnInit\n \n \n viewTransaction\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(blockSyncService: BlockSyncService, transactionService: TransactionService, userService: UserService)\n \n \n \n \n Defined in src/app/pages/transactions/transactions.component.ts:33\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n blockSyncService\n \n \n BlockSyncService\n \n \n \n No\n \n \n \n \n transactionService\n \n \n TransactionService\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n doFilter\n \n \n \n \n \n \n \ndoFilter(value: string, dataSource)\n \n \n\n\n \n \n Defined in src/app/pages/transactions/transactions.component.ts:60\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n string\n \n\n \n No\n \n\n\n \n \n dataSource\n \n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n downloadCsv\n \n \n \n \n \n \n \ndownloadCsv()\n \n \n\n\n \n \n Defined in src/app/pages/transactions/transactions.component.ts:82\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n filterTransactions\n \n \n \n \n \n \n \nfilterTransactions()\n \n \n\n\n \n \n Defined in src/app/pages/transactions/transactions.component.ts:64\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngAfterViewInit\n \n \n \n \n \n \n \nngAfterViewInit()\n \n \n\n\n \n \n Defined in src/app/pages/transactions/transactions.component.ts:77\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/pages/transactions/transactions.component.ts:43\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n viewTransaction\n \n \n \n \n \n \n \nviewTransaction(transaction)\n \n \n\n\n \n \n Defined in src/app/pages/transactions/transactions.component.ts:56\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n transaction\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n defaultPageSize\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Default value : 10\n \n \n \n \n Defined in src/app/pages/transactions/transactions.component.ts:25\n \n \n\n\n \n \n \n \n \n \n \n \n \n pageSizeOptions\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : [10, 20, 50, 100]\n \n \n \n \n Defined in src/app/pages/transactions/transactions.component.ts:26\n \n \n\n\n \n \n \n \n \n \n \n \n \n paginator\n \n \n \n \n \n \n Type : MatPaginator\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatPaginator)\n \n \n \n \n \n Defined in src/app/pages/transactions/transactions.component.ts:32\n \n \n\n\n \n \n \n \n \n \n \n \n \n sort\n \n \n \n \n \n \n Type : MatSort\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatSort)\n \n \n \n \n \n Defined in src/app/pages/transactions/transactions.component.ts:33\n \n \n\n\n \n \n \n \n \n \n \n \n \n transaction\n \n \n \n \n \n \n Type : Transaction\n\n \n \n \n \n Defined in src/app/pages/transactions/transactions.component.ts:28\n \n \n\n\n \n \n \n \n \n \n \n \n \n transactionDataSource\n \n \n \n \n \n \n Type : MatTableDataSource\n\n \n \n \n \n Defined in src/app/pages/transactions/transactions.component.ts:23\n \n \n\n\n \n \n \n \n \n \n \n \n \n transactionDisplayedColumns\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : ['sender', 'recipient', 'value', 'created', 'type']\n \n \n \n \n Defined in src/app/pages/transactions/transactions.component.ts:24\n \n \n\n\n \n \n \n \n \n \n \n \n \n transactions\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Defined in src/app/pages/transactions/transactions.component.ts:27\n \n \n\n\n \n \n \n \n \n \n \n \n \n transactionsType\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : 'all'\n \n \n \n \n Defined in src/app/pages/transactions/transactions.component.ts:29\n \n \n\n\n \n \n \n \n \n \n \n \n \n transactionsTypes\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Defined in src/app/pages/transactions/transactions.component.ts:30\n \n \n\n\n \n \n\n\n\n\n\n \n import {\n AfterViewInit,\n ChangeDetectionStrategy,\n Component,\n OnInit,\n ViewChild,\n} from '@angular/core';\nimport { BlockSyncService, TransactionService, UserService } from '@app/_services';\nimport { MatTableDataSource } from '@angular/material/table';\nimport { MatPaginator } from '@angular/material/paginator';\nimport { MatSort } from '@angular/material/sort';\nimport { exportCsv } from '@app/_helpers';\nimport { first } from 'rxjs/operators';\nimport { Transaction } from '@app/_models';\n\n@Component({\n selector: 'app-transactions',\n templateUrl: './transactions.component.html',\n styleUrls: ['./transactions.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TransactionsComponent implements OnInit, AfterViewInit {\n transactionDataSource: MatTableDataSource;\n transactionDisplayedColumns: Array = ['sender', 'recipient', 'value', 'created', 'type'];\n defaultPageSize: number = 10;\n pageSizeOptions: Array = [10, 20, 50, 100];\n transactions: Array;\n transaction: Transaction;\n transactionsType: string = 'all';\n transactionsTypes: Array;\n\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n\n constructor(\n private blockSyncService: BlockSyncService,\n private transactionService: TransactionService,\n private userService: UserService\n ) {\n this.blockSyncService.blockSync();\n }\n\n ngOnInit(): void {\n this.transactionService.transactionsSubject.subscribe((transactions) => {\n this.transactionDataSource = new MatTableDataSource(transactions);\n this.transactionDataSource.paginator = this.paginator;\n this.transactionDataSource.sort = this.sort;\n this.transactions = transactions;\n });\n this.userService\n .getTransactionTypes()\n .pipe(first())\n .subscribe((res) => (this.transactionsTypes = res));\n }\n\n viewTransaction(transaction): void {\n this.transaction = transaction;\n }\n\n doFilter(value: string, dataSource): void {\n dataSource.filter = value.trim().toLocaleLowerCase();\n }\n\n filterTransactions(): void {\n if (this.transactionsType === 'all') {\n this.transactionService.transactionsSubject.subscribe((transactions) => {\n this.transactionDataSource.data = transactions;\n this.transactions = transactions;\n });\n } else {\n this.transactionDataSource.data = this.transactions.filter(\n (transaction) => transaction.type === this.transactionsType\n );\n }\n }\n\n ngAfterViewInit(): void {\n this.transactionDataSource.paginator = this.paginator;\n this.transactionDataSource.sort = this.sort;\n }\n\n downloadCsv(): void {\n exportCsv(this.transactions, 'transactions');\n }\n}\n\n \n\n \n \n\n \n\n \n \n \n\n \n \n \n \n \n \n Home\n Transactions\n \n \n \n \n Transfers\n \n \n\n \n\n \n \n TRANSFER TYPE \n \n ALL TRANSFERS\n \n {{transactionType | uppercase}}\n \n \n \n EXPORT \n \n\n \n Filter \n \n search\n \n\n \n\n \n Sender \n {{transaction?.sender?.vcard.fn[0].value}} \n \n\n \n Recipient \n {{transaction?.recipient?.vcard.fn[0].value}} \n \n\n \n Value \n \n {{transaction?.value | tokenRatio}}\n {{transaction?.toValue | tokenRatio}}\n \n \n\n \n Created \n {{transaction?.tx.timestamp | date}} \n \n\n \n TYPE \n \n {{transaction?.type}} \n \n \n\n \n \n \n\n \n\n \n \n \n \n \n \n \n \n\n\n\n\n \n\n \n \n ./transactions.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Home Transactions Transfers TRANSFER TYPE ALL TRANSFERS {{transactionType | uppercase}} EXPORT Filter search Sender {{transaction?.sender?.vcard.fn[0].value}} Recipient {{transaction?.recipient?.vcard.fn[0].value}} Value {{transaction?.value | tokenRatio}} {{transaction?.toValue | tokenRatio}} Created {{transaction?.tx.timestamp | date}} TYPE {{transaction?.type}} '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'TransactionsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/TransactionsModule.html":{"url":"modules/TransactionsModule.html","title":"module - TransactionsModule","body":"\n \n\n\n\n\n Modules\n TransactionsModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_TransactionsModule\n\n\n\ncluster_TransactionsModule_imports\n\n\n\ncluster_TransactionsModule_exports\n\n\n\ncluster_TransactionsModule_declarations\n\n\n\n\nTransactionDetailsComponent\n\nTransactionDetailsComponent\n\n\n\nTransactionsModule\n\nTransactionsModule\n\nTransactionsModule -->\n\nTransactionDetailsComponent->TransactionsModule\n\n\n\n\n\nTransactionsComponent\n\nTransactionsComponent\n\nTransactionsModule -->\n\nTransactionsComponent->TransactionsModule\n\n\n\n\n\nTransactionDetailsComponent \n\nTransactionDetailsComponent \n\nTransactionDetailsComponent -->\n\nTransactionsModule->TransactionDetailsComponent \n\n\n\n\n\nSharedModule\n\nSharedModule\n\nTransactionsModule -->\n\nSharedModule->TransactionsModule\n\n\n\n\n\nTransactionsRoutingModule\n\nTransactionsRoutingModule\n\nTransactionsModule -->\n\nTransactionsRoutingModule->TransactionsModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/pages/transactions/transactions.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n TransactionDetailsComponent\n \n \n TransactionsComponent\n \n \n \n \n Imports\n \n \n SharedModule\n \n \n TransactionsRoutingModule\n \n \n \n \n Exports\n \n \n TransactionDetailsComponent\n \n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { TransactionsRoutingModule } from '@pages/transactions/transactions-routing.module';\nimport { TransactionsComponent } from '@pages/transactions/transactions.component';\nimport { TransactionDetailsComponent } from '@pages/transactions/transaction-details/transaction-details.component';\nimport { DataTablesModule } from 'angular-datatables';\nimport { SharedModule } from '@app/shared/shared.module';\nimport { MatTableModule } from '@angular/material/table';\nimport { MatCheckboxModule } from '@angular/material/checkbox';\nimport { MatPaginatorModule } from '@angular/material/paginator';\nimport { MatSortModule } from '@angular/material/sort';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatInputModule } from '@angular/material/input';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatIconModule } from '@angular/material/icon';\nimport { MatSelectModule } from '@angular/material/select';\nimport { MatCardModule } from '@angular/material/card';\nimport { MatRippleModule } from '@angular/material/core';\nimport { MatSnackBarModule } from '@angular/material/snack-bar';\n\n@NgModule({\n declarations: [TransactionsComponent, TransactionDetailsComponent],\n exports: [TransactionDetailsComponent],\n imports: [\n CommonModule,\n TransactionsRoutingModule,\n DataTablesModule,\n SharedModule,\n MatTableModule,\n MatCheckboxModule,\n MatPaginatorModule,\n MatSortModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n MatIconModule,\n MatSelectModule,\n MatCardModule,\n MatRippleModule,\n MatSnackBarModule,\n ],\n})\nexport class TransactionsModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/TransactionsRoutingModule.html":{"url":"modules/TransactionsRoutingModule.html","title":"module - TransactionsRoutingModule","body":"\n \n\n\n\n\n Modules\n TransactionsRoutingModule\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/pages/transactions/transactions-routing.module.ts\n \n\n\n\n\n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { TransactionsComponent } from '@pages/transactions/transactions.component';\n\nconst routes: Routes = [{ path: '', component: TransactionsComponent }];\n\n@NgModule({\n imports: [RouterModule.forChild(routes)],\n exports: [RouterModule],\n})\nexport class TransactionsRoutingModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/Tx.html":{"url":"classes/Tx.html","title":"class - Tx","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n Tx\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/transaction.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n block\n \n \n success\n \n \n timestamp\n \n \n txHash\n \n \n txIndex\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n block\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:18\n \n \n\n\n \n \n \n \n \n \n \n \n \n success\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:19\n \n \n\n\n \n \n \n \n \n \n \n \n \n timestamp\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:20\n \n \n\n\n \n \n \n \n \n \n \n \n \n txHash\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:21\n \n \n\n\n \n \n \n \n \n \n \n \n \n txIndex\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:22\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n \n import { AccountDetails } from '@app/_models/account';\n\nclass BlocksBloom {\n low: number;\n blockFilter: string;\n blocktxFilter: string;\n alg: string;\n filterRounds: number;\n}\n\nclass TxToken {\n address: string;\n name: string;\n symbol: string;\n}\n\nclass Tx {\n block: number;\n success: boolean;\n timestamp: number;\n txHash: string;\n txIndex: number;\n}\n\nclass Transaction {\n from: string;\n sender: AccountDetails;\n to: string;\n recipient: AccountDetails;\n token: TxToken;\n tx: Tx;\n value: number;\n type?: string;\n}\n\nclass Conversion {\n destinationToken: TxToken;\n fromValue: number;\n sourceToken: TxToken;\n toValue: number;\n trader: string;\n user: AccountDetails;\n tx: Tx;\n}\n\nexport { BlocksBloom, TxToken, Tx, Transaction, Conversion };\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/TxToken.html":{"url":"classes/TxToken.html","title":"class - TxToken","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n TxToken\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/transaction.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n address\n \n \n name\n \n \n symbol\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n address\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:12\n \n \n\n\n \n \n \n \n \n \n \n \n \n name\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:13\n \n \n\n\n \n \n \n \n \n \n \n \n \n symbol\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/_models/transaction.ts:14\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n \n import { AccountDetails } from '@app/_models/account';\n\nclass BlocksBloom {\n low: number;\n blockFilter: string;\n blocktxFilter: string;\n alg: string;\n filterRounds: number;\n}\n\nclass TxToken {\n address: string;\n name: string;\n symbol: string;\n}\n\nclass Tx {\n block: number;\n success: boolean;\n timestamp: number;\n txHash: string;\n txIndex: number;\n}\n\nclass Transaction {\n from: string;\n sender: AccountDetails;\n to: string;\n recipient: AccountDetails;\n token: TxToken;\n tx: Tx;\n value: number;\n type?: string;\n}\n\nclass Conversion {\n destinationToken: TxToken;\n fromValue: number;\n sourceToken: TxToken;\n toValue: number;\n trader: string;\n user: AccountDetails;\n tx: Tx;\n}\n\nexport { BlocksBloom, TxToken, Tx, Transaction, Conversion };\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UserServiceStub.html":{"url":"classes/UserServiceStub.html","title":"class - UserServiceStub","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UserServiceStub\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/testing/user-service-stub.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n actions\n \n \n users\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n approveAction\n \n \n getActionById\n \n \n getUser\n \n \n getUserById\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n actions\n \n \n \n \n \n \n Type : []\n\n \n \n \n \n Default value : [\n { id: 1, user: 'Tom', role: 'enroller', action: 'Disburse RSV 100', approval: false },\n { id: 2, user: 'Christine', role: 'admin', action: 'Change user phone number', approval: true },\n { id: 3, user: 'Will', role: 'superadmin', action: 'Reclaim RSV 1000', approval: true },\n { id: 4, user: 'Vivian', role: 'enroller', action: 'Complete user profile', approval: true },\n { id: 5, user: 'Jack', role: 'enroller', action: 'Reclaim RSV 200', approval: false },\n { id: 6, user: 'Patience', role: 'enroller', action: 'Change user information', approval: false }\n ]\n \n \n \n \n Defined in src/testing/user-service-stub.ts:12\n \n \n\n\n \n \n \n \n \n \n \n \n \n users\n \n \n \n \n \n \n Type : []\n\n \n \n \n \n Default value : [\n {id: 1, name: 'John Doe', phone: '+25412345678', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'user', created: '08/16/2020', balance: '12987', failedPinAttempts: 1, status: 'approved', bio: 'Bodaboda', gender: 'male'},\n {id: 2, name: 'Jane Buck', phone: '+25412341234', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'vendor', created: '04/02/2020', balance: '56281', failedPinAttempts: 0, status: 'approved', bio: 'Groceries', gender: 'female'},\n {id: 3, name: 'Mc Donald', phone: '+25498765432', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'group', created: '11/16/2020', balance: '450', failedPinAttempts: 2, status: 'unapproved', bio: 'Food', gender: 'male'},\n {id: 4, name: 'Hera Cles', phone: '+25498769876', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'user', created: '05/28/2020', balance: '5621', failedPinAttempts: 3, status: 'approved', bio: 'Shop', gender: 'female'},\n {id: 5, name: 'Silver Fia', phone: '+25462518374', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'token agent', created: '10/10/2020', balance: '817', failedPinAttempts: 0, status: 'unapproved', bio: 'Electronics', gender: 'male'},\n ]\n \n \n \n \n Defined in src/testing/user-service-stub.ts:4\n \n \n\n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n approveAction\n \n \n \n \n \n \n \napproveAction(id: number)\n \n \n\n\n \n \n Defined in src/testing/user-service-stub.ts:71\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n id\n \n number\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getActionById\n \n \n \n \n \n \n \ngetActionById(id: string)\n \n \n\n\n \n \n Defined in src/testing/user-service-stub.ts:61\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n id\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getUser\n \n \n \n \n \n \n \ngetUser(userKey: string)\n \n \n\n\n \n \n Defined in src/testing/user-service-stub.ts:37\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userKey\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getUserById\n \n \n \n \n \n \n \ngetUserById(id: string)\n \n \n\n\n \n \n Defined in src/testing/user-service-stub.ts:21\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n id\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n import {Observable, of} from 'rxjs';\n\nexport class UserServiceStub {\n users = [\n {id: 1, name: 'John Doe', phone: '+25412345678', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'user', created: '08/16/2020', balance: '12987', failedPinAttempts: 1, status: 'approved', bio: 'Bodaboda', gender: 'male'},\n {id: 2, name: 'Jane Buck', phone: '+25412341234', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'vendor', created: '04/02/2020', balance: '56281', failedPinAttempts: 0, status: 'approved', bio: 'Groceries', gender: 'female'},\n {id: 3, name: 'Mc Donald', phone: '+25498765432', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'group', created: '11/16/2020', balance: '450', failedPinAttempts: 2, status: 'unapproved', bio: 'Food', gender: 'male'},\n {id: 4, name: 'Hera Cles', phone: '+25498769876', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'user', created: '05/28/2020', balance: '5621', failedPinAttempts: 3, status: 'approved', bio: 'Shop', gender: 'female'},\n {id: 5, name: 'Silver Fia', phone: '+25462518374', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'token agent', created: '10/10/2020', balance: '817', failedPinAttempts: 0, status: 'unapproved', bio: 'Electronics', gender: 'male'},\n ];\n\n actions = [\n { id: 1, user: 'Tom', role: 'enroller', action: 'Disburse RSV 100', approval: false },\n { id: 2, user: 'Christine', role: 'admin', action: 'Change user phone number', approval: true },\n { id: 3, user: 'Will', role: 'superadmin', action: 'Reclaim RSV 1000', approval: true },\n { id: 4, user: 'Vivian', role: 'enroller', action: 'Complete user profile', approval: true },\n { id: 5, user: 'Jack', role: 'enroller', action: 'Reclaim RSV 200', approval: false },\n { id: 6, user: 'Patience', role: 'enroller', action: 'Change user information', approval: false }\n ];\n\n getUserById(id: string): any {\n return {\n id: 1,\n name: 'John Doe',\n phone: '+25412345678',\n address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865',\n type: 'user',\n created: '08/16/2020',\n balance: '12987',\n failedPinAttempts: 1,\n status: 'approved',\n bio: 'Bodaboda',\n gender: 'male'\n };\n }\n\n getUser(userKey: string): Observable {\n console.log('Here');\n return of({\n dateRegistered: 1595537208,\n key: {\n ethereum: [\n '0x51d3c8e2e421604e2b644117a362d589c5434739',\n '0x9D7c284907acbd4a0cE2dDD0AA69147A921a573D'\n ]\n },\n location: {\n external: {},\n latitude: '22.430670',\n longitude: '151.002995'\n },\n selling: [\n 'environment',\n 'health',\n 'transport'\n ],\n vcard: 'QkVHSU46VkNBUkQNClZFUlNJT046My4wDQpFTUFJTDphYXJuZXNlbkBob3RtYWlsLmNvbQ0KRk46S3VydMKgS3JhbmpjDQpOOktyYW5qYztLdXJ0Ozs7DQpURUw7VFlQPUNFTEw6NjkyNTAzMzQ5ODE5Ng0KRU5EOlZDQVJEDQo='\n });\n }\n\n getActionById(id: string): any {\n return {\n id: 1,\n user: 'Tom',\n role: 'enroller',\n action: 'Disburse RSV 100',\n approval: false\n };\n }\n\n approveAction(id: number): any {\n return {\n id: 1,\n user: 'Tom',\n role: 'enroller',\n action: 'Disburse RSV 100',\n approval: true\n };\n }\n}\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/W3.html":{"url":"classes/W3.html","title":"class - W3","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n W3\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/settings.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n engine\n \n \n provider\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n engine\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/app/_models/settings.ts:16\n \n \n\n\n \n \n \n \n \n \n \n \n \n provider\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/app/_models/settings.ts:17\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n \n class Settings {\n w3: W3 = {\n engine: undefined,\n provider: undefined,\n };\n scanFilter: any;\n registry: any;\n txHelper: any;\n\n constructor(scanFilter: any) {\n this.scanFilter = scanFilter;\n }\n}\n\nclass W3 {\n engine: any;\n provider: any;\n}\n\nexport { Settings, W3 };\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"coverage.html":{"url":"coverage.html","title":"coverage - coverage","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n Documentation coverage\n\n\n\n \n\n\n\n \n \n File\n Type\n Identifier\n Statements\n \n \n \n \n \n \n src/app/_eth/accountIndex.ts\n \n class\n AccountIndex\n \n 100 %\n (9/9)\n \n \n \n \n \n src/app/_eth/accountIndex.ts\n \n variable\n abi\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_eth/accountIndex.ts\n \n variable\n web3\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_eth/token-registry.ts\n \n class\n TokenRegistry\n \n 100 %\n (8/8)\n \n \n \n \n \n src/app/_eth/token-registry.ts\n \n variable\n abi\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_eth/token-registry.ts\n \n variable\n web3\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_guards/auth.guard.ts\n \n guard\n AuthGuard\n \n 100 %\n (3/3)\n \n \n \n \n \n src/app/_guards/role.guard.ts\n \n guard\n RoleGuard\n \n 100 %\n (3/3)\n \n \n \n \n \n src/app/_helpers/array-sum.ts\n \n function\n arraySum\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/clipboard-copy.ts\n \n function\n copyToClipboard\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/custom-error-state-matcher.ts\n \n class\n CustomErrorStateMatcher\n \n 100 %\n (2/2)\n \n \n \n \n \n src/app/_helpers/custom.validator.ts\n \n class\n CustomValidator\n \n 100 %\n (3/3)\n \n \n \n \n \n src/app/_helpers/export-csv.ts\n \n function\n exportCsv\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/global-error-handler.ts\n \n class\n HttpError\n \n 100 %\n (3/3)\n \n \n \n \n \n src/app/_helpers/global-error-handler.ts\n \n injectable\n GlobalErrorHandler\n \n 100 %\n (6/6)\n \n \n \n \n \n src/app/_helpers/http-getter.ts\n \n function\n HttpGetter\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n interceptor\n MockBackendInterceptor\n \n 100 %\n (2/2)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n accountTypes\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n actions\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n areaNames\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n areaTypes\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n categories\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n genders\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n MockBackendProvider\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n tokens\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n transactionTypes\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/read-csv.ts\n \n function\n parseData\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/read-csv.ts\n \n function\n readCsv\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/read-csv.ts\n \n variable\n objCsv\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/schema-validation.ts\n \n function\n personValidation\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/schema-validation.ts\n \n function\n vcardValidation\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_interceptors/error.interceptor.ts\n \n interceptor\n ErrorInterceptor\n \n 100 %\n (3/3)\n \n \n \n \n \n src/app/_interceptors/http-config.interceptor.ts\n \n interceptor\n HttpConfigInterceptor\n \n 100 %\n (3/3)\n \n \n \n \n \n src/app/_interceptors/logging.interceptor.ts\n \n interceptor\n LoggingInterceptor\n \n 100 %\n (3/3)\n \n \n \n \n \n src/app/_models/account.ts\n \n interface\n AccountDetails\n \n 0 %\n (0/11)\n \n \n \n \n \n src/app/_models/account.ts\n \n interface\n Meta\n \n 0 %\n (0/4)\n \n \n \n \n \n src/app/_models/account.ts\n \n interface\n MetaResponse\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/_models/account.ts\n \n interface\n Signature\n \n 0 %\n (0/5)\n \n \n \n \n \n src/app/_models/account.ts\n \n variable\n defaultAccount\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_models/mappings.ts\n \n interface\n Action\n \n 0 %\n (0/6)\n \n \n \n \n \n src/app/_models/mappings.ts\n \n interface\n AreaName\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/_models/mappings.ts\n \n interface\n AreaType\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/_models/mappings.ts\n \n interface\n Category\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/_models/settings.ts\n \n class\n Settings\n \n 0 %\n (0/6)\n \n \n \n \n \n src/app/_models/settings.ts\n \n class\n W3\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/_models/staff.ts\n \n interface\n Staff\n \n 0 %\n (0/6)\n \n \n \n \n \n src/app/_models/token.ts\n \n interface\n Token\n \n 0 %\n (0/9)\n \n \n \n \n \n src/app/_models/transaction.ts\n \n class\n BlocksBloom\n \n 0 %\n (0/6)\n \n \n \n \n \n src/app/_models/transaction.ts\n \n class\n Conversion\n \n 0 %\n (0/8)\n \n \n \n \n \n src/app/_models/transaction.ts\n \n class\n Transaction\n \n 0 %\n (0/9)\n \n \n \n \n \n src/app/_models/transaction.ts\n \n class\n Tx\n \n 0 %\n (0/6)\n \n \n \n \n \n src/app/_models/transaction.ts\n \n class\n TxToken\n \n 0 %\n (0/4)\n \n \n \n \n \n src/app/_pgp/pgp-key-store.ts\n \n class\n MutablePgpKeyStore\n \n 0 %\n (0/26)\n \n \n \n \n \n src/app/_pgp/pgp-key-store.ts\n \n interface\n MutableKeyStore\n \n 0 %\n (0/26)\n \n \n \n \n \n src/app/_pgp/pgp-key-store.ts\n \n variable\n keyring\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_pgp/pgp-signer.ts\n \n class\n PGPSigner\n \n 0 %\n (0/14)\n \n \n \n \n \n src/app/_pgp/pgp-signer.ts\n \n interface\n Signable\n \n 0 %\n (0/2)\n \n \n \n \n \n src/app/_pgp/pgp-signer.ts\n \n interface\n Signature\n \n 0 %\n (0/5)\n \n \n \n \n \n src/app/_pgp/pgp-signer.ts\n \n interface\n Signer\n \n 0 %\n (0/7)\n \n \n \n \n \n src/app/_pgp/pgp-signer.ts\n \n variable\n openpgp\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_services/auth.service.ts\n \n injectable\n AuthService\n \n 0 %\n (0/18)\n \n \n \n \n \n src/app/_services/block-sync.service.ts\n \n injectable\n BlockSyncService\n \n 0 %\n (0/10)\n \n \n \n \n \n src/app/_services/error-dialog.service.ts\n \n injectable\n ErrorDialogService\n \n 0 %\n (0/5)\n \n \n \n \n \n src/app/_services/location.service.ts\n \n injectable\n LocationService\n \n 0 %\n (0/6)\n \n \n \n \n \n src/app/_services/logging.service.ts\n \n injectable\n LoggingService\n \n 0 %\n (0/11)\n \n \n \n \n \n src/app/_services/registry.service.ts\n \n injectable\n RegistryService\n \n 0 %\n (0/7)\n \n \n \n \n \n src/app/_services/token.service.ts\n \n injectable\n TokenService\n \n 0 %\n (0/8)\n \n \n \n \n \n src/app/_services/transaction.service.ts\n \n injectable\n TransactionService\n \n 0 %\n (0/16)\n \n \n \n \n \n src/app/_services/transaction.service.ts\n \n variable\n vCard\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_services/user.service.ts\n \n injectable\n UserService\n \n 0 %\n (0/33)\n \n \n \n \n \n src/app/_services/user.service.ts\n \n variable\n vCard\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/app.component.ts\n \n component\n AppComponent\n \n 0 %\n (0/10)\n \n \n \n \n \n src/app/auth/_directives/password-toggle.directive.ts\n \n directive\n PasswordToggleDirective\n \n 0 %\n (0/5)\n \n \n \n \n \n src/app/auth/auth.component.ts\n \n component\n AuthComponent\n \n 0 %\n (0/11)\n \n \n \n \n \n src/app/pages/accounts/account-details/account-details.component.ts\n \n component\n AccountDetailsComponent\n \n 0 %\n (0/43)\n \n \n \n \n \n src/app/pages/accounts/account-search/account-search.component.ts\n \n component\n AccountSearchComponent\n \n 0 %\n (0/16)\n \n \n \n \n \n src/app/pages/accounts/accounts.component.ts\n \n component\n AccountsComponent\n \n 0 %\n (0/17)\n \n \n \n \n \n src/app/pages/accounts/create-account/create-account.component.ts\n \n component\n CreateAccountComponent\n \n 0 %\n (0/11)\n \n \n \n \n \n src/app/pages/admin/admin.component.ts\n \n component\n AdminComponent\n \n 0 %\n (0/15)\n \n \n \n \n \n src/app/pages/pages.component.ts\n \n component\n PagesComponent\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/pages/settings/organization/organization.component.ts\n \n component\n OrganizationComponent\n \n 0 %\n (0/7)\n \n \n \n \n \n src/app/pages/settings/settings.component.ts\n \n component\n SettingsComponent\n \n 0 %\n (0/12)\n \n \n \n \n \n src/app/pages/tokens/token-details/token-details.component.ts\n \n component\n TokenDetailsComponent\n \n 0 %\n (0/4)\n \n \n \n \n \n src/app/pages/tokens/tokens.component.ts\n \n component\n TokensComponent\n \n 0 %\n (0/11)\n \n \n \n \n \n src/app/pages/transactions/transaction-details/transaction-details.component.ts\n \n component\n TransactionDetailsComponent\n \n 0 %\n (0/12)\n \n \n \n \n \n src/app/pages/transactions/transactions.component.ts\n \n component\n TransactionsComponent\n \n 0 %\n (0/18)\n \n \n \n \n \n src/app/shared/_directives/menu-selection.directive.ts\n \n directive\n MenuSelectionDirective\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/shared/_directives/menu-toggle.directive.ts\n \n directive\n MenuToggleDirective\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/shared/_pipes/safe.pipe.ts\n \n pipe\n SafePipe\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/shared/_pipes/token-ratio.pipe.ts\n \n pipe\n TokenRatioPipe\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/shared/error-dialog/error-dialog.component.ts\n \n component\n ErrorDialogComponent\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/shared/footer/footer.component.ts\n \n component\n FooterComponent\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/shared/network-status/network-status.component.ts\n \n component\n NetworkStatusComponent\n \n 0 %\n (0/5)\n \n \n \n \n \n src/app/shared/sidebar/sidebar.component.ts\n \n component\n SidebarComponent\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/shared/topbar/topbar.component.ts\n \n component\n TopbarComponent\n \n 0 %\n (0/3)\n \n \n \n \n \n src/environments/environment.dev.ts\n \n variable\n environment\n \n 0 %\n (0/1)\n \n \n \n \n \n src/environments/environment.prod.ts\n \n variable\n environment\n \n 0 %\n (0/1)\n \n \n \n \n \n src/environments/environment.ts\n \n variable\n environment\n \n 0 %\n (0/1)\n \n \n \n \n \n src/testing/activated-route-stub.ts\n \n class\n ActivatedRouteStub\n \n 60 %\n (3/5)\n \n \n \n \n \n src/testing/router-link-directive-stub.ts\n \n directive\n RouterLinkDirectiveStub\n \n 0 %\n (0/4)\n \n \n \n \n \n src/testing/shared-module-stub.ts\n \n component\n FooterStubComponent\n \n 0 %\n (0/1)\n \n \n \n \n \n src/testing/shared-module-stub.ts\n \n component\n SidebarStubComponent\n \n 0 %\n (0/1)\n \n \n \n \n \n src/testing/shared-module-stub.ts\n \n component\n TopbarStubComponent\n \n 0 %\n (0/1)\n \n \n \n \n \n src/testing/token-service-stub.ts\n \n class\n TokenServiceStub\n \n 0 %\n (0/2)\n \n \n \n \n \n src/testing/transaction-service-stub.ts\n \n class\n TransactionServiceStub\n \n 0 %\n (0/4)\n \n \n \n \n \n src/testing/user-service-stub.ts\n \n class\n UserServiceStub\n \n 0 %\n (0/7)\n \n \n \n\n\n\n\n\n new Tablesort(document.getElementById('coverage-table'));\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"dependencies.html":{"url":"dependencies.html","title":"package-dependencies - dependencies","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n Dependencies\n \n \n \n @angular/animations : ~10.2.0\n \n @angular/cdk : ~10.2.7\n \n @angular/common : ~10.2.0\n \n @angular/compiler : ~10.2.0\n \n @angular/core : ~10.2.0\n \n @angular/forms : ~10.2.0\n \n @angular/material : ~10.2.7\n \n @angular/platform-browser : ~10.2.0\n \n @angular/platform-browser-dynamic : ~10.2.0\n \n @angular/router : ~10.2.0\n \n @angular/service-worker : ~10.2.0\n \n @popperjs/core : ^2.5.4\n \n angular-datatables : ^9.0.2\n \n block-syncer : ^0.2.4\n \n bootstrap : ^4.5.3\n \n chart.js : ^2.9.4\n \n cic-client : 0.1.4\n \n cic-client-meta : 0.0.7-alpha.6\n \n cic-schemas-data-validator : ^1.0.0-alpha.3\n \n datatables.net : ^1.10.22\n \n datatables.net-dt : ^1.10.22\n \n ethers : ^5.0.31\n \n http-server : ^0.12.3\n \n jquery : ^3.5.1\n \n mocha : ^8.2.1\n \n moolb : ^0.1.0\n \n ng2-charts : ^2.4.2\n \n ngx-logger : ^4.2.1\n \n openpgp : ^4.10.10\n \n popper.js : ^1.16.1\n \n rxjs : ~6.6.0\n \n sha3 : ^2.1.4\n \n tslib : ^2.0.0\n \n vcard-parser : ^1.0.0\n \n vcards-js : ^2.10.0\n \n web3 : ^1.3.0\n \n zone.js : ~0.10.2\n \n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/functions.html":{"url":"miscellaneous/functions.html","title":"miscellaneous-functions - functions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n Miscellaneous\n Functions\n\n\n\n Index\n \n \n \n \n \n \n arraySum   (src/.../array-sum.ts)\n \n \n copyToClipboard   (src/.../clipboard-copy.ts)\n \n \n exportCsv   (src/.../export-csv.ts)\n \n \n HttpGetter   (src/.../http-getter.ts)\n \n \n parseData   (src/.../read-csv.ts)\n \n \n personValidation   (src/.../schema-validation.ts)\n \n \n readCsv   (src/.../read-csv.ts)\n \n \n vcardValidation   (src/.../schema-validation.ts)\n \n \n \n \n \n \n\n\n src/app/_helpers/array-sum.ts\n \n \n \n \n \n \n \n \n arraySum\n \n \n \n \n \n \n \narraySum(arr)\n \n \n\n\n\n\n \n \n Returns the sum of all values in an array.\n\n\n \n Parameters :\n \n \n \n Name\n Optional\n Description\n \n \n \n \n arr\n\n \n No\n \n\n\n \n \nAn array of numbers.\n\n\n \n \n \n \n \n \n Example :\n \n Prints 6 for the array [1, 2, 3]:\n```typescript\n\nconsole.log(arraySum([1, 2, 3]));\n```\n\n \n \n \n Returns : number\n\n \n \n The sum of all values in the array.\n\n \n \n \n \n \n src/app/_helpers/clipboard-copy.ts\n \n \n \n \n \n \n \n \n copyToClipboard\n \n \n \n \n \n \n \ncopyToClipboard(text: any)\n \n \n\n\n\n\n \n \n Copies set text to clipboard.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n text\n \n any\n \n\n \n No\n \n\n\n \n \nThe text to be copied to the clipboard.\n\n\n \n \n \n \n \n \n Example :\n \n copies 'Hello World!' to the clipboard and prints "true":\n```typescript\n\nconsole.log(copyToClipboard('Hello World!'));\n```\n\n \n \n \n Returns : boolean\n\n \n \n true - If the copy operation is successful.\n\n \n \n \n \n \n src/app/_helpers/export-csv.ts\n \n \n \n \n \n \n \n \n exportCsv\n \n \n \n \n \n \n \nexportCsv(arrayData, filename, delimiter)\n \n \n\n\n\n\n \n \n Exports data to a CSV format and provides a download file.\n\n\n \n Parameters :\n \n \n \n Name\n Optional\n Description\n \n \n \n \n arrayData\n\n \n No\n \n\n\n \n \nAn array of data to be converted to CSV format.\n\n\n \n \n \n filename\n\n \n No\n \n\n\n \n \nThe name of the file to be downloaded.\n\n\n \n \n \n delimiter\n\n \n No\n \n\n\n \n \nThe delimiter to be used when converting to CSV format.\nDefaults to commas.\n\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n src/app/_helpers/http-getter.ts\n \n \n \n \n \n \n \n \n HttpGetter\n \n \n \n \n \n \n \nHttpGetter()\n \n \n\n\n\n\n \n \n Provides an avenue of fetching resources via HTTP calls. \n\n\n \n Returns : void\n\n \n \n \n \n \n src/app/_helpers/read-csv.ts\n \n \n \n \n \n \n \n \n parseData\n \n \n \n \n \n \n \nparseData(data: any)\n \n \n\n\n\n\n \n \n Parses data to CSV format.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n data\n \n any\n \n\n \n No\n \n\n\n \n \nThe data to be parsed.\n\n\n \n \n \n \n \n \n \n \n Returns : Array\n\n \n \n An array of the parsed data.\n\n \n \n \n \n \n \n \n \n \n \n \n \n readCsv\n \n \n \n \n \n \n \nreadCsv(input: any)\n \n \n\n\n\n\n \n \n Reads a csv file and converts it to an array.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n input\n \n any\n \n\n \n No\n \n\n\n \n \nThe file to be read.\n\n\n \n \n \n \n \n \n \n \n Returns : Array | void\n\n \n \n An array of the read data.\n\n \n \n \n \n \n src/app/_helpers/schema-validation.ts\n \n \n \n \n \n \n \n \n personValidation\n \n \n \n \n \n \n \npersonValidation(person: any)\n \n \n\n\n\n\n \n \n Validates a person object against the defined Person schema.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n person\n \n any\n \n\n \n No\n \n\n\n \n \nA person object to be validated.\n\n\n \n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n vcardValidation\n \n \n \n \n \n \n \nvcardValidation(vcard: any)\n \n \n\n\n\n\n \n \n Validates a vcard object against the defined Vcard schema.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n vcard\n \n any\n \n\n \n No\n \n\n\n \n \nA vcard object to be validated.\n\n\n \n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"index.html":{"url":"index.html","title":"getting-started - index","body":"\n \n\nCICADA\nAn angular admin web client for managing users and transactions in the CIC network.\nThis project was generated with Angular CLI version 10.2.0.\nAngular CLI\nRun npm install -g @angular/cli to install the angular CLI.\nDevelopment server\nRun npm run start:dev for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.\nCode scaffolding\nRun ng generate component component-name to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module.\nLazy-loading feature modules\nRun ng generate module module-name --route module-name --module app.module to generate a new module on route /module-name in the app module. \nBuild\nset you environment variables - set these via environment variables as found in set-env.ts\n// TODO create a .env file so people don't have to set these one-by-one\nRun npm run build:dev to build the project. The build artifacts will be stored in the dist/ directory. Use the build:prod script for a production build.\nRunning unit tests\nRun npm run test:dev to execute the unit tests via Karma.\nRunning end-to-end tests\nRun ng e2e to execute the end-to-end tests via Protractor.\nEnvironment variables\nEnvironment variables are contained in the .env file. See .env.example for a template.\nDefault environment variables are set in the set-env.ts file.\nOnce loaded they will be populated in the directory src/environments/.\nIt contains environment variables for development on environment.ts and production on environment.prod.ts.\nFurther help\nTo get more help on the Angular CLI use ng help or go check out the Angular CLI Overview and Command Reference page.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"license.html":{"url":"license.html","title":"getting-started - license","body":"\n \n\n GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. https://fsf.org/\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n Preamble The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n The precise terms and conditions for copying, distribution and\nmodification follow.\n TERMS AND CONDITIONS\nDefinitions.\n\"This License\" refers to version 3 of the GNU General Public License.\n\"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\nTo \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\nA \"covered work\" means either the unmodified Program or a work based\non the Program.\nTo \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\nTo \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\nAn interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\nSource Code.\nThe \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\nA \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\nThe \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\nThe \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\nThe Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\nThe Corresponding Source for a work in source code form is that\nsame work.\n\nBasic Permissions.\nAll rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\nYou may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\nConveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\nProtecting Users' Legal Rights From Anti-Circumvention Law.\nNo covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\nWhen you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\nConveying Verbatim Copies.\nYou may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\nYou may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\nConveying Modified Source Versions.\nYou may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\na) The work must carry prominent notices stating that you modified\nit, and giving a relevant date.\nb) The work must carry prominent notices stating that it is\nreleased under this License and any conditions added under section\n\nThis requirement modifies the requirement in section 4 to\n\"keep intact all notices\".\n\nc) You must license the entire work, as a whole, under this\nLicense to anyone who comes into possession of a copy. This\nLicense will therefore apply, along with any applicable section 7\nadditional terms, to the whole of the work, and all its parts,\nregardless of how they are packaged. This License gives no\npermission to license the work in any other way, but it does not\ninvalidate such permission if you have separately received it.\nd) If the work has interactive user interfaces, each must display\nAppropriate Legal Notices; however, if the Program has interactive\ninterfaces that do not display Appropriate Legal Notices, your\nwork need not make them do so.\nA compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\nConveying Non-Source Forms.\nYou may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\na) Convey the object code in, or embodied in, a physical product\n(including a physical distribution medium), accompanied by the\nCorresponding Source fixed on a durable physical medium\ncustomarily used for software interchange.\nb) Convey the object code in, or embodied in, a physical product\n(including a physical distribution medium), accompanied by a\nwritten offer, valid for at least three years and valid for as\nlong as you offer spare parts or customer support for that product\nmodel, to give anyone who possesses the object code either (1) a\ncopy of the Corresponding Source for all the software in the\nproduct that is covered by this License, on a durable physical\nmedium customarily used for software interchange, for a price no\nmore than your reasonable cost of physically performing this\nconveying of source, or (2) access to copy the\nCorresponding Source from a network server at no charge.\nc) Convey individual copies of the object code with a copy of the\nwritten offer to provide the Corresponding Source. This\nalternative is allowed only occasionally and noncommercially, and\nonly if you received the object code with such an offer, in accord\nwith subsection 6b.\nd) Convey the object code by offering access from a designated\nplace (gratis or for a charge), and offer equivalent access to the\nCorresponding Source in the same way through the same place at no\nfurther charge. You need not require recipients to copy the\nCorresponding Source along with the object code. If the place to\ncopy the object code is a network server, the Corresponding Source\nmay be on a different server (operated by you or a third party)\nthat supports equivalent copying facilities, provided you maintain\nclear directions next to the object code saying where to find the\nCorresponding Source. Regardless of what server hosts the\nCorresponding Source, you remain obligated to ensure that it is\navailable for as long as needed to satisfy these requirements.\ne) Convey the object code using peer-to-peer transmission, provided\nyou inform other peers where the object code and Corresponding\nSource of the work are being offered to the general public at no\ncharge under subsection 6d.\nA separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\nA \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\nIf you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\nThe requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\nCorresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\nAdditional Terms.\n\"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\nWhen you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\nNotwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\na) Disclaiming warranty or limiting liability differently from the\nterms of sections 15 and 16 of this License; or\nb) Requiring preservation of specified reasonable legal notices or\nauthor attributions in that material or in the Appropriate Legal\nNotices displayed by works containing it; or\nc) Prohibiting misrepresentation of the origin of that material, or\nrequiring that modified versions of such material be marked in\nreasonable ways as different from the original version; or\nd) Limiting the use for publicity purposes of names of licensors or\nauthors of the material; or\ne) Declining to grant rights under trademark law for use of some\ntrade names, trademarks, or service marks; or\nf) Requiring indemnification of licensors and authors of that\nmaterial by anyone who conveys the material (or modified versions of\nit) with contractual assumptions of liability to the recipient, for\nany liability that these contractual assumptions directly impose on\nthose licensors and authors.\nAll other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\nIf you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\nAdditional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\nTermination.\nYou may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\nHowever, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\nMoreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\nTermination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\nAcceptance Not Required for Having Copies.\nYou are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\nAutomatic Licensing of Downstream Recipients.\nEach time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\nAn \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\nYou may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\nPatents.\nA \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\nA contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\nEach contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\nIn the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\nIf you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\nIf, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\nA patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\nNothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\nNo Surrender of Others' Freedom.\nIf conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\nUse with the GNU Affero General Public License.\nNotwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\nRevised Versions of this License.\nThe Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\nEach version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\nIf the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\nLater license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\nDisclaimer of Warranty.\nTHERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\nLimitation of Liability.\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\nInterpretation of Sections 15 and 16.\nIf the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New ProgramsIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\nTo do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\nCIC Staff Client\nCopyright (C) 2021 Grassroots Economics\nThis program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\nYou should have received a copy of the GNU General Public License\nalong with this program. If not, see https://www.gnu.org/licenses/.\n\n\nAlso add information on how to contact you by electronic and paper mail.\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n Copyright (C) 2021 Grassroots Economics\nThis program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\nThis is free software, and you are welcome to redistribute it\nunder certain conditions; type `show c' for details.The hypothetical commands show w' andshow c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\nhttps://www.gnu.org/licenses/.\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\nhttps://www.gnu.org/licenses/why-not-lgpl.html.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules.html":{"url":"modules.html","title":"modules - modules","body":"\n \n\n\n\n\n Modules\n\n\n \n \n \n \n AccountsModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n AccountsRoutingModule\n \n \n \n No graph available.\n \n \n Browse\n \n \n \n \n \n \n \n AdminModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n AdminRoutingModule\n \n \n \n No graph available.\n \n \n Browse\n \n \n \n \n \n \n \n AppModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n AppRoutingModule\n \n \n \n No graph available.\n \n \n Browse\n \n \n \n \n \n \n \n AuthModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n AuthRoutingModule\n \n \n \n No graph available.\n \n \n Browse\n \n \n \n \n \n \n \n PagesModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n PagesRoutingModule\n \n \n \n No graph available.\n \n \n Browse\n \n \n \n \n \n \n \n SettingsModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n SettingsRoutingModule\n \n \n \n No graph available.\n \n \n Browse\n \n \n \n \n \n \n \n SharedModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n TokensModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n TokensRoutingModule\n \n \n \n No graph available.\n \n \n Browse\n \n \n \n \n \n \n \n TransactionsModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n TransactionsRoutingModule\n \n \n \n No graph available.\n \n \n Browse\n \n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"overview.html":{"url":"overview.html","title":"overview - overview","body":"\n \n\n\n\n Overview\n\n \n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AccountsModule\n\n\n\ncluster_AccountsModule_declarations\n\n\n\ncluster_AccountsModule_imports\n\n\n\ncluster_AdminModule\n\n\n\ncluster_AdminModule_declarations\n\n\n\ncluster_AdminModule_imports\n\n\n\ncluster_AppModule\n\n\n\ncluster_AppModule_declarations\n\n\n\ncluster_AppModule_imports\n\n\n\ncluster_AppModule_bootstrap\n\n\n\ncluster_AppModule_providers\n\n\n\ncluster_AuthModule\n\n\n\ncluster_AuthModule_declarations\n\n\n\ncluster_AuthModule_imports\n\n\n\ncluster_PagesModule\n\n\n\ncluster_PagesModule_declarations\n\n\n\ncluster_PagesModule_imports\n\n\n\ncluster_SettingsModule\n\n\n\ncluster_SettingsModule_declarations\n\n\n\ncluster_SettingsModule_imports\n\n\n\ncluster_SharedModule\n\n\n\ncluster_SharedModule_declarations\n\n\n\ncluster_SharedModule_exports\n\n\n\ncluster_TokensModule\n\n\n\ncluster_TokensModule_declarations\n\n\n\ncluster_TokensModule_imports\n\n\n\ncluster_TransactionsModule\n\n\n\ncluster_TransactionsModule_declarations\n\n\n\ncluster_TransactionsModule_imports\n\n\n\ncluster_TransactionsModule_exports\n\n\n\n\nAccountDetailsComponent\n\nAccountDetailsComponent\n\n\n\nAccountsModule\n\nAccountsModule\n\nAccountsModule -->\n\nAccountDetailsComponent->AccountsModule\n\n\n\n\n\nAccountSearchComponent\n\nAccountSearchComponent\n\nAccountsModule -->\n\nAccountSearchComponent->AccountsModule\n\n\n\n\n\nAccountsComponent\n\nAccountsComponent\n\nAccountsModule -->\n\nAccountsComponent->AccountsModule\n\n\n\n\n\nCreateAccountComponent\n\nCreateAccountComponent\n\nAccountsModule -->\n\nCreateAccountComponent->AccountsModule\n\n\n\n\n\nAccountsRoutingModule\n\nAccountsRoutingModule\n\nAccountsModule -->\n\nAccountsRoutingModule->AccountsModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nAccountsModule -->\n\nSharedModule->AccountsModule\n\n\n\n\n\nTransactionsModule\n\nTransactionsModule\n\nTransactionsModule -->\n\nSharedModule->TransactionsModule\n\n\n\n\n\nAdminModule\n\nAdminModule\n\nAdminModule -->\n\nSharedModule->AdminModule\n\n\n\n\n\nAppModule\n\nAppModule\n\nAppModule -->\n\nSharedModule->AppModule\n\n\n\n\n\nPagesModule\n\nPagesModule\n\nPagesModule -->\n\nSharedModule->PagesModule\n\n\n\n\n\nSettingsModule\n\nSettingsModule\n\nSettingsModule -->\n\nSharedModule->SettingsModule\n\n\n\n\n\nFooterComponent \n\nFooterComponent \n\nFooterComponent -->\n\nSharedModule->FooterComponent \n\n\n\n\n\nMenuSelectionDirective \n\nMenuSelectionDirective \n\nMenuSelectionDirective -->\n\nSharedModule->MenuSelectionDirective \n\n\n\n\n\nNetworkStatusComponent \n\nNetworkStatusComponent \n\nNetworkStatusComponent -->\n\nSharedModule->NetworkStatusComponent \n\n\n\n\n\nSafePipe \n\nSafePipe \n\nSafePipe -->\n\nSharedModule->SafePipe \n\n\n\n\n\nSidebarComponent \n\nSidebarComponent \n\nSidebarComponent -->\n\nSharedModule->SidebarComponent \n\n\n\n\n\nTokenRatioPipe \n\nTokenRatioPipe \n\nTokenRatioPipe -->\n\nSharedModule->TokenRatioPipe \n\n\n\n\n\nTopbarComponent \n\nTopbarComponent \n\nTopbarComponent -->\n\nSharedModule->TopbarComponent \n\n\n\n\n\nTokensModule\n\nTokensModule\n\nTokensModule -->\n\nSharedModule->TokensModule\n\n\n\nAccountsModule -->\n\nTransactionsModule->AccountsModule\n\n\n\n\n\nTransactionDetailsComponent \n\nTransactionDetailsComponent \n\nTransactionDetailsComponent -->\n\nTransactionsModule->TransactionDetailsComponent \n\n\n\n\n\nAdminComponent\n\nAdminComponent\n\nAdminModule -->\n\nAdminComponent->AdminModule\n\n\n\n\n\nAdminRoutingModule\n\nAdminRoutingModule\n\nAdminModule -->\n\nAdminRoutingModule->AdminModule\n\n\n\n\n\nAppComponent\n\nAppComponent\n\nAppModule -->\n\nAppComponent->AppModule\n\n\n\n\n\nAppComponent \n\nAppComponent \n\nAppComponent -->\n\nAppModule->AppComponent \n\n\n\n\n\nAppRoutingModule\n\nAppRoutingModule\n\nAppModule -->\n\nAppRoutingModule->AppModule\n\n\n\n\n\nErrorInterceptor\n\nErrorInterceptor\n\nAppModule -->\n\nErrorInterceptor->AppModule\n\n\n\n\n\nGlobalErrorHandler\n\nGlobalErrorHandler\n\nAppModule -->\n\nGlobalErrorHandler->AppModule\n\n\n\n\n\nHttpConfigInterceptor\n\nHttpConfigInterceptor\n\nAppModule -->\n\nHttpConfigInterceptor->AppModule\n\n\n\n\n\nLoggingInterceptor\n\nLoggingInterceptor\n\nAppModule -->\n\nLoggingInterceptor->AppModule\n\n\n\n\n\nAuthComponent\n\nAuthComponent\n\n\n\nAuthModule\n\nAuthModule\n\nAuthModule -->\n\nAuthComponent->AuthModule\n\n\n\n\n\nPasswordToggleDirective\n\nPasswordToggleDirective\n\nAuthModule -->\n\nPasswordToggleDirective->AuthModule\n\n\n\n\n\nAuthRoutingModule\n\nAuthRoutingModule\n\nAuthModule -->\n\nAuthRoutingModule->AuthModule\n\n\n\n\n\nPagesComponent\n\nPagesComponent\n\nPagesModule -->\n\nPagesComponent->PagesModule\n\n\n\n\n\nPagesRoutingModule\n\nPagesRoutingModule\n\nPagesModule -->\n\nPagesRoutingModule->PagesModule\n\n\n\n\n\nOrganizationComponent\n\nOrganizationComponent\n\nSettingsModule -->\n\nOrganizationComponent->SettingsModule\n\n\n\n\n\nSettingsComponent\n\nSettingsComponent\n\nSettingsModule -->\n\nSettingsComponent->SettingsModule\n\n\n\n\n\nSettingsRoutingModule\n\nSettingsRoutingModule\n\nSettingsModule -->\n\nSettingsRoutingModule->SettingsModule\n\n\n\n\n\nErrorDialogComponent\n\nErrorDialogComponent\n\nSharedModule -->\n\nErrorDialogComponent->SharedModule\n\n\n\n\n\nFooterComponent\n\nFooterComponent\n\nSharedModule -->\n\nFooterComponent->SharedModule\n\n\n\n\n\nMenuSelectionDirective\n\nMenuSelectionDirective\n\nSharedModule -->\n\nMenuSelectionDirective->SharedModule\n\n\n\n\n\nMenuToggleDirective\n\nMenuToggleDirective\n\nSharedModule -->\n\nMenuToggleDirective->SharedModule\n\n\n\n\n\nNetworkStatusComponent\n\nNetworkStatusComponent\n\nSharedModule -->\n\nNetworkStatusComponent->SharedModule\n\n\n\n\n\nSafePipe\n\nSafePipe\n\nSharedModule -->\n\nSafePipe->SharedModule\n\n\n\n\n\nSidebarComponent\n\nSidebarComponent\n\nSharedModule -->\n\nSidebarComponent->SharedModule\n\n\n\n\n\nTokenRatioPipe\n\nTokenRatioPipe\n\nSharedModule -->\n\nTokenRatioPipe->SharedModule\n\n\n\n\n\nTopbarComponent\n\nTopbarComponent\n\nSharedModule -->\n\nTopbarComponent->SharedModule\n\n\n\n\n\nTokenDetailsComponent\n\nTokenDetailsComponent\n\nTokensModule -->\n\nTokenDetailsComponent->TokensModule\n\n\n\n\n\nTokensComponent\n\nTokensComponent\n\nTokensModule -->\n\nTokensComponent->TokensModule\n\n\n\n\n\nTokensRoutingModule\n\nTokensRoutingModule\n\nTokensModule -->\n\nTokensRoutingModule->TokensModule\n\n\n\n\n\nTransactionDetailsComponent\n\nTransactionDetailsComponent\n\nTransactionsModule -->\n\nTransactionDetailsComponent->TransactionsModule\n\n\n\n\n\nTransactionsComponent\n\nTransactionsComponent\n\nTransactionsModule -->\n\nTransactionsComponent->TransactionsModule\n\n\n\n\n\nTransactionsRoutingModule\n\nTransactionsRoutingModule\n\nTransactionsModule -->\n\nTransactionsRoutingModule->TransactionsModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n \n\n \n \n \n \n \n \n 17 Modules\n \n \n \n \n \n \n \n \n 22 Components\n \n \n \n \n \n \n \n 4 Directives\n \n \n \n \n \n \n \n 10 Injectables\n \n \n \n \n \n \n \n 2 Pipes\n \n \n \n \n \n \n \n 18 Classes\n \n \n \n \n \n \n \n 2 Guards\n \n \n \n \n \n \n \n 14 Interfaces\n \n \n \n \n \n \n \n \n 0 \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"routes.html":{"url":"routes.html","title":"routes - routes","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Routes\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/variables.html":{"url":"miscellaneous/variables.html","title":"miscellaneous-variables - variables","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n Miscellaneous\n Variables\n\n\n\n Index\n \n \n \n \n \n \n abi   (src/.../accountIndex.ts)\n \n \n abi   (src/.../token-registry.ts)\n \n \n accountTypes   (src/.../mock-backend.ts)\n \n \n actions   (src/.../mock-backend.ts)\n \n \n areaNames   (src/.../mock-backend.ts)\n \n \n areaTypes   (src/.../mock-backend.ts)\n \n \n categories   (src/.../mock-backend.ts)\n \n \n defaultAccount   (src/.../account.ts)\n \n \n environment   (src/.../environment.dev.ts)\n \n \n environment   (src/.../environment.prod.ts)\n \n \n environment   (src/.../environment.ts)\n \n \n genders   (src/.../mock-backend.ts)\n \n \n keyring   (src/.../pgp-key-store.ts)\n \n \n MockBackendProvider   (src/.../mock-backend.ts)\n \n \n objCsv   (src/.../read-csv.ts)\n \n \n openpgp   (src/.../pgp-signer.ts)\n \n \n tokens   (src/.../mock-backend.ts)\n \n \n transactionTypes   (src/.../mock-backend.ts)\n \n \n vCard   (src/.../transaction.service.ts)\n \n \n vCard   (src/.../user.service.ts)\n \n \n web3   (src/.../accountIndex.ts)\n \n \n web3   (src/.../token-registry.ts)\n \n \n \n \n \n \n\n\n src/app/_eth/accountIndex.ts\n \n \n \n \n \n \n \n \n abi\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : require('@src/assets/js/block-sync/data/AccountRegistry.json')\n \n \n\n \n \n Fetch the account registry contract's ABI. \n\n \n \n\n \n \n \n \n \n \n \n \n \n web3\n \n \n \n \n \n \n Type : Web3\n\n \n \n \n \n Default value : new Web3(environment.web3Provider)\n \n \n\n \n \n Establish a connection to the blockchain network. \n\n \n \n\n \n \n\n src/app/_eth/token-registry.ts\n \n \n \n \n \n \n \n \n abi\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : require('@src/assets/js/block-sync/data/TokenUniqueSymbolIndex.json')\n \n \n\n \n \n Fetch the token registry contract's ABI. \n\n \n \n\n \n \n \n \n \n \n \n \n \n web3\n \n \n \n \n \n \n Type : Web3\n\n \n \n \n \n Default value : new Web3(environment.web3Provider)\n \n \n\n \n \n Establish a connection to the blockchain network. \n\n \n \n\n \n \n\n src/app/_helpers/mock-backend.ts\n \n \n \n \n \n \n \n \n accountTypes\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : ['user', 'cashier', 'vendor', 'tokenagent', 'group']\n \n \n\n \n \n A mock of the curated account types. \n\n \n \n\n \n \n \n \n \n \n \n \n \n actions\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : [\n { id: 1, user: 'Tom', role: 'enroller', action: 'Disburse RSV 100', approval: false },\n { id: 2, user: 'Christine', role: 'admin', action: 'Change user phone number', approval: true },\n { id: 3, user: 'Will', role: 'superadmin', action: 'Reclaim RSV 1000', approval: true },\n { id: 4, user: 'Vivian', role: 'enroller', action: 'Complete user profile', approval: true },\n { id: 5, user: 'Jack', role: 'enroller', action: 'Reclaim RSV 200', approval: false },\n { id: 6, user: 'Patience', role: 'enroller', action: 'Change user information', approval: false },\n]\n \n \n\n \n \n A mock of actions made by the admin staff. \n\n \n \n\n \n \n \n \n \n \n \n \n \n areaNames\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : [\n {\n name: 'Mukuru Nairobi',\n locations: [\n 'kayaba',\n 'kayba',\n 'kambi',\n 'mukuru',\n 'masai',\n 'hazina',\n 'south',\n 'tetra',\n 'tetrapak',\n 'ruben',\n 'rueben',\n 'kingston',\n 'korokocho',\n 'kingstone',\n 'kamongo',\n 'lungalunga',\n 'sinai',\n 'sigei',\n 'lungu',\n 'lunga lunga',\n 'owino road',\n 'seigei',\n ],\n },\n {\n name: 'Kinango Kwale',\n locations: [\n 'amani',\n 'bofu',\n 'chibuga',\n 'chikomani',\n 'chilongoni',\n 'chigojoni',\n 'chinguluni',\n 'chigato',\n 'chigale',\n 'chikole',\n 'chilongoni',\n 'chilumani',\n 'chigojoni',\n 'chikomani',\n 'chizini',\n 'chikomeni',\n 'chidzuvini',\n 'chidzivuni',\n 'chikuyu',\n 'chizingo',\n 'doti',\n 'dzugwe',\n 'dzivani',\n 'dzovuni',\n 'hanje',\n 'kasemeni',\n 'katundani',\n 'kibandaogo',\n 'kibandaongo',\n 'kwale',\n 'kinango',\n 'kidzuvini',\n 'kalalani',\n 'kafuduni',\n 'kaloleni',\n 'kilibole',\n 'lutsangani',\n 'peku',\n 'gona',\n 'guro',\n 'gandini',\n 'mkanyeni',\n 'myenzeni',\n 'miyenzeni',\n 'miatsiani',\n 'mienzeni',\n 'mnyenzeni',\n 'minyenzeni',\n 'miyani',\n 'mioleni',\n 'makuluni',\n 'mariakani',\n 'makobeni',\n 'madewani',\n 'mwangaraba',\n 'mwashanga',\n 'miloeni',\n 'mabesheni',\n 'mazeras',\n 'mazera',\n 'mlola',\n 'muugano',\n 'mulunguni',\n 'mabesheni',\n 'miatsani',\n 'miatsiani',\n 'mwache',\n 'mwangani',\n 'mwehavikonje',\n 'miguneni',\n 'nzora',\n 'nzovuni',\n 'vikinduni',\n 'vikolani',\n 'vitangani',\n 'viogato',\n 'vyogato',\n 'vistangani',\n 'yapha',\n 'yava',\n 'yowani',\n 'ziwani',\n 'majengo',\n 'matuga',\n 'vigungani',\n 'vidziweni',\n 'vinyunduni',\n 'ukunda',\n 'kokotoni',\n 'mikindani',\n ],\n },\n {\n name: 'Misc Nairobi',\n locations: [\n 'nairobi',\n 'west',\n 'lindi',\n 'kibera',\n 'kibira',\n 'kibra',\n 'makina',\n 'soweto',\n 'olympic',\n 'kangemi',\n 'ruiru',\n 'congo',\n 'kawangware',\n 'kwangware',\n 'donholm',\n 'dagoreti',\n 'dandora',\n 'kabete',\n 'sinai',\n 'donhom',\n 'donholm',\n 'huruma',\n 'kitengela',\n 'makadara',\n ',mlolongo',\n 'kenyatta',\n 'mlolongo',\n 'tassia',\n 'tasia',\n 'gatina',\n '56',\n 'industrial',\n 'kariobangi',\n 'kasarani',\n 'kayole',\n 'mathare',\n 'pipe',\n 'juja',\n 'uchumi',\n 'jogoo',\n 'umoja',\n 'thika',\n 'kikuyu',\n 'stadium',\n 'buru buru',\n 'ngong',\n 'starehe',\n 'mwiki',\n 'fuata',\n 'kware',\n 'kabiro',\n 'embakassi',\n 'embakasi',\n 'kmoja',\n 'east',\n 'githurai',\n 'landi',\n 'langata',\n 'limuru',\n 'mathere',\n 'dagoretti',\n 'kirembe',\n 'muugano',\n 'mwiki',\n 'toi market',\n ],\n },\n {\n name: 'Misc Mombasa',\n locations: [\n 'mombasa',\n 'likoni',\n 'bangla',\n 'bangladesh',\n 'kizingo',\n 'old town',\n 'makupa',\n 'mvita',\n 'ngombeni',\n 'ngómbeni',\n 'ombeni',\n 'magongo',\n 'miritini',\n 'changamwe',\n 'jomvu',\n 'ohuru',\n 'tudor',\n 'diani',\n ],\n },\n {\n name: 'Kisauni',\n locations: [\n 'bamburi',\n 'kisauni',\n 'mworoni',\n 'nyali',\n 'shanzu',\n 'bombolulu',\n 'mtopanga',\n 'mjambere',\n 'majaoni',\n 'manyani',\n 'magogoni',\n 'junda',\n 'mwakirunge',\n 'mshomoroni',\n ],\n },\n {\n name: 'Kilifi',\n locations: [\n 'kilfi',\n 'kilifi',\n 'mtwapa',\n 'takaungu',\n 'makongeni',\n 'mnarani',\n 'mnarani',\n 'office',\n 'g.e',\n 'ge',\n 'raibai',\n 'ribe',\n ],\n },\n {\n name: 'Kakuma',\n locations: ['kakuma'],\n },\n {\n name: 'Kitui',\n locations: ['kitui', 'mwingi'],\n },\n {\n name: 'Nyanza',\n locations: [\n 'busia',\n 'nyalgunga',\n 'mbita',\n 'siaya',\n 'kisumu',\n 'nyalenda',\n 'hawinga',\n 'rangala',\n 'uyoma',\n 'mumias',\n 'homabay',\n 'homaboy',\n 'migori',\n 'kusumu',\n ],\n },\n {\n name: 'Misc Rural Counties',\n locations: [\n 'makueni',\n 'meru',\n 'kisii',\n 'bomet',\n 'machakos',\n 'bungoma',\n 'eldoret',\n 'kakamega',\n 'kericho',\n 'kajiado',\n 'nandi',\n 'nyeri',\n 'wote',\n 'kiambu',\n 'mwea',\n 'nakuru',\n 'narok',\n ],\n },\n {\n name: 'other',\n locations: ['other', 'none', 'unknown'],\n },\n]\n \n \n\n \n \n A mock of curated area names. \n\n \n \n\n \n \n \n \n \n \n \n \n \n areaTypes\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : [\n {\n name: 'urban',\n area: ['urban', 'nairobi', 'mombasa'],\n },\n {\n name: 'rural',\n area: ['rural', 'kakuma', 'kwale', 'kinango', 'kitui', 'nyanza'],\n },\n {\n name: 'periurban',\n area: ['kilifi', 'periurban'],\n },\n {\n name: 'other',\n area: ['other'],\n },\n]\n \n \n\n \n \n A mock of curated area types. \n\n \n \n\n \n \n \n \n \n \n \n \n \n categories\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : [\n {\n name: 'system',\n products: ['system', 'office main', 'office main phone'],\n },\n {\n name: 'education',\n products: [\n 'book',\n 'coach',\n 'teacher',\n 'sch',\n 'school',\n 'pry',\n 'education',\n 'student',\n 'mwalimu',\n 'maalim',\n 'consultant',\n 'consult',\n 'college',\n 'university',\n 'lecturer',\n 'primary',\n 'secondary',\n 'daycare',\n 'babycare',\n 'baby care',\n 'elim',\n 'eimu',\n 'nursery',\n 'red cross',\n 'volunteer',\n 'instructor',\n 'journalist',\n 'lesson',\n 'academy',\n 'headmistress',\n 'headteacher',\n 'cyber',\n 'researcher',\n 'professor',\n 'demo',\n 'expert',\n 'tution',\n 'tuition',\n 'children',\n 'headmaster',\n 'educator',\n 'Marital counsellor',\n 'counsellor',\n 'trainer',\n 'vijana',\n 'youth',\n 'intern',\n 'redcross',\n 'KRCS',\n 'danish',\n 'science',\n 'data',\n 'facilitator',\n 'vitabu',\n 'kitabu',\n ],\n },\n {\n name: 'faith',\n products: [\n 'pastor',\n 'imam',\n 'madrasa',\n 'religous',\n 'religious',\n 'ustadh',\n 'ustadhi',\n 'Marital counsellor',\n 'counsellor',\n 'church',\n 'kanisa',\n 'mksiti',\n 'donor',\n ],\n },\n {\n name: 'government',\n products: [\n 'elder',\n 'chief',\n 'police',\n 'government',\n 'country',\n 'county',\n 'soldier',\n 'village admin',\n 'ward',\n 'leader',\n 'kra',\n 'mailman',\n 'immagration',\n 'immigration',\n ],\n },\n {\n name: 'environment',\n products: [\n 'conservation',\n 'toilet',\n 'choo',\n 'garbage',\n 'fagio',\n 'waste',\n 'tree',\n 'taka',\n 'scrap',\n 'cleaning',\n 'gardener',\n 'rubbish',\n 'usafi',\n 'mazingira',\n 'miti',\n 'trash',\n 'cleaner',\n 'plastic',\n 'collection',\n 'seedling',\n 'seedlings',\n 'recycling',\n ],\n },\n {\n name: 'farming',\n products: [\n 'farm',\n 'farmer',\n 'farming',\n 'mkulima',\n 'kulima',\n 'ukulima',\n 'wakulima',\n 'jembe',\n 'shamba',\n ],\n },\n {\n name: 'labour',\n products: [\n 'artist',\n 'agent',\n 'guard',\n 'askari',\n 'accountant',\n 'baker',\n 'beadwork',\n 'beauty',\n 'business',\n 'barber',\n 'casual',\n 'electrian',\n 'caretaker',\n 'car wash',\n 'capenter',\n 'construction',\n 'chef',\n 'catering',\n 'cobler',\n 'cobbler',\n 'carwash',\n 'dhobi',\n 'landlord',\n 'design',\n 'carpenter',\n 'fundi',\n 'hawking',\n 'hawker',\n 'househelp',\n 'hsehelp',\n 'house help',\n 'help',\n 'housegirl',\n 'kushona',\n 'juakali',\n 'jualikali',\n 'juacali',\n 'jua kali',\n 'shepherd',\n 'makuti',\n 'kujenga',\n 'kinyozi',\n 'kazi',\n 'knitting',\n 'kufua',\n 'fua',\n 'hustler',\n 'biashara',\n 'labour',\n 'labor',\n 'laundry',\n 'repair',\n 'hair',\n 'posho',\n 'mill',\n 'mtambo',\n 'uvuvi',\n 'engineer',\n 'manager',\n 'tailor',\n 'nguo',\n 'mason',\n 'mtumba',\n 'garage',\n 'mechanic',\n 'mjenzi',\n 'mfugaji',\n 'painter',\n 'receptionist',\n 'printing',\n 'programming',\n 'plumb',\n 'charging',\n 'salon',\n 'mpishi',\n 'msusi',\n 'mgema',\n 'footballer',\n 'photocopy',\n 'peddler',\n 'staff',\n 'sales',\n 'service',\n 'saloon',\n 'seremala',\n 'security',\n 'insurance',\n 'secretary',\n 'shoe',\n 'shepard',\n 'shephard',\n 'tout',\n 'tv',\n 'mvuvi',\n 'mawe',\n 'majani',\n 'maembe',\n 'freelance',\n 'mjengo',\n 'electronics',\n 'photographer',\n 'programmer',\n 'electrician',\n 'washing',\n 'bricks',\n 'welder',\n 'welding',\n 'working',\n 'worker',\n 'watchman',\n 'waiter',\n 'waitress',\n 'viatu',\n 'yoga',\n 'guitarist',\n 'house',\n 'artisan',\n 'musician',\n 'trade',\n 'makonge',\n 'ujenzi',\n 'vendor',\n 'watchlady',\n 'marketing',\n 'beautician',\n 'photo',\n 'metal work',\n 'supplier',\n 'law firm',\n 'brewer',\n ],\n },\n {\n name: 'food',\n products: [\n 'avocado',\n 'bhajia',\n 'bajia',\n 'mbonga',\n 'bofu',\n 'beans',\n 'biscuits',\n 'biringanya',\n 'banana',\n 'bananas',\n 'crisps',\n 'chakula',\n 'coconut',\n 'chapati',\n 'cereal',\n 'chipo',\n 'chapo',\n 'chai',\n 'chips',\n 'cassava',\n 'cake',\n 'cereals',\n 'cook',\n 'corn',\n 'coffee',\n 'chicken',\n 'dagaa',\n 'donut',\n 'dough',\n 'groundnuts',\n 'hotel',\n 'holel',\n 'hoteli',\n 'butcher',\n 'butchery',\n 'fruit',\n 'food',\n 'fruits',\n 'fish',\n 'githeri',\n 'grocery',\n 'grocer',\n 'pojo',\n 'papa',\n 'goats',\n 'mabenda',\n 'mbenda',\n 'poultry',\n 'soda',\n 'peanuts',\n 'potatoes',\n 'samosa',\n 'soko',\n 'samaki',\n 'tomato',\n 'tomatoes',\n 'mchele',\n 'matunda',\n 'mango',\n 'melon',\n 'mellon',\n 'nyanya',\n 'nyama',\n 'omena',\n 'umena',\n 'ndizi',\n 'njugu',\n 'kamba kamba',\n 'khaimati',\n 'kaimati',\n 'kunde',\n 'kuku',\n 'kahawa',\n 'keki',\n 'muguka',\n 'miraa',\n 'milk',\n 'choma',\n 'maziwa',\n 'mboga',\n 'mbog',\n 'busaa',\n 'chumvi',\n 'cabbages',\n 'mabuyu',\n 'machungwa',\n 'mbuzi',\n 'mnazi',\n 'mchicha',\n 'ngombe',\n 'ngano',\n 'nazi',\n 'oranges',\n 'peanuts',\n 'mkate',\n 'bread',\n 'mikate',\n 'vitungu',\n 'sausages',\n 'maize',\n 'mbata',\n 'mchuzi',\n 'mchuuzi',\n 'mandazi',\n 'mbaazi',\n 'mahindi',\n 'maandazi',\n 'mogoka',\n 'meat',\n 'mhogo',\n 'mihogo',\n 'muhogo',\n 'maharagwe',\n 'miwa',\n 'mahamri',\n 'mitumba',\n 'simsim',\n 'porridge',\n 'pilau',\n 'vegetable',\n 'egg',\n 'mayai',\n 'mifugo',\n 'unga',\n 'good',\n 'sima',\n 'sweet',\n 'sweats',\n 'sambusa',\n 'snacks',\n 'sugar',\n 'suger',\n 'ugoro',\n 'sukari',\n 'soup',\n 'spinach',\n 'smokie',\n 'smokies',\n 'sukuma',\n 'tea',\n 'uji',\n 'ugali',\n 'uchuzi',\n 'uchuuzi',\n 'viazi',\n 'yoghurt',\n 'yogurt',\n 'wine',\n 'marondo',\n 'maandzi',\n 'matoke',\n 'omeno',\n 'onions',\n 'nzugu',\n 'korosho',\n 'barafu',\n 'juice',\n ],\n },\n {\n name: 'water',\n products: ['maji', 'water'],\n },\n {\n name: 'health',\n products: [\n 'agrovet',\n 'dispensary',\n 'barakoa',\n 'chemist',\n 'Chemicals',\n 'chv',\n 'doctor',\n 'daktari',\n 'dawa',\n 'hospital',\n 'herbalist',\n 'mganga',\n 'sabuni',\n 'soap',\n 'nurse',\n 'heath',\n 'community health worker',\n 'clinic',\n 'clinical',\n 'mask',\n 'medicine',\n 'lab technician',\n 'pharmacy',\n 'cosmetics',\n 'veterinary',\n 'vet',\n 'sickly',\n 'emergency response',\n 'emergency',\n ],\n },\n {\n name: 'savings',\n products: ['chama', 'group', 'savings', 'loan', 'silc', 'vsla', 'credit', 'finance'],\n },\n {\n name: 'shop',\n products: [\n 'bag',\n 'bead',\n 'belt',\n 'bedding',\n 'jik',\n 'bed',\n 'cement',\n 'botique',\n 'boutique',\n 'lines',\n 'kibanda',\n 'kiosk',\n 'spareparts',\n 'candy',\n 'cloth',\n 'electricals',\n 'mutumba',\n 'cafe',\n 'leso',\n 'lesso',\n 'duka',\n 'spare parts',\n 'socks',\n 'malimali',\n 'mitungi',\n 'mali mali',\n 'hardware',\n 'detergent',\n 'detergents',\n 'dera',\n 'retail',\n 'kamba',\n 'pombe',\n 'pampers',\n 'pool',\n 'phone',\n 'simu',\n 'mangwe',\n 'mikeka',\n 'movie',\n 'shop',\n 'acces',\n 'mchanga',\n 'uto',\n 'airtime',\n 'matress',\n 'mattress',\n 'mattresses',\n 'mpsea',\n 'mpesa',\n 'shirt',\n 'wholesaler',\n 'perfume',\n 'playstation',\n 'tissue',\n 'vikapu',\n 'uniform',\n 'flowers',\n 'vitenge',\n 'utencils',\n 'utensils',\n 'station',\n 'jewel',\n 'pool table',\n 'club',\n 'pub',\n 'bar',\n 'furniture',\n 'm-pesa',\n 'vyombo',\n ],\n },\n {\n name: 'transport',\n products: [\n 'kebeba',\n 'beba',\n 'bebabeba',\n 'bike',\n 'bicycle',\n 'matatu',\n 'boda',\n 'bodaboda',\n 'cart',\n 'carrier',\n 'tour',\n 'travel',\n 'driver',\n 'dereva',\n 'tout',\n 'conductor',\n 'kubeba',\n 'tuktuk',\n 'taxi',\n 'piki',\n 'pikipiki',\n 'manamba',\n 'trasportion',\n 'mkokoteni',\n 'mover',\n 'motorist',\n 'motorbike',\n 'transport',\n 'transpoter',\n 'gari',\n 'magari',\n 'makanga',\n 'car',\n ],\n },\n {\n name: 'fuel/energy',\n products: [\n 'timber',\n 'timberyard',\n 'biogas',\n 'charcol',\n 'charcoal',\n 'kuni',\n 'mbao',\n 'fuel',\n 'makaa',\n 'mafuta',\n 'moto',\n 'solar',\n 'stima',\n 'fire',\n 'firewood',\n 'wood',\n 'oil',\n 'taa',\n 'gas',\n 'paraffin',\n 'parrafin',\n 'parafin',\n 'petrol',\n 'petro',\n 'kerosine',\n 'kerosene',\n 'diesel',\n ],\n },\n {\n name: 'other',\n products: ['other', 'none', 'unknown', 'none'],\n },\n]\n \n \n\n \n \n A mock of the user's business categories \n\n \n \n\n \n \n \n \n \n \n \n \n \n genders\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : ['male', 'female', 'other']\n \n \n\n \n \n A mock of curated genders \n\n \n \n\n \n \n \n \n \n \n \n \n \n MockBackendProvider\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n provide: HTTP_INTERCEPTORS,\n useClass: MockBackendInterceptor,\n multi: true,\n}\n \n \n\n \n \n Exports the MockBackendInterceptor as an Angular provider. \n\n \n \n\n \n \n \n \n \n \n \n \n \n tokens\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : [\n {\n name: 'Giftable Reserve',\n symbol: 'GRZ',\n address: '0xa686005CE37Dce7738436256982C3903f2E4ea8E',\n supply: '1000000001000000000000000000',\n decimals: '18',\n reserves: {},\n },\n {\n name: 'Demo Token',\n symbol: 'DEMO',\n address: '0xc80D6aFF8194114c52AEcD84c9f15fd5c8abb187',\n supply: '99999999999999998976',\n decimals: '18',\n reserves: {\n '0xa686005CE37Dce7738436256982C3903f2E4ea8E': {\n weight: '1000000',\n balance: '99999999999999998976',\n },\n },\n reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a',\n },\n {\n name: 'Foo Token',\n symbol: 'FOO',\n address: '0x9ceD86089f7aBB5A97B40eb0E7521e7aa308d354',\n supply: '1000000000000000001014',\n decimals: '18',\n reserves: {\n '0xa686005CE37Dce7738436256982C3903f2E4ea8E': {\n weight: '1000000',\n balance: '1000000000000000001014',\n },\n },\n reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a',\n },\n {\n name: 'testb',\n symbol: 'tstb',\n address: '0xC63cFA91A3BFf41cE31Ff436f67D3ACBC977DB95',\n supply: '99000',\n decimals: '18',\n reserves: {\n '0xa686005CE37Dce7738436256982C3903f2E4ea8E': { weight: '1000000', balance: '99000' },\n },\n reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a',\n },\n {\n name: 'testa',\n symbol: 'tsta',\n address: '0x8fA4101ef19D0a078239d035659e92b278bD083C',\n supply: '9981',\n decimals: '18',\n reserves: {\n '0xa686005CE37Dce7738436256982C3903f2E4ea8E': { weight: '1000000', balance: '9981' },\n },\n reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a',\n },\n {\n name: 'testc',\n symbol: 'tstc',\n address: '0x4A6fA6bc3BfE4C9661bC692D9798425350C9e3D4',\n supply: '100990',\n decimals: '18',\n reserves: {\n '0xa686005CE37Dce7738436256982C3903f2E4ea8E': { weight: '1000000', balance: '100990' },\n },\n reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a',\n },\n]\n \n \n\n \n \n A mock of the tokens in the system. \n\n \n \n\n \n \n \n \n \n \n \n \n \n transactionTypes\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : [\n 'transactions',\n 'conversions',\n 'disbursements',\n 'rewards',\n 'reclamation',\n]\n \n \n\n \n \n A mock of curated transaction types. \n\n \n \n\n \n \n\n src/app/_models/account.ts\n \n \n \n \n \n \n \n \n defaultAccount\n \n \n \n \n \n \n Type : AccountDetails\n\n \n \n \n \n Default value : {\n date_registered: Date.now(),\n gender: 'other',\n identities: {\n evm: {\n 'bloxberg:8996': [''],\n 'oldchain:1': [''],\n },\n latitude: 0,\n longitude: 0,\n },\n location: {\n area_name: 'Kilifi',\n },\n products: [],\n vcard: {\n email: [\n {\n value: '',\n },\n ],\n fn: [\n {\n value: 'Sarafu Contract',\n },\n ],\n n: [\n {\n value: ['Sarafu', 'Contract'],\n },\n ],\n tel: [\n {\n meta: {\n TYP: [],\n },\n value: '',\n },\n ],\n version: [\n {\n value: '3.0',\n },\n ],\n },\n}\n \n \n\n\n \n \n\n src/environments/environment.dev.ts\n \n \n \n \n \n \n \n \n environment\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n production: false,\n bloxbergChainId: 8996,\n logLevel: NgxLoggerLevel.ERROR,\n serverLogLevel: NgxLoggerLevel.OFF,\n loggingUrl: '',\n cicMetaUrl: 'https://meta.dev.grassrootseconomics.net',\n publicKeysUrl: 'https://dev.grassrootseconomics.net/.well-known/publickeys/',\n cicCacheUrl: 'https://cache.dev.grassrootseconomics.net',\n web3Provider: 'wss://bloxberg-ws.dev.grassrootseconomics.net',\n cicUssdUrl: 'https://ussd.dev.grassrootseconomics.net',\n registryAddress: '0xea6225212005e86a4490018ded4bf37f3e772161',\n trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C',\n}\n \n \n\n\n \n \n\n src/environments/environment.prod.ts\n \n \n \n \n \n \n \n \n environment\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n production: true,\n bloxbergChainId: 8996,\n logLevel: NgxLoggerLevel.ERROR,\n serverLogLevel: NgxLoggerLevel.OFF,\n loggingUrl: '',\n cicMetaUrl: 'https://meta.dev.grassrootseconomics.net',\n publicKeysUrl: 'https://dev.grassrootseconomics.net/.well-known/publickeys/',\n cicCacheUrl: 'https://cache.dev.grassrootseconomics.net',\n web3Provider: 'wss://bloxberg-ws.dev.grassrootseconomics.net',\n cicUssdUrl: 'https://ussd.dev.grassrootseconomics.net',\n registryAddress: '0xAf1B487491073C2d49136Db3FD87E293302CF839',\n trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C',\n}\n \n \n\n\n \n \n\n src/environments/environment.ts\n \n \n \n \n \n \n \n \n environment\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n production: false,\n bloxbergChainId: 8996,\n logLevel: NgxLoggerLevel.ERROR,\n serverLogLevel: NgxLoggerLevel.OFF,\n loggingUrl: 'http://localhost:8000',\n cicMetaUrl: 'https://meta.dev.grassrootseconomics.net',\n publicKeysUrl: 'https://dev.grassrootseconomics.net/.well-known/publickeys/',\n cicCacheUrl: 'https://cache.dev.grassrootseconomics.net',\n web3Provider: 'wss://bloxberg-ws.dev.grassrootseconomics.net',\n cicUssdUrl: 'https://ussd.dev.grassrootseconomics.net',\n registryAddress: '0xea6225212005e86a4490018ded4bf37f3e772161',\n trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C',\n}\n \n \n\n\n \n \n\n src/app/_pgp/pgp-key-store.ts\n \n \n \n \n \n \n \n \n keyring\n \n \n \n \n \n \n Default value : new openpgp.Keyring()\n \n \n\n\n \n \n\n src/app/_helpers/read-csv.ts\n \n \n \n \n \n \n \n \n objCsv\n \n \n \n \n \n \n Type : literal type\n\n \n \n \n \n Default value : {\n size: 0,\n dataFile: [],\n}\n \n \n\n \n \n An object defining the properties of the data read. \n\n \n \n\n \n \n\n src/app/_pgp/pgp-signer.ts\n \n \n \n \n \n \n \n \n openpgp\n \n \n \n \n \n \n Default value : require('openpgp')\n \n \n\n\n \n \n\n src/app/_services/transaction.service.ts\n \n \n \n \n \n \n \n \n vCard\n \n \n \n \n \n \n Default value : require('vcard-parser')\n \n \n\n\n \n \n\n src/app/_services/user.service.ts\n \n \n \n \n \n \n \n \n vCard\n \n \n \n \n \n \n Default value : require('vcard-parser')\n \n \n\n\n \n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"}} + "index": {"version":"2.3.9","fields":["title","body"],"fieldVectors":[["title/interfaces/AccountDetails.html",[0,0.742,1,2.037]],["body/interfaces/AccountDetails.html",[0,1.407,1,3.583,2,1.517,3,0.1,4,0.078,5,0.057,6,2.771,7,1.145,8,1.613,9,2.629,10,0.335,11,0.987,12,1.292,13,5.287,14,4.017,15,3.551,16,5.182,17,4.63,18,5.182,19,4.209,20,3.869,21,0.718,22,4.031,23,1.513,24,0.011,25,2.06,26,5.721,27,4.029,28,4.029,29,4.029,30,3.798,31,3.798,32,2.033,33,4.029,34,3.142,35,3.6,36,1.95,37,4.029,38,4.029,39,4.029,40,4.007,41,4.029,42,3.427,43,3.869,44,2.5,45,2.5,46,2.287,47,2.019,48,2.427,49,2.388,50,3.798,51,2.195,52,1.177,53,0.948,54,3.6,55,2.771,56,2.427,57,2.771,58,3.6,59,3.6,60,2.94,61,0.974,62,0.1,63,0.005,64,0.007,65,0.005]],["title/classes/AccountIndex.html",[66,0.111,67,3.403]],["body/classes/AccountIndex.html",[0,0.513,3,0.069,4,0.054,5,0.039,7,1.745,8,2.411,10,0.232,11,0.756,12,0.964,21,0.581,23,1.393,24,0.011,25,2.067,53,1.344,56,1.225,59,5.043,62,0.069,63,0.003,64,0.005,65,0.003,66,0.077,67,3.566,68,1.406,69,2.35,70,2.305,71,5.294,72,5.632,73,5.03,74,3.923,75,3.923,76,7.413,77,3.3,78,1.894,79,4.872,80,5.992,81,6.569,82,0.735,83,3.899,84,3.292,85,4.465,86,4.465,87,4.465,88,6.819,89,0.622,90,3.923,91,1.007,92,4.465,93,1.46,94,3.988,95,6.698,96,1.05,97,0.556,98,5.174,99,3.101,100,2.35,101,2.942,102,2.942,103,4.465,104,2.942,105,4.465,106,3.923,107,4.465,108,2.758,109,5.831,110,3.923,111,6.025,112,4.465,113,5.831,114,6.415,115,2.942,116,1.285,117,2.683,118,2.516,119,3.923,120,3.923,121,4.465,122,2.942,123,2.758,124,4.166,125,3.3,126,3.3,127,2.247,128,3.923,129,3.566,130,2.942,131,3.566,132,2.942,133,4.465,134,2.942,135,3.3,136,4.465,137,5.397,138,1.713,139,2.454,140,4.465,141,4.465,142,2.942,143,5.992,144,0.254,145,3.383,146,1.817,147,0.909,148,1.266,149,1.518,150,2.35,151,3.087,152,2.35,153,2.585,154,2.35,155,2.35,156,1.419,157,2.174,158,2.585,159,3.097,160,3.923,161,2.585,162,2.585,163,4.742,164,2.585,165,4.465,166,2.942,167,2.84,168,2.942,169,2.942,170,2.942,171,2.942,172,4.742,173,2.942,174,5.397,175,2.507,176,2.942,177,2.942,178,2.942]],["title/components/AccountSearchComponent.html",[179,0.624,180,1.354]],["body/components/AccountSearchComponent.html",[3,0.07,4,0.055,5,0.04,8,2.206,10,0.235,11,0.765,12,0.478,21,0.638,24,0.011,25,1.549,36,1.676,52,1.971,62,0.07,63,0.004,64,0.005,65,0.004,66,0.078,72,3.956,78,0.873,82,0.743,84,2.765,89,0.954,91,1.144,93,0.976,96,0.52,97,0.601,99,2.396,116,0.971,117,2.231,118,2.308,127,3.382,138,1.658,144,0.405,148,1.285,149,1.541,156,1.435,167,2.528,179,0.798,180,1.929,181,1.611,182,1.065,183,1.204,184,1.065,185,0.976,186,7.327,187,6.162,188,2.623,189,1.25,190,2.344,191,0.923,192,1.821,193,1.821,194,2.817,195,3.037,196,4.868,197,1.821,198,5.445,199,1.821,200,4.515,201,5.445,202,5.445,203,5.445,204,4.024,205,5.445,206,5.445,207,5.445,208,5.445,209,5.445,210,5.445,211,2.613,212,6.071,213,6.071,214,6.071,215,3.337,216,5.445,217,5.445,218,5.445,219,2.384,220,5.068,221,4.399,222,3.83,223,4.515,224,2.985,225,1.429,226,2.985,227,2.985,228,2.985,229,4.924,230,2.985,231,2.304,232,2.985,233,2.985,234,4.027,235,2.985,236,2.985,237,2.985,238,2.985,239,2.985,240,2.985,241,2.985,242,2.985,243,2.985,244,2.985,245,2.985,246,2.985,247,1.204,248,0.352,249,2.206,250,1.605,251,1.482,252,1.482,253,1.065,254,2.206,255,2.206,256,1.886,257,2.985,258,4.024,259,4.024,260,2.985,261,2.623,262,2.985,263,2.985,264,2.985,265,2.985,266,2.985,267,2.985,268,4.515,269,2.985,270,2.985,271,2.985,272,4.515,273,2.985,274,2.535,275,4.515,276,3.75,277,3.122,278,3.967,279,4.515,280,4.515,281,3.606,282,2.985,283,2.985,284,4.515,285,2.985,286,2.241,287,4.469,288,3.956,289,4.515,290,0.826,291,1.659,292,1.611,293,0.849,294,2.231,295,1.097,296,0.976,297,2.001,298,0.949,299,1.097,300,1.097,301,0.949,302,1.097,303,0.976,304,1.097,305,0.949,306,1.097,307,0.949,308,1.097,309,0.949,310,0.722,311,1.097,312,0.976,313,1.659,314,1.034,315,0.976,316,1.097,317,0.949,318,1.097,319,0.949,320,1.097,321,0.949,322,1.097,323,0.976,324,1.659,325,1.034,326,0.949,327,0.741,328,0.949,329,1.097,330,0.976,331,1.659,332,1.034,333,0.976,334,0.762,335,0.949,336,0.976,337,0.949,338,0.949,339,1.097,340,0.949,341,1.097,342,0.949,343,1.097,344,1.004,345,1.065,346,1.097]],["title/components/AccountsComponent.html",[179,0.624,298,1.354]],["body/components/AccountsComponent.html",[1,1.46,3,0.072,4,0.056,5,0.041,8,1.823,10,0.241,11,0.778,12,0.883,14,3.449,19,3.449,21,0.657,23,1.116,24,0.011,25,1.567,36,1.628,52,1.823,62,0.13,63,0.004,64,0.005,65,0.004,66,0.08,72,5.27,78,0.893,82,0.756,84,2.476,89,0.971,91,1.134,93,0.999,96,0.962,97,0.71,116,1.107,117,1.688,139,2.798,144,0.444,148,1.315,149,1.577,156,0.971,167,1.913,179,0.809,180,0.971,181,1.639,182,1.09,183,1.232,184,1.09,185,0.999,189,1.272,190,2.643,191,0.944,192,1.852,193,1.852,194,2.823,195,3.046,196,3.794,197,1.852,199,1.852,211,2.643,221,4.273,222,3.86,225,1.812,247,1.232,248,0.36,251,1.516,252,1.516,253,1.09,254,2.257,255,2.257,256,1.913,274,2.58,276,1.887,278,2.684,286,2.28,287,4.002,290,0.845,291,1.688,292,1.639,293,0.869,294,2.257,295,1.123,296,0.999,297,2.029,298,1.952,299,1.123,300,1.123,301,0.971,302,1.123,303,0.999,304,1.123,305,0.971,306,1.123,307,0.971,308,1.123,309,0.971,310,1.335,311,1.123,312,0.999,313,1.688,314,1.058,315,0.999,316,1.123,317,0.971,318,1.123,319,0.971,320,1.123,321,0.971,322,1.123,323,0.999,324,1.688,325,1.058,326,0.971,327,0.759,328,0.971,329,1.123,330,0.999,331,1.688,332,1.058,333,0.999,334,0.779,335,0.971,336,0.999,337,0.971,338,0.971,339,1.123,340,0.971,341,1.123,342,0.971,343,1.123,344,1.028,345,1.09,346,1.123,347,2.684,348,5.522,349,4.594,350,5.522,351,3.817,352,3.817,353,4.852,354,4.41,355,4.852,356,3.817,357,3.817,358,3.176,359,4.246,360,6.142,361,6.142,362,4.594,363,2.684,364,2.894,365,4.594,366,3.176,367,3.055,368,3.055,369,3.055,370,3.055,371,3.055,372,4.594,373,3.055,374,3.055,375,3.055,376,3.055,377,3.817,378,3.055,379,4.246,380,3.055,381,4.905,382,3.055,383,3.176,384,4.037,385,3.055,386,3.817,387,2.994,388,3.176,389,3.055,390,3.817,391,3.176,392,2.112,393,1.577,394,1.643,395,1.643,396,1.887,397,1.715,398,1.516,399,1.991,400,2.257,401,1.577,402,3.055,403,1.796,404,3.055,405,2.44,406,3.055,407,2.684,408,2.112,409,2.44,410,1.796,411,1.991,412,2.684,413,4.594,414,2.257,415,3.055,416,4.081,417,3.176,418,2.257,419,2.112,420,4.594,421,2.257,422,2.112,423,3.055,424,4.594,425,4.594,426,3.055,427,3.055,428,3.055,429,3.055,430,4.037,431,3.669,432,3.176,433,4.594,434,4.594,435,4.594,436,3.176,437,4.594,438,2.994,439,4.594]],["title/modules/AccountsModule.html",[440,1.148,441,3.149]],["body/modules/AccountsModule.html",[3,0.11,4,0.086,5,0.062,8,1.294,24,0.011,61,1.071,62,0.11,63,0.006,64,0.007,65,0.006,66,0.122,144,0.507,147,1.921,180,2.53,187,3.456,248,0.551,250,2.515,290,1.294,296,2.603,298,2.53,307,2.53,393,2.414,394,2.515,395,2.515,440,1.26,441,6.491,442,1.719,443,2.321,444,3.754,445,2.414,446,2.515,447,4.109,448,4.109,449,4.109,450,5.504,451,4.109,452,5.504,453,3.342,454,2.515,455,2.236,456,4.677,457,2.588,458,3.654,459,2.626,460,4.677,461,2.75,462,4.109,463,2.889,464,4.109,465,3.735,466,3.233,467,4.964,468,2.515,469,3.456,470,4.109,471,3.456,472,4.109,473,4.05,474,4.297,475,4.593,476,3.456,477,4.297,478,3.839,479,2.889,480,4.05,481,3.048,482,2.889,483,3.839,484,2.889,485,3.839,486,2.889,487,4.05,488,3.048,489,4.297,490,3.233,491,4.677,492,6.215,493,4.677,494,4.297,495,3.048,496,6.215,497,4.677,498,4.677,499,4.964,500,4.109,501,5.461,502,3.735,503,3.233]],["title/modules/AccountsRoutingModule.html",[440,1.148,450,2.945]],["body/modules/AccountsRoutingModule.html",[3,0.139,4,0.108,5,0.079,24,0.011,48,2.459,53,1.317,61,1.353,62,0.139,63,0.007,64,0.009,65,0.007,66,0.154,93,1.931,144,0.481,147,1.825,179,1.188,180,2.292,187,4.364,196,3.648,248,0.696,253,2.106,296,2.358,298,2.292,307,2.292,442,2.17,450,4.986,457,3.003,462,5.189,464,6.337,465,4.717,466,4.083,470,5.189,471,4.364,472,5.189,500,5.189,504,5.905,505,3.472,506,3.722,507,4.05,508,4.889,509,4.083,510,4.083,511,3.848,512,3.648]],["title/interfaces/Action.html",[0,0.742,513,2.291]],["body/interfaces/Action.html",[0,1.497,2,2.036,3,0.134,4,0.105,5,0.076,7,1.537,10,0.45,11,1.197,15,3.807,20,2.946,21,0.688,23,1.492,24,0.011,25,1.957,32,3.667,47,2.776,48,3.337,61,1.308,62,0.134,63,0.007,64,0.008,65,0.007,97,0.739,139,2.905,231,2.242,513,4.621,514,3.946,515,4.712,516,4.5,517,2.945,518,4.153,519,3.72,520,4.363]],["title/classes/ActivatedRouteStub.html",[66,0.111,521,3.403]],["body/classes/ActivatedRouteStub.html",[3,0.122,4,0.095,5,0.069,7,1.402,10,0.41,11,1.129,12,1.066,21,0.547,24,0.011,36,1.929,52,1.844,62,0.122,63,0.006,64,0.008,65,0.006,66,0.136,68,2.488,82,1.097,89,1.099,91,1.069,96,1.161,97,0.615,100,5.322,116,0.833,144,0.379,156,2.336,225,1.568,253,1.856,256,2.546,521,5.322,522,7.04,523,4.499,524,2.922,525,6.663,526,6.663,527,6.663,528,8.737,529,3.977,530,5.432,531,7.75,532,4.924,533,5.322,534,4.557,535,7.351,536,6.459,537,6.663,538,7.415,539,6.663,540,5.204,541,6.663,542,5.204,543,5.322,544,7.75,545,6.663,546,4.572,547,4.607,548,6.663,549,5.204,550,2.488,551,4.572,552,4.572,553,5.855,554,5.204,555,5.204,556,5.204,557,5.204]],["title/components/AdminComponent.html",[179,0.624,301,1.354]],["body/components/AdminComponent.html",[3,0.074,4,0.057,5,0.042,8,1.297,10,0.247,11,0.794,12,1.118,21,0.645,23,1.128,24,0.011,36,1.103,52,0.868,56,1.306,62,0.132,63,0.004,64,0.006,65,0.004,66,0.082,78,0.917,82,0.771,89,0.663,91,1.121,93,1.025,96,1.217,97,0.743,116,1.159,138,1.356,139,2.357,144,0.433,156,0.997,175,1.761,179,0.822,180,0.997,181,1.671,182,1.119,183,1.264,184,1.119,185,1.025,189,1.297,190,2.414,191,0.969,192,1.889,193,1.889,194,2.831,195,3.055,196,2.894,197,1.889,199,1.889,211,2.678,221,4.316,225,1.875,231,1.64,247,1.264,248,0.37,251,1.556,252,1.556,256,1.086,286,2.326,290,0.868,291,1.722,292,1.671,293,0.892,294,2.287,295,1.152,296,1.025,297,2.061,298,0.997,299,1.152,300,1.152,301,1.978,302,1.152,303,1.025,304,1.152,305,0.997,306,1.152,307,0.997,308,1.152,309,0.997,310,0.758,311,1.152,312,1.025,313,1.722,314,1.086,315,1.025,316,1.152,317,0.997,318,1.152,319,0.997,320,1.152,321,0.997,322,1.152,323,1.025,324,1.722,325,1.086,326,0.997,327,0.779,328,0.997,329,1.152,330,1.025,331,1.722,332,1.086,333,1.025,334,0.8,335,0.997,336,1.025,337,0.997,338,0.997,339,1.152,340,0.997,341,1.152,342,0.997,343,1.152,344,1.055,345,1.119,346,1.152,352,3.878,354,4.48,356,3.878,357,3.878,358,3.239,359,4.302,363,2.755,364,2.92,366,3.239,377,3.878,386,3.878,387,3.053,388,3.239,390,3.878,391,3.239,392,2.168,393,1.619,394,1.686,395,1.686,396,1.937,397,1.761,398,1.556,408,3.239,410,2.755,411,3.053,414,2.318,416,2.318,417,2.168,418,2.318,419,2.168,421,2.318,422,2.168,432,3.239,513,4.438,515,2.755,516,3.923,517,1.722,558,2.755,559,3.659,560,5.609,561,4.685,562,4.719,563,4.685,564,3.742,565,4.685,566,4.685,567,4.685,568,4.685,569,3.136,570,3.842,571,4.685,572,3.136,573,4.685,574,3.136,575,3.136,576,3.136,577,4.685,578,3.136,579,3.136,580,3.136,581,3.136,582,3.136,583,3.136,584,6.223,585,6.987,586,3.136,587,3.136,588,3.136,589,2.044,590,4.929,591,3.136,592,2.755,593,2.755,594,2.505,595,3.136,596,3.136,597,3.136,598,4.685,599,3.136,600,3.136,601,4.685,602,3.136,603,3.136,604,2.755,605,3.136,606,3.136,607,3.136,608,3.136,609,3.136,610,3.136,611,3.136,612,1.306,613,5.609,614,3.136,615,3.136,616,3.136,617,2.755,618,2.755,619,3.136,620,3.136,621,4.685,622,3.136,623,3.136,624,4.685,625,3.136,626,6.223,627,6.223,628,6.223,629,6.223,630,4.685,631,2.631,632,3.463,633,4.685,634,2.755,635,2.318,636,3.136]],["title/modules/AdminModule.html",[440,1.148,637,3.149]],["body/modules/AdminModule.html",[3,0.128,4,0.1,5,0.073,24,0.011,61,1.251,62,0.128,63,0.006,64,0.008,65,0.006,66,0.142,144,0.502,147,2.123,248,0.644,290,1.512,301,2.638,393,2.819,394,2.937,395,2.937,440,1.471,442,2.007,443,2.711,444,4.043,445,2.819,446,2.937,451,4.283,453,3.695,454,2.937,455,2.611,457,2.861,458,4.04,459,3.067,461,3.211,463,3.374,473,4.478,474,4.75,477,4.75,478,4.244,479,3.374,480,4.478,481,3.559,482,3.374,483,4.244,484,3.374,485,4.244,486,3.374,487,4.478,488,3.559,494,4.75,495,3.559,637,6.399,638,4.799,639,4.799,640,4.799,641,5.738,642,5.462,643,5.462,644,4.799]],["title/modules/AdminRoutingModule.html",[440,1.148,641,2.945]],["body/modules/AdminRoutingModule.html",[3,0.152,4,0.118,5,0.086,24,0.011,53,1.442,61,1.481,62,0.152,63,0.008,64,0.009,65,0.008,66,0.169,144,0.46,147,1.998,179,0.947,248,0.762,253,2.306,301,2.42,442,2.375,457,3.17,505,3.8,506,3.869,507,4.275,508,3.8,512,3.993,641,5.264,644,5.679,645,6.464]],["title/components/AppComponent.html",[179,0.624,303,1.393]],["body/components/AppComponent.html",[3,0.079,4,0.062,5,0.045,8,1.372,10,0.267,11,0.84,12,0.793,21,0.564,23,0.573,24,0.011,25,1.648,36,1.52,42,2.915,52,1.787,53,1.602,56,2.064,62,0.079,63,0.004,64,0.006,65,0.004,66,0.088,78,0.989,82,0.816,83,1.68,84,2.365,89,1.047,91,1.071,93,1.107,96,0.864,97,0.634,116,0.793,117,1.822,126,2.501,144,0.367,156,1.076,167,2.862,179,0.86,180,1.076,181,1.768,182,1.207,183,1.365,184,1.207,185,1.107,189,1.372,190,2.525,191,1.046,192,1.999,193,1.999,194,2.851,195,3.081,197,1.999,199,1.999,211,2.779,225,1.52,247,1.365,248,0.399,252,1.68,256,2.381,274,2.784,290,0.937,291,1.822,292,1.768,293,0.963,294,2.373,295,1.244,296,1.107,297,2.156,298,1.076,299,1.244,300,1.244,301,1.076,302,1.244,303,2.112,304,1.244,305,1.076,306,1.244,307,1.076,308,1.244,309,1.076,310,1.561,311,1.244,312,1.107,313,1.822,314,1.172,315,1.107,316,1.244,317,1.076,318,1.244,319,1.076,320,1.244,321,1.076,322,1.244,323,1.107,324,1.822,325,1.172,326,1.076,327,0.841,328,1.076,329,1.244,330,1.107,331,1.822,332,1.172,333,1.107,334,1.265,335,1.076,336,1.107,337,1.076,338,1.076,339,1.244,340,1.076,341,1.244,342,1.076,343,1.244,344,1.139,345,1.207,346,1.244,364,2.992,398,1.68,400,4.335,401,1.747,405,2.703,407,5.154,517,1.244,635,3.664,646,2.974,647,2.559,648,5.866,649,4.957,650,5.154,651,5.154,652,5.154,653,5.866,654,4.957,655,4.356,656,4.957,657,4.957,658,2.703,659,4.437,660,4.584,661,4.836,662,7.421,663,4.957,664,4.957,665,5.158,666,3.384,667,6.458,668,3.384,669,3.384,670,3.384,671,3.384,672,4.957,673,3.384,674,2.091,675,4.957,676,4.356,677,4.356,678,3.384,679,3.231,680,3.384,681,4.335,682,3.384,683,2.974,684,2.974,685,2.703,686,2.206,687,2.974,688,4.957,689,3.384,690,3.384,691,5.154,692,4.335,693,3.384,694,4.957,695,3.384,696,4.957,697,3.96,698,4.957,699,3.231,700,3.384,701,2.34,702,3.384,703,2.974,704,1.507,705,2.703,706,3.384,707,3.384,708,3.384,709,2.974,710,3.384,711,3.384,712,3.384,713,3.384,714,3.384,715,3.384,716,2.974,717,3.384,718,2.091,719,4.055,720,2.703,721,2.501,722,2.703,723,2.703,724,2.703,725,2.974,726,2.974,727,3.384,728,4.356,729,2.974,730,4.356,731,2.974,732,3.384,733,3.384,734,3.384,735,3.384,736,4.957,737,3.384,738,3.384,739,3.384,740,1.747,741,3.384]],["title/modules/AppModule.html",[440,1.148,742,3.149]],["body/modules/AppModule.html",[3,0.109,4,0.085,5,0.062,24,0.011,61,1.067,62,0.109,63,0.005,64,0.007,65,0.005,66,0.121,118,2.344,127,1.939,144,0.496,147,1.915,148,2.005,149,2.404,248,0.549,251,2.312,290,1.289,303,2.798,393,2.404,440,1.255,442,1.712,443,2.312,444,3.746,445,3.596,446,3.746,451,4.104,453,3.333,454,2.505,455,2.227,457,2.581,461,2.738,463,2.877,467,4.951,468,2.505,469,3.442,473,4.039,685,3.72,686,3.035,742,6.506,743,4.092,744,4.092,745,4.092,746,4.092,747,4.092,748,5.497,749,5.497,750,5.289,751,5.497,752,5.497,753,4.658,754,6.198,755,4.951,756,2.615,757,4.951,758,4.658,759,4.658,760,6.198,761,4.658,762,5.932,763,6.198,764,2.404,765,4.581,766,4.285,767,4.092,768,4.658,769,3.72,770,3.72,771,4.658,772,4.039,773,4.092,774,4.658,775,4.658,776,4.658,777,4.658,778,4.092,779,4.658,780,4.658,781,4.658,782,4.658,783,4.658,784,4.658,785,4.658,786,4.658,787,5.488,788,5.932,789,5.564]],["title/modules/AppRoutingModule.html",[440,1.148,748,2.945]],["body/modules/AppRoutingModule.html",[3,0.143,4,0.112,5,0.081,24,0.011,53,1.357,61,1.394,62,0.143,63,0.007,64,0.009,65,0.007,66,0.159,144,0.449,147,1.88,248,0.717,253,2.17,442,2.236,457,3.058,505,3.577,506,3.771,507,4.124,508,4.638,509,4.206,510,4.206,511,3.965,748,5.077,766,5.077,767,5.346,790,6.084,791,7.344,792,4.859,793,6.453,794,6.084,795,6.084,796,6.084,797,6.084,798,4.859,799,6.084,800,6.084]],["title/interfaces/AreaName.html",[0,0.742,518,2.505]],["body/interfaces/AreaName.html",[0,1.507,2,2.106,3,0.139,4,0.108,5,0.079,7,1.591,10,0.465,11,1.222,15,3.865,20,3.048,21,0.639,23,1.465,24,0.011,25,1.507,32,3.877,47,2.809,48,2.459,61,1.353,62,0.139,63,0.007,64,0.009,65,0.007,97,0.798,139,3.15,231,1.726,513,4.187,514,4.083,515,3.472,516,3.316,517,2.17,518,4.578,519,5.284,520,4.455]],["title/interfaces/AreaType.html",[0,0.742,520,2.632]],["body/interfaces/AreaType.html",[0,1.507,2,2.106,3,0.139,4,0.108,5,0.079,7,1.591,10,0.465,11,1.222,15,3.865,20,3.048,21,0.665,23,1.465,24,0.011,25,1.507,32,4.095,47,2.809,48,2.459,61,1.353,62,0.139,63,0.007,64,0.009,65,0.007,97,0.79,139,3.15,231,1.726,513,4.187,514,4.083,515,3.472,516,3.316,517,2.17,518,4.24,519,3.848,520,4.809]],["title/components/AuthComponent.html",[179,0.624,305,1.354]],["body/components/AuthComponent.html",[3,0.08,4,0.063,5,0.046,8,1.383,10,0.269,11,0.847,12,0.8,21,0.592,23,0.58,24,0.011,36,1.389,40,1.698,52,1.634,53,1.448,62,0.08,63,0.004,64,0.006,65,0.004,66,0.089,78,1,82,0.823,84,2.907,89,1.056,91,1.106,93,1.119,96,0.871,97,0.637,116,1.105,117,2.386,118,1.681,127,2.875,138,1.208,144,0.393,156,1.588,167,2.458,179,0.865,180,1.088,181,1.783,182,1.221,183,1.38,184,1.221,185,1.119,189,1.383,190,2.541,191,1.057,192,2.015,193,2.015,194,2.854,195,3.084,197,2.015,199,2.015,204,4.363,211,2.794,215,3.693,220,5.503,222,4.004,225,1.697,229,4.081,231,1.898,234,4.265,247,1.38,248,0.403,249,2.529,250,1.84,251,1.698,252,1.698,253,1.221,256,2.859,258,2.529,259,2.529,277,3.455,286,2.48,288,3.257,290,0.947,291,1.836,292,2.106,293,0.973,294,2.386,295,1.258,296,1.119,297,2.169,298,1.088,299,1.258,300,1.258,301,1.088,302,1.258,303,1.119,304,1.258,305,2.063,306,1.258,307,1.088,308,1.258,309,1.088,310,1.208,311,1.258,312,1.119,313,1.836,314,1.185,315,1.119,316,1.258,317,1.088,318,1.258,319,1.088,320,1.258,321,1.088,322,1.258,323,1.119,324,1.836,325,1.185,326,1.088,327,0.85,328,1.088,329,1.258,330,1.119,331,1.836,332,1.185,333,1.119,334,0.873,335,1.088,336,1.119,337,1.088,338,1.088,339,1.258,340,1.088,341,1.258,342,1.088,343,1.258,344,1.151,345,1.221,346,1.258,401,1.766,533,5.185,590,4.391,658,2.733,659,4.454,681,3.693,687,3.007,719,3.455,792,3.991,801,3.007,802,5.903,803,4.997,804,5.903,805,5.187,806,4.715,807,6.335,808,5.185,809,6.492,810,4.997,811,5.903,812,4.997,813,3.422,814,3.422,815,3.422,816,3.422,817,4.997,818,3.422,819,3.422,820,3.422,821,3.422,822,3.422,823,3.422,824,3.422,825,3.806,826,3.422,827,3.007,828,3.422,829,3.422,830,2.733,831,3.422,832,4.997,833,3.422,834,3.007,835,2.529,836,3.007,837,3.422,838,3.422,839,1.921,840,3.422,841,2.366,842,2.366,843,3.007,844,3.422,845,3.422,846,3.422,847,3.422,848,3.422,849,3.422,850,3.422,851,3.422,852,3.422,853,3.422,854,2.806,855,4.997,856,2.529,857,3.087,858,4.997]],["title/guards/AuthGuard.html",[766,2.945,859,2.632]],["body/guards/AuthGuard.html",[3,0.109,4,0.085,5,0.062,7,1.871,10,0.365,12,0.988,21,0.507,24,0.011,62,0.109,63,0.005,64,0.007,65,0.005,66,0.181,70,3.188,82,1.017,89,0.979,91,0.852,96,1.076,97,0.57,116,1.186,117,2.27,118,2.338,123,3.815,124,4.27,125,4.564,127,1.929,131,4.933,138,1.493,144,0.395,147,1.432,159,3.321,179,0.905,185,2.019,189,1.282,222,4.566,231,1.806,248,0.546,253,1.652,256,2.567,506,2.952,517,2.27,523,4.551,529,3.448,550,2.215,570,3.188,589,5.365,612,1.929,647,2.391,766,4.27,792,5.919,798,6.165,825,3.417,859,4.577,860,3.7,861,4.07,862,4.933,863,5.426,864,4.564,865,5.426,866,3.7,867,4.632,868,5.426,869,2.847,870,5.123,871,4.27,872,3.631,873,4.27,874,4.025,875,4.07,876,6.976,877,6.511,878,4.632,879,5.426,880,6.176,881,4.564,882,3.815,883,4.933,884,4.933,885,5.426,886,4.933,887,6.511,888,5.919,889,4.564,890,5.426,891,5.426,892,6.104,893,6.176,894,4.564,895,6.176,896,1.963,897,2.861,898,2.861,899,2.491,900,4.07,901,4.07]],["title/modules/AuthModule.html",[440,1.148,902,3.149]],["body/modules/AuthModule.html",[3,0.132,4,0.103,5,0.075,24,0.011,61,1.288,62,0.132,63,0.007,64,0.008,65,0.007,66,0.147,144,0.497,147,2.163,248,0.663,250,3.024,290,1.556,305,2.657,342,2.657,440,1.515,442,2.067,443,2.791,444,4.097,445,2.902,446,3.024,453,3.763,454,3.024,455,2.688,457,2.914,458,4.114,459,3.158,461,3.306,478,4.322,479,3.473,483,4.322,484,3.473,485,4.322,486,3.473,489,4.838,490,3.888,494,4.838,495,3.665,499,5.589,902,6.428,903,4.941,904,4.941,905,4.941,906,5.78,907,5.623,908,5.623,909,4.941,910,5.623,911,4.941]],["title/modules/AuthRoutingModule.html",[440,1.148,906,2.945]],["body/modules/AuthRoutingModule.html",[3,0.149,4,0.116,5,0.084,24,0.011,53,1.415,61,1.453,62,0.149,63,0.007,64,0.009,65,0.007,66,0.165,144,0.457,147,1.96,179,0.93,248,0.748,253,2.263,305,2.393,442,2.331,457,3.135,505,3.73,506,3.839,507,4.228,508,4.427,509,4.386,510,4.386,511,4.134,512,3.918,906,5.206,909,5.574,912,6.344]],["title/injectables/AuthService.html",[659,2.632,896,1.354]],["body/injectables/AuthService.html",[0,0.474,3,0.064,4,0.05,5,0.036,7,0.733,10,0.214,11,0.713,12,1.001,21,0.613,23,0.461,24,0.011,25,1.073,26,3.109,36,0.641,52,0.753,53,1.721,56,1.752,62,0.064,63,0.003,64,0.005,65,0.003,66,0.071,82,0.693,84,3.152,89,0.889,91,1.12,96,1.09,97,0.577,116,1.251,117,2.744,118,1.415,127,1.752,138,1.89,139,1.031,144,0.416,148,1.171,149,1.405,156,2.264,159,1.301,167,2.966,225,1.757,231,1.503,248,0.321,256,2.388,277,2.908,310,1.767,327,0.676,364,2.78,400,4.276,401,3.228,403,1.6,405,4.621,455,1.301,468,1.463,530,2.011,547,3.555,631,1.528,634,4.518,647,1.405,659,2.598,661,4.493,674,4.259,697,2.174,703,5.083,704,2.576,716,2.391,764,1.405,772,2.741,773,2.391,807,5.083,825,3.37,827,3.696,836,2.391,842,1.881,854,1.528,856,3.8,864,2.011,869,1.255,896,1.337,899,1.463,900,2.391,913,1.463,914,2.391,915,3.713,916,5.142,917,5.142,918,5.785,919,4.621,920,4.621,921,5.785,922,5.785,923,5.785,924,4.207,925,5.785,926,5.083,927,4.207,928,4.207,929,2.011,930,4.887,931,4.207,932,2.721,933,2.721,934,2.721,935,2.721,936,2.721,937,2.721,938,2.721,939,4.207,940,2.721,941,4.207,942,2.721,943,2.721,944,4.207,945,2.721,946,4.207,947,4.207,948,2.721,949,5.142,950,4.207,951,2.721,952,3.696,953,2.721,954,2.721,955,2.721,956,2.721,957,4.207,958,2.721,959,2.721,960,1.463,961,2.721,962,2.721,963,2.908,964,2.721,965,4.207,966,2.721,967,2.391,968,2.721,969,2.721,970,3.696,971,6.613,972,2.721,973,2.721,974,5.142,975,6.613,976,5.142,977,3.36,978,5.142,979,5.785,980,5.142,981,4.207,982,2.391,983,4.207,984,4.207,985,4.207,986,2.262,987,4.207,988,4.207,989,5.785,990,4.518,991,4.621,992,2.721,993,2.721,994,4.207,995,5.142,996,5.142,997,5.142,998,2.391,999,2.721,1000,5.142,1001,2.721,1002,2.391,1003,2.391,1004,2.721,1005,4.207,1006,2.721,1007,2.721,1008,2.721,1009,2.721,1010,2.721,1011,2.721,1012,2.721,1013,2.721,1014,2.721,1015,2.721,1016,4.207,1017,2.721,1018,2.721,1019,2.721,1020,4.207,1021,4.621,1022,2.721,1023,2.721,1024,2.721,1025,2.721,1026,2.391,1027,2.721,1028,2.721,1029,2.721,1030,2.721,1031,1.881,1032,3.36,1033,2.391,1034,2.391,1035,2.011,1036,2.721,1037,2.391,1038,2.174,1039,2.174,1040,2.721,1041,2.721,1042,2.721,1043,2.721,1044,2.721,1045,2.721,1046,2.721,1047,2.721,1048,1.881,1049,2.721,1050,2.721,1051,4.207,1052,2.721,1053,4.207,1054,2.391,1055,2.721,1056,2.721,1057,4.207,1058,2.721,1059,2.721,1060,1.351,1061,2.721,1062,2.721,1063,3.696,1064,2.174,1065,4.207,1066,4.207,1067,2.721,1068,2.721,1069,3.696,1070,2.721,1071,2.721,1072,2.721,1073,2.721,1074,2.721,1075,2.721,1076,2.721,1077,2.721,1078,2.721]],["title/injectables/BlockSyncService.html",[896,1.354,1079,3.149]],["body/injectables/BlockSyncService.html",[3,0.078,4,0.061,5,0.044,10,0.261,11,0.826,12,1.179,21,0.633,23,1.281,24,0.011,25,2.216,36,1.363,51,2.517,52,1.602,53,1.686,56,2.66,62,0.078,63,0.004,64,0.006,65,0.004,66,0.086,78,1.693,82,0.803,84,2.746,89,1.03,91,1.065,96,1.284,97,0.68,99,2.619,116,1.14,117,2.348,138,1.179,144,0.43,148,1.424,149,1.708,156,2.403,225,1.734,248,0.39,256,2.005,274,2.738,276,3.012,334,1.244,364,2.971,397,1.858,398,1.642,399,2.156,410,2.867,411,3.178,534,1.946,647,1.708,651,5.087,652,5.087,660,4.401,686,3.178,896,1.55,899,1.779,913,1.779,960,1.779,986,1.779,1079,3.603,1080,6.897,1081,2.908,1082,4.876,1083,4.876,1084,4.876,1085,4.876,1086,5.79,1087,5.79,1088,3.309,1089,4.801,1090,4.876,1091,4.876,1092,6.039,1093,5.704,1094,3.309,1095,4.279,1096,4.876,1097,4.728,1098,5.79,1099,3.309,1100,4.876,1101,3.309,1102,3.435,1103,4.876,1104,3.309,1105,3.309,1106,6.388,1107,3.309,1108,3.309,1109,6.388,1110,6.388,1111,6.388,1112,7.561,1113,6.388,1114,6.388,1115,3.309,1116,3.404,1117,3.309,1118,3.309,1119,1.779,1120,3.309,1121,2.643,1122,3.309,1123,3.309,1124,3.309,1125,5.79,1126,3.309,1127,3.309,1128,2.908,1129,4.876,1130,3.309,1131,3.309,1132,3.309,1133,3.309,1134,3.309,1135,3.309,1136,3.309,1137,3.309,1138,4.876,1139,3.309,1140,3.309,1141,3.309,1142,3.309,1143,3.309,1144,2.908,1145,2.908,1146,3.309,1147,4.876,1148,4.876,1149,3.309,1150,4.876,1151,3.309,1152,3.309,1153,4.876,1154,3.309,1155,4.876,1156,4.876,1157,2.643,1158,4.876,1159,2.908,1160,3.309,1161,4.284,1162,3.309,1163,2.908,1164,3.309,1165,3.309,1166,3.309,1167,3.309,1168,3.309,1169,3.309,1170,3.309,1171,4.876,1172,3.309,1173,3.309,1174,3.895,1175,4.876,1176,3.309,1177,3.309,1178,3.309,1179,4.876,1180,3.309,1181,3.309,1182,3.309,1183,3.309,1184,3.309,1185,3.309,1186,3.309]],["title/interfaces/BlocksBloom.html",[0,0.742,1187,2.632]],["body/interfaces/BlocksBloom.html",[0,1.509,1,3.72,2,1.876,3,0.123,4,0.096,5,0.07,7,1.417,9,1.933,10,0.414,11,1.137,21,0.674,23,1.502,24,0.011,25,2.222,36,1.238,47,2.784,61,1.205,62,0.123,63,0.006,64,0.008,65,0.006,97,0.485,99,1.933,144,0.299,231,1.538,327,1.666,334,2.051,517,1.933,740,3.813,854,2.954,1102,4.42,1187,4.965,1188,3.428,1189,5.38,1190,5.38,1191,5.38,1192,5.38,1193,5.38,1194,3.636,1195,3.636,1196,4.965,1197,3.636,1198,3.636,1199,3.428,1200,3.428,1201,3.249,1202,3.093,1203,3.428,1204,3.428,1205,3.636,1206,3.636,1207,2.514]],["title/interfaces/Category.html",[0,0.742,15,2.115]],["body/interfaces/Category.html",[0,1.507,2,2.11,3,0.139,4,0.108,5,0.079,7,1.593,10,0.466,11,1.223,15,4.13,20,4.188,21,0.639,23,1.465,24,0.011,25,1.509,32,3.725,47,2.81,48,2.463,61,1.355,62,0.139,63,0.007,64,0.009,65,0.007,97,0.79,139,3.152,231,1.729,513,4.19,514,4.09,515,3.478,516,3.322,517,2.174,518,4.245,519,3.855,520,4.459]],["title/interfaces/Conversion.html",[0,0.742,740,2.199]],["body/interfaces/Conversion.html",[0,1.505,1,3.907,2,1.837,3,0.121,4,0.094,5,0.068,7,1.387,9,1.892,10,0.406,11,1.121,21,0.691,23,1.478,24,0.011,25,2.216,36,1.212,47,2.766,61,1.18,62,0.121,63,0.006,64,0.008,65,0.006,97,0.475,99,1.892,144,0.293,231,1.505,327,1.644,334,2.038,517,2.837,740,4.122,854,2.891,1102,4.643,1187,4.518,1188,3.355,1189,3.56,1190,3.56,1191,3.56,1192,3.56,1193,3.56,1194,3.56,1195,5.337,1196,5.254,1197,5.337,1198,5.337,1199,5.031,1200,5.031,1201,3.18,1202,3.027,1203,3.355,1204,3.355,1205,3.56,1206,3.56,1207,2.461]],["title/components/CreateAccountComponent.html",[179,0.624,307,1.354]],["body/components/CreateAccountComponent.html",[3,0.074,4,0.058,5,0.042,8,2.231,10,0.249,11,0.798,12,0.505,15,3.601,17,4.482,19,3.75,21,0.654,24,0.011,25,1.98,32,2.251,36,1.108,48,2.599,52,1.303,62,0.074,63,0.004,64,0.006,65,0.004,66,0.082,72,3.068,78,0.923,82,0.775,89,0.995,91,1.087,93,2.608,96,0.55,97,0.576,116,0.753,118,1.062,127,2.345,138,1.138,139,2.825,144,0.398,156,1.496,179,0.825,180,1.003,181,1.679,182,1.126,183,1.273,184,1.126,185,1.032,189,1.303,190,2.423,191,0.975,192,1.898,193,1.898,194,2.833,195,3.057,197,1.898,199,1.898,204,4.161,211,2.687,215,3.479,219,2.521,220,5.176,221,4.482,225,1.469,229,3.893,231,1.376,234,4.125,247,1.273,248,0.372,249,2.333,250,1.697,251,1.567,252,1.567,256,1.95,258,2.333,259,5.735,261,2.773,276,3.856,286,2.337,287,4.564,288,5.503,290,0.874,291,1.73,292,1.679,293,0.898,294,2.294,295,1.16,296,1.032,297,2.069,298,1.003,299,1.16,300,1.16,301,1.003,302,1.16,303,1.032,304,1.16,305,1.003,306,1.16,307,1.984,308,1.16,309,1.003,310,0.763,311,1.16,312,1.032,313,1.73,314,1.093,315,1.032,316,1.16,317,1.003,318,1.16,319,1.003,320,1.16,321,1.003,322,1.16,323,1.032,324,1.73,325,1.093,326,1.003,327,0.784,328,1.003,329,1.16,330,1.032,331,1.73,332,1.093,333,1.032,334,0.805,335,1.003,336,1.032,337,1.003,338,1.003,339,1.16,340,1.003,341,1.16,342,1.003,343,1.16,344,1.062,345,1.126,346,1.16,351,3.893,397,1.772,398,1.567,399,2.057,408,3.893,409,2.521,410,3.67,411,4.068,412,2.773,430,4.948,431,5.594,471,5.894,517,1.73,518,1.856,806,4.497,808,4.986,830,3.76,1208,7.008,1209,2.773,1210,5.631,1211,4.708,1212,4.161,1213,4.161,1214,5.631,1215,4.161,1216,5.631,1217,5.363,1218,4.708,1219,3.156,1220,3.156,1221,3.156,1222,3.156,1223,3.156,1224,3.156,1225,3.156,1226,3.156,1227,3.156,1228,3.156,1229,3.156,1230,3.156,1231,3.156,1232,5.631,1233,3.156,1234,6.678,1235,3.156,1236,2.773,1237,3.156,1238,3.156,1239,2.521,1240,3.156,1241,2.773,1242,3.156,1243,3.156,1244,3.156,1245,3.156,1246,4.068,1247,4.708,1248,3.479,1249,4.708,1250,5.485,1251,5.485,1252,4.613,1253,4.708,1254,4.137]],["title/classes/CustomErrorStateMatcher.html",[66,0.111,234,2.632]],["body/classes/CustomErrorStateMatcher.html",[3,0.119,4,0.093,5,0.068,7,1.769,10,0.401,12,0.814,21,0.417,24,0.011,36,1.546,53,1.135,62,0.119,63,0.006,64,0.008,65,0.006,66,0.133,68,2.432,82,1.081,91,0.702,96,0.887,97,0.469,116,1.051,118,2.21,123,4.057,124,4.54,138,1.23,144,0.373,159,3.14,184,2.343,189,1.818,229,4.54,231,2.126,234,4.057,250,2.736,292,2.343,310,1.97,495,3.315,570,3.39,589,4.28,1054,6.753,1095,6.021,1255,5.77,1256,4.47,1257,5.77,1258,4.54,1259,5.77,1260,6.884,1261,6.567,1262,6.567,1263,6.567,1264,5.77,1265,6.567,1266,7.273,1267,6.567,1268,6.567,1269,7.685,1270,7.685,1271,7.685,1272,5.088,1273,5.008,1274,6.021,1275,6.621,1276,6.567,1277,5.77,1278,5.77,1279,6.567,1280,6.567,1281,6.567,1282,5.088,1283,5.088,1284,5.088,1285,5.088]],["title/classes/CustomValidator.html",[66,0.111,1286,3.403]],["body/classes/CustomValidator.html",[3,0.11,4,0.086,5,0.062,7,1.879,10,0.368,12,0.993,21,0.51,23,1.182,24,0.011,36,1.461,47,2.151,53,1.556,62,0.11,63,0.006,64,0.007,65,0.006,66,0.122,68,2.233,70,3.205,77,4.589,82,1.224,91,0.857,96,1.082,97,0.573,116,1.116,118,1.571,123,4.592,129,4.96,138,1.871,144,0.266,159,3.335,225,1.461,231,1.365,250,2.512,310,1.871,482,5.095,825,2.153,1021,5.938,1060,3.95,1095,5.494,1246,4.047,1257,5.456,1259,5.456,1260,6.588,1273,4.845,1275,6.182,1277,6.992,1286,4.96,1287,4.104,1288,6.209,1289,4.589,1290,7.958,1291,6.209,1292,6.209,1293,6.209,1294,7.74,1295,4.67,1296,7.434,1297,6.095,1298,6.209,1299,7.958,1300,5.456,1301,6.209,1302,6.976,1303,7.958,1304,4.67,1305,7.434,1306,7.434,1307,6.209,1308,7.434,1309,5.456,1310,4.67,1311,6.209,1312,4.67,1313,4.67,1314,4.67,1315,4.67,1316,4.67]],["title/components/ErrorDialogComponent.html",[179,0.624,309,1.354]],["body/components/ErrorDialogComponent.html",[3,0.111,4,0.087,5,0.063,8,1.731,9,2.744,10,0.372,11,1.06,12,0.756,21,0.513,24,0.011,62,0.111,63,0.006,64,0.007,65,0.006,66,0.123,78,1.381,83,3.481,89,0.998,91,0.863,93,1.544,96,0.823,97,0.689,144,0.356,179,1.028,180,1.501,181,2.231,182,1.684,183,1.904,184,1.684,185,1.544,191,1.459,192,2.522,193,2.522,194,2.928,195,3.176,197,2.522,199,2.522,247,1.904,248,0.556,290,1.307,291,2.299,292,2.231,293,1.343,294,2.744,295,1.735,296,1.544,297,2.578,298,1.501,299,1.735,300,1.735,301,1.501,302,1.735,303,1.544,304,1.735,305,1.501,306,1.735,307,1.501,308,1.735,309,2.373,310,1.999,311,1.735,312,1.544,313,2.299,314,1.636,315,1.544,316,1.735,317,1.501,318,1.735,319,1.501,320,1.735,321,1.501,322,1.735,323,1.544,324,2.299,325,1.636,326,1.501,327,1.173,328,1.501,329,1.735,330,1.544,331,2.299,332,1.636,333,1.544,334,1.205,335,1.501,336,1.544,337,1.501,338,1.501,339,1.735,340,1.501,341,1.735,342,1.501,343,1.735,344,1.589,345,1.684,346,1.735,387,3.077,570,3.228,704,2.785,1317,6.163,1318,5.183,1319,4.149,1320,4.996,1321,7.014,1322,6.255,1323,4.722,1324,4.722,1325,4.722,1326,4.722,1327,4.722,1328,4.722,1329,3.772,1330,4.722,1331,6.255,1332,6.255]],["title/injectables/ErrorDialogService.html",[661,2.776,896,1.354]],["body/injectables/ErrorDialogService.html",[3,0.132,4,0.103,5,0.075,9,2.566,10,0.441,11,1.183,12,1.117,21,0.624,24,0.011,36,1.319,52,1.551,53,1.25,62,0.132,63,0.007,64,0.008,65,0.007,66,0.146,82,1.15,83,4.066,89,1.184,91,1.099,96,1.217,97,0.644,116,0.897,118,1.886,127,3.316,138,1.355,144,0.433,231,2.042,248,0.661,309,1.781,635,4.142,647,2.893,661,4.551,896,2.22,899,3.014,913,3.014,1318,4.142,1320,6.36,1329,4.477,1333,7.198,1334,4.925,1335,7.607,1336,6.983,1337,5.605,1338,8.192,1339,6.983,1340,6.983,1341,5.605,1342,5.605,1343,6.983,1344,4.925,1345,4.925,1346,5.605,1347,7.607,1348,5.605,1349,5.605,1350,5.605,1351,5.605]],["title/interceptors/ErrorInterceptor.html",[749,2.945,839,2.392]],["body/interceptors/ErrorInterceptor.html",[3,0.099,4,0.077,5,0.056,7,1.784,10,0.332,12,1.141,21,0.476,23,0.715,24,0.011,49,3.256,62,0.099,63,0.005,64,0.007,65,0.005,66,0.11,70,3.987,78,1.234,82,0.955,89,1.225,91,0.8,96,1.01,97,0.535,116,0.928,138,1.602,144,0.439,146,2.607,147,1.792,159,3.574,189,1.168,222,4.333,248,0.497,252,2.095,253,1.505,256,2.294,310,1.948,364,3.249,398,2.095,403,3.409,517,2.434,529,3.54,534,4.541,550,2.018,661,5.156,684,3.708,704,1.879,749,4.009,764,2.178,839,3.256,841,2.918,869,3.561,870,4.009,871,4.009,872,3.409,873,4.009,874,4.648,896,1.843,897,2.607,898,2.607,990,3.708,1031,2.918,1033,3.708,1063,3.708,1119,2.27,1264,5.095,1297,5.271,1309,5.095,1320,4.631,1352,3.119,1353,3.708,1354,5.271,1355,3.779,1356,5.708,1357,4.738,1358,6.114,1359,4.285,1360,4.22,1361,4.22,1362,4.009,1363,5.095,1364,4.285,1365,4.285,1366,5.271,1367,5.271,1368,4.22,1369,4.285,1370,4.285,1371,4.931,1372,4.285,1373,5.798,1374,4.631,1375,3.119,1376,4.285,1377,3.708,1378,4.22,1379,4.22,1380,6.624,1381,5.798,1382,4.22,1383,4.22,1384,5.798,1385,4.22,1386,4.22,1387,5.095,1388,4.22,1389,3.779,1390,3.708,1391,4.22,1392,4.22,1393,4.22,1394,5.798,1395,4.22,1396,4.22,1397,3.708,1398,4.631,1399,4.22,1400,4.22,1401,5.798,1402,4.22,1403,4.22,1404,4.22,1405,3.708,1406,4.22,1407,4.22]],["title/components/FooterComponent.html",[179,0.624,312,1.393]],["body/components/FooterComponent.html",[3,0.116,4,0.09,5,0.066,8,1.782,10,0.389,24,0.01,62,0.116,63,0.006,64,0.008,65,0.006,66,0.129,78,1.442,82,1.06,89,1.514,91,0.888,93,1.613,97,0.661,116,0.789,144,0.281,179,1.05,180,1.568,181,2.296,182,1.76,183,1.989,184,1.76,185,1.613,189,1.782,190,3.084,191,1.525,192,2.596,193,2.596,194,2.936,195,3.187,197,2.596,199,2.596,211,3.269,225,1.515,247,1.989,248,0.581,290,1.365,291,2.366,292,2.296,293,1.403,294,2.791,295,1.813,296,1.613,297,2.633,298,1.568,299,1.813,300,1.813,301,1.568,302,1.813,303,1.613,304,1.813,305,1.568,306,1.813,307,1.568,308,1.813,309,1.568,310,1.193,311,1.813,312,2.483,313,2.366,314,1.709,315,1.613,316,1.813,317,1.568,318,1.813,319,1.568,320,1.813,321,1.568,322,1.813,323,1.613,324,2.366,325,1.709,326,1.568,327,1.225,328,1.568,329,1.813,330,1.613,331,2.366,332,1.709,333,1.613,334,1.259,335,1.568,336,1.613,337,1.568,338,1.568,339,1.813,340,1.568,341,1.813,342,1.568,343,1.813,344,1.66,345,1.76,346,1.813,1038,5.142,1039,5.142,1408,4.335,1409,4.757,1410,7.166,1411,6.438,1412,4.933,1413,4.933,1414,6.438]],["title/components/FooterStubComponent.html",[179,0.624,314,1.476]],["body/components/FooterStubComponent.html",[3,0.121,4,0.095,5,0.069,8,1.837,24,0.01,62,0.172,63,0.006,64,0.008,65,0.006,66,0.191,78,1.512,93,1.691,97,0.676,144,0.294,179,0.973,180,1.644,181,2.368,182,2.615,184,1.845,185,1.691,191,1.598,194,2.942,195,3.206,248,0.61,290,1.432,291,2.439,292,2.368,293,1.471,294,2.842,295,1.901,296,1.691,297,2.694,298,1.644,299,1.901,300,1.901,301,1.644,302,1.901,303,1.691,304,1.901,305,1.644,306,1.901,307,1.644,308,1.901,309,1.644,310,1.251,311,1.901,312,1.691,313,2.439,314,2.678,315,1.691,316,1.901,317,1.644,318,1.901,319,1.644,320,1.901,321,1.644,322,1.901,323,1.691,324,2.439,325,2.299,326,1.644,327,1.285,328,1.644,329,1.901,330,1.691,331,2.439,332,2.299,333,1.691,334,1.32,335,1.644,336,1.691,337,1.644,338,1.644,339,1.901,340,1.644,341,1.901,342,1.644,343,1.901,344,1.74,345,1.845,346,1.901,440,1.393,524,2.904,718,3.195,1409,4.905,1415,3.822,1416,5.854,1417,3.822]],["title/injectables/GlobalErrorHandler.html",[750,2.776,896,1.354]],["body/injectables/GlobalErrorHandler.html",[3,0.079,4,0.062,5,0.045,7,1.996,10,0.265,11,0.837,12,1.031,21,0.663,23,1.288,24,0.011,25,1.261,36,0.793,49,1.893,52,0.933,53,1.437,62,0.116,63,0.004,64,0.006,65,0.004,66,0.153,70,3.702,79,2.197,82,0.814,83,1.673,89,0.712,91,0.947,96,1.123,97,0.595,116,1.031,118,2.169,123,3.053,127,1.404,138,0.815,139,2.442,144,0.367,146,2.082,147,1.042,156,1.071,159,3.543,222,4.088,225,1.517,231,1.884,248,0.397,253,1.202,256,2.567,310,2.164,364,2.988,403,2.906,523,4.028,570,3.702,612,1.404,704,2.606,705,2.693,750,3.221,757,5.148,764,1.74,869,2.972,870,3.417,871,3.417,872,2.906,873,3.417,874,4.2,896,1.571,913,1.813,960,1.813,963,4.046,991,2.693,1031,4.046,1032,2.693,1064,5.148,1246,3.221,1297,5.301,1355,3.221,1357,2.906,1362,3.417,1364,3.653,1374,3.948,1389,3.814,1418,5.729,1419,2.693,1420,4.343,1421,4.343,1422,4.343,1423,4.343,1424,5.072,1425,5.142,1426,4.943,1427,6.679,1428,4.943,1429,2.962,1430,4.943,1431,4.343,1432,4.343,1433,3.371,1434,3.948,1435,3.653,1436,5.664,1437,5.148,1438,5.664,1439,5.148,1440,4.343,1441,3.371,1442,5.664,1443,5.142,1444,4.343,1445,4.343,1446,5.142,1447,4.343,1448,3.371,1449,4.343,1450,3.948,1451,4.343,1452,3.948,1453,4.343,1454,3.948,1455,4.343,1456,4.343,1457,2.962,1458,2.962,1459,2.962,1460,2.962,1461,2.962,1462,2.962,1463,2.962,1464,2.962,1465,2.962,1466,4.343,1467,2.962,1468,2.693,1469,2.962,1470,2.962,1471,2.962,1472,2.962,1473,2.962,1474,2.962,1475,2.962,1476,2.962,1477,2.962,1478,2.962,1479,2.962,1480,2.962,1481,4.343,1482,2.693,1483,2.962,1484,2.962,1485,2.962]],["title/interceptors/HttpConfigInterceptor.html",[751,2.945,839,2.392]],["body/interceptors/HttpConfigInterceptor.html",[3,0.122,4,0.095,5,0.069,7,1.795,10,0.41,12,1.176,21,0.427,23,0.882,24,0.011,53,1.161,62,0.122,63,0.006,64,0.008,65,0.006,66,0.136,82,1.097,89,1.553,91,0.919,96,0.907,97,0.48,116,1.066,138,1.258,144,0.418,147,1.608,159,3.185,189,1.44,248,0.613,327,1.826,403,3.918,529,3.648,534,4.819,550,2.488,751,4.607,764,2.686,839,3.742,896,2.118,897,3.214,898,3.214,967,5.855,970,4.572,982,4.572,1352,3.846,1354,5.728,1355,4.342,1356,6.057,1357,5.051,1358,6.391,1359,4.924,1362,4.607,1365,4.924,1366,5.728,1367,5.728,1369,4.924,1370,4.924,1371,4.607,1372,4.924,1375,3.846,1376,4.924,1486,6.459,1487,4.572,1488,6.663,1489,5.204,1490,6.663,1491,5.204,1492,5.855,1493,5.204,1494,5.204,1495,4.156]],["title/classes/HttpError.html",[66,0.111,963,2.945]],["body/classes/HttpError.html",[3,0.088,4,0.069,5,0.05,7,1.678,10,0.296,11,0.907,12,0.602,21,0.611,23,1.327,24,0.011,25,1.829,49,3.006,53,1.513,62,0.126,63,0.004,64,0.006,65,0.004,66,0.177,68,1.8,70,3.215,79,2.453,83,3.092,89,0.795,91,0.739,96,0.656,97,0.347,116,0.602,118,2.096,123,2.325,127,1.568,138,0.91,139,2.028,144,0.386,146,2.325,147,1.163,156,1.197,159,3.663,222,3.649,225,1.26,231,1.821,248,0.444,253,1.343,256,2.158,310,2.16,364,2.736,403,2.213,523,4.183,570,4.262,612,1.568,704,3.192,705,3.007,750,2.453,757,4.976,764,1.943,869,2.468,870,2.603,871,2.603,872,2.213,873,2.603,874,3.489,896,1.701,960,2.025,963,4.956,991,3.007,1031,4.307,1032,3.007,1064,5.419,1246,4.421,1297,4.604,1355,2.453,1357,3.663,1362,2.603,1364,2.782,1374,4.276,1389,4.671,1418,4.976,1419,3.007,1420,3.308,1421,3.308,1422,3.308,1423,3.308,1424,5.297,1425,3.308,1427,6.545,1431,3.308,1432,3.308,1434,3.007,1435,2.782,1436,4.704,1437,4.276,1438,4.704,1439,4.276,1440,3.308,1442,4.704,1443,4.704,1444,3.308,1445,3.308,1446,4.704,1447,3.308,1449,3.308,1450,3.007,1451,3.308,1452,3.007,1453,3.308,1454,3.007,1455,3.308,1456,3.308,1457,4.704,1458,4.704,1459,4.704,1460,4.704,1461,3.308,1462,3.308,1463,3.308,1464,3.308,1465,3.308,1466,4.704,1467,3.308,1468,3.007,1469,3.308,1470,3.308,1471,3.308,1472,3.308,1473,3.308,1474,3.308,1475,3.308,1476,3.308,1477,3.308,1478,3.308,1479,3.308,1480,3.308,1481,4.704,1482,3.007,1483,3.308,1484,3.308,1485,3.308,1496,5.353]],["title/injectables/LocationService.html",[896,1.354,1217,3.149]],["body/injectables/LocationService.html",[3,0.129,4,0.101,5,0.073,10,0.434,12,1.207,19,3.092,21,0.619,23,1.409,24,0.011,32,2.632,62,0.129,63,0.006,64,0.008,65,0.006,66,0.144,82,1.137,89,1.163,91,1.125,96,1.315,97,0.696,116,1.266,138,1.913,144,0.463,148,2.37,149,2.842,248,0.649,397,3.092,398,2.733,410,3.237,529,4.273,550,2.632,612,2.293,647,2.842,764,2.842,896,2.195,899,2.961,913,2.961,929,4.069,930,6.146,1217,5.104,1239,6.319,1497,4.838,1498,6.068,1499,6.068,1500,6.952,1501,5.506,1502,6.906,1503,5.506,1504,5.506,1505,6.906,1506,5.506,1507,5.506,1508,5.506,1509,5.506,1510,5.506,1511,5.506,1512,5.506]],["title/interceptors/LoggingInterceptor.html",[752,2.945,839,2.392]],["body/interceptors/LoggingInterceptor.html",[3,0.109,4,0.085,5,0.062,7,1.876,10,0.367,12,1.188,21,0.509,23,1.05,24,0.011,25,1.582,53,1.554,55,4.039,62,0.109,63,0.005,64,0.007,65,0.005,66,0.121,70,3.199,82,1.021,89,0.984,91,0.855,96,1.08,97,0.572,116,0.992,138,1.499,144,0.44,146,2.877,147,1.915,159,3.33,189,1.289,248,0.549,310,1.126,364,3.272,398,2.312,403,3.644,529,3.458,534,4.675,550,2.227,570,3.991,612,1.939,665,3.72,704,2.074,752,4.285,764,2.404,839,3.48,869,2.858,874,4.039,896,1.97,897,2.877,898,2.877,960,2.505,1021,3.72,1031,3.22,1352,3.442,1354,5.488,1355,4.039,1356,5.876,1357,4.846,1358,6.28,1359,4.581,1362,4.285,1364,5.488,1365,4.581,1366,5.488,1367,5.488,1369,4.581,1370,4.581,1371,4.285,1372,4.581,1375,3.442,1376,4.581,1429,4.092,1492,5.446,1495,3.72,1513,4.092,1514,6.198,1515,4.658,1516,4.658,1517,5.446,1518,6.198,1519,4.658,1520,4.658,1521,6.198,1522,4.658,1523,4.658,1524,6.198,1525,4.658,1526,4.658,1527,4.658,1528,4.658]],["title/injectables/LoggingService.html",[364,1.718,896,1.354]],["body/injectables/LoggingService.html",[3,0.109,4,0.162,5,0.062,10,0.365,11,1.046,12,1.317,21,0.691,23,1.046,24,0.011,62,0.109,63,0.005,64,0.007,65,0.005,66,0.121,82,1.017,89,0.979,91,1.162,96,1.435,97,0.759,116,1.297,144,0.351,225,2.035,231,1.806,248,0.546,310,2.15,364,2.49,612,1.929,647,2.391,704,3.608,769,3.7,770,5.549,896,1.963,899,2.491,913,2.491,1529,4.07,1530,6.947,1531,6.104,1532,6.176,1533,6.176,1534,6.176,1535,6.176,1536,6.176,1537,6.176,1538,6.176,1539,4.632,1540,7.41,1541,6.176,1542,6.176,1543,4.632,1544,6.176,1545,4.632,1546,6.176,1547,4.632,1548,6.176,1549,4.632,1550,6.176,1551,4.632,1552,6.176,1553,4.632,1554,6.176,1555,4.632,1556,4.632,1557,6.176,1558,4.632,1559,4.632,1560,4.632,1561,4.07,1562,4.632,1563,4.632,1564,4.632,1565,4.632,1566,4.632,1567,4.632,1568,4.632]],["title/directives/MenuSelectionDirective.html",[293,1.212,338,1.354]],["body/directives/MenuSelectionDirective.html",[3,0.135,4,0.105,5,0.076,10,0.452,12,0.918,21,0.471,24,0.011,53,1.79,62,0.135,63,0.007,64,0.008,65,0.007,66,0.15,82,1.167,89,1.212,91,0.978,96,1,97,0.529,116,0.918,144,0.326,191,1.773,194,2.317,225,1.667,248,0.676,256,1.987,293,2.015,337,1.823,338,2.252,612,2.389,635,4.24,650,5.041,676,5.041,677,5.041,718,3.543,719,5.314,720,4.582,721,4.24,722,4.582,723,4.582,724,4.582,725,5.041,726,5.041,728,5.041,729,5.041,730,5.041,731,5.041,1569,6.14,1570,5.041,1571,7.085,1572,8.028,1573,4.582,1574,6.71,1575,6.14,1576,6.412,1577,5.737,1578,5.737,1579,4.582,1580,4.24,1581,5.737,1582,5.737]],["title/directives/MenuToggleDirective.html",[293,1.212,340,1.354]],["body/directives/MenuToggleDirective.html",[3,0.138,4,0.108,5,0.078,10,0.463,12,0.942,21,0.483,24,0.011,53,1.734,62,0.138,63,0.007,64,0.008,65,0.007,66,0.153,82,1.185,89,1.243,91,0.993,96,1.025,97,0.543,116,0.942,144,0.335,191,1.819,194,2.353,225,1.694,248,0.694,256,2.038,293,2.047,337,1.87,340,2.287,592,5.171,612,2.45,718,3.635,719,5.375,720,4.7,721,4.349,722,4.7,723,4.7,724,4.7,1569,6.21,1573,4.7,1574,6.752,1575,6.21,1576,6.469,1579,4.7,1580,4.349,1583,4.7,1584,7.197,1585,8.1,1586,5.885,1587,5.885,1588,5.885,1589,5.171,1590,5.885,1591,5.885,1592,5.885]],["title/interfaces/Meta.html",[0,0.742,40,2.115]],["body/interfaces/Meta.html",[0,1.433,1,3.791,2,1.646,3,0.108,4,0.085,5,0.061,6,3.007,7,1.243,8,1.277,9,2.914,10,0.363,11,1.043,13,3.41,14,2.591,15,2.29,16,4.258,17,3.804,18,4.258,19,3.458,20,3.179,21,0.607,22,3.312,23,1.506,24,0.011,25,1.888,27,4.258,28,4.258,29,4.258,30,4.014,31,4.014,32,2.206,33,4.258,34,3.41,35,3.804,36,1.98,37,4.258,38,4.258,39,4.258,40,4.176,41,4.258,42,3.621,43,4.343,44,2.713,45,2.713,46,2.481,47,2.401,48,3.21,49,2.591,50,4.014,51,2.381,52,1.277,53,1.029,54,3.804,55,3.007,56,2.565,57,3.007,58,3.804,59,3.804,60,3.19,61,1.057,62,0.108,63,0.005,64,0.007,65,0.005]],["title/interfaces/MetaResponse.html",[0,0.742,50,2.776]],["body/interfaces/MetaResponse.html",[0,1.436,1,3.55,2,1.661,3,0.109,4,0.085,5,0.062,6,3.035,7,1.255,8,1.289,9,2.56,10,0.367,11,1.05,13,3.442,14,2.615,15,2.312,16,4.285,17,3.828,18,4.285,19,3.48,20,3.199,21,0.572,22,3.333,23,1.507,24,0.011,25,1.895,27,4.285,28,4.285,29,4.285,30,4.039,31,4.039,32,2.227,33,4.285,34,3.442,35,3.828,36,1.984,37,4.285,38,4.285,39,4.285,40,4.218,41,4.285,42,3.644,43,3.991,44,2.738,45,2.738,46,2.505,47,2.147,48,3.22,49,3.48,50,4.54,51,3.833,52,1.289,53,1.039,54,3.828,55,3.035,56,2.581,57,3.035,58,3.828,59,3.828,60,3.22,61,1.067,62,0.109,63,0.005,64,0.007,65,0.005]],["title/interceptors/MockBackendInterceptor.html",[839,2.392,1593,3.149]],["body/interceptors/MockBackendInterceptor.html",[3,0.032,4,0.025,5,0.018,7,0.648,8,0.383,9,1.174,10,0.109,12,0.511,14,2.431,15,1.195,20,3.465,21,0.113,23,0.408,24,0.011,25,0.614,32,2.271,48,1.978,49,1.794,51,0.714,52,0.383,53,1.641,57,2.082,61,0.317,62,0.056,63,0.002,64,0.003,65,0.002,66,0.036,70,1.242,82,0.396,91,0.191,96,0.241,97,0.74,99,1.746,116,0.385,118,1.457,127,1.33,135,1.779,138,1.918,139,2.439,144,0.246,146,0.854,147,0.744,148,0.595,159,1.151,175,1.794,185,0.452,189,0.383,248,0.163,274,0.777,287,2.082,310,0.334,327,0.949,334,0.353,336,0.452,351,0.956,379,0.956,398,0.686,399,0.901,403,1.415,409,1.922,468,0.744,503,0.956,506,0.661,513,3.173,515,3.002,516,2.668,517,2.168,518,1.415,519,3.976,520,1.487,523,0.777,529,3.616,532,4.961,534,2.793,543,4.321,547,0.956,550,0.661,559,1.878,562,1.568,564,1.922,570,1.649,631,1.351,679,0.901,686,1.568,704,1.072,762,1.922,764,0.714,765,1.022,787,1.022,788,1.105,789,1.105,841,1.664,842,1.664,856,2.361,857,1.487,859,0.854,869,0.638,872,0.813,882,0.854,894,1.022,896,0.765,897,0.854,898,0.854,1035,2.361,1116,0.813,1207,2.271,1212,1.022,1213,1.779,1215,1.779,1236,2.115,1239,1.922,1241,2.115,1248,1.022,1252,1.779,1258,0.956,1274,1.022,1352,1.022,1354,2.824,1355,1.568,1356,2.824,1357,3.181,1358,4.192,1359,1.779,1365,1.779,1366,2.824,1367,2.824,1369,4.361,1370,1.779,1371,2.641,1372,1.779,1375,1.022,1376,1.779,1377,2.115,1387,2.115,1397,1.215,1398,5.258,1435,2.361,1437,1.105,1468,1.105,1495,1.105,1498,2.115,1499,2.115,1500,2.115,1517,2.115,1593,2.824,1594,1.922,1595,1.105,1596,2.407,1597,2.115,1598,2.407,1599,1.383,1600,2.115,1601,2.407,1602,2.407,1603,2.407,1604,1.383,1605,3.804,1606,1.215,1607,1.922,1608,1.215,1609,1.922,1610,1.105,1611,3.052,1612,1.105,1613,2.361,1614,1.105,1615,1.105,1616,1.922,1617,1.105,1618,0.956,1619,1.105,1620,1.105,1621,1.105,1622,1.022,1623,1.105,1624,0.956,1625,1.105,1626,2.115,1627,3.357,1628,1.215,1629,1.215,1630,1.215,1631,1.215,1632,1.215,1633,1.215,1634,1.215,1635,1.215,1636,1.215,1637,1.215,1638,1.215,1639,1.215,1640,1.215,1641,1.215,1642,1.215,1643,2.115,1644,1.215,1645,1.215,1646,2.115,1647,1.215,1648,1.215,1649,1.215,1650,2.807,1651,2.807,1652,1.215,1653,2.115,1654,1.215,1655,2.115,1656,2.115,1657,2.115,1658,1.215,1659,1.215,1660,1.215,1661,1.215,1662,1.215,1663,1.215,1664,1.215,1665,1.215,1666,1.215,1667,1.215,1668,1.215,1669,1.215,1670,1.215,1671,1.215,1672,1.215,1673,1.215,1674,1.215,1675,1.215,1676,1.215,1677,1.215,1678,1.215,1679,1.215,1680,1.215,1681,1.215,1682,1.215,1683,1.215,1684,1.215,1685,1.215,1686,1.215,1687,1.215,1688,1.215,1689,1.215,1690,1.215,1691,2.115,1692,1.215,1693,1.215,1694,1.215,1695,1.215,1696,1.215,1697,1.215,1698,1.215,1699,1.215,1700,1.215,1701,1.215,1702,1.215,1703,1.215,1704,2.115,1705,1.215,1706,1.215,1707,1.215,1708,2.115,1709,1.215,1710,1.215,1711,1.215,1712,1.215,1713,1.215,1714,1.215,1715,1.215,1716,1.215,1717,1.215,1718,1.215,1719,1.215,1720,1.215,1721,1.215,1722,1.215,1723,1.215,1724,1.215,1725,1.215,1726,1.215,1727,1.215,1728,1.215,1729,1.215,1730,1.215,1731,1.215,1732,1.215,1733,1.215,1734,1.215,1735,2.807,1736,1.215,1737,1.215,1738,1.215,1739,1.215,1740,1.215,1741,1.215,1742,1.215,1743,1.215,1744,1.215,1745,1.215,1746,1.215,1747,1.215,1748,1.215,1749,2.115,1750,1.215,1751,1.215,1752,1.215,1753,1.215,1754,1.215,1755,1.215,1756,1.215,1757,2.115,1758,1.215,1759,1.215,1760,1.215,1761,1.215,1762,1.215,1763,1.105,1764,1.215,1765,1.215,1766,1.215,1767,1.215,1768,0.854,1769,1.215,1770,1.215,1771,1.215,1772,1.215,1773,1.215,1774,1.215,1775,1.215,1776,2.115,1777,1.215,1778,1.215,1779,2.115,1780,1.215,1781,1.215,1782,1.215,1783,1.215,1784,1.215,1785,1.215,1786,1.215,1787,1.215,1788,1.215,1789,1.215,1790,1.215,1791,1.215,1792,1.215,1793,1.215,1794,1.215,1795,1.215,1796,2.807,1797,1.215,1798,1.215,1799,1.215,1800,1.215,1801,1.215,1802,1.215,1803,1.215,1804,1.215,1805,1.215,1806,1.215,1807,1.215,1808,1.215,1809,1.215,1810,1.215,1811,1.215,1812,1.215,1813,1.215,1814,1.215,1815,2.115,1816,1.215,1817,1.215,1818,1.215,1819,1.215,1820,1.215,1821,1.215,1822,1.215,1823,1.215,1824,1.215,1825,1.215,1826,1.215,1827,1.215,1828,1.215,1829,1.215,1830,1.215,1831,1.215,1832,1.215,1833,2.115,1834,2.807,1835,1.215,1836,1.215,1837,1.215,1838,1.215,1839,2.807,1840,2.807,1841,1.215,1842,2.115,1843,1.215,1844,1.215,1845,1.215,1846,1.215,1847,1.215,1848,1.215,1849,1.215,1850,1.215,1851,1.215,1852,1.215,1853,1.215,1854,1.215,1855,1.215,1856,1.215,1857,2.807,1858,1.215,1859,1.215,1860,1.215,1861,1.215,1862,1.215,1863,1.215,1864,1.215,1865,1.215,1866,1.215,1867,1.215,1868,1.215,1869,1.215,1870,1.215,1871,1.215,1872,1.215,1873,1.215,1874,1.215,1875,1.215,1876,1.922,1877,1.105,1878,2.115,1879,2.115,1880,2.115,1881,2.115,1882,1.215,1883,1.215,1884,1.215,1885,1.215,1886,1.105,1887,1.215,1888,1.215,1889,1.215,1890,1.215,1891,1.215,1892,1.215,1893,1.215,1894,1.215,1895,1.215,1896,1.215,1897,1.215,1898,1.215,1899,1.215,1900,1.215,1901,1.215,1902,1.215,1903,1.215,1904,1.215,1905,1.215,1906,1.105,1907,1.215,1908,1.215,1909,1.215,1910,1.215,1911,1.215,1912,1.215,1913,1.215,1914,1.215,1915,1.215,1916,1.215,1917,2.807,1918,1.215,1919,1.215,1920,1.215,1921,1.215,1922,1.215,1923,1.215,1924,2.115,1925,3.357,1926,1.215,1927,1.215,1928,1.215,1929,1.215,1930,1.215,1931,1.215,1932,1.215,1933,1.215,1934,1.215,1935,1.215,1936,1.215,1937,1.215,1938,1.215,1939,1.215,1940,1.215,1941,1.215,1942,1.215,1943,1.215,1944,1.215,1945,1.215,1946,1.215,1947,1.215,1948,1.215,1949,2.115,1950,1.215,1951,1.215,1952,1.215,1953,1.022,1954,1.215,1955,1.215,1956,1.215,1957,1.215,1958,1.215,1959,1.215,1960,1.215,1961,1.215,1962,1.215,1963,1.215,1964,1.215,1965,1.215,1966,1.215,1967,1.215,1968,1.215,1969,1.215,1970,1.215,1971,1.215,1972,1.215,1973,1.215,1974,1.215,1975,1.215,1976,1.215,1977,1.215,1978,1.215,1979,1.215,1980,1.215,1981,1.215,1982,1.215,1983,1.215,1984,2.115,1985,1.215,1986,1.215,1987,1.215,1988,1.215,1989,1.215,1990,1.215,1991,1.215,1992,1.215,1993,2.115,1994,1.215,1995,1.105,1996,1.215,1997,1.215,1998,1.215,1999,1.215,2000,1.215,2001,1.215,2002,1.215,2003,1.215,2004,1.215,2005,2.115,2006,1.215,2007,1.215,2008,1.215,2009,1.215,2010,1.215,2011,1.215,2012,1.215,2013,1.215,2014,1.215,2015,1.215,2016,1.215,2017,1.215,2018,1.215,2019,1.215,2020,1.215,2021,1.215,2022,1.215,2023,2.115,2024,1.922,2025,1.215,2026,1.215,2027,1.215,2028,1.215,2029,1.215,2030,1.215,2031,1.215,2032,1.215,2033,1.215,2034,1.215,2035,1.215,2036,1.215,2037,1.215,2038,1.215,2039,1.215,2040,1.215,2041,1.215,2042,1.215,2043,1.215,2044,1.105,2045,1.215,2046,1.215,2047,1.215,2048,1.215,2049,1.215,2050,1.215,2051,1.215,2052,1.215,2053,1.215,2054,1.215,2055,1.215,2056,1.215,2057,1.215,2058,1.215,2059,1.215,2060,1.215,2061,1.215,2062,1.215,2063,1.105,2064,1.215,2065,1.215,2066,1.215,2067,1.215,2068,1.215,2069,1.215,2070,1.215,2071,1.215,2072,1.215,2073,1.215,2074,1.215,2075,1.215,2076,1.215,2077,1.215,2078,1.215,2079,1.215,2080,1.215,2081,1.215,2082,2.115,2083,1.215,2084,1.215,2085,1.215,2086,1.215,2087,1.215,2088,1.215,2089,1.215,2090,1.105,2091,1.215,2092,1.105,2093,1.215,2094,1.215,2095,1.215,2096,1.215,2097,1.215,2098,1.105,2099,1.215,2100,1.215,2101,1.215,2102,1.215,2103,1.215,2104,1.215,2105,1.215,2106,1.215,2107,1.105,2108,1.215,2109,1.215,2110,1.215,2111,1.215,2112,1.215,2113,1.215,2114,1.215,2115,1.105,2116,1.215,2117,1.105,2118,1.215,2119,1.215,2120,1.922,2121,1.215,2122,1.215,2123,1.215,2124,1.215,2125,1.215,2126,1.215,2127,1.215,2128,1.215,2129,1.215,2130,1.215,2131,1.215,2132,1.215,2133,1.215,2134,1.215,2135,1.215,2136,1.215,2137,1.215,2138,1.215,2139,1.215,2140,1.215,2141,1.215,2142,1.215,2143,1.215,2144,1.215,2145,1.215,2146,1.215,2147,1.215,2148,1.215,2149,1.215,2150,1.215,2151,1.215,2152,1.215,2153,1.215,2154,1.215,2155,1.215,2156,1.215,2157,1.215,2158,1.215,2159,1.215,2160,1.215,2161,1.215,2162,1.215,2163,1.215,2164,1.215,2165,1.215,2166,1.215,2167,1.215,2168,2.115,2169,1.215,2170,1.215,2171,1.215,2172,1.215,2173,1.215,2174,1.215,2175,1.215,2176,1.215,2177,1.215,2178,1.215,2179,1.215,2180,1.215,2181,1.215,2182,1.215,2183,1.215,2184,1.215,2185,1.215,2186,2.807,2187,1.215,2188,1.215,2189,1.215,2190,1.215,2191,1.215,2192,1.215,2193,1.215,2194,1.215,2195,1.215,2196,1.215,2197,1.215,2198,1.215,2199,1.215,2200,1.215,2201,1.215,2202,1.215,2203,1.215,2204,1.215,2205,1.215,2206,1.215,2207,1.215,2208,1.215,2209,1.215,2210,1.215,2211,1.215,2212,1.215,2213,1.215,2214,1.215,2215,1.215,2216,1.215,2217,1.215,2218,1.215,2219,1.215,2220,1.215,2221,1.215,2222,1.215,2223,1.215,2224,1.215,2225,1.215,2226,1.215,2227,1.215,2228,1.215,2229,1.215,2230,1.215,2231,1.215,2232,1.215,2233,1.215,2234,1.215,2235,1.215,2236,1.215,2237,1.215,2238,1.215,2239,1.215,2240,1.215,2241,1.215,2242,1.215,2243,1.215,2244,1.215,2245,1.215,2246,1.215,2247,1.215,2248,1.215,2249,1.215,2250,1.215,2251,1.215,2252,1.215,2253,1.215,2254,1.215,2255,1.215,2256,1.215,2257,1.215,2258,1.215,2259,1.215,2260,1.215,2261,1.215,2262,1.215,2263,1.215,2264,1.215,2265,1.215,2266,1.215,2267,1.215,2268,1.215,2269,1.215,2270,1.215,2271,1.215,2272,1.215,2273,1.215,2274,1.215,2275,2.115,2276,1.215,2277,1.922,2278,1.215,2279,1.215,2280,1.215,2281,1.215,2282,1.215,2283,1.215,2284,1.215,2285,1.215,2286,1.215,2287,1.215,2288,1.215,2289,1.215,2290,1.215,2291,1.215,2292,1.215,2293,1.215,2294,1.105,2295,1.215,2296,1.215,2297,1.215,2298,1.215,2299,1.215,2300,1.215,2301,1.215,2302,1.215,2303,1.215,2304,1.215,2305,1.215,2306,2.115,2307,2.115,2308,1.215,2309,1.215,2310,1.215,2311,1.215,2312,1.215,2313,1.215,2314,1.922,2315,1.215,2316,1.215,2317,1.215,2318,1.215,2319,1.215,2320,1.215,2321,1.215,2322,1.215,2323,1.215,2324,1.215,2325,1.215,2326,1.215,2327,1.215,2328,1.215,2329,1.215,2330,1.215,2331,1.215,2332,1.215,2333,1.215,2334,1.215,2335,1.215,2336,1.105,2337,1.105,2338,1.215,2339,1.215,2340,1.215,2341,2.115,2342,1.215,2343,1.215,2344,1.215,2345,1.215,2346,1.215,2347,1.215,2348,1.215,2349,2.115,2350,1.215,2351,1.215,2352,1.215,2353,1.215,2354,1.215,2355,1.215,2356,1.215,2357,1.215,2358,1.215,2359,1.215,2360,1.215,2361,1.215,2362,1.215,2363,1.215,2364,1.215,2365,1.215,2366,1.215,2367,1.215,2368,1.215,2369,1.215,2370,1.215,2371,1.215,2372,1.215,2373,1.215,2374,1.215,2375,1.215,2376,1.105,2377,1.215,2378,1.215,2379,1.215,2380,1.215,2381,1.215,2382,1.922,2383,1.215,2384,1.215,2385,1.215,2386,1.215,2387,1.215,2388,1.215,2389,1.215,2390,1.105,2391,1.215,2392,1.215,2393,1.215,2394,1.215,2395,1.215,2396,1.215,2397,1.215,2398,1.215,2399,1.215,2400,1.215,2401,1.215,2402,1.215,2403,1.215,2404,1.215,2405,1.215,2406,1.215,2407,1.215,2408,1.215,2409,1.215,2410,1.215,2411,1.215,2412,1.215,2413,1.215,2414,1.215,2415,1.215,2416,1.215,2417,1.215,2418,1.215,2419,1.215,2420,1.215,2421,1.215,2422,1.215,2423,1.215,2424,1.215,2425,1.215,2426,1.215,2427,1.215,2428,1.215,2429,1.215,2430,1.215,2431,1.215,2432,1.215,2433,1.215,2434,1.215,2435,1.215,2436,1.215,2437,1.215,2438,1.215,2439,1.215,2440,1.215,2441,1.105,2442,1.105,2443,1.415,2444,1.215,2445,1.022,2446,1.215,2447,3.795,2448,3.285,2449,1.215,2450,3.795,2451,4.174,2452,3.795,2453,1.215,2454,2.115,2455,3.199,2456,5.184,2457,3.458,2458,3.199,2459,3.804,2460,2.115,2461,1.215,2462,2.115,2463,1.215,2464,1.215,2465,1.215,2466,2.115,2467,1.215,2468,1.215,2469,1.215,2470,2.115,2471,1.215,2472,1.215,2473,1.215,2474,2.115,2475,1.105,2476,1.215,2477,1.215,2478,1.215,2479,1.215,2480,1.383,2481,1.383,2482,1.383,2483,1.383,2484,1.022,2485,1.383,2486,2.407,2487,1.215,2488,1.215,2489,1.383,2490,1.383,2491,1.383,2492,1.383,2493,1.383,2494,1.383,2495,1.383,2496,1.383,2497,1.383,2498,5.691,2499,1.383,2500,1.383,2501,1.383,2502,2.407,2503,2.407,2504,2.115,2505,1.383,2506,1.383,2507,1.383,2508,1.383,2509,1.383,2510,1.383,2511,1.383,2512,2.407,2513,1.383,2514,1.383,2515,2.115,2516,1.383,2517,2.115,2518,1.383,2519,2.115,2520,1.215,2521,1.215,2522,1.383,2523,1.215,2524,1.922,2525,2.407,2526,2.407,2527,2.407,2528,3.195,2529,1.383,2530,2.407,2531,1.215,2532,1.383,2533,1.383,2534,1.383,2535,1.383,2536,1.383,2537,1.383,2538,1.383,2539,1.383,2540,1.383,2541,1.383,2542,1.383,2543,1.383,2544,1.383,2545,1.383,2546,1.383,2547,1.383,2548,1.383,2549,1.383,2550,1.383,2551,1.383,2552,1.383,2553,1.383,2554,1.383,2555,1.383,2556,1.383,2557,1.383,2558,1.383,2559,1.383,2560,1.383,2561,1.383,2562,1.383,2563,1.383,2564,1.105,2565,2.407,2566,1.383,2567,1.383,2568,1.383,2569,1.383,2570,2.407,2571,2.407,2572,1.383,2573,1.383,2574,1.383,2575,1.383,2576,1.383]],["title/interfaces/MutableKeyStore.html",[0,0.742,915,2.392]],["body/interfaces/MutableKeyStore.html",[0,0.501,2,1.025,3,0.067,4,0.053,5,0.038,10,0.226,12,1.291,21,0.662,23,1.473,24,0.011,40,1.427,47,0.996,53,1.657,62,0.067,63,0.003,64,0.005,65,0.003,66,0.075,82,0.722,84,2.725,91,1.174,96,1.406,97,0.744,99,1.057,116,1.361,117,2.989,118,1.79,127,1.197,138,2.025,139,3.211,144,0.249,156,0.914,167,3.093,189,0.796,225,1.706,401,2.746,468,1.546,532,2.125,692,2.125,704,1.28,772,2.859,825,3.976,835,5.357,841,1.988,915,3.344,919,5.122,920,5.122,986,1.546,1060,1.427,1119,1.546,1424,3.932,2577,5.016,2578,2.125,2579,3.468,2580,5.634,2581,5.634,2582,5.634,2583,3.855,2584,3.855,2585,3.855,2586,5.634,2587,5.634,2588,3.855,2589,3.855,2590,3.855,2591,5.634,2592,5.634,2593,3.855,2594,3.855,2595,3.855,2596,3.855,2597,3.855,2598,5.634,2599,3.855,2600,3.855,2601,3.855,2602,3.033,2603,2.875,2604,2.875,2605,2.875,2606,4.675,2607,2.875,2608,4.675,2609,2.875,2610,5.939,2611,2.875,2612,4.675,2613,2.875,2614,2.875,2615,2.875,2616,4.675,2617,2.875,2618,4.675,2619,2.875,2620,2.526,2621,2.875,2622,4.675,2623,2.875,2624,2.875,2625,2.875,2626,4.675,2627,2.875,2628,4.675,2629,4.675,2630,2.875,2631,4.675,2632,2.875,2633,4.675,2634,2.875,2635,4.675,2636,2.875,2637,2.875,2638,4.675,2639,2.875,2640,4.675,2641,2.875,2642,4.675,2643,2.875,2644,4.675,2645,2.875,2646,2.526,2647,2.526,2648,2.526,2649,1.873,2650,2.464,2651,2.125,2652,2.296,2653,2.526,2654,2.526,2655,3.855,2656,3.855,2657,4.675,2658,2.526,2659,4.675,2660,4.675,2661,2.526,2662,2.526,2663,2.526,2664,2.296,2665,2.526,2666,2.526,2667,2.526,2668,2.526,2669,2.526,2670,2.526,2671,2.526,2672,2.526,2673,2.526,2674,2.526,2675,2.526,2676,2.296,2677,2.296,2678,2.526,2679,2.526,2680,2.526,2681,2.526,2682,2.526,2683,2.526,2684,2.526,2685,2.526,2686,3.855,2687,2.526,2688,2.526,2689,2.526,2690,2.296,2691,1.776,2692,2.296,2693,1.873,2694,2.526,2695,1.873,2696,1.873,2697,2.296,2698,2.526,2699,2.526]],["title/classes/MutablePgpKeyStore.html",[66,0.111,772,2.776]],["body/classes/MutablePgpKeyStore.html",[0,0.505,3,0.068,4,0.053,5,0.039,10,0.228,12,1.293,21,0.579,23,1.414,24,0.011,40,1.439,47,1.004,53,1.661,62,0.068,63,0.003,64,0.005,65,0.003,66,0.076,68,1.386,82,0.727,84,3.328,91,1.175,96,1.408,97,0.745,99,1.065,116,1.362,117,3.014,118,1.8,127,1.207,138,2.027,139,3.214,144,0.251,156,0.921,167,3.1,189,1.222,225,1.659,401,2.761,468,1.559,532,2.143,692,2.143,704,1.291,772,3.486,825,3.979,835,5.371,841,2.004,915,3.358,919,5.141,920,5.141,986,1.559,1060,1.439,1119,1.559,1424,3.264,2577,5.021,2578,2.143,2579,2.878,2580,5.655,2581,5.655,2582,5.655,2583,3.88,2584,3.88,2585,3.88,2586,5.655,2587,5.655,2588,3.88,2589,3.88,2590,3.88,2591,5.655,2592,5.655,2593,3.88,2594,3.88,2595,3.88,2596,3.88,2597,3.88,2598,5.655,2599,3.88,2600,3.88,2601,3.88,2602,3.053,2606,4.7,2608,4.7,2610,5.958,2612,4.7,2616,4.7,2618,4.7,2620,2.547,2622,4.7,2626,4.7,2628,4.7,2629,4.7,2631,4.7,2633,4.7,2635,4.7,2638,4.7,2640,4.7,2642,4.7,2644,4.7,2646,2.547,2647,2.547,2648,2.547,2649,1.889,2650,2.48,2651,2.143,2652,2.316,2653,2.547,2654,2.547,2655,3.88,2656,3.88,2657,4.7,2658,2.547,2659,4.7,2660,4.7,2661,2.547,2662,2.547,2663,2.547,2664,2.316,2665,2.547,2666,2.547,2667,2.547,2668,2.547,2669,2.547,2670,2.547,2671,2.547,2672,2.547,2673,2.547,2674,2.547,2675,2.547,2676,2.316,2677,2.316,2678,2.547,2679,2.547,2680,2.547,2681,2.547,2682,2.547,2683,2.547,2684,2.547,2685,2.547,2686,3.88,2687,2.547,2688,2.547,2689,2.547,2690,2.316,2691,1.791,2692,2.316,2693,1.889,2694,2.547,2695,1.889,2696,1.889,2697,2.316,2698,2.547,2699,2.547,2700,2.899,2701,2.899,2702,2.899,2703,2.899,2704,2.899,2705,2.899,2706,2.899,2707,2.899,2708,2.899,2709,2.899,2710,2.899,2711,2.899,2712,2.899,2713,2.899,2714,2.899,2715,2.899,2716,2.899,2717,2.899,2718,2.899,2719,2.899,2720,2.899,2721,2.899,2722,2.899,2723,2.899,2724,2.899]],["title/components/NetworkStatusComponent.html",[179,0.624,315,1.393]],["body/components/NetworkStatusComponent.html",[3,0.105,4,0.082,5,0.06,8,1.67,10,0.352,11,1.022,12,0.716,21,0.495,24,0.011,36,1.053,52,1.238,62,0.105,63,0.005,64,0.007,65,0.005,66,0.117,78,2.388,82,0.994,89,0.945,91,1.008,93,1.463,96,0.78,97,0.674,116,0.965,144,0.254,179,1,180,1.422,181,2.152,182,1.596,183,1.804,184,1.596,185,1.463,189,1.67,190,2.938,191,1.383,192,2.433,193,2.433,194,2.917,195,3.163,197,2.433,199,2.433,211,3.145,225,1.72,231,1.764,247,1.804,248,0.527,290,1.238,291,2.218,292,2.152,293,1.273,294,2.685,295,1.644,296,1.463,297,2.509,298,1.422,299,1.644,300,1.644,301,1.422,302,1.644,303,1.463,304,1.644,305,1.422,306,1.644,307,1.422,308,1.644,309,1.422,310,1.082,311,1.644,312,1.463,313,2.218,314,1.55,315,2.389,316,1.644,317,1.422,318,1.644,319,1.422,320,1.644,321,1.422,322,1.644,323,1.463,324,2.218,325,1.55,326,1.422,327,1.111,328,1.422,329,1.644,330,1.463,331,2.218,332,1.55,333,1.463,334,1.142,335,1.422,336,1.463,337,1.422,338,1.422,339,1.644,340,1.422,341,1.644,342,1.422,343,1.644,344,1.506,345,1.596,346,1.644,570,3.114,612,1.863,2725,6.703,2726,6.094,2727,3.932,2728,6.827,2729,6.034,2730,6.827,2731,7.307,2732,4.475,2733,7.307,2734,6.034,2735,6.034,2736,4.475,2737,4.475,2738,7.307,2739,6.034,2740,4.475,2741,6.034,2742,4.475,2743,4.475,2744,6.034,2745,6.034]],["title/components/OrganizationComponent.html",[179,0.624,317,1.354]],["body/components/OrganizationComponent.html",[3,0.092,4,0.072,5,0.052,8,1.522,10,0.308,11,0.932,12,0.626,21,0.566,24,0.011,36,1.294,52,2.255,62,0.092,63,0.005,64,0.006,65,0.005,66,0.102,78,1.144,82,0.906,89,0.826,91,1.069,93,1.279,96,0.682,97,0.637,116,0.88,118,1.316,127,2.649,138,1.33,144,0.362,156,1.748,179,0.932,180,1.243,181,1.962,182,1.395,183,1.577,184,1.395,185,1.279,189,1.522,190,2.738,191,1.209,192,2.218,193,2.218,194,2.887,195,3.125,197,2.218,199,2.218,204,4.701,211,2.97,215,4.065,219,3.124,220,5.574,225,1.624,229,4.398,231,1.608,234,4.492,247,1.577,248,0.461,249,2.891,250,2.103,251,1.941,258,2.891,259,4.065,286,2.73,288,4.497,290,1.083,291,2.021,292,1.962,293,1.113,294,2.536,295,1.437,296,1.279,297,2.338,298,1.243,299,1.437,300,1.437,301,1.243,302,1.437,303,1.279,304,1.437,305,1.243,306,1.437,307,1.243,308,1.437,309,1.243,310,0.946,311,1.437,312,1.279,313,2.021,314,1.355,315,1.279,316,1.437,317,2.193,318,1.437,319,1.243,320,1.437,321,1.243,322,1.437,323,1.279,324,2.021,325,1.355,326,1.243,327,0.971,328,1.243,329,1.437,330,1.279,331,2.021,332,1.355,333,1.279,334,0.998,335,1.243,336,1.279,337,1.243,338,1.243,339,1.437,340,1.243,341,1.437,342,1.243,343,1.437,344,1.316,345,1.395,346,1.437,612,1.629,806,5.081,808,5.512,830,4.393,882,2.416,1097,4.235,1254,4.832,1389,4.497,1953,5.1,2746,3.437,2747,5.374,2748,6.361,2749,5.5,2750,6.361,2751,6.361,2752,5.5,2753,3.911,2754,3.911,2755,3.911,2756,3.911,2757,3.911,2758,3.911,2759,3.911,2760,7.272,2761,5.081,2762,3.911,2763,3.911,2764,3.911,2765,3.911,2766,5.5,2767,5.5,2768,4.832,2769,5.5,2770,5.5,2771,5.5,2772,5.5,2773,4.832,2774,5.5,2775,5.5,2776,5.5,2777,5.5,2778,5.5,2779,5.5]],["title/classes/PGPSigner.html",[66,0.111,2780,2.776]],["body/classes/PGPSigner.html",[0,1.093,3,0.089,4,0.07,5,0.051,9,1.984,10,0.3,11,0.915,12,1.092,21,0.679,23,1.464,24,0.011,36,1.271,43,4.475,44,4.234,45,4.234,46,3.873,51,2.787,52,1.495,53,1.668,56,2.249,62,0.089,63,0.004,64,0.006,65,0.004,66,0.099,68,1.822,82,0.889,83,4.107,84,2.529,89,0.805,91,1.151,96,1.189,97,0.629,108,4.214,116,1.092,117,2.305,118,1.817,138,1.306,144,0.307,167,1.587,189,1.495,225,1.81,231,2.186,310,1.306,364,3.015,401,1.967,674,3.335,699,2.484,701,2.635,704,2.404,756,2.14,825,1.757,915,4.199,960,2.049,1048,3.733,1060,1.892,2498,4.313,2577,4.94,2579,4.693,2602,3.733,2649,2.484,2650,3.032,2691,2.354,2693,3.519,2695,2.484,2696,2.484,2780,4.087,2781,2.484,2782,4.635,2783,4.635,2784,4.635,2785,5.322,2786,4.745,2787,4.745,2788,3.991,2789,5.4,2790,3.991,2791,3.811,2792,3.811,2793,3.811,2794,3.811,2795,3.811,2796,3.811,2797,3.811,2798,3.811,2799,4.635,2800,4.874,2801,3.811,2802,3.044,2803,4.635,2804,3.811,2805,4.635,2806,3.811,2807,2.816,2808,2.635,2809,2.816,2810,2.816,2811,3.991,2812,2.816,2813,2.816,2814,2.816,2815,2.816,2816,2.816,2817,2.816,2818,2.816,2819,2.816,2820,2.816,2821,3.991,2822,2.816,2823,2.816,2824,2.816,2825,3.991,2826,2.816,2827,3.991,2828,2.816,2829,2.816,2830,2.816,2831,2.816,2832,2.816,2833,2.816,2834,2.816,2835,2.816,2836,2.816,2837,2.816,2838,2.816,2839,2.816,2840,2.816]],["title/components/PagesComponent.html",[179,0.624,319,1.354]],["body/components/PagesComponent.html",[3,0.116,4,0.09,5,0.066,8,1.782,10,0.389,11,1.091,21,0.405,23,1.091,24,0.01,36,1.161,52,1.365,62,0.116,63,0.006,64,0.008,65,0.006,66,0.129,78,1.442,89,1.514,91,0.888,93,1.613,97,0.661,144,0.281,179,1.05,180,1.568,181,2.296,182,1.76,183,1.989,184,1.76,185,1.613,191,1.525,192,2.596,193,2.596,194,2.936,195,3.187,197,2.596,199,2.596,247,1.989,248,0.581,286,3.195,290,1.365,291,2.366,292,2.296,293,1.403,294,2.791,295,1.813,296,1.613,297,2.633,298,1.568,299,1.813,300,1.813,301,1.568,302,1.813,303,1.613,304,1.813,305,1.568,306,1.813,307,1.568,308,1.813,309,1.568,310,1.193,311,1.813,312,1.613,313,2.366,314,1.709,315,1.613,316,1.813,317,1.568,318,1.813,319,2.414,320,1.813,321,1.568,322,1.813,323,1.613,324,2.366,325,1.709,326,1.568,327,1.225,328,1.568,329,1.813,330,1.613,331,2.366,332,1.709,333,1.613,334,1.259,335,1.568,336,1.613,337,1.568,338,1.568,339,1.813,340,1.568,341,1.813,342,1.568,343,1.813,344,1.66,345,1.76,346,1.813,756,3.615,872,4.213,2841,4.335,2842,6.438,2843,7.166,2844,6.438,2845,6.438,2846,6.438,2847,5.142,2848,6.438]],["title/modules/PagesModule.html",[440,1.148,2849,3.149]],["body/modules/PagesModule.html",[3,0.132,4,0.103,5,0.075,24,0.011,61,1.286,62,0.132,63,0.007,64,0.008,65,0.007,66,0.146,144,0.497,147,2.16,248,0.662,290,1.554,319,2.656,440,1.512,442,2.063,443,2.787,444,4.094,445,2.898,446,3.019,451,4.313,453,3.759,454,3.019,455,2.684,457,2.911,458,4.11,459,3.153,461,3.301,463,3.468,478,4.318,479,3.468,480,4.556,481,3.659,482,3.468,483,4.318,484,3.468,485,4.318,486,3.468,489,4.833,490,3.881,2849,6.427,2850,4.933,2851,4.933,2852,4.933,2853,5.777,2854,5.614,2855,5.614,2856,5.614,2857,6.991,2858,4.933,2859,4.933]],["title/modules/PagesRoutingModule.html",[440,1.148,2853,2.945]],["body/modules/PagesRoutingModule.html",[3,0.136,4,0.106,5,0.077,24,0.011,53,1.295,61,1.33,62,0.136,63,0.007,64,0.008,65,0.007,66,0.151,72,3.783,144,0.439,147,1.794,179,0.851,248,0.684,253,2.071,286,3.542,319,2.268,442,2.133,457,2.972,505,3.413,506,3.694,507,4.007,508,5.018,509,4.013,510,4.013,511,3.783,512,3.586,559,3.413,793,7.272,1097,3.26,1102,3.122,2443,3.413,2853,4.934,2860,5.805,2861,5.805,2862,5.805,2863,5.805,2864,5.805,2865,5.805,2866,5.805,2867,5.805,2868,5.805,2869,5.805,2870,5.805,2871,5.805]],["title/directives/PasswordToggleDirective.html",[293,1.212,342,1.354]],["body/directives/PasswordToggleDirective.html",[3,0.128,4,0.1,5,0.073,10,0.429,12,0.872,21,0.616,23,1.336,24,0.011,48,3.128,53,1.531,62,0.128,63,0.006,64,0.008,65,0.006,66,0.142,82,1.13,89,1.152,91,1.088,96,0.95,97,0.503,116,0.872,144,0.31,191,1.685,194,2.244,225,1.616,248,0.643,256,1.889,293,1.952,337,1.733,342,2.182,612,2.271,719,4.746,977,4.355,1060,3.729,1273,4.896,1289,5.073,1573,4.355,1574,6.626,1575,6,1576,6.298,1579,4.355,1580,4.03,1583,4.355,2872,7.14,2873,6.864,2874,7.885,2875,7.512,2876,6.864,2877,5.453,2878,5.453,2879,5.453,2880,5.453,2881,5.453,2882,5.453,2883,7.512,2884,7.512,2885,7.512,2886,6.864,2887,7.885,2888,6.864,2889,6.864]],["title/injectables/RegistryService.html",[896,1.354,1089,2.776]],["body/injectables/RegistryService.html",[3,0.128,4,0.1,5,0.072,10,0.428,11,1.161,21,0.616,24,0.011,36,1.766,52,2.076,62,0.128,63,0.006,64,0.008,65,0.006,66,0.142,73,4.41,82,1.128,89,1.585,91,1.144,116,1.096,138,1.656,144,0.462,145,4.725,148,2.339,149,2.806,156,2.635,157,5.063,248,0.641,251,2.698,647,2.806,896,2.177,899,2.923,913,2.923,986,2.923,1089,4.464,1119,2.923,2890,4.776,2891,8.289,2892,7.876,2893,7.876,2894,5.436,2895,5.436,2896,5.436,2897,5.992,2898,5.436,2899,6.721,2900,6.591,2901,6.85,2902,6.85,2903,6.85,2904,6.85,2905,5.436,2906,5.436,2907,5.436,2908,4.342,2909,4.342]],["title/guards/RoleGuard.html",[859,2.632,2910,3.403]],["body/guards/RoleGuard.html",[3,0.105,4,0.082,5,0.06,7,1.843,10,0.354,12,0.968,21,0.496,24,0.011,53,1.002,62,0.105,63,0.005,64,0.007,65,0.005,66,0.178,70,3.123,82,0.996,89,0.949,91,0.835,96,1.054,97,0.558,116,1.171,117,2.223,118,2.302,123,3.737,124,4.183,125,4.471,127,2.519,131,4.832,138,1.654,144,0.389,147,1.388,159,3.27,175,2.523,179,0.887,185,1.978,189,1.243,222,4.542,231,1.769,248,0.529,253,1.602,288,3.943,506,2.892,516,4.701,517,2.223,523,4.652,529,3.395,550,2.148,589,5.328,612,1.871,647,2.319,798,6.102,859,4.521,860,3.588,862,4.832,863,5.316,864,5.409,866,3.588,868,5.316,869,2.79,870,5.06,871,4.183,872,3.557,873,4.183,874,3.943,875,3.947,876,6.914,877,6.431,879,5.316,881,4.471,882,3.737,883,4.832,884,4.832,885,5.316,886,4.832,887,6.431,888,5.846,889,4.471,890,5.316,891,5.316,892,6.011,894,5.409,896,1.923,897,2.775,898,2.775,899,2.416,901,3.947,2910,4.832,2911,3.947,2912,4.492,2913,4.492,2914,6.05,2915,6.05,2916,6.05,2917,6.05,2918,4.492,2919,4.492,2920,4.492,2921,4.492,2922,4.492,2923,4.492,2924,4.492]],["title/directives/RouterLinkDirectiveStub.html",[293,1.212,344,1.434]],["body/directives/RouterLinkDirectiveStub.html",[3,0.14,4,0.109,5,0.079,10,0.469,11,1.228,21,0.595,24,0.011,36,1.402,52,1.649,62,0.14,63,0.007,64,0.009,65,0.007,66,0.189,91,1.079,144,0.339,191,1.841,194,2.371,225,1.402,248,0.702,293,2.411,337,1.893,344,2.44,345,2.586,524,3.345,534,4.263,655,6.37,683,5.234,998,5.234,1095,5.358,1144,6.37,1145,5.234,1273,4.725,1289,5.358,1580,5.776,2925,7.146,2926,6.496,2927,7.816,2928,7.25,2929,5.957,2930,5.957,2931,5.957,2932,5.957,2933,5.957,2934,5.957,2935,5.957,2936,5.957,2937,5.957,2938,5.957,2939,5.957]],["title/pipes/SafePipe.html",[1768,2.632,2940,2.945]],["body/pipes/SafePipe.html",[3,0.146,4,0.114,5,0.083,12,0.993,21,0.509,23,1.348,24,0.011,62,0.146,63,0.007,64,0.009,65,0.007,66,0.162,82,1.022,91,0.856,96,1.081,97,0.734,116,0.993,138,1.5,144,0.423,189,1.718,191,1.918,248,0.731,612,2.584,755,4.956,756,3.485,872,3.649,1768,4.59,1876,6.734,2940,5.138,2941,4.956,2942,5.452,2943,7.432,2944,5.452,2945,7.432,2946,6.99,2947,6.206,2948,6.53,2949,7.432,2950,6.206,2951,6.206]],["title/classes/Settings.html",[66,0.111,1097,2.392]],["body/classes/Settings.html",[0,1.251,3,0.138,4,0.107,5,0.078,7,1.58,10,0.462,11,1.217,12,0.938,21,0.681,24,0.011,36,1.38,46,4.174,47,2.031,52,1.623,61,1.344,62,0.138,63,0.007,64,0.008,65,0.007,66,0.187,68,2.804,73,4.564,89,1.239,91,1.145,96,1.022,97,0.541,145,3.293,277,5.593,1097,4.543,1258,5.367,2952,4.684,2953,7.293,2954,6.821,2955,6.321,2956,6.31,2957,7.182,2958,5.865,2959,5.865,2960,5.865,2961,5.153]],["title/components/SettingsComponent.html",[179,0.624,321,1.354]],["body/components/SettingsComponent.html",[3,0.083,4,0.065,5,0.047,8,2.135,10,0.28,11,0.87,12,0.822,21,0.633,23,1.187,24,0.011,35,4.081,36,1.209,48,2.139,52,0.983,53,0.792,62,0.142,63,0.004,64,0.006,65,0.004,66,0.093,78,1.039,82,0.846,89,0.751,91,1.115,93,1.162,96,0.895,97,0.725,116,1.057,139,2.503,144,0.428,156,1.632,179,0.884,180,1.129,181,1.832,182,1.268,183,1.433,184,1.268,185,1.162,189,1.422,190,2.596,191,1.098,192,2.071,193,2.071,194,2.864,195,3.096,196,3.172,197,2.071,199,2.071,211,2.844,225,1.815,247,1.433,248,0.419,251,1.764,252,1.764,286,2.549,290,0.983,291,1.888,292,1.832,293,1.011,294,2.428,295,1.306,296,1.162,297,2.217,298,1.129,299,1.306,300,1.306,301,1.129,302,1.306,303,1.162,304,1.306,305,1.129,306,1.306,307,1.129,308,1.306,309,1.129,310,0.859,311,1.306,312,1.162,313,1.888,314,1.231,315,1.162,316,1.306,317,1.129,318,1.306,319,1.129,320,1.306,321,2.1,322,1.306,323,1.162,324,1.888,325,1.231,326,1.129,327,0.883,328,1.129,329,1.306,330,1.162,331,1.888,332,1.231,333,1.162,334,0.907,335,1.129,336,1.162,337,1.129,338,1.129,339,1.306,340,1.129,341,1.306,342,1.129,343,1.306,344,1.196,345,1.268,346,1.306,352,4.17,354,4.818,356,4.17,357,4.17,358,3.551,359,4.568,366,3.551,377,4.17,386,4.17,387,3.347,388,3.551,390,4.17,391,3.551,392,2.457,393,1.834,394,1.911,395,1.911,396,2.195,414,2.626,416,2.626,417,2.457,418,2.626,419,2.457,421,2.626,422,2.457,432,3.551,436,4.568,517,1.888,559,3.02,612,1.48,631,1.995,658,2.838,659,4.512,691,4.513,857,4.081,865,4.513,926,6.419,1060,3.626,1069,5.3,1097,4.481,2747,4.883,2962,3.122,2963,6.032,2964,5.136,2965,5.136,2966,3.553,2967,3.553,2968,3.553,2969,3.553,2970,3.553,2971,3.553,2972,4.513,2973,3.553,2974,3.553,2975,3.553,2976,3.553,2977,3.122,2978,3.553,2979,3.553,2980,3.553,2981,3.553,2982,3.553,2983,3.553,2984,4.458,2985,3.553,2986,5.136,2987,5.136,2988,5.136,2989,5.136,2990,5.136,2991,5.136,2992,5.136,2993,5.806,2994,6.608,2995,5.136,2996,5.136,2997,5.136,2998,5.136,2999,5.136]],["title/modules/SettingsModule.html",[440,1.148,3000,3.149]],["body/modules/SettingsModule.html",[3,0.121,4,0.095,5,0.069,24,0.011,61,1.181,62,0.121,63,0.006,64,0.008,65,0.006,66,0.134,144,0.505,147,2.047,248,0.608,250,2.773,290,1.427,317,2.599,321,2.599,393,2.662,394,2.773,395,2.773,440,1.389,442,1.895,443,2.559,444,3.936,445,2.662,446,2.773,451,4.22,453,3.562,454,2.773,455,2.465,457,2.759,458,3.895,459,2.896,461,3.032,463,3.185,473,4.317,474,4.58,475,4.896,476,3.811,477,4.58,478,4.092,479,3.185,480,4.317,481,3.36,482,3.185,483,4.092,484,3.185,485,4.092,486,3.185,487,4.317,488,3.36,489,4.58,490,3.565,499,5.291,3000,6.419,3001,4.531,3002,4.531,3003,4.531,3004,5.653,3005,5.157,3006,5.157,3007,4.531,3008,4.531,3009,6.625,3010,5.157,3011,6.625,3012,5.157]],["title/modules/SettingsRoutingModule.html",[440,1.148,3004,2.945]],["body/modules/SettingsRoutingModule.html",[3,0.146,4,0.114,5,0.083,24,0.011,53,1.386,61,1.424,62,0.146,63,0.007,64,0.009,65,0.007,66,0.162,144,0.469,147,1.921,179,1.09,248,0.733,253,2.218,317,2.365,321,2.365,442,2.285,457,3.098,505,3.655,506,3.806,507,4.178,508,4.681,509,4.298,510,4.298,511,4.051,512,3.84,2747,4.594,3004,5.143,3007,5.462,3008,5.462,3013,6.217]],["title/modules/SharedModule.html",[440,1.148,451,2.199]],["body/modules/SharedModule.html",[3,0.11,4,0.086,5,0.062,24,0.011,61,1.598,62,0.11,63,0.006,64,0.007,65,0.006,66,0.122,78,1.365,144,0.492,147,1.443,248,0.55,253,1.666,290,1.293,309,2.529,312,2.799,315,2.799,323,2.799,330,2.799,338,2.721,340,2.529,440,1.258,442,1.716,443,2.318,444,3.751,445,2.411,446,2.512,451,4.623,453,3.339,454,2.512,455,2.233,457,2.586,458,3.651,459,2.623,487,4.047,488,3.044,507,3.487,911,4.104,1318,3.452,1329,3.73,1344,4.104,1345,4.104,2726,3.73,2940,5.918,3014,4.104,3015,4.104,3016,4.104,3017,5.918,3018,4.67,3019,4.67,3020,4.67,3021,4.67,3022,6.209,3023,4.67,3024,4.67,3025,4.67,3026,6.209,3027,4.67,3028,4.67]],["title/components/SidebarComponent.html",[179,0.624,323,1.393]],["body/components/SidebarComponent.html",[3,0.115,4,0.09,5,0.065,8,1.77,10,0.385,24,0.01,62,0.115,63,0.006,64,0.008,65,0.006,66,0.127,72,4.168,78,1.428,82,1.053,89,1.507,91,0.882,93,1.597,97,0.658,116,0.781,144,0.278,179,1.045,180,1.552,181,2.281,182,1.742,183,1.969,184,1.742,185,1.597,189,1.77,190,3.069,191,1.509,192,2.579,193,2.579,194,2.934,195,3.185,197,2.579,199,2.579,211,3.256,225,1.505,247,1.969,248,0.576,290,1.352,291,2.35,292,2.281,293,1.389,294,2.781,295,1.795,296,1.597,297,2.621,298,1.552,299,1.795,300,1.795,301,1.552,302,1.795,303,1.597,304,1.795,305,1.552,306,1.795,307,1.552,308,1.795,309,1.552,310,1.181,311,1.795,312,1.597,313,2.35,314,1.692,315,1.597,316,1.795,317,1.552,318,1.795,319,1.552,320,1.795,321,1.552,322,1.795,323,2.474,324,2.35,325,1.692,326,1.552,327,1.213,328,1.552,329,1.795,330,1.597,331,2.35,332,1.692,333,1.597,334,1.246,335,1.552,336,2.332,337,1.552,338,1.552,339,1.795,340,1.552,341,1.795,342,1.552,343,1.795,344,1.643,345,1.742,346,1.795,559,3.76,681,4.726,718,3.95,1097,3.591,2443,3.76,3029,4.291,3030,7.131,3031,6.395,3032,4.884,3033,4.884,3034,6.395]],["title/components/SidebarStubComponent.html",[179,0.624,325,1.476]],["body/components/SidebarStubComponent.html",[3,0.121,4,0.095,5,0.069,8,1.837,24,0.01,62,0.172,63,0.006,64,0.008,65,0.006,66,0.191,78,1.512,93,1.691,97,0.676,144,0.294,179,0.973,180,1.644,181,2.368,182,2.615,184,1.845,185,1.691,191,1.598,194,2.942,195,3.206,248,0.61,290,1.432,291,2.439,292,2.368,293,1.471,294,2.842,295,1.901,296,1.691,297,2.694,298,1.644,299,1.901,300,1.901,301,1.644,302,1.901,303,1.691,304,1.901,305,1.644,306,1.901,307,1.644,308,1.901,309,1.644,310,1.251,311,1.901,312,1.691,313,2.439,314,2.299,315,1.691,316,1.901,317,1.644,318,1.901,319,1.644,320,1.901,321,1.644,322,1.901,323,1.691,324,2.439,325,2.678,326,1.644,327,1.285,328,1.644,329,1.901,330,1.691,331,2.439,332,2.299,333,1.691,334,1.32,335,1.644,336,1.691,337,1.644,338,1.644,339,1.901,340,1.644,341,1.901,342,1.644,343,1.901,344,1.74,345,1.845,346,1.901,440,1.393,524,2.904,718,4.1,1409,3.822,1415,3.822,1416,5.854,1417,3.822]],["title/interfaces/Signable.html",[0,0.742,2800,2.776]],["body/interfaces/Signable.html",[0,1.207,2,1.641,3,0.108,4,0.084,5,0.061,9,2.259,10,0.362,23,1.456,24,0.011,43,4.458,44,4.071,45,4.659,46,3.723,51,3.173,53,1.767,56,2.56,62,0.108,63,0.005,64,0.007,65,0.005,66,0.12,82,1.012,83,3.668,84,1.855,91,0.635,108,4.277,116,0.736,117,2.259,118,2.069,138,1.486,144,0.35,167,1.916,189,1.274,225,1.865,231,2.252,310,1.486,364,2.792,401,2.375,674,3.797,699,2.998,701,3.181,704,2.737,756,2.584,825,2.122,915,3.888,960,2.474,1048,3.181,1060,2.284,2577,3.615,2579,4.006,2649,2.998,2650,3.452,2691,2.842,2693,4.006,2695,2.998,2696,2.998,2780,4.006,2781,2.998,2782,3.4,2783,3.4,2784,3.4,2785,4.544,2788,3.4,2790,3.4,2799,4.544,2800,5.019,2803,4.544,2805,4.544,2807,3.4,2808,3.181,2809,3.4,2810,3.4,2811,4.544,2812,3.4,2813,3.4,2814,3.4,2815,3.4,2816,3.4,2817,3.4,2818,3.4,2819,3.4,2820,3.4,2821,4.544,2822,3.4,2823,3.4,2824,3.4,2825,4.544,2826,3.4,2827,4.544,2828,3.4,2829,3.4,2830,3.4,2831,3.4,2832,3.4,2833,3.4,2834,3.4,2835,3.4,2836,3.4,2837,3.4,2838,3.4,2839,3.4,2840,3.4,3035,4.601]],["title/interfaces/Signature.html",[0,0.742,43,2.199]],["body/interfaces/Signature.html",[0,1.43,1,3.523,2,1.63,3,0.107,4,0.084,5,0.061,6,2.978,7,1.231,8,1.265,9,2.906,10,0.36,11,1.037,13,3.378,14,2.566,15,2.268,16,4.231,17,3.78,18,4.231,19,3.437,20,3.159,21,0.631,22,3.291,23,1.517,24,0.011,25,1.881,27,4.231,28,4.231,29,4.231,30,3.989,31,3.989,32,2.185,33,4.231,34,3.378,35,3.78,36,1.977,37,4.231,38,4.231,39,4.231,40,4.126,41,4.231,42,3.598,43,4.169,44,4.333,45,4.333,46,3.963,47,2.12,48,2.549,49,2.566,50,3.989,51,2.359,52,1.265,53,1.019,54,3.78,55,2.978,56,2.549,57,2.978,58,3.78,59,3.78,60,3.16,61,1.047,62,0.107,63,0.005,64,0.007,65,0.005]],["title/interfaces/Signature-1.html",[0,0.618,43,1.831,175,1.992]],["body/interfaces/Signature-1.html",[0,1.191,2,1.6,3,0.105,4,0.082,5,0.06,9,2.806,10,0.353,11,1.024,21,0.6,23,1.49,24,0.011,43,4.463,44,4.625,45,4.625,46,4.23,51,3.12,53,1.754,56,2.517,62,0.105,63,0.005,64,0.007,65,0.005,66,0.117,83,3.631,84,1.809,108,4.223,117,2.221,118,2.034,138,1.461,144,0.344,167,1.868,189,1.242,225,1.851,231,2.232,310,1.461,364,2.756,401,2.316,674,3.734,699,2.924,701,3.102,704,2.691,756,2.519,825,2.069,915,3.839,960,2.413,1048,3.102,1060,2.227,2577,2.638,2579,3.939,2649,2.924,2650,3.394,2691,2.771,2693,3.939,2695,2.924,2696,2.924,2780,3.939,2781,2.924,2782,3.316,2783,3.316,2784,3.316,2785,4.467,2788,3.316,2790,3.316,2799,4.467,2800,4.767,2803,4.467,2805,4.467,2807,3.316,2808,3.102,2809,3.316,2810,3.316,2811,4.467,2812,3.316,2813,3.316,2814,3.316,2815,3.316,2816,3.316,2817,3.316,2818,3.316,2819,3.316,2820,3.316,2821,4.467,2822,3.316,2823,3.316,2824,3.316,2825,4.467,2826,3.316,2827,4.467,2828,3.316,2829,3.316,2830,3.316,2831,3.316,2832,3.316,2833,3.316,2834,3.316,2835,3.316,2836,3.316,2837,3.316,2838,3.316,2839,3.316,2840,3.316]],["title/interfaces/Signer.html",[0,0.742,108,2.632]],["body/interfaces/Signer.html",[0,1.138,2,1.466,3,0.096,4,0.075,5,0.055,9,2.092,10,0.324,12,1.185,21,0.608,23,1.461,24,0.011,43,4.511,44,3.84,45,4.353,46,3.512,51,2.938,53,1.708,56,2.37,62,0.096,63,0.005,64,0.007,65,0.005,66,0.107,82,0.937,83,3.5,84,1.657,91,1.057,96,1.29,97,0.683,108,4.355,116,1.226,117,2.4,118,1.915,138,1.376,144,0.324,167,1.711,189,1.137,225,1.913,231,2.341,310,1.376,364,2.633,401,2.121,674,3.516,699,2.678,701,2.841,704,2.534,756,2.307,825,1.894,915,3.667,960,2.21,1048,2.841,1060,2.039,2577,4.618,2579,3.709,2602,3.935,2649,2.678,2650,3.196,2691,2.538,2693,3.709,2695,2.678,2696,2.678,2780,3.709,2781,2.678,2782,3.037,2783,4.827,2784,4.827,2785,5.472,2786,5.002,2787,5.002,2788,3.037,2790,3.037,2799,4.827,2800,4.992,2802,3.282,2803,4.827,2805,4.827,2807,3.037,2808,2.841,2809,4.207,2810,4.207,2811,4.827,2812,3.037,2813,3.037,2814,3.037,2815,3.037,2816,3.037,2817,3.037,2818,3.037,2819,3.037,2820,3.037,2821,4.207,2822,3.037,2823,3.037,2824,3.037,2825,4.207,2826,3.037,2827,4.207,2828,3.037,2829,3.037,2830,3.037,2831,3.037,2832,3.037,2833,3.037,2834,3.037,2835,3.037,2836,3.037,2837,3.037,2838,3.037,2839,3.037,2840,3.037,3036,4.109,3037,4.109,3038,4.109,3039,4.109,3040,4.109,3041,4.109]],["title/interfaces/Staff.html",[0,0.742,631,2.392]],["body/interfaces/Staff.html",[0,1.289,2,2.198,3,0.145,4,0.113,5,0.082,7,1.659,10,0.485,11,1.254,21,0.69,23,1.506,24,0.011,25,2.024,35,5.081,47,2.134,61,1.411,62,0.145,63,0.007,64,0.009,65,0.007,97,0.759,631,4.619,2972,7.228,3042,5.413,3043,8.226,3044,8.226]],["title/interfaces/Token.html",[0,0.742,327,1.058]],["body/interfaces/Token.html",[0,1.235,2,2.046,3,0.135,4,0.105,5,0.076,7,1.545,10,0.452,11,1.2,12,1.284,14,3.221,21,0.716,23,1.528,24,0.011,26,5.236,47,1.987,61,1.314,62,0.135,63,0.007,64,0.008,65,0.007,97,0.74,99,2.95,327,1.994,1207,3.838,2447,4.582,2448,5.55,2450,6.412,2452,6.412,2455,4.24,2457,6.412,2458,5.933,3045,5.041]],["title/components/TokenDetailsComponent.html",[179,0.624,326,1.354]],["body/components/TokenDetailsComponent.html",[3,0.098,4,0.076,5,0.055,8,1.589,10,0.328,11,0.972,12,0.665,21,0.471,24,0.011,62,0.098,63,0.005,64,0.007,65,0.005,66,0.108,78,1.216,82,0.945,89,0.879,91,0.907,93,1.36,96,0.725,97,0.709,99,2.109,116,0.665,144,0.423,179,0.963,180,1.322,181,2.048,182,1.483,183,1.677,184,1.483,185,1.36,189,1.589,190,2.829,191,1.285,192,2.314,193,2.314,194,2.901,195,3.143,197,2.314,199,2.314,211,3.05,225,1.351,247,1.677,248,0.49,252,2.064,253,1.483,256,1.441,276,2.569,286,2.849,290,1.151,291,2.109,292,2.048,293,1.183,294,2.605,295,1.528,296,1.36,297,2.416,298,1.322,299,1.528,300,1.528,301,1.322,302,1.528,303,1.36,304,1.528,305,1.322,306,1.528,307,1.322,308,1.528,309,1.322,310,1.006,311,1.528,312,1.36,313,2.109,314,1.441,315,1.36,316,1.528,317,1.322,318,1.528,319,1.322,320,1.528,321,1.322,322,1.528,323,1.36,324,2.109,325,1.441,326,2.253,327,2.136,328,1.322,329,1.528,330,1.36,331,2.109,332,1.441,333,1.36,334,1.061,335,1.322,336,1.36,337,1.322,338,1.322,339,1.528,340,1.322,341,1.528,342,1.322,343,1.528,344,1.399,345,1.483,346,1.528,397,2.335,398,2.064,410,2.445,411,2.71,438,3.741,523,3.223,538,5.044,594,3.322,612,1.732,632,5.238,1207,2.744,2294,4.585,2443,3.375,2445,4.242,2448,3.968,2455,4.242,2458,4.242,2564,4.585,3046,6.227,3047,5.238,3048,3.322,3049,5.775,3050,5.044,3051,4.159,3052,7.087,3053,5.448,3054,5.74,3055,4.159,3056,4.159,3057,4.159,3058,4.159,3059,4.159,3060,6.227,3061,5.044,3062,5.74,3063,5.74,3064,5.74,3065,5.74,3066,5.74,3067,5.74,3068,5.74,3069,5.044,3070,5.74,3071,5.74]],["title/pipes/TokenRatioPipe.html",[1768,2.632,3017,2.945]],["body/pipes/TokenRatioPipe.html",[3,0.149,4,0.116,5,0.085,12,1.017,21,0.522,24,0.011,36,1.496,62,0.149,63,0.007,64,0.009,65,0.007,66,0.166,82,1.046,91,0.877,96,1.107,97,0.741,116,1.017,138,1.537,144,0.361,189,1.759,191,1.964,248,0.749,438,4.912,1624,4.394,1768,4.656,2941,5.076,2944,5.584,2946,7.061,2948,6.623,3017,5.211,3072,6.623,3073,5.584,3074,7.538,3075,6.356,3076,6.356,3077,6.356]],["title/classes/TokenRegistry.html",[66,0.111,3078,2.945]],["body/classes/TokenRegistry.html",[0,0.582,3,0.078,4,0.061,5,0.044,7,1.728,8,2.098,10,0.263,11,0.831,12,0.931,21,0.586,23,1.392,24,0.011,25,2.079,48,1.39,53,1.298,58,2.062,59,5.077,62,0.078,63,0.004,64,0.006,65,0.004,66,0.087,68,1.596,70,2.533,71,5.637,73,5.039,74,4.312,75,4.312,76,6.66,77,3.627,78,1.998,79,4.815,80,6.28,81,6.797,82,0.808,83,3.84,84,3.253,89,0.705,90,4.312,91,1.02,93,1.605,94,4.301,95,6.911,96,1.014,97,0.63,98,5.46,99,3.126,100,2.666,109,5.709,113,5.709,114,6.28,116,1.276,117,2.627,135,4.741,138,1.551,139,1.265,143,6.28,144,0.279,145,3.602,146,2.062,147,1.032,148,1.437,149,1.723,150,2.666,151,3.393,152,2.666,154,2.666,155,2.666,156,1.56,157,2.467,158,2.933,159,3.067,160,4.312,161,2.933,162,2.933,163,4.312,164,2.933,167,2.423,327,2.198,1116,1.963,1246,4.181,1251,4.312,2443,4.625,3078,3.393,3079,6.054,3080,2.666,3081,4.907,3082,7.148,3083,4.907,3084,3.338,3085,3.338,3086,4.907,3087,3.338,3088,6.911,3089,6.415,3090,3.338,3091,3.338,3092,4.907,3093,4.907,3094,3.338,3095,7.866,3096,3.338,3097,4.907,3098,3.338,3099,2.933,3100,3.338,3101,3.338,3102,3.338,3103,3.338,3104,3.338,3105,3.338]],["title/injectables/TokenService.html",[896,1.354,3053,2.945]],["body/injectables/TokenService.html",[3,0.113,4,0.088,5,0.064,10,0.379,11,1.072,12,1.132,21,0.658,23,1.386,24,0.011,25,1.227,36,1.132,52,1.331,53,1.412,62,0.113,63,0.006,64,0.007,65,0.006,66,0.125,73,4.161,82,1.042,84,3.347,89,1.016,91,1.129,96,1.233,97,0.653,99,2.326,116,1.132,117,2.872,138,1.711,144,0.465,148,2.069,149,2.482,156,2.249,167,3.254,172,5.562,248,0.567,256,1.666,529,3.512,550,2.299,612,2.002,647,2.482,764,2.482,896,2.012,899,2.586,913,2.586,929,3.554,930,5.929,986,2.586,1089,5.33,1119,2.586,1121,3.841,1174,3.841,1207,2.299,2515,6.608,2517,5.562,2899,5.652,2908,3.841,2909,3.841,3053,4.376,3078,5.655,3106,4.225,3107,7.077,3108,6.33,3109,6.33,3110,6.33,3111,4.808,3112,6.33,3113,4.808,3114,4.808,3115,7.814,3116,4.808,3117,4.808,3118,4.225,3119,4.808,3120,4.225,3121,4.808,3122,4.808,3123,4.808,3124,4.808,3125,4.808,3126,4.808,3127,4.808,3128,4.808,3129,4.808,3130,4.808,3131,4.808,3132,4.808,3133,4.808]],["title/classes/TokenServiceStub.html",[66,0.111,3134,3.403]],["body/classes/TokenServiceStub.html",[3,0.151,4,0.118,5,0.086,10,0.508,12,1.032,21,0.529,23,1.37,24,0.01,62,0.151,63,0.008,64,0.009,65,0.008,66,0.168,68,3.084,82,1.252,91,0.89,96,1.124,97,0.701,116,1.032,138,1.56,524,3.623,869,3.507,1207,3.636,1613,4.768,2445,4.768,3134,6.074,3135,6.682,3136,7.605,3137,7.605,3138,6.452]],["title/components/TokensComponent.html",[179,0.624,328,1.354]],["body/components/TokensComponent.html",[3,0.085,4,0.067,5,0.048,8,1.444,10,0.286,11,0.884,12,0.977,21,0.622,23,1.035,24,0.011,36,1.228,52,1.005,62,0.143,63,0.004,64,0.006,65,0.004,66,0.095,78,1.062,82,0.859,84,2.968,89,1.103,91,1.106,93,1.188,96,1.064,97,0.74,99,2.453,116,1.068,117,2.453,139,2.529,144,0.449,156,1.155,167,2.543,179,0.895,180,1.155,181,1.861,182,1.296,183,1.465,184,1.296,185,1.188,189,1.444,190,2.628,191,1.123,192,2.104,193,2.104,194,2.869,195,3.103,196,3.223,197,2.104,199,2.104,211,2.873,222,4.078,225,1.571,247,1.465,248,0.428,251,1.803,252,1.803,253,1.296,256,2.115,286,2.59,290,1.005,291,1.918,292,1.861,293,1.033,294,2.453,295,1.335,296,1.188,297,2.244,298,1.155,299,1.335,300,1.335,301,1.155,302,1.335,303,1.188,304,1.335,305,1.155,306,1.335,307,1.155,308,1.335,309,1.155,310,0.878,311,1.335,312,1.188,313,1.918,314,1.258,315,1.188,316,1.335,317,1.155,318,1.335,319,1.155,320,1.335,321,1.155,322,1.335,323,1.188,324,1.918,325,1.258,326,1.155,327,1.517,328,2.122,329,1.335,330,1.188,331,1.918,332,1.258,333,1.188,334,0.927,335,1.155,336,1.188,337,1.155,338,1.155,339,1.335,340,1.155,341,1.335,342,1.155,343,1.335,344,1.222,345,1.296,346,1.335,352,4.222,356,4.222,357,4.222,358,3.608,359,4.615,364,3.057,366,3.608,377,4.222,386,4.222,387,3.401,388,3.608,390,4.222,391,3.608,392,2.512,393,1.875,394,1.953,395,1.953,396,2.244,414,2.685,416,2.685,417,2.512,418,2.685,419,2.512,421,2.685,422,2.512,432,3.608,438,3.401,594,2.902,1207,3.191,2443,4.715,2448,4.615,2564,4.168,3053,5.089,3060,4.585,3061,4.585,3069,4.585,3078,2.512,3139,3.192,3140,6.107,3141,5.218,3142,6.107,3143,5.218,3144,3.633,3145,5.218,3146,3.633,3147,3.633,3148,3.633,3149,5.218,3150,3.633,3151,3.633,3152,3.633,3153,3.633,3154,3.633,3155,3.633,3156,3.633,3157,5.218,3158,5.218,3159,3.633,3160,3.633,3161,3.633,3162,3.633]],["title/modules/TokensModule.html",[440,1.148,3163,3.149]],["body/modules/TokensModule.html",[3,0.121,4,0.095,5,0.069,24,0.011,61,1.185,62,0.121,63,0.006,64,0.008,65,0.006,66,0.135,144,0.504,147,2.051,248,0.61,290,1.432,326,2.601,328,2.601,393,2.67,394,2.781,395,2.781,440,1.393,442,1.901,443,2.567,444,3.942,445,2.67,446,2.781,451,4.224,453,3.569,454,2.781,455,2.473,457,2.764,458,3.903,459,2.904,461,3.041,463,3.195,466,3.576,473,4.326,474,4.589,475,4.905,476,3.822,477,4.589,478,4.1,479,3.195,480,4.326,481,3.371,482,3.195,483,4.1,484,3.195,485,4.1,486,3.195,487,4.326,488,3.371,494,4.589,495,3.371,3047,3.822,3163,6.421,3164,4.545,3165,4.545,3166,4.545,3167,5.657,3168,5.172,3169,5.172,3170,4.545,3171,4.545,3172,6.638,3173,6.638,3174,5.172,3175,6.638,3176,5.172]],["title/modules/TokensRoutingModule.html",[440,1.148,3167,2.945]],["body/modules/TokensRoutingModule.html",[3,0.147,4,0.115,5,0.084,24,0.011,48,2.617,53,1.402,61,1.44,62,0.147,63,0.007,64,0.009,65,0.007,66,0.164,144,0.471,147,1.942,179,1.097,248,0.741,253,2.242,326,2.38,328,2.38,442,2.31,457,3.118,466,4.345,505,3.695,506,3.824,507,4.205,508,4.403,512,3.882,3047,4.645,3167,5.177,3170,5.523,3171,5.523,3177,6.285]],["title/components/TopbarComponent.html",[179,0.624,330,1.393]],["body/components/TopbarComponent.html",[3,0.117,4,0.091,5,0.066,8,1.794,10,0.392,24,0.01,62,0.117,63,0.006,64,0.008,65,0.006,66,0.13,78,1.457,82,1.067,89,1.521,91,0.894,93,1.63,97,0.664,116,0.797,144,0.283,179,1.055,180,1.584,181,2.312,182,1.778,183,2.009,184,1.778,185,1.63,189,1.794,190,3.099,191,1.54,192,2.613,193,2.613,194,2.938,195,3.189,197,2.613,199,2.613,211,3.282,225,1.525,247,2.009,248,0.587,290,1.379,291,2.382,292,2.312,293,1.418,294,2.802,295,1.832,296,1.63,297,2.646,298,1.584,299,1.832,300,1.832,301,1.584,302,1.832,303,1.63,304,1.832,305,1.584,306,1.832,307,1.584,308,1.832,309,1.584,310,1.205,311,1.832,312,1.63,313,2.382,314,1.726,315,1.63,316,1.832,317,1.584,318,1.832,319,1.584,320,1.832,321,1.584,322,1.832,323,1.63,324,2.382,325,1.726,326,1.584,327,1.238,328,1.584,329,1.832,330,2.493,331,2.382,332,1.726,333,1.63,334,1.272,335,1.584,336,1.63,337,1.584,338,1.584,339,1.832,340,1.584,341,1.832,342,1.584,343,1.832,344,1.677,345,1.778,346,1.832,1417,4.789,3178,4.379,3179,7.201,3180,6.48,3181,4.984,3182,4.984]],["title/components/TopbarStubComponent.html",[179,0.624,332,1.476]],["body/components/TopbarStubComponent.html",[3,0.121,4,0.095,5,0.069,8,1.837,24,0.01,62,0.172,63,0.006,64,0.008,65,0.006,66,0.191,78,1.512,93,1.691,97,0.676,144,0.294,179,0.973,180,1.644,181,2.368,182,2.615,184,1.845,185,1.691,191,1.598,194,2.942,195,3.206,248,0.61,290,1.432,291,2.439,292,2.368,293,1.471,294,2.842,295,1.901,296,1.691,297,2.694,298,1.644,299,1.901,300,1.901,301,1.644,302,1.901,303,1.691,304,1.901,305,1.644,306,1.901,307,1.644,308,1.901,309,1.644,310,1.251,311,1.901,312,1.691,313,2.439,314,2.299,315,1.691,316,1.901,317,1.644,318,1.901,319,1.644,320,1.901,321,1.644,322,1.901,323,1.691,324,2.439,325,2.299,326,1.644,327,1.285,328,1.644,329,1.901,330,1.691,331,2.439,332,2.678,333,1.691,334,1.32,335,1.644,336,1.691,337,1.644,338,1.644,339,1.901,340,1.644,341,1.901,342,1.644,343,1.901,344,1.74,345,1.845,346,1.901,440,1.393,524,2.904,718,3.195,1409,3.822,1415,3.822,1416,5.854,1417,4.905]],["title/interfaces/Transaction.html",[0,0.742,334,1.087]],["body/interfaces/Transaction.html",[0,1.504,1,4.022,2,1.828,3,0.12,4,0.094,5,0.068,7,1.381,9,1.884,10,0.404,11,1.118,12,1.056,21,0.712,23,1.498,24,0.011,25,2.187,36,1.814,47,2.762,61,1.174,62,0.12,63,0.006,64,0.008,65,0.006,97,0.473,99,1.884,144,0.291,231,1.499,327,1.981,334,2.119,517,1.884,740,3.767,854,2.878,1102,4.64,1187,4.508,1188,3.34,1189,3.544,1190,3.544,1191,3.544,1192,3.544,1193,3.544,1194,3.544,1195,3.544,1196,5.129,1197,3.544,1198,3.544,1199,3.34,1200,3.34,1201,4.76,1202,4.531,1203,3.34,1204,3.34,1205,3.544,1206,3.544,1207,2.45]],["title/components/TransactionDetailsComponent.html",[179,0.624,333,1.393]],["body/components/TransactionDetailsComponent.html",[3,0.071,4,0.101,5,0.04,8,1.268,10,0.434,11,0.776,12,0.733,21,0.54,23,1.279,24,0.011,58,2.83,62,0.071,63,0.004,64,0.005,65,0.004,66,0.079,78,0.89,82,0.754,84,3.191,89,0.968,91,1.078,93,0.995,96,0.798,97,0.72,99,2.941,116,1.105,117,2.711,144,0.393,167,2.553,179,0.807,180,0.967,181,1.634,182,1.086,183,1.227,184,1.086,185,0.995,189,1.268,190,2.371,191,0.941,192,1.847,193,1.847,194,2.822,195,3.044,197,1.847,199,1.847,211,2.638,222,3.715,225,1.443,247,1.227,248,0.359,251,1.511,252,1.511,253,1.086,254,2.249,255,2.249,256,1.908,290,0.842,291,1.684,292,1.634,293,0.866,294,2.253,295,1.119,296,0.995,297,2.025,298,0.967,299,1.119,300,1.119,301,0.967,302,1.119,303,0.995,304,1.119,305,0.967,306,1.119,307,0.967,308,1.119,309,0.967,310,0.736,311,1.119,312,0.995,313,1.684,314,1.054,315,0.995,316,1.119,317,0.967,318,1.119,319,0.967,320,1.119,321,0.967,322,1.119,323,0.995,324,1.684,325,1.054,326,0.967,327,1.875,328,0.967,329,1.119,330,0.995,331,1.684,332,1.054,333,2.005,334,2.134,335,0.967,336,2.005,337,0.967,338,0.967,339,1.119,340,0.967,341,1.119,342,0.967,343,1.119,344,1.024,345,1.086,346,1.119,436,3.168,438,2.986,502,2.431,503,2.104,632,4.531,660,4.428,740,1.571,854,2.573,866,2.431,1200,4.502,1201,4.268,1202,4.062,1203,2.986,1204,2.986,1207,3.303,1273,2.986,1289,3.386,2531,2.674,3048,2.431,3049,4.841,3050,4.026,3183,6.954,3184,6.321,3185,5.51,3186,5.51,3187,5.51,3188,4.582,3189,6.131,3190,6.131,3191,6.131,3192,6.131,3193,5.51,3194,6.131,3195,4.582,3196,3.044,3197,4.582,3198,3.044,3199,3.044,3200,3.044,3201,3.044,3202,3.044,3203,3.044,3204,3.044,3205,3.044,3206,2.431,3207,3.044,3208,3.044,3209,5.51,3210,3.044,3211,3.044,3212,3.044,3213,3.044,3214,3.044,3215,3.044,3216,3.044,3217,3.044,3218,3.044,3219,3.044,3220,3.044,3221,3.044,3222,3.044,3223,3.044,3224,3.044,3225,2.674,3226,5.51,3227,3.044,3228,3.044,3229,6.131,3230,6.131,3231,4.582,3232,6.071,3233,4.582,3234,4.582,3235,6.909,3236,6.131,3237,4.026,3238,4.582,3239,4.582,3240,4.582,3241,4.026,3242,4.026,3243,4.582,3244,4.582,3245,6.131,3246,6.131,3247,6.131,3248,4.582,3249,4.582,3250,4.582,3251,6.131,3252,4.582,3253,4.582,3254,4.582,3255,4.582,3256,6.131,3257,4.582]],["title/injectables/TransactionService.html",[660,2.632,896,1.354]],["body/injectables/TransactionService.html",[3,0.067,4,0.052,5,0.038,8,0.785,9,1.596,10,0.223,11,0.736,12,1.155,21,0.63,22,1.525,23,1.363,24,0.011,25,2.133,36,1.647,40,1.408,52,1.461,53,1.855,54,3.652,62,0.067,63,0.006,64,0.005,65,0.003,66,0.074,73,3.103,82,0.715,84,2.983,89,0.918,91,1.11,96,1.258,97,0.666,99,2.173,116,1.155,117,2.471,138,1.541,144,0.471,145,3.929,148,1.221,149,1.464,151,1.961,156,2.026,167,2.8,221,4.322,225,1.392,248,0.334,254,2.096,255,2.096,256,2.5,276,3.26,310,1.276,334,1.626,336,1.725,364,2.821,397,1.593,398,1.408,399,1.849,400,3.21,408,3.648,410,3.103,517,1.042,529,3.164,550,1.356,647,1.464,659,4.322,660,2.683,740,2.242,764,1.464,835,2.096,896,1.38,899,1.525,913,1.525,929,2.096,930,4.969,952,3.816,960,1.525,986,2.335,1026,2.492,1060,1.408,1089,4.56,1092,4.723,1093,4.969,1102,2.335,1119,2.335,1121,2.266,1128,2.492,1157,3.469,1159,3.816,1174,3.469,1199,1.849,2690,2.266,2691,1.752,2692,2.266,2697,2.266,2899,4.215,2900,2.492,2908,2.266,2909,2.266,3118,2.492,3120,2.492,3237,2.492,3241,2.492,3242,2.492,3258,2.266,3259,5.277,3260,5.277,3261,5.277,3262,4.343,3263,4.343,3264,4.343,3265,3.816,3266,5.913,3267,3.816,3268,3.816,3269,5.277,3270,4.343,3271,4.343,3272,6.93,3273,2.837,3274,4.343,3275,2.837,3276,2.837,3277,2.837,3278,2.837,3279,3.816,3280,2.837,3281,3.816,3282,2.837,3283,2.837,3284,5.913,3285,5.913,3286,2.837,3287,5.277,3288,4.343,3289,2.837,3290,2.837,3291,4.343,3292,2.837,3293,2.837,3294,2.837,3295,2.837,3296,2.837,3297,2.837,3298,2.492,3299,2.837,3300,2.492,3301,2.837,3302,2.837,3303,2.837,3304,2.837,3305,2.837,3306,4.343,3307,2.837,3308,2.492,3309,2.266,3310,2.837,3311,2.837,3312,4.343,3313,4.343,3314,2.837,3315,2.492,3316,5.277,3317,2.837,3318,5.277,3319,4.343,3320,5.277,3321,2.837,3322,4.343,3323,3.816,3324,2.837,3325,2.837,3326,2.837,3327,2.837,3328,2.837,3329,2.837,3330,2.837,3331,2.837,3332,4.343,3333,4.343,3334,2.837,3335,2.837,3336,4.343,3337,4.343,3338,2.492,3339,4.343,3340,2.837,3341,2.837,3342,2.837,3343,2.837,3344,2.837,3345,2.837,3346,2.837,3347,2.837,3348,2.837,3349,2.837,3350,2.837,3351,2.837,3352,2.837,3353,2.837,3354,2.837,3355,2.837,3356,2.837,3357,2.837,3358,2.837,3359,2.837,3360,2.837,3361,2.837,3362,2.837,3363,2.837,3364,2.837,3365,2.837,3366,2.837,3367,2.837,3368,2.837,3369,2.837,3370,2.837,3371,2.837,3372,2.837,3373,2.837,3374,2.837,3375,2.837,3376,2.837,3377,2.837,3378,2.837,3379,2.837,3380,2.837,3381,2.837,3382,2.837,3383,2.837,3384,2.837,3385,2.837,3386,2.837,3387,2.837]],["title/classes/TransactionServiceStub.html",[66,0.111,3388,3.403]],["body/classes/TransactionServiceStub.html",[3,0.138,4,0.108,5,0.078,10,0.463,12,1.244,21,0.638,24,0.01,25,2.222,62,0.138,63,0.007,64,0.008,65,0.007,66,0.153,68,2.813,82,1.185,91,1.073,96,1.355,97,0.717,116,1.244,138,1.423,144,0.335,225,1.906,334,1.502,524,3.305,529,3.859,550,2.813,740,3.037,869,3.734,1092,4.7,1093,5.746,1157,5.748,3265,6.323,3267,6.323,3268,6.323,3272,6.831,3279,6.323,3281,6.323,3388,5.748,3389,7.117,3390,5.885,3391,5.885,3392,5.171,3393,5.885,3394,5.885]],["title/components/TransactionsComponent.html",[179,0.624,335,1.354]],["body/components/TransactionsComponent.html",[3,0.074,4,0.057,5,0.042,8,1.296,10,0.247,11,0.793,12,0.897,21,0.685,23,1.128,24,0.011,25,1.195,36,1.791,52,1.722,62,0.132,63,0.004,64,0.006,65,0.004,66,0.082,78,0.916,82,0.771,89,0.989,91,1.146,93,1.024,96,0.977,97,0.644,116,1.117,139,2.819,144,0.423,156,0.996,179,0.822,180,0.996,181,1.67,182,1.118,183,1.263,184,1.118,185,1.024,189,1.296,190,2.413,191,0.968,192,1.888,193,1.888,194,2.83,195,3.055,196,2.892,197,1.888,199,1.888,211,2.677,221,4.471,225,1.874,247,1.263,248,0.369,251,1.555,252,1.555,256,1.942,274,2.629,276,1.935,286,2.324,290,0.867,291,1.721,292,1.67,293,0.891,294,2.286,295,1.151,296,1.024,297,2.06,298,0.996,299,1.151,300,1.151,301,0.996,302,1.151,303,1.024,304,1.151,305,0.996,306,1.151,307,0.996,308,1.151,309,0.996,310,0.758,311,1.151,312,1.024,313,1.721,314,1.085,315,1.024,316,1.151,317,0.996,318,1.151,319,0.996,320,1.151,321,0.996,322,1.151,323,1.024,324,1.721,325,1.085,326,0.996,327,0.778,328,0.996,329,1.151,330,1.024,331,1.721,332,1.085,333,1.024,334,1.977,335,1.977,336,2.604,337,0.996,338,0.996,339,1.151,340,0.996,341,1.151,342,0.996,343,1.151,344,1.054,345,1.118,346,1.151,352,3.876,353,4.926,355,4.926,356,3.876,357,3.876,358,3.237,359,4.3,366,3.237,377,3.876,379,4.3,381,4.968,383,3.237,384,4.114,386,3.876,387,3.051,388,3.237,390,3.876,391,3.237,392,2.166,393,1.617,394,1.685,395,1.685,396,1.935,397,1.759,398,1.555,399,2.042,408,2.166,410,1.842,411,2.042,417,3.237,419,3.237,422,2.166,431,3.74,432,3.237,436,3.237,438,4.053,660,4.471,1079,5.162,1201,3.842,1202,3.657,2519,2.753,2761,3.74,3315,2.753,3338,4.114,3395,2.753,3396,5.606,3397,5.606,3398,4.682,3399,5.606,3400,5.606,3401,5.606,3402,5.606,3403,6.22,3404,6.22,3405,4.682,3406,3.133,3407,4.682,3408,3.133,3409,3.133,3410,3.133,3411,3.133,3412,3.133,3413,4.682,3414,3.133,3415,3.133,3416,3.133,3417,3.133,3418,3.133,3419,3.133,3420,3.133,3421,3.133,3422,3.133,3423,3.133,3424,3.133,3425,4.682,3426,3.133,3427,3.133,3428,4.682,3429,4.682,3430,3.133,3431,3.133,3432,3.133,3433,4.682,3434,4.682,3435,3.133,3436,3.133,3437,6.22,3438,4.682,3439,4.682,3440,4.682,3441,4.682,3442,4.682,3443,4.682,3444,4.682]],["title/modules/TransactionsModule.html",[440,1.148,452,2.945]],["body/modules/TransactionsModule.html",[3,0.118,4,0.092,5,0.067,24,0.011,61,1.659,62,0.118,63,0.006,64,0.008,65,0.006,66,0.131,144,0.504,147,2.018,248,0.594,290,1.396,333,2.831,335,2.583,393,2.603,394,2.712,395,2.712,440,1.358,442,1.853,443,2.503,444,3.894,445,2.603,446,2.712,451,4.195,452,6.016,453,3.511,454,2.712,455,2.411,457,2.719,458,3.839,459,2.832,461,2.965,463,3.115,466,3.486,467,5.215,468,2.712,469,3.727,473,4.255,474,4.514,475,4.826,476,3.727,477,4.514,478,4.033,479,3.115,480,4.255,481,3.286,482,3.115,483,4.033,484,3.115,485,4.033,486,3.115,487,4.255,488,3.286,489,4.514,490,3.486,494,4.514,495,3.286,501,5.737,502,4.028,503,3.486,3184,4.028,3445,4.431,3446,4.431,3447,4.431,3448,4.431,3449,5.619,3450,5.043,3451,5.043,3452,4.431,3453,5.043]],["title/modules/TransactionsRoutingModule.html",[440,1.148,3449,2.945]],["body/modules/TransactionsRoutingModule.html",[3,0.152,4,0.118,5,0.086,24,0.011,53,1.442,61,1.481,62,0.152,63,0.008,64,0.009,65,0.008,66,0.169,144,0.46,147,1.998,179,0.947,248,0.762,253,2.306,335,2.42,442,2.375,457,3.17,505,3.8,506,3.869,507,4.275,508,3.8,512,3.993,3449,5.264,3452,5.679,3454,6.464]],["title/interfaces/Tx.html",[0,0.742,1102,2.291]],["body/interfaces/Tx.html",[0,1.509,1,3.72,2,1.876,3,0.123,4,0.096,5,0.07,7,1.417,9,2.466,10,0.414,11,1.137,21,0.674,23,1.482,24,0.011,25,2.241,36,1.238,47,2.695,61,1.205,62,0.123,63,0.006,64,0.008,65,0.006,97,0.485,99,1.933,144,0.299,231,2.16,327,1.666,334,2.097,517,1.933,740,3.813,854,4.369,1102,4.492,1187,4.563,1188,3.428,1189,3.636,1190,3.636,1191,3.636,1192,3.636,1193,3.636,1194,3.636,1195,3.636,1196,4.965,1197,3.636,1198,3.636,1199,3.428,1200,3.428,1201,3.249,1202,3.093,1203,5.071,1204,5.071,1205,5.38,1206,5.38,1207,2.514]],["title/interfaces/TxToken.html",[0,0.742,1196,2.632]],["body/interfaces/TxToken.html",[0,1.514,1,3.748,2,1.915,3,0.126,4,0.098,5,0.071,7,1.446,9,1.973,10,0.423,11,1.151,21,0.643,23,1.505,24,0.011,25,2.167,36,1.263,47,2.801,61,1.23,62,0.126,63,0.006,64,0.008,65,0.006,97,0.723,99,2.881,144,0.305,231,1.569,327,1.852,334,2.108,517,1.973,740,3.849,854,3.014,1102,4.443,1187,4.606,1188,3.498,1189,3.711,1190,3.711,1191,3.711,1192,3.711,1193,3.711,1194,3.711,1195,3.711,1196,5.103,1197,3.711,1198,3.711,1199,3.498,1200,3.498,1201,3.315,1202,3.156,1203,3.498,1204,3.498,1205,3.711,1206,3.711,1207,3.748]],["title/classes/UserServiceStub.html",[66,0.111,3455,3.403]],["body/classes/UserServiceStub.html",[3,0.072,4,0.056,5,0.041,10,0.241,11,0.78,12,0.984,14,4.393,17,4.833,19,1.721,21,0.679,22,1.649,23,1.281,24,0.011,25,1.683,30,1.998,31,1.998,36,1.084,48,3.597,52,1.275,56,2.562,62,0.072,63,0.004,64,0.005,65,0.004,66,0.08,68,1.466,82,0.758,91,0.956,96,1.072,97,0.753,99,2.875,116,0.984,118,2.418,127,2.992,138,1.488,144,0.174,148,1.319,175,4.326,274,3.455,287,5.223,327,1.144,381,6.249,513,4.352,515,4.758,516,4.544,517,3.149,524,1.721,529,2.746,546,2.694,550,1.466,559,2.708,562,3.606,564,3.679,570,4.038,617,6.314,618,5.406,679,4.515,825,1.413,842,3.185,857,3.8,869,3.313,882,2.845,1116,4.073,1607,3.679,1609,3.679,1610,4.914,1611,6.154,1612,4.914,1613,5.464,1614,3.679,1615,3.679,1616,4.914,1617,3.679,1618,4.254,1619,3.679,1620,3.679,1621,3.679,1622,4.547,1623,3.679,1624,3.185,1625,3.679,1995,3.679,2090,3.679,2120,3.679,2277,2.449,2314,3.679,2382,2.449,2390,4.42,2441,5.74,2442,4.914,2504,4.047,2984,4.089,3392,2.694,3455,3.679,3456,6.314,3457,4.606,3458,4.606,3459,3.066,3460,5.534,3461,5.534,3462,5.534,3463,7.824,3464,5.534,3465,5.534,3466,7.824,3467,7.824,3468,4.606,3469,4.606,3470,4.606,3471,4.606,3472,4.606,3473,4.606,3474,4.606,3475,4.606,3476,4.606,3477,4.606,3478,4.606,3479,4.606,3480,4.606,3481,4.606,3482,4.606,3483,4.606,3484,4.606,3485,4.606,3486,4.606,3487,4.606,3488,4.606,3489,4.606,3490,3.066,3491,4.606,3492,3.066,3493,4.606,3494,3.066,3495,3.066,3496,4.606,3497,3.066,3498,3.066,3499,3.066,3500,3.066,3501,3.066,3502,3.066,3503,3.066,3504,3.066,3505,3.066,3506,2.694,3507,3.066]],["title/interfaces/W3.html",[0,0.742,2955,3.149]],["body/interfaces/W3.html",[0,1.387,2,2.218,3,0.146,4,0.114,5,0.083,7,1.675,10,0.49,11,1.26,21,0.61,24,0.011,46,4.536,47,2.577,61,1.424,62,0.146,63,0.007,64,0.009,65,0.007,66,0.162,73,3.655,145,4.178,277,5.143,1097,4.178,1258,5.832,2952,4.966,2953,6.537,2954,5.462,2955,6.234,2956,5.462,2961,5.462]],["title/coverage.html",[3508,4.661]],["body/coverage.html",[0,1.449,1,1.352,5,0.038,6,4.148,15,1.403,21,0.232,22,2.33,24,0.011,40,1.403,43,2.236,50,1.842,54,1.746,56,3.698,63,0.003,64,0.005,65,0.003,66,0.203,67,2.258,69,4.206,108,1.746,145,2.433,148,2.267,151,2.995,156,0.899,179,1.23,180,0.899,186,3.806,187,2.089,188,2.484,221,1.746,234,1.746,274,4.883,293,1.81,296,0.924,298,0.899,301,0.899,303,0.924,305,0.899,307,0.899,309,0.899,310,1.273,312,0.924,314,0.979,315,0.924,317,0.899,319,0.899,321,0.899,323,0.924,325,0.979,326,0.899,327,0.702,328,0.899,330,0.924,332,0.979,333,0.924,334,0.721,335,0.899,338,0.899,340,0.899,342,0.899,344,0.951,347,2.484,351,1.955,364,1.14,383,1.955,396,1.746,440,1.418,465,2.258,471,2.089,513,1.52,514,4.081,518,1.662,520,1.746,521,2.258,522,2.484,523,1.588,524,4.049,558,2.484,562,1.842,589,1.842,631,1.588,646,2.484,659,1.746,660,1.746,661,1.842,740,1.459,749,1.955,750,1.842,751,1.955,752,1.955,765,2.089,766,1.955,772,1.842,801,2.484,825,2.428,839,3.315,859,2.676,861,2.484,869,2.428,896,2.398,914,2.484,915,1.588,963,1.955,1079,2.089,1080,2.484,1081,2.484,1089,1.842,1097,1.588,1102,1.52,1187,1.746,1188,4.148,1196,1.746,1208,2.484,1209,2.484,1212,2.089,1213,2.089,1215,2.089,1217,2.089,1255,2.484,1256,2.484,1286,2.258,1287,2.484,1317,2.484,1318,2.089,1319,2.484,1333,2.484,1334,2.484,1353,2.484,1408,2.484,1415,3.892,1418,3.46,1419,3.46,1486,2.484,1487,2.484,1497,2.484,1513,2.484,1529,2.484,1569,3.46,1570,2.484,1583,3.46,1593,2.089,1594,6.026,1595,6.026,1768,2.676,1877,2.258,2376,2.258,2443,1.662,2475,2.258,2498,5.759,2577,4.239,2578,3.892,2650,1.588,2651,2.089,2725,2.484,2726,2.258,2727,2.484,2746,2.484,2780,1.842,2781,4.148,2800,1.842,2841,2.484,2872,2.484,2890,2.484,2897,2.258,2910,2.258,2911,2.484,2925,2.484,2926,2.258,2940,1.955,2942,2.484,2952,3.46,2955,2.089,2962,2.484,3017,1.955,3029,2.484,3042,2.484,3045,2.484,3046,2.484,3047,2.089,3048,4.206,3053,1.955,3072,2.484,3073,2.484,3078,1.955,3079,4.206,3080,4.206,3088,2.484,3106,2.484,3134,2.258,3135,2.484,3139,2.484,3178,2.484,3183,2.484,3184,2.258,3206,2.258,3258,3.46,3388,2.258,3389,2.484,3395,2.484,3455,2.258,3456,2.484,3508,2.258,3509,2.827,3510,2.827,3511,2.827,3512,8.393,3513,8.427,3514,2.827,3515,6.989,3516,2.484,3517,2.484,3518,2.484,3519,2.484,3520,2.484,3521,4.332,3522,2.484,3523,4.715,3524,2.827,3525,2.484,3526,2.484,3527,4.206,3528,2.484,3529,2.484,3530,2.484,3531,3.806,3532,3.806,3533,2.484,3534,2.484,3535,2.827,3536,2.827,3537,4.332,3538,4.332,3539,6.364,3540,6.364,3541,2.827,3542,5.592,3543,6.364,3544,3.806,3545,4.332,3546,2.484,3547,2.827,3548,4.332,3549,7.785,3550,2.827,3551,4.332,3552,5.903,3553,5.903,3554,4.332,3555,4.332,3556,2.827,3557,5.903,3558,2.827,3559,4.332,3560,3.806,3561,2.827,3562,2.827,3563,2.827,3564,2.827,3565,6.989,3566,4.332,3567,5.266,3568,2.484,3569,2.484,3570,2.484,3571,2.484,3572,2.827,3573,2.827]],["title/dependencies.html",[443,2.546,3574,3.547]],["body/dependencies.html",[9,2.033,22,2.975,24,0.011,40,2.746,63,0.007,64,0.008,65,0.007,145,3.107,248,0.652,250,2.975,253,1.973,443,2.746,445,2.855,459,3.107,468,2.975,469,4.089,550,2.645,593,4.861,685,4.419,686,3.605,755,5.533,756,3.89,769,4.419,770,4.419,854,3.107,986,4.067,1119,3.725,1357,3.253,2484,4.089,2650,3.107,2858,4.861,2859,4.861,3298,4.861,3300,4.861,3309,4.419,3575,7.57,3576,5.532,3577,6.927,3578,5.532,3579,5.532,3580,5.532,3581,5.532,3582,5.532,3583,5.532,3584,5.532,3585,5.532,3586,5.532,3587,5.532,3588,5.532,3589,5.532,3590,5.532,3591,5.532,3592,5.532,3593,5.532,3594,6.927,3595,5.532,3596,6.927,3597,6.927,3598,5.532,3599,5.532,3600,5.532,3601,5.532,3602,5.532,3603,5.532,3604,5.532,3605,5.532,3606,5.532,3607,5.532,3608,5.532,3609,5.532,3610,5.532,3611,5.532,3612,5.532,3613,5.532,3614,5.532,3615,5.532,3616,5.532,3617,5.532,3618,5.532,3619,5.532,3620,5.532,3621,5.532]],["title/miscellaneous/functions.html",[2524,4.097,3622,2.622]],["body/miscellaneous/functions.html",[5,0.099,7,2.188,9,2.985,10,0.368,12,1.3,21,0.635,22,4,24,0.01,25,1.193,47,2.576,61,1.071,63,0.006,64,0.007,65,0.006,70,3.208,79,4.05,91,0.858,96,1.416,97,0.761,109,4.964,110,4.109,113,4.964,116,1.336,117,2.284,118,1.574,119,4.109,129,4.964,139,3.195,175,2.626,225,1.643,231,1.367,396,3.839,547,3.233,553,5.461,679,4.05,889,3.456,977,5.575,1116,3.654,1273,3.048,1357,2.75,1624,3.233,2524,3.735,2897,5.575,3206,4.964,3225,4.109,3516,4.109,3517,5.461,3518,5.461,3519,4.109,3520,5.461,3522,4.109,3523,6.185,3525,4.109,3526,5.461,3527,3.735,3528,5.461,3529,5.461,3531,4.109,3532,6.133,3533,5.461,3534,5.461,3622,3.456,3623,4.677,3624,4.677,3625,4.677,3626,4.677,3627,5.461,3628,6.215,3629,4.677,3630,6.215,3631,4.677,3632,4.677,3633,4.677,3634,4.677,3635,5.461,3636,6.98,3637,4.677,3638,6.215,3639,4.677,3640,4.109,3641,4.109,3642,4.677,3643,6.215,3644,6.98,3645,7.743,3646,6.536,3647,4.677,3648,4.677,3649,4.677,3650,4.677,3651,4.677,3652,4.677,3653,4.677,3654,4.677,3655,4.677,3656,4.677,3657,4.109,3658,4.677,3659,4.677,3660,4.677,3661,6.215,3662,4.677,3663,4.677,3664,4.677,3665,4.964,3666,4.677,3667,6.215,3668,7.438,3669,5.461,3670,6.215,3671,4.677]],["title/index.html",[10,0.279,3672,3.117,3673,3.117]],["body/index.html",[4,0.093,5,0.097,24,0.009,42,2.978,52,1.402,63,0.006,64,0.008,65,0.006,78,1.481,93,1.656,97,0.708,148,3.502,156,2.081,179,1.064,182,1.807,195,2.336,281,4.046,336,1.656,401,2.614,440,2.231,442,1.861,455,2.421,468,4.376,523,3.677,530,5.363,547,5.626,559,2.978,681,3.743,709,4.45,805,4.45,834,4.45,843,4.45,857,3.129,881,3.743,884,4.046,986,2.724,1119,2.724,1250,5.754,1389,3.301,1531,5.754,2024,5.796,2484,4.84,2984,3.743,3575,4.45,3657,6.376,3674,5.065,3675,5.065,3676,6.549,3677,5.065,3678,7.945,3679,7.515,3680,7.672,3681,5.754,3682,5.065,3683,5.065,3684,5.754,3685,5.065,3686,5.065,3687,5.065,3688,5.065,3689,4.45,3690,5.065,3691,4.45,3692,5.065,3693,7.945,3694,6.981,3695,5.065,3696,5.065,3697,4.45,3698,5.065,3699,7.672,3700,6.5,3701,6.549,3702,5.065,3703,5.065,3704,5.754,3705,5.065,3706,5.065,3707,5.065,3708,5.065,3709,5.065,3710,5.065,3711,5.754,3712,5.754,3713,6.549,3714,7.672,3715,5.065,3716,5.754,3717,5.065,3718,6.741,3719,5.065,3720,5.065,3721,5.065,3722,4.45,3723,5.065,3724,5.065,3725,5.065,3726,5.065,3727,5.065,3728,5.065,3729,4.45,3730,4.45,3731,4.046,3732,5.065,3733,5.065]],["title/license.html",[3672,3.117,3673,3.117,3734,3.117]],["body/license.html",[0,0.733,2,0.869,4,0.141,5,0.024,9,0.895,20,1.257,21,0.146,24,0.002,25,0.454,32,0.471,42,4.075,47,2.291,63,0.002,64,0.002,65,0.002,66,0.026,77,2.207,78,1.32,79,2.251,82,0.162,83,3.44,91,0.136,94,2.207,99,0.362,106,0.865,120,0.865,124,2.388,125,1.8,126,3.539,128,3.389,135,1.315,138,0.238,144,0.056,156,1.337,175,1.94,179,0.506,225,0.232,256,0.341,281,0.786,288,1.946,334,1.074,379,1.684,383,0.681,397,0.999,436,0.681,455,0.471,511,0.642,517,2.181,530,5.069,533,2.385,534,0.579,536,0.865,551,1.564,552,1.564,562,0.642,570,0.508,589,0.642,604,0.865,631,0.553,632,1.315,665,0.786,674,1.099,679,2.251,692,0.728,697,0.786,699,2.251,721,0.728,787,2.553,825,0.454,857,2.134,862,1.422,864,2.851,869,0.821,881,1.315,882,2.789,883,0.786,886,4.019,888,2.385,889,4.025,897,2.958,898,3.243,986,0.529,1002,0.865,1003,1.564,1034,0.865,1035,2.553,1037,0.865,1038,1.422,1039,1.422,1060,0.489,1093,1.315,1116,2.031,1119,0.529,1161,0.865,1163,1.564,1202,1.756,1246,1.587,1248,1.315,1252,0.728,1260,4.193,1274,1.315,1275,3.081,1278,1.564,1300,1.564,1363,0.865,1371,0.681,1389,4.839,1390,0.865,1398,1.422,1405,2.14,1434,2.385,1439,1.422,1450,3.607,1452,0.786,1454,1.946,1482,5.417,1561,1.564,1589,0.865,1597,2.624,1600,0.865,1618,1.684,1622,0.728,1763,0.786,1886,0.786,1906,0.786,1953,1.8,2044,0.786,2063,0.786,2092,0.786,2098,0.786,2107,0.786,2115,6.796,2117,4.019,2336,0.786,2337,3.081,2484,2.553,2487,1.564,2488,1.564,2520,0.865,2521,2.624,2523,2.14,2602,0.681,2664,1.422,2676,1.946,2677,1.422,2747,1.315,2761,0.786,2768,3.035,2773,0.865,2802,4.492,2847,1.946,2926,0.786,2977,2.14,2984,3.539,2993,0.865,3232,0.865,3323,1.564,3506,1.564,3508,1.422,3542,1.564,3544,1.564,3571,0.865,3635,5.084,3640,6.09,3641,1.564,3646,0.865,3665,0.786,3669,1.564,3679,3.968,3681,2.624,3684,0.865,3689,2.624,3691,2.624,3694,0.865,3697,0.865,3704,3.389,3712,2.14,3716,0.865,3718,0.865,3722,2.14,3729,3.968,3730,3.697,3734,7.518,3735,6.421,3736,0.985,3737,0.985,3738,2.436,3739,7.234,3740,4.516,3741,6.521,3742,7.062,3743,3.857,3744,0.985,3745,0.985,3746,1.78,3747,3.454,3748,3.454,3749,2.436,3750,2.436,3751,0.985,3752,0.985,3753,0.985,3754,1.78,3755,5.446,3756,3.857,3757,0.985,3758,3.857,3759,0.985,3760,0.985,3761,4.516,3762,0.985,3763,0.985,3764,0.985,3765,5.787,3766,7.881,3767,5.787,3768,2.436,3769,2.436,3770,1.78,3771,1.78,3772,4.208,3773,4.208,3774,5.787,3775,3.454,3776,0.985,3777,2.986,3778,4.516,3779,1.78,3780,4.516,3781,2.436,3782,0.985,3783,1.78,3784,0.985,3785,2.436,3786,6.421,3787,3.454,3788,1.78,3789,2.986,3790,0.985,3791,0.985,3792,1.78,3793,2.986,3794,5.446,3795,1.78,3796,6.614,3797,1.78,3798,2.986,3799,4.208,3800,3.454,3801,0.985,3802,4.516,3803,3.454,3804,7.335,3805,2.436,3806,4.208,3807,0.985,3808,0.985,3809,4.516,3810,1.78,3811,5.25,3812,5.032,3813,3.454,3814,1.78,3815,0.985,3816,0.985,3817,5.935,3818,1.78,3819,0.985,3820,5.624,3821,1.78,3822,0.985,3823,2.436,3824,0.985,3825,0.985,3826,0.985,3827,0.985,3828,0.985,3829,0.985,3830,0.985,3831,0.985,3832,0.985,3833,0.985,3834,1.78,3835,0.985,3836,0.985,3837,0.985,3838,1.78,3839,0.985,3840,0.985,3841,1.78,3842,1.78,3843,5.787,3844,0.985,3845,1.78,3846,1.78,3847,0.985,3848,0.985,3849,1.78,3850,2.436,3851,1.78,3852,2.436,3853,0.985,3854,0.985,3855,3.857,3856,0.985,3857,0.985,3858,3.454,3859,0.985,3860,0.985,3861,2.986,3862,0.985,3863,0.985,3864,1.78,3865,2.436,3866,0.985,3867,0.985,3868,4.789,3869,0.985,3870,5.787,3871,2.986,3872,3.454,3873,3.857,3874,2.436,3875,0.985,3876,2.436,3877,6.313,3878,1.78,3879,0.985,3880,0.985,3881,0.985,3882,2.436,3883,7.776,3884,5.032,3885,0.985,3886,0.985,3887,1.78,3888,1.78,3889,0.985,3890,5.032,3891,0.985,3892,2.986,3893,4.516,3894,0.985,3895,2.436,3896,2.436,3897,1.78,3898,3.857,3899,7.685,3900,2.436,3901,4.789,3902,2.986,3903,4.208,3904,1.78,3905,0.985,3906,1.78,3907,2.436,3908,4.789,3909,2.986,3910,0.985,3911,1.78,3912,1.78,3913,2.986,3914,2.986,3915,0.985,3916,2.436,3917,0.985,3918,6.999,3919,1.78,3920,0.985,3921,4.516,3922,0.985,3923,2.436,3924,5.935,3925,2.986,3926,1.78,3927,5.25,3928,3.857,3929,0.985,3930,0.985,3931,4.516,3932,0.985,3933,1.78,3934,5.624,3935,0.985,3936,1.78,3937,2.436,3938,0.985,3939,2.436,3940,0.985,3941,0.985,3942,0.985,3943,0.985,3944,2.436,3945,2.436,3946,0.985,3947,0.985,3948,0.985,3949,1.78,3950,0.985,3951,2.436,3952,2.436,3953,3.857,3954,2.436,3955,2.436,3956,0.985,3957,0.985,3958,3.454,3959,3.857,3960,0.985,3961,0.985,3962,0.985,3963,0.985,3964,2.436,3965,0.985,3966,0.985,3967,0.985,3968,0.985,3969,0.985,3970,1.78,3971,0.985,3972,6.782,3973,4.516,3974,0.985,3975,1.78,3976,0.985,3977,0.985,3978,1.78,3979,1.78,3980,0.985,3981,0.985,3982,0.985,3983,1.78,3984,2.436,3985,0.985,3986,1.78,3987,0.985,3988,0.985,3989,0.985,3990,0.985,3991,5.032,3992,4.208,3993,2.986,3994,0.985,3995,3.454,3996,0.985,3997,1.78,3998,0.985,3999,0.985,4000,2.436,4001,0.985,4002,0.985,4003,0.985,4004,2.436,4005,2.436,4006,0.985,4007,0.985,4008,1.78,4009,1.78,4010,1.78,4011,0.985,4012,1.78,4013,0.985,4014,0.985,4015,0.985,4016,0.985,4017,0.985,4018,0.985,4019,2.436,4020,0.985,4021,0.985,4022,5.935,4023,0.985,4024,0.985,4025,0.985,4026,3.454,4027,3.454,4028,0.985,4029,0.985,4030,2.436,4031,0.985,4032,0.985,4033,2.986,4034,0.985,4035,0.985,4036,0.985,4037,0.985,4038,0.985,4039,0.985,4040,1.78,4041,1.78,4042,0.985,4043,2.436,4044,0.985,4045,0.985,4046,1.78,4047,0.985,4048,0.985,4049,0.985,4050,0.985,4051,1.78,4052,1.78,4053,3.857,4054,0.985,4055,0.985,4056,1.78,4057,2.436,4058,2.436,4059,2.986,4060,2.986,4061,2.436,4062,2.986,4063,1.78,4064,0.985,4065,3.454,4066,3.454,4067,0.985,4068,1.78,4069,1.78,4070,3.454,4071,1.78,4072,2.986,4073,2.986,4074,2.436,4075,5.787,4076,3.454,4077,0.985,4078,0.985,4079,0.985,4080,2.436,4081,1.78,4082,1.78,4083,0.985,4084,0.985,4085,0.985,4086,1.78,4087,0.985,4088,0.985,4089,0.985,4090,2.436,4091,0.985,4092,0.985,4093,2.436,4094,0.985,4095,1.78,4096,0.985,4097,0.985,4098,0.985,4099,1.78,4100,1.78,4101,3.857,4102,6.614,4103,2.436,4104,1.78,4105,1.78,4106,1.78,4107,1.78,4108,2.986,4109,1.78,4110,0.985,4111,0.985,4112,0.985,4113,0.985,4114,3.857,4115,1.78,4116,0.985,4117,0.985,4118,0.985,4119,0.985,4120,1.78,4121,0.985,4122,1.78,4123,0.985,4124,3.454,4125,0.985,4126,0.985,4127,0.985,4128,0.985,4129,0.985,4130,0.985,4131,0.985,4132,0.985,4133,0.985,4134,2.436,4135,3.454,4136,2.986,4137,2.986,4138,1.78,4139,0.985,4140,0.985,4141,0.985,4142,0.985,4143,0.985,4144,1.78,4145,0.985,4146,0.985,4147,2.986,4148,0.985,4149,1.78,4150,0.985,4151,1.78,4152,0.985,4153,0.985,4154,2.436,4155,0.985,4156,0.985,4157,0.985,4158,0.985,4159,0.985,4160,1.78,4161,0.985,4162,0.985,4163,0.985,4164,0.985,4165,2.436,4166,0.985,4167,0.985,4168,0.985,4169,0.985,4170,3.454,4171,0.985,4172,0.985,4173,2.986,4174,0.985,4175,0.985,4176,0.985,4177,0.985,4178,0.985,4179,0.985,4180,0.985,4181,2.436,4182,0.985,4183,0.985,4184,0.985,4185,2.436,4186,0.985,4187,0.985,4188,2.436,4189,0.985,4190,1.78,4191,0.985,4192,0.985,4193,0.985,4194,0.985,4195,0.985,4196,0.985,4197,0.985,4198,0.985,4199,0.985,4200,1.78,4201,0.985,4202,0.985,4203,0.985,4204,1.78,4205,1.78,4206,0.985,4207,0.985,4208,2.436,4209,0.985,4210,2.436,4211,1.78,4212,0.985,4213,1.78,4214,1.78,4215,0.985,4216,2.436,4217,4.208,4218,0.985,4219,1.78,4220,0.985,4221,1.78,4222,0.985,4223,0.985,4224,0.985,4225,0.985,4226,0.985,4227,1.78,4228,0.985,4229,2.986,4230,0.985,4231,3.454,4232,0.985,4233,0.985,4234,0.985,4235,0.985,4236,0.985,4237,1.78,4238,1.78,4239,1.78,4240,2.436,4241,0.985,4242,1.78,4243,1.78,4244,0.985,4245,2.436,4246,0.985,4247,1.78,4248,0.985,4249,1.78,4250,0.985,4251,1.78,4252,0.985,4253,0.985,4254,1.78,4255,6.782,4256,1.78,4257,0.985,4258,3.454,4259,5.032,4260,2.436,4261,0.985,4262,0.985,4263,0.985,4264,2.986,4265,0.985,4266,0.985,4267,2.436,4268,1.78,4269,0.985,4270,0.985,4271,0.985,4272,0.985,4273,0.985,4274,0.985,4275,0.985,4276,0.985,4277,2.986,4278,1.78,4279,1.78,4280,0.985,4281,0.985,4282,2.436,4283,0.985,4284,1.78,4285,2.436,4286,1.78,4287,0.985,4288,0.985,4289,0.985,4290,0.985,4291,1.78,4292,2.436,4293,0.985,4294,0.985,4295,1.78,4296,0.985,4297,0.985,4298,0.985,4299,0.985,4300,0.985,4301,0.985,4302,2.436,4303,1.78,4304,0.985,4305,0.985,4306,2.986,4307,0.985,4308,2.436,4309,0.985,4310,0.985,4311,1.78,4312,0.985,4313,0.985,4314,0.985,4315,2.436,4316,1.78,4317,0.985,4318,4.208,4319,1.78,4320,2.436,4321,2.986,4322,0.985,4323,0.985,4324,1.78,4325,0.985,4326,2.436,4327,0.985,4328,1.78,4329,0.985,4330,0.985,4331,0.985,4332,0.985,4333,2.436,4334,0.985,4335,1.78,4336,2.436,4337,1.78,4338,0.985,4339,1.78,4340,0.985,4341,0.985,4342,1.78,4343,1.78,4344,0.985,4345,0.985,4346,1.78,4347,0.985,4348,0.985,4349,0.985,4350,0.985,4351,0.985,4352,0.985,4353,0.985,4354,0.985,4355,0.985,4356,0.985,4357,1.78,4358,2.436,4359,0.985,4360,0.985,4361,0.985,4362,0.985,4363,0.985,4364,1.78,4365,0.985,4366,0.985,4367,0.985,4368,0.985,4369,0.985,4370,0.985,4371,0.985,4372,0.985,4373,0.985,4374,0.985,4375,0.985,4376,0.985,4377,0.985,4378,2.986,4379,0.985,4380,1.78,4381,0.985,4382,0.985,4383,0.985,4384,0.985,4385,0.985,4386,0.985,4387,0.985,4388,0.985,4389,0.985,4390,0.985,4391,2.436,4392,0.985,4393,0.985,4394,0.985,4395,0.985,4396,1.78,4397,0.985,4398,0.985,4399,0.985,4400,0.985,4401,0.985,4402,1.78,4403,1.78,4404,2.436,4405,0.985,4406,1.78,4407,0.985,4408,0.985,4409,0.985,4410,0.985,4411,2.436,4412,1.78,4413,0.985,4414,1.78,4415,1.78,4416,1.78,4417,0.985,4418,0.985,4419,0.985,4420,0.985,4421,0.985,4422,0.985,4423,1.78,4424,0.985,4425,0.985,4426,1.78,4427,0.985,4428,2.436,4429,0.985,4430,0.985,4431,0.985,4432,0.985,4433,0.985,4434,0.985,4435,0.985,4436,0.985,4437,0.985,4438,0.985,4439,0.985,4440,0.985,4441,0.985,4442,0.985,4443,1.78,4444,0.985,4445,0.985,4446,0.985,4447,0.985,4448,0.985,4449,0.985,4450,0.985,4451,0.985,4452,0.985,4453,0.985,4454,0.985,4455,0.985,4456,0.985,4457,0.985,4458,0.985,4459,0.985,4460,2.436,4461,1.78,4462,0.985,4463,0.985,4464,0.985,4465,0.985,4466,0.985,4467,1.78,4468,0.985,4469,0.985,4470,1.78,4471,1.78,4472,0.985,4473,0.985,4474,0.985,4475,0.985,4476,0.985,4477,0.985,4478,0.985,4479,0.985,4480,0.985,4481,0.985,4482,0.985,4483,0.985,4484,0.985,4485,0.985,4486,0.985,4487,0.985,4488,0.985,4489,0.985,4490,0.985,4491,0.985,4492,0.985,4493,0.985,4494,0.985,4495,0.985]],["title/modules.html",[442,2.145]],["body/modules.html",[24,0.009,63,0.007,64,0.009,65,0.007,126,6.421,441,4.48,442,2.228,450,4.191,451,3.129,452,4.191,637,4.48,641,4.191,742,4.48,748,4.191,756,4.912,902,4.48,906,4.191,2847,6.988,2849,4.48,2853,4.191,3000,4.48,3004,4.191,3163,4.48,3167,4.191,3449,4.191,4496,8.748,4497,8.982,4498,8.688]],["title/overview.html",[3731,4.661]],["body/overview.html",[2,1.41,24,0.011,56,1.646,61,0.905,63,0.005,64,0.007,65,0.005,68,1.889,180,2.033,181,1.41,290,1.094,296,2.092,298,2.033,301,2.033,303,2.541,305,2.033,307,2.033,309,2.033,312,2.541,315,2.541,317,2.033,319,2.033,321,2.033,323,2.541,326,2.033,328,2.033,330,2.541,333,2.541,335,2.033,337,1.256,338,2.47,340,2.033,342,2.033,379,2.732,383,2.732,440,1.064,441,6.314,442,1.452,443,1.962,444,2.125,445,2.04,446,2.125,447,3.472,448,3.472,449,3.472,450,4.422,451,4.598,452,5.758,453,2.979,454,2.125,455,1.889,637,5.86,638,3.472,639,3.472,640,3.472,641,4.422,742,6.343,743,3.472,744,3.472,745,3.472,746,3.472,747,3.472,748,4.422,749,4.422,750,4.169,751,4.422,752,4.422,860,3.157,902,5.86,903,3.472,904,3.472,905,3.472,906,4.422,913,2.125,1116,3.257,1618,2.732,2849,5.86,2850,3.472,2851,3.472,2852,3.472,2853,4.422,2940,5.372,2941,3.157,3000,6.034,3001,3.472,3002,3.472,3003,3.472,3004,4.422,3014,3.472,3015,3.472,3016,3.472,3017,5.372,3163,6.034,3164,3.472,3165,3.472,3166,3.472,3167,4.422,3445,3.472,3446,3.472,3447,3.472,3448,3.472,3449,4.422,3546,3.472,3731,3.157,4499,3.952,4500,3.952]],["title/routes.html",[506,2.79]],["body/routes.html",[24,0.009,63,0.008,64,0.009,65,0.008,506,3.357]],["title/miscellaneous/variables.html",[3622,2.622,3700,4.097]],["body/miscellaneous/variables.html",[1,0.719,6,0.981,8,0.943,9,1.252,10,0.119,11,0.255,14,2.561,16,1.04,17,0.93,18,1.04,19,0.845,20,3.615,21,0.598,22,2.452,24,0.011,25,0.384,26,1.112,27,1.04,28,1.04,29,1.04,30,0.981,31,0.981,32,2.382,33,1.04,35,0.93,36,1.83,37,1.04,38,1.04,39,1.04,40,0.747,41,1.04,42,0.885,47,1.726,48,2.074,49,0.845,51,0.777,52,2.094,54,1.599,55,0.981,56,1.419,57,2.637,58,1.599,59,1.599,60,1.04,61,0.345,63,0.002,64,0.003,65,0.002,69,1.202,73,1.522,78,0.757,94,1.913,97,0.747,98,2.068,99,1.831,118,1.534,127,1.899,139,2.315,145,2.797,148,2.296,150,2.068,151,3.444,152,2.068,153,1.322,154,2.068,155,2.068,156,1.083,157,1.913,175,0.845,185,0.492,274,0.845,287,2.221,327,0.846,334,0.384,336,0.492,351,1.79,468,0.809,503,1.04,513,2.679,515,2.929,516,2.797,517,2.246,519,4.11,543,4.499,559,2.003,562,2.221,631,1.454,679,0.981,686,1.687,762,1.202,765,1.913,778,2.994,787,1.112,788,1.202,789,1.202,825,1.194,842,1.04,856,2.518,857,1.599,859,0.93,869,0.694,882,0.93,894,1.112,1035,2.518,1116,0.885,1207,2.382,1212,1.913,1213,2.518,1215,2.518,1248,1.112,1252,1.913,1258,1.04,1274,1.112,1435,2.518,1593,1.913,1594,1.202,1595,4.881,1605,4.007,1606,1.322,1607,2.068,1608,1.322,1609,2.068,1610,1.202,1611,3.232,1612,1.202,1613,2.518,1614,1.202,1615,1.202,1616,2.068,1617,1.202,1618,1.04,1619,1.202,1620,1.202,1621,1.202,1622,1.112,1623,1.202,1624,1.04,1625,1.202,1626,2.275,1627,3.556,1628,1.322,1629,1.322,1630,1.322,1631,1.322,1632,1.322,1633,1.322,1634,1.322,1635,1.322,1636,1.322,1637,1.322,1638,1.322,1639,1.322,1640,1.322,1641,1.322,1642,1.322,1643,2.275,1644,1.322,1645,1.322,1646,2.275,1647,1.322,1648,1.322,1649,1.322,1650,2.994,1651,2.994,1652,1.322,1653,2.275,1654,1.322,1655,2.275,1656,2.275,1657,2.275,1658,1.322,1659,1.322,1660,1.322,1661,1.322,1662,1.322,1663,1.322,1664,1.322,1665,1.322,1666,1.322,1667,1.322,1668,1.322,1669,1.322,1670,1.322,1671,1.322,1672,1.322,1673,1.322,1674,1.322,1675,1.322,1676,1.322,1677,1.322,1678,1.322,1679,1.322,1680,1.322,1681,1.322,1682,1.322,1683,1.322,1684,1.322,1685,1.322,1686,1.322,1687,1.322,1688,1.322,1689,1.322,1690,1.322,1691,2.275,1692,1.322,1693,1.322,1694,1.322,1695,1.322,1696,1.322,1697,1.322,1698,1.322,1699,1.322,1700,1.322,1701,1.322,1702,1.322,1703,1.322,1704,2.275,1705,1.322,1706,1.322,1707,1.322,1708,2.275,1709,1.322,1710,1.322,1711,1.322,1712,1.322,1713,1.322,1714,1.322,1715,1.322,1716,1.322,1717,1.322,1718,1.322,1719,1.322,1720,1.322,1721,1.322,1722,1.322,1723,1.322,1724,1.322,1725,1.322,1726,1.322,1727,1.322,1728,1.322,1729,1.322,1730,1.322,1731,1.322,1732,1.322,1733,1.322,1734,1.322,1735,2.994,1736,1.322,1737,1.322,1738,1.322,1739,1.322,1740,1.322,1741,1.322,1742,1.322,1743,1.322,1744,1.322,1745,1.322,1746,1.322,1747,1.322,1748,1.322,1749,2.275,1750,1.322,1751,1.322,1752,1.322,1753,1.322,1754,1.322,1755,1.322,1756,1.322,1757,2.275,1758,1.322,1759,1.322,1760,1.322,1761,1.322,1762,1.322,1763,1.202,1764,1.322,1765,1.322,1766,1.322,1767,1.322,1768,0.93,1769,1.322,1770,1.322,1771,1.322,1772,1.322,1773,1.322,1774,1.322,1775,1.322,1776,2.275,1777,1.322,1778,1.322,1779,2.275,1780,1.322,1781,1.322,1782,1.322,1783,1.322,1784,1.322,1785,1.322,1786,1.322,1787,1.322,1788,1.322,1789,1.322,1790,1.322,1791,1.322,1792,1.322,1793,1.322,1794,1.322,1795,1.322,1796,2.994,1797,1.322,1798,1.322,1799,1.322,1800,1.322,1801,1.322,1802,1.322,1803,1.322,1804,1.322,1805,1.322,1806,1.322,1807,1.322,1808,1.322,1809,1.322,1810,1.322,1811,1.322,1812,1.322,1813,1.322,1814,1.322,1815,2.275,1816,1.322,1817,1.322,1818,1.322,1819,1.322,1820,1.322,1821,1.322,1822,1.322,1823,1.322,1824,1.322,1825,1.322,1826,1.322,1827,1.322,1828,1.322,1829,1.322,1830,1.322,1831,1.322,1832,1.322,1833,2.275,1834,2.994,1835,1.322,1836,1.322,1837,1.322,1838,1.322,1839,2.994,1840,2.994,1841,1.322,1842,2.275,1843,1.322,1844,1.322,1845,1.322,1846,1.322,1847,1.322,1848,1.322,1849,1.322,1850,1.322,1851,1.322,1852,1.322,1853,1.322,1854,1.322,1855,1.322,1856,1.322,1857,2.994,1858,1.322,1859,1.322,1860,1.322,1861,1.322,1862,1.322,1863,1.322,1864,1.322,1865,1.322,1866,1.322,1867,1.322,1868,1.322,1869,1.322,1870,1.322,1871,1.322,1872,1.322,1873,1.322,1874,1.322,1875,1.322,1876,2.068,1877,2.068,1878,2.275,1879,2.275,1880,2.275,1881,2.275,1882,1.322,1883,1.322,1884,1.322,1885,1.322,1886,1.202,1887,1.322,1888,1.322,1889,1.322,1890,1.322,1891,1.322,1892,1.322,1893,1.322,1894,1.322,1895,1.322,1896,1.322,1897,1.322,1898,1.322,1899,1.322,1900,1.322,1901,1.322,1902,1.322,1903,1.322,1904,1.322,1905,1.322,1906,1.202,1907,1.322,1908,1.322,1909,1.322,1910,1.322,1911,1.322,1912,1.322,1913,1.322,1914,1.322,1915,1.322,1916,1.322,1917,2.994,1918,1.322,1919,1.322,1920,1.322,1921,1.322,1922,1.322,1923,1.322,1924,2.275,1925,3.556,1926,1.322,1927,1.322,1928,1.322,1929,1.322,1930,1.322,1931,1.322,1932,1.322,1933,1.322,1934,1.322,1935,1.322,1936,1.322,1937,1.322,1938,1.322,1939,1.322,1940,1.322,1941,1.322,1942,1.322,1943,1.322,1944,1.322,1945,1.322,1946,1.322,1947,1.322,1948,1.322,1949,2.275,1950,1.322,1951,1.322,1952,1.322,1953,1.112,1954,1.322,1955,1.322,1956,1.322,1957,1.322,1958,1.322,1959,1.322,1960,1.322,1961,1.322,1962,1.322,1963,1.322,1964,1.322,1965,1.322,1966,1.322,1967,1.322,1968,1.322,1969,1.322,1970,1.322,1971,1.322,1972,1.322,1973,1.322,1974,1.322,1975,1.322,1976,1.322,1977,1.322,1978,1.322,1979,1.322,1980,1.322,1981,1.322,1982,1.322,1983,1.322,1984,2.275,1985,1.322,1986,1.322,1987,1.322,1988,1.322,1989,1.322,1990,1.322,1991,1.322,1992,1.322,1993,2.275,1994,1.322,1995,1.202,1996,1.322,1997,1.322,1998,1.322,1999,1.322,2000,1.322,2001,1.322,2002,1.322,2003,1.322,2004,1.322,2005,2.275,2006,1.322,2007,1.322,2008,1.322,2009,1.322,2010,1.322,2011,1.322,2012,1.322,2013,1.322,2014,1.322,2015,1.322,2016,1.322,2017,1.322,2018,1.322,2019,1.322,2020,1.322,2021,1.322,2022,1.322,2023,2.275,2024,2.068,2025,1.322,2026,1.322,2027,1.322,2028,1.322,2029,1.322,2030,1.322,2031,1.322,2032,1.322,2033,1.322,2034,1.322,2035,1.322,2036,1.322,2037,1.322,2038,1.322,2039,1.322,2040,1.322,2041,1.322,2042,1.322,2043,1.322,2044,1.202,2045,1.322,2046,1.322,2047,1.322,2048,1.322,2049,1.322,2050,1.322,2051,1.322,2052,1.322,2053,1.322,2054,1.322,2055,1.322,2056,1.322,2057,1.322,2058,1.322,2059,1.322,2060,1.322,2061,1.322,2062,1.322,2063,1.202,2064,1.322,2065,1.322,2066,1.322,2067,1.322,2068,1.322,2069,1.322,2070,1.322,2071,1.322,2072,1.322,2073,1.322,2074,1.322,2075,1.322,2076,1.322,2077,1.322,2078,1.322,2079,1.322,2080,1.322,2081,1.322,2082,2.275,2083,1.322,2084,1.322,2085,1.322,2086,1.322,2087,1.322,2088,1.322,2089,1.322,2090,1.202,2091,1.322,2092,1.202,2093,1.322,2094,1.322,2095,1.322,2096,1.322,2097,1.322,2098,1.202,2099,1.322,2100,1.322,2101,1.322,2102,1.322,2103,1.322,2104,1.322,2105,1.322,2106,1.322,2107,1.202,2108,1.322,2109,1.322,2110,1.322,2111,1.322,2112,1.322,2113,1.322,2114,1.322,2115,1.202,2116,1.322,2117,1.202,2118,1.322,2119,1.322,2120,2.068,2121,1.322,2122,1.322,2123,1.322,2124,1.322,2125,1.322,2126,1.322,2127,1.322,2128,1.322,2129,1.322,2130,1.322,2131,1.322,2132,1.322,2133,1.322,2134,1.322,2135,1.322,2136,1.322,2137,1.322,2138,1.322,2139,1.322,2140,1.322,2141,1.322,2142,1.322,2143,1.322,2144,1.322,2145,1.322,2146,1.322,2147,1.322,2148,1.322,2149,1.322,2150,1.322,2151,1.322,2152,1.322,2153,1.322,2154,1.322,2155,1.322,2156,1.322,2157,1.322,2158,1.322,2159,1.322,2160,1.322,2161,1.322,2162,1.322,2163,1.322,2164,1.322,2165,1.322,2166,1.322,2167,1.322,2168,2.275,2169,1.322,2170,1.322,2171,1.322,2172,1.322,2173,1.322,2174,1.322,2175,1.322,2176,1.322,2177,1.322,2178,1.322,2179,1.322,2180,1.322,2181,1.322,2182,1.322,2183,1.322,2184,1.322,2185,1.322,2186,2.994,2187,1.322,2188,1.322,2189,1.322,2190,1.322,2191,1.322,2192,1.322,2193,1.322,2194,1.322,2195,1.322,2196,1.322,2197,1.322,2198,1.322,2199,1.322,2200,1.322,2201,1.322,2202,1.322,2203,1.322,2204,1.322,2205,1.322,2206,1.322,2207,1.322,2208,1.322,2209,1.322,2210,1.322,2211,1.322,2212,1.322,2213,1.322,2214,1.322,2215,1.322,2216,1.322,2217,1.322,2218,1.322,2219,1.322,2220,1.322,2221,1.322,2222,1.322,2223,1.322,2224,1.322,2225,1.322,2226,1.322,2227,1.322,2228,1.322,2229,1.322,2230,1.322,2231,1.322,2232,1.322,2233,1.322,2234,1.322,2235,1.322,2236,1.322,2237,1.322,2238,1.322,2239,1.322,2240,1.322,2241,1.322,2242,1.322,2243,1.322,2244,1.322,2245,1.322,2246,1.322,2247,1.322,2248,1.322,2249,1.322,2250,1.322,2251,1.322,2252,1.322,2253,1.322,2254,1.322,2255,1.322,2256,1.322,2257,1.322,2258,1.322,2259,1.322,2260,1.322,2261,1.322,2262,1.322,2263,1.322,2264,1.322,2265,1.322,2266,1.322,2267,1.322,2268,1.322,2269,1.322,2270,1.322,2271,1.322,2272,1.322,2273,1.322,2274,1.322,2275,2.275,2276,1.322,2277,2.068,2278,1.322,2279,1.322,2280,1.322,2281,1.322,2282,1.322,2283,1.322,2284,1.322,2285,1.322,2286,1.322,2287,1.322,2288,1.322,2289,1.322,2290,1.322,2291,1.322,2292,1.322,2293,1.322,2294,1.202,2295,1.322,2296,1.322,2297,1.322,2298,1.322,2299,1.322,2300,1.322,2301,1.322,2302,1.322,2303,1.322,2304,1.322,2305,1.322,2306,2.275,2307,2.275,2308,1.322,2309,1.322,2310,1.322,2311,1.322,2312,1.322,2313,1.322,2314,2.068,2315,1.322,2316,1.322,2317,1.322,2318,1.322,2319,1.322,2320,1.322,2321,1.322,2322,1.322,2323,1.322,2324,1.322,2325,1.322,2326,1.322,2327,1.322,2328,1.322,2329,1.322,2330,1.322,2331,1.322,2332,1.322,2333,1.322,2334,1.322,2335,1.322,2336,1.202,2337,1.202,2338,1.322,2339,1.322,2340,1.322,2341,2.275,2342,1.322,2343,1.322,2344,1.322,2345,1.322,2346,1.322,2347,1.322,2348,1.322,2349,2.275,2350,1.322,2351,1.322,2352,1.322,2353,1.322,2354,1.322,2355,1.322,2356,1.322,2357,1.322,2358,1.322,2359,1.322,2360,1.322,2361,1.322,2362,1.322,2363,1.322,2364,1.322,2365,1.322,2366,1.322,2367,1.322,2368,1.322,2369,1.322,2370,1.322,2371,1.322,2372,1.322,2373,1.322,2374,1.322,2375,1.322,2376,1.202,2377,1.322,2378,1.322,2379,1.322,2380,1.322,2381,1.322,2382,2.068,2383,1.322,2384,1.322,2385,1.322,2386,1.322,2387,1.322,2388,1.322,2389,1.322,2390,1.202,2391,1.322,2392,1.322,2393,1.322,2394,1.322,2395,1.322,2396,1.322,2397,1.322,2398,1.322,2399,1.322,2400,1.322,2401,1.322,2402,1.322,2403,1.322,2404,1.322,2405,1.322,2406,1.322,2407,1.322,2408,1.322,2409,1.322,2410,1.322,2411,1.322,2412,1.322,2413,1.322,2414,1.322,2415,1.322,2416,1.322,2417,1.322,2418,1.322,2419,1.322,2420,1.322,2421,1.322,2422,1.322,2423,1.322,2424,1.322,2425,1.322,2426,1.322,2427,1.322,2428,1.322,2429,1.322,2430,1.322,2431,1.322,2432,1.322,2433,1.322,2434,1.322,2435,1.322,2436,1.322,2437,1.322,2438,1.322,2439,1.322,2440,1.322,2441,1.202,2442,1.202,2443,2.003,2444,1.322,2445,1.112,2446,1.322,2447,3.979,2448,3.444,2449,1.322,2450,3.979,2451,4.377,2452,3.979,2453,1.322,2454,2.275,2455,3.37,2456,5.37,2457,3.643,2458,3.37,2459,4.007,2460,2.275,2461,1.322,2462,2.275,2463,1.322,2464,1.322,2465,1.322,2466,2.275,2467,1.322,2468,1.322,2469,1.322,2470,2.275,2471,1.322,2472,1.322,2473,1.322,2474,2.275,2475,2.068,2476,1.322,2477,1.322,2478,1.322,2479,1.322,2577,1.522,2578,1.913,2650,1.454,2651,1.913,2652,1.202,2781,1.687,2808,1.04,3079,1.202,3080,2.722,3099,1.322,3258,1.202,3308,2.275,3309,2.068,3523,2.068,3527,1.202,3530,2.275,3560,1.322,3568,1.322,3569,1.322,3570,1.322,3622,1.112,3627,1.322,3665,1.202,3700,1.202,3711,2.994,4501,2.589,4502,2.589,4503,5.889,4504,1.505,4505,1.505,4506,1.505,4507,1.505,4508,2.589,4509,1.505,4510,1.505,4511,3.407,4512,3.407,4513,3.407,4514,3.407,4515,3.407,4516,3.407,4517,3.407,4518,3.407,4519,3.407,4520,3.407,4521,3.407,4522,3.407,4523,3.407,4524,3.407,4525,3.407,4526,3.407,4527,3.407,4528,3.407,4529,3.407,4530,2.589,4531,3.407,4532,3.407,4533,1.505,4534,1.505,4535,1.505,4536,1.505,4537,1.505]]],"invertedIndex":[["",{"_index":24,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Category.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"routes.html":{},"miscellaneous/variables.html":{}}}],["0",{"_index":56,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["0.0",{"_index":610,"title":{},"body":{"components/AdminComponent.html":{}}}],["0.0.7",{"_index":3590,"title":{},"body":{"dependencies.html":{}}}],["0.1.0",{"_index":3606,"title":{},"body":{"dependencies.html":{}}}],["0.1.4",{"_index":3589,"title":{},"body":{"dependencies.html":{}}}],["0.10.2",{"_index":3621,"title":{},"body":{"dependencies.html":{}}}],["0.12.3",{"_index":3600,"title":{},"body":{"dependencies.html":{}}}],["0.2",{"_index":611,"title":{},"body":{"components/AdminComponent.html":{}}}],["0.2.4",{"_index":3585,"title":{},"body":{"dependencies.html":{}}}],["0/1",{"_index":3549,"title":{},"body":{"coverage.html":{}}}],["0/10",{"_index":3555,"title":{},"body":{"coverage.html":{}}}],["0/11",{"_index":3557,"title":{},"body":{"coverage.html":{}}}],["0/12",{"_index":3566,"title":{},"body":{"coverage.html":{}}}],["0/14",{"_index":3550,"title":{},"body":{"coverage.html":{}}}],["0/15",{"_index":3564,"title":{},"body":{"coverage.html":{}}}],["0/16",{"_index":3559,"title":{},"body":{"coverage.html":{}}}],["0/17",{"_index":3563,"title":{},"body":{"coverage.html":{}}}],["0/18",{"_index":3554,"title":{},"body":{"coverage.html":{}}}],["0/2",{"_index":3551,"title":{},"body":{"coverage.html":{}}}],["0/26",{"_index":3548,"title":{},"body":{"coverage.html":{}}}],["0/3",{"_index":3565,"title":{},"body":{"coverage.html":{}}}],["0/33",{"_index":3561,"title":{},"body":{"coverage.html":{}}}],["0/4",{"_index":3567,"title":{},"body":{"coverage.html":{}}}],["0/43",{"_index":3562,"title":{},"body":{"coverage.html":{}}}],["0/5",{"_index":3552,"title":{},"body":{"coverage.html":{}}}],["0/6",{"_index":3556,"title":{},"body":{"coverage.html":{}}}],["0/7",{"_index":3553,"title":{},"body":{"coverage.html":{}}}],["0/8",{"_index":3558,"title":{},"body":{"coverage.html":{}}}],["04/02/2020",{"_index":3471,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["05/28/2020",{"_index":3482,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["08/16/2020",{"_index":3464,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0px",{"_index":599,"title":{},"body":{"components/AdminComponent.html":{}}}],["0x3da99aad2d9ca01d131efc3b17444b832b31ff4a",{"_index":2459,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x4a6fa6bc3bfe4c9661bc692d9798425350c9e3d4",{"_index":2473,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x51d3c8e2e421604e2b644117a362d589c5434739",{"_index":3501,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0x8fa4101ef19d0a078239d035659e92b278bd083c",{"_index":2469,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x9ced86089f7abb5a97b40eb0e7521e7aa308d354",{"_index":2461,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x9d7c284907acbd4a0ce2ddd0aa69147a921a573d",{"_index":3502,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0xa686005ce37dce7738436256982c3903f2e4ea8e",{"_index":2447,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["0xaf1b487491073c2d49136db3fd87e293302cf839",{"_index":4533,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0xc0ffee254729296a45a3885639ac7e10f9d54979",{"_index":165,"title":{},"body":{"classes/AccountIndex.html":{}}}],["0xc63cfa91a3bff41ce31ff436f67d3acbc977db95",{"_index":2465,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0xc80d6aff8194114c52aecd84c9f15fd5c8abb187",{"_index":2453,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0xc86ff893ac40d3950b4d5f94a9b837258b0a9865",{"_index":3463,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0xea6225212005e86a4490018ded4bf37f3e772161",{"_index":4530,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0xeb3907ecad74a0013c259d5874ae7f22dcbcc95c",{"_index":4532,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1",{"_index":175,"title":{"interfaces/Signature-1.html":{}},"body":{"classes/AccountIndex.html":{},"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["1.0.0",{"_index":3594,"title":{},"body":{"dependencies.html":{}}}],["1.10.22",{"_index":3597,"title":{},"body":{"dependencies.html":{}}}],["1.16.1",{"_index":3611,"title":{},"body":{"dependencies.html":{}}}],["1.3.0",{"_index":3619,"title":{},"body":{"dependencies.html":{}}}],["1/1",{"_index":3513,"title":{},"body":{"coverage.html":{}}}],["1/11",{"_index":3536,"title":{},"body":{"coverage.html":{}}}],["1/3",{"_index":3540,"title":{},"body":{"coverage.html":{}}}],["1/4",{"_index":3538,"title":{},"body":{"coverage.html":{}}}],["1/5",{"_index":3541,"title":{},"body":{"coverage.html":{}}}],["1/6",{"_index":3543,"title":{},"body":{"coverage.html":{}}}],["1/8",{"_index":3547,"title":{},"body":{"coverage.html":{}}}],["1/9",{"_index":3545,"title":{},"body":{"coverage.html":{}}}],["10",{"_index":379,"title":{},"body":{"components/AccountsComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TransactionsComponent.html":{},"license.html":{},"overview.html":{}}}],["10.2.0",{"_index":3575,"title":{},"body":{"dependencies.html":{},"index.html":{}}}],["10.2.7",{"_index":3577,"title":{},"body":{"dependencies.html":{}}}],["10/10/2020",{"_index":3487,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["100",{"_index":274,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AppComponent.html":{},"injectables/BlockSyncService.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["1000",{"_index":1617,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["1000000",{"_index":2456,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["1000000000000000001014",{"_index":2462,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["1000000001000000000000000000",{"_index":2449,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["100990",{"_index":2474,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["11",{"_index":3544,"title":{},"body":{"coverage.html":{},"license.html":{}}}],["11/16/2020",{"_index":3477,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["12",{"_index":3546,"title":{},"body":{"coverage.html":{},"overview.html":{}}}],["12987",{"_index":3465,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["13",{"_index":4393,"title":{},"body":{"license.html":{}}}],["15",{"_index":4219,"title":{},"body":{"license.html":{}}}],["151.002995",{"_index":3505,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["1595537208",{"_index":3499,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["16",{"_index":3542,"title":{},"body":{"coverage.html":{},"license.html":{}}}],["17",{"_index":4499,"title":{},"body":{"overview.html":{}}}],["18",{"_index":2451,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["1996",{"_index":4039,"title":{},"body":{"license.html":{}}}],["2",{"_index":1116,"title":{},"body":{"injectables/BlockSyncService.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/TokenRegistry.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"license.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["2.0.0",{"_index":3615,"title":{},"body":{"dependencies.html":{}}}],["2.1.4",{"_index":3613,"title":{},"body":{"dependencies.html":{}}}],["2.10.0",{"_index":3618,"title":{},"body":{"dependencies.html":{}}}],["2.4.2",{"_index":3607,"title":{},"body":{"dependencies.html":{}}}],["2.5.4",{"_index":3582,"title":{},"body":{"dependencies.html":{}}}],["2.9.4",{"_index":3588,"title":{},"body":{"dependencies.html":{}}}],["2/2",{"_index":3521,"title":{},"body":{"coverage.html":{}}}],["20",{"_index":383,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"license.html":{},"overview.html":{}}}],["200",{"_index":842,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["2007",{"_index":3738,"title":{},"body":{"license.html":{}}}],["2020",{"_index":1414,"title":{},"body":{"components/FooterComponent.html":{}}}],["2021",{"_index":4467,"title":{},"body":{"license.html":{}}}],["22",{"_index":4500,"title":{},"body":{"overview.html":{}}}],["22.430670",{"_index":3504,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25",{"_index":3537,"title":{},"body":{"coverage.html":{}}}],["25412341234",{"_index":3470,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25412345678",{"_index":3462,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25462518374",{"_index":3486,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25498765432",{"_index":3476,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25498769876",{"_index":3481,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["28",{"_index":4374,"title":{},"body":{"license.html":{}}}],["29",{"_index":3736,"title":{},"body":{"license.html":{}}}],["3",{"_index":679,"title":{},"body":{"components/AppComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["3.0",{"_index":60,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["3.5.1",{"_index":3602,"title":{},"body":{"dependencies.html":{}}}],["3/3",{"_index":3515,"title":{},"body":{"coverage.html":{}}}],["3/5",{"_index":3572,"title":{},"body":{"coverage.html":{}}}],["30",{"_index":4273,"title":{},"body":{"license.html":{}}}],["3000",{"_index":3228,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["300px",{"_index":1350,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["32",{"_index":3378,"title":{},"body":{"injectables/TransactionService.html":{}}}],["33",{"_index":3539,"title":{},"body":{"coverage.html":{}}}],["39;0xc0ffee254729296a45a3885639ac7e10f9d54979'",{"_index":112,"title":{},"body":{"classes/AccountIndex.html":{}}}],["39;2'",{"_index":3096,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["39;hello",{"_index":3637,"title":{},"body":{"miscellaneous/functions.html":{}}}],["39;sarafu'",{"_index":3090,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["4",{"_index":1618,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"license.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["4.10.10",{"_index":3609,"title":{},"body":{"dependencies.html":{}}}],["4.2.1",{"_index":3608,"title":{},"body":{"dependencies.html":{}}}],["4.5.3",{"_index":3586,"title":{},"body":{"dependencies.html":{}}}],["400",{"_index":2569,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["401",{"_index":990,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["401/403",{"_index":840,"title":{},"body":{"components/AuthComponent.html":{}}}],["403",{"_index":1033,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["450",{"_index":3478,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["5",{"_index":1622,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["5.0.31",{"_index":3599,"title":{},"body":{"dependencies.html":{}}}],["50",{"_index":384,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{}}}],["5000",{"_index":2743,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["56",{"_index":1762,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["5621",{"_index":3483,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["56281",{"_index":3472,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["6",{"_index":1624,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"pipes/TokenRatioPipe.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["6.6.0",{"_index":3612,"title":{},"body":{"dependencies.html":{}}}],["6/6",{"_index":3524,"title":{},"body":{"coverage.html":{}}}],["60",{"_index":3571,"title":{},"body":{"coverage.html":{},"license.html":{}}}],["6b",{"_index":4121,"title":{},"body":{"license.html":{}}}],["6d",{"_index":4142,"title":{},"body":{"license.html":{}}}],["6rem",{"_index":636,"title":{},"body":{"components/AdminComponent.html":{}}}],["7",{"_index":4063,"title":{},"body":{"license.html":{}}}],["768px",{"_index":677,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["8",{"_index":3352,"title":{},"body":{"injectables/TransactionService.html":{}}}],["8.2.1",{"_index":3604,"title":{},"body":{"dependencies.html":{}}}],["8/8",{"_index":3514,"title":{},"body":{"coverage.html":{}}}],["8000000",{"_index":3366,"title":{},"body":{"injectables/TransactionService.html":{}}}],["817",{"_index":3488,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["8996",{"_index":4512,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9",{"_index":3535,"title":{},"body":{"coverage.html":{}}}],["9.0.2",{"_index":3583,"title":{},"body":{"dependencies.html":{}}}],["9/9",{"_index":3511,"title":{},"body":{"coverage.html":{}}}],["99000",{"_index":2466,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["9981",{"_index":2470,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["99999999999999998976",{"_index":2454,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["_eth",{"_index":3155,"title":{},"body":{"components/TokensComponent.html":{}}}],["_models",{"_index":594,"title":{},"body":{"components/AdminComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["abi",{"_index":151,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"injectables/TransactionService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["abicoder",{"_index":3353,"title":{},"body":{"injectables/TransactionService.html":{}}}],["abicoder.encode",{"_index":3355,"title":{},"body":{"injectables/TransactionService.html":{}}}],["ability",{"_index":4187,"title":{},"body":{"license.html":{}}}],["above",{"_index":2523,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["absence",{"_index":4064,"title":{},"body":{"license.html":{}}}],["absolute",{"_index":4449,"title":{},"body":{"license.html":{}}}],["absolutely",{"_index":4479,"title":{},"body":{"license.html":{}}}],["abstractcontrol",{"_index":1294,"title":{},"body":{"classes/CustomValidator.html":{}}}],["abuse",{"_index":3837,"title":{},"body":{"license.html":{}}}],["academy",{"_index":1911,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["accept",{"_index":4278,"title":{},"body":{"license.html":{}}}],["acceptable",{"_index":879,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["acceptance",{"_index":4277,"title":{},"body":{"license.html":{}}}],["accepted",{"_index":2915,"title":{},"body":{"guards/RoleGuard.html":{}}}],["acces",{"_index":2354,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["access",{"_index":864,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["accessible",{"_index":4345,"title":{},"body":{"license.html":{}}}],["accessors",{"_index":215,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["accompanied",{"_index":4103,"title":{},"body":{"license.html":{}}}],["accompanies",{"_index":4453,"title":{},"body":{"license.html":{}}}],["accord",{"_index":4062,"title":{},"body":{"license.html":{}}}],["according",{"_index":1452,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["accordingly",{"_index":1385,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["account",{"_index":8,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signature.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"miscellaneous/variables.html":{}}}],["account'},{'name",{"_index":308,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["account.component",{"_index":472,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["account.component.html",{"_index":1211,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.scss",{"_index":1210,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts",{"_index":1209,"title":{},"body":{"components/CreateAccountComponent.html":{},"coverage.html":{}}}],["account.component.ts:15",{"_index":1224,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:16",{"_index":1225,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:17",{"_index":1226,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:18",{"_index":1223,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:19",{"_index":1222,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:20",{"_index":1221,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:21",{"_index":1218,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:29",{"_index":1219,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:60",{"_index":1228,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:64",{"_index":1220,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.type",{"_index":427,"title":{},"body":{"components/AccountsComponent.html":{}}}],["account/create",{"_index":471,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/CreateAccountComponent.html":{},"coverage.html":{}}}],["accountant",{"_index":1997,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["accountdetails",{"_index":1,"title":{"interfaces/AccountDetails.html":{}},"body":{"interfaces/AccountDetails.html":{},"components/AccountsComponent.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["accountdetailscomponent",{"_index":296,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["accountindex",{"_index":67,"title":{"classes/AccountIndex.html":{}},"body":{"classes/AccountIndex.html":{},"coverage.html":{}}}],["accountinfo",{"_index":3339,"title":{},"body":{"injectables/TransactionService.html":{}}}],["accountinfo.vcard",{"_index":3341,"title":{},"body":{"injectables/TransactionService.html":{}}}],["accounts",{"_index":72,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"modules/PagesRoutingModule.html":{},"components/SidebarComponent.html":{}}}],["accounts'},{'name",{"_index":299,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["accounts.component.html",{"_index":349,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounts.component.scss",{"_index":348,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounts.push(account",{"_index":177,"title":{},"body":{"classes/AccountIndex.html":{}}}],["accounts/${strip0x(account.identities.evm[`bloxberg:${environment.bloxbergchainid}`][0",{"_index":423,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounts/${strip0x(res.identities.evm[`bloxberg:${environment.bloxbergchainid}`][0",{"_index":279,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["accountscomponent",{"_index":298,"title":{"components/AccountsComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["accountsearchcomponent",{"_index":180,"title":{"components/AccountSearchComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["accountsmodule",{"_index":441,"title":{"modules/AccountsModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules.html":{},"overview.html":{}}}],["accountsroutingmodule",{"_index":450,"title":{"modules/AccountsRoutingModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["accountstype",{"_index":350,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounttype",{"_index":430,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{}}}],["accounttypes",{"_index":351,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["achieve",{"_index":4459,"title":{},"body":{"license.html":{}}}],["acknowledges",{"_index":4002,"title":{},"body":{"license.html":{}}}],["acquired",{"_index":4324,"title":{},"body":{"license.html":{}}}],["action",{"_index":513,"title":{"interfaces/Action.html":{}},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["action.action",{"_index":628,"title":{},"body":{"components/AdminComponent.html":{}}}],["action.approval",{"_index":633,"title":{},"body":{"components/AdminComponent.html":{}}}],["action.id",{"_index":2527,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["action.role",{"_index":627,"title":{},"body":{"components/AdminComponent.html":{}}}],["action.user",{"_index":626,"title":{},"body":{"components/AdminComponent.html":{}}}],["actions",{"_index":562,"title":{},"body":{"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["actions.find((action",{"_index":2526,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["activatedroute",{"_index":3052,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["activatedroutesnapshot",{"_index":876,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["activatedroutestub",{"_index":521,"title":{"classes/ActivatedRouteStub.html":{}},"body":{"classes/ActivatedRouteStub.html":{},"coverage.html":{}}}],["activateroute",{"_index":525,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["active",{"_index":893,"title":{},"body":{"guards/AuthGuard.html":{}}}],["activities",{"_index":3916,"title":{},"body":{"license.html":{}}}],["activity",{"_index":4370,"title":{},"body":{"license.html":{}}}],["actual",{"_index":4350,"title":{},"body":{"license.html":{}}}],["actual_component",{"_index":346,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["actually",{"_index":4164,"title":{},"body":{"license.html":{}}}],["adapt",{"_index":3889,"title":{},"body":{"license.html":{}}}],["add",{"_index":533,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"components/AuthComponent.html":{},"license.html":{}}}],["add0x",{"_index":3301,"title":{},"body":{"injectables/TransactionService.html":{}}}],["add0x(tohex(tx.serializerlp",{"_index":3383,"title":{},"body":{"injectables/TransactionService.html":{}}}],["added",{"_index":4061,"title":{},"body":{"license.html":{}}}],["additional",{"_index":4075,"title":{},"body":{"license.html":{}}}],["address",{"_index":99,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"injectables/BlockSyncService.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["addressed",{"_index":3886,"title":{},"body":{"license.html":{}}}],["addresses",{"_index":141,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addressof",{"_index":3081,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressof('sarafu'",{"_index":3091,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressof('sarafu",{"_index":3100,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressof(identifier",{"_index":3086,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressreturned",{"_index":1138,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["addresssearchform",{"_index":201,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addresssearchformstub",{"_index":218,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addresssearchloading",{"_index":202,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addresssearchsubmitted",{"_index":203,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addtoaccountregistry",{"_index":85,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addtoaccountregistry('0xc0ffee254729296a45a3885639ac7e10f9d54979'",{"_index":115,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addtoaccountregistry('0xc0ffee254729296a45a3885639ac7e10f9d54979",{"_index":166,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addtoaccountregistry(address",{"_index":103,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addtransaction",{"_index":3262,"title":{},"body":{"injectables/TransactionService.html":{}}}],["addtransaction(transaction",{"_index":3271,"title":{},"body":{"injectables/TransactionService.html":{}}}],["admin",{"_index":559,"title":{},"body":{"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"modules/PagesRoutingModule.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"classes/UserServiceStub.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["admin'},{'name",{"_index":302,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["admin.component.html",{"_index":561,"title":{},"body":{"components/AdminComponent.html":{}}}],["admin.component.scss",{"_index":560,"title":{},"body":{"components/AdminComponent.html":{}}}],["admin_reserve",{"_index":2990,"title":{},"body":{"components/SettingsComponent.html":{}}}],["admincomponent",{"_index":301,"title":{"components/AdminComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["adminmodule",{"_index":637,"title":{"modules/AdminModule.html":{}},"body":{"modules/AdminModule.html":{},"modules.html":{},"overview.html":{}}}],["adminroutingmodule",{"_index":641,"title":{"modules/AdminRoutingModule.html":{}},"body":{"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["adopted",{"_index":4037,"title":{},"body":{"license.html":{}}}],["adversely",{"_index":4195,"title":{},"body":{"license.html":{}}}],["advised",{"_index":4440,"title":{},"body":{"license.html":{}}}],["affects",{"_index":4196,"title":{},"body":{"license.html":{}}}],["affero",{"_index":4391,"title":{},"body":{"license.html":{}}}],["affirmed",{"_index":4307,"title":{},"body":{"license.html":{}}}],["affirms",{"_index":3998,"title":{},"body":{"license.html":{}}}],["afterviewinit",{"_index":3396,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["again",{"_index":698,"title":{},"body":{"components/AppComponent.html":{}}}],["against",{"_index":3669,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{}}}],["age",{"_index":13,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["agent",{"_index":1995,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["aggregate",{"_index":4090,"title":{},"body":{"license.html":{}}}],["agree",{"_index":4386,"title":{},"body":{"license.html":{}}}],["agreed",{"_index":4427,"title":{},"body":{"license.html":{}}}],["agreement",{"_index":4336,"title":{},"body":{"license.html":{}}}],["agrovet",{"_index":2278,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["aim",{"_index":3833,"title":{},"body":{"license.html":{}}}],["airtime",{"_index":2357,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["alert('access",{"_index":1403,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["alert('account",{"_index":280,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["alg",{"_index":1189,"title":{},"body":{"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["algo",{"_index":44,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["alleging",{"_index":4314,"title":{},"body":{"license.html":{}}}],["allow",{"_index":3856,"title":{},"body":{"license.html":{}}}],["allowed",{"_index":1405,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"license.html":{}}}],["allows",{"_index":74,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["along",{"_index":4066,"title":{},"body":{"license.html":{}}}],["alpha.3",{"_index":3595,"title":{},"body":{"dependencies.html":{}}}],["alpha.6",{"_index":3591,"title":{},"body":{"dependencies.html":{}}}],["already",{"_index":120,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{}}}],["alternative",{"_index":4117,"title":{},"body":{"license.html":{}}}],["although",{"_index":3829,"title":{},"body":{"license.html":{}}}],["amani",{"_index":1652,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["amount",{"_index":3235,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["ancillary",{"_index":4280,"title":{},"body":{"license.html":{}}}],["and/or",{"_index":3813,"title":{},"body":{"license.html":{}}}],["andshow",{"_index":4483,"title":{},"body":{"license.html":{}}}],["angular",{"_index":468,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AppModule.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"modules/TransactionsModule.html":{},"dependencies.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["angular/animations",{"_index":593,"title":{},"body":{"components/AdminComponent.html":{},"dependencies.html":{}}}],["angular/cdk",{"_index":3576,"title":{},"body":{"dependencies.html":{}}}],["angular/cli",{"_index":3683,"title":{},"body":{"index.html":{}}}],["angular/common",{"_index":459,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"dependencies.html":{}}}],["angular/common/http",{"_index":764,"title":{},"body":{"modules/AppModule.html":{},"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["angular/compiler",{"_index":3578,"title":{},"body":{"dependencies.html":{}}}],["angular/core",{"_index":248,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"dependencies.html":{}}}],["angular/forms",{"_index":250,"title":{},"body":{"components/AccountSearchComponent.html":{},"modules/AccountsModule.html":{},"components/AuthComponent.html":{},"modules/AuthModule.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/OrganizationComponent.html":{},"modules/SettingsModule.html":{},"dependencies.html":{}}}],["angular/material",{"_index":3579,"title":{},"body":{"dependencies.html":{}}}],["angular/material/button",{"_index":484,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/card",{"_index":486,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/checkbox",{"_index":476,"title":{},"body":{"modules/AccountsModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/core",{"_index":495,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"classes/CustomErrorStateMatcher.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/dialog",{"_index":1329,"title":{},"body":{"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{}}}],["angular/material/form",{"_index":481,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/icon",{"_index":488,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/input",{"_index":479,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/menu",{"_index":3012,"title":{},"body":{"modules/SettingsModule.html":{}}}],["angular/material/paginator",{"_index":394,"title":{},"body":{"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/progress",{"_index":497,"title":{},"body":{"modules/AccountsModule.html":{}}}],["angular/material/radio",{"_index":3010,"title":{},"body":{"modules/SettingsModule.html":{}}}],["angular/material/select",{"_index":490,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/sidenav",{"_index":3174,"title":{},"body":{"modules/TokensModule.html":{}}}],["angular/material/snack",{"_index":502,"title":{},"body":{"modules/AccountsModule.html":{},"components/TransactionDetailsComponent.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/sort",{"_index":395,"title":{},"body":{"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/table",{"_index":393,"title":{},"body":{"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/tabs",{"_index":493,"title":{},"body":{"modules/AccountsModule.html":{}}}],["angular/material/toolbar",{"_index":3176,"title":{},"body":{"modules/TokensModule.html":{}}}],["angular/platform",{"_index":755,"title":{},"body":{"modules/AppModule.html":{},"pipes/SafePipe.html":{},"dependencies.html":{}}}],["angular/router",{"_index":253,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsRoutingModule.html":{},"classes/ActivatedRouteStub.html":{},"modules/AdminRoutingModule.html":{},"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthRoutingModule.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"modules/PagesRoutingModule.html":{},"guards/RoleGuard.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"modules/TokensRoutingModule.html":{},"components/TransactionDetailsComponent.html":{},"modules/TransactionsRoutingModule.html":{},"dependencies.html":{}}}],["angular/service",{"_index":685,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"dependencies.html":{}}}],["animate",{"_index":588,"title":{},"body":{"components/AdminComponent.html":{}}}],["animate('225ms",{"_index":607,"title":{},"body":{"components/AdminComponent.html":{}}}],["animations",{"_index":595,"title":{},"body":{"components/AdminComponent.html":{}}}],["anti",{"_index":4025,"title":{},"body":{"license.html":{}}}],["anyone",{"_index":4073,"title":{},"body":{"license.html":{}}}],["anything",{"_index":3902,"title":{},"body":{"license.html":{}}}],["api",{"_index":2485,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["app",{"_index":195,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"index.html":{}}}],["app.component.html",{"_index":649,"title":{},"body":{"components/AppComponent.html":{}}}],["app.component.scss",{"_index":648,"title":{},"body":{"components/AppComponent.html":{}}}],["app.module",{"_index":3698,"title":{},"body":{"index.html":{}}}],["app/_eth",{"_index":3119,"title":{},"body":{"injectables/TokenService.html":{}}}],["app/_guards",{"_index":767,"title":{},"body":{"modules/AppModule.html":{},"modules/AppRoutingModule.html":{}}}],["app/_helpers",{"_index":251,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"modules/AppModule.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{},"injectables/RegistryService.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["app/_helpers/global",{"_index":964,"title":{},"body":{"injectables/AuthService.html":{}}}],["app/_interceptors",{"_index":771,"title":{},"body":{"modules/AppModule.html":{}}}],["app/_models",{"_index":399,"title":{},"body":{"components/AccountsComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["app/_models/account",{"_index":1194,"title":{},"body":{"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["app/_models/staff",{"_index":2976,"title":{},"body":{"components/SettingsComponent.html":{}}}],["app/_pgp",{"_index":773,"title":{},"body":{"modules/AppModule.html":{},"injectables/AuthService.html":{}}}],["app/_pgp/pgp",{"_index":2807,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["app/_services",{"_index":252,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"interceptors/ErrorInterceptor.html":{},"components/SettingsComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["app/_services/auth.service",{"_index":3307,"title":{},"body":{"injectables/TransactionService.html":{}}}],["app/_services/error",{"_index":961,"title":{},"body":{"injectables/AuthService.html":{}}}],["app/_services/logging.service",{"_index":960,"title":{},"body":{"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{}}}],["app/_services/registry.service",{"_index":1121,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["app/_services/transaction.service",{"_index":1120,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["app/_services/user.service",{"_index":3296,"title":{},"body":{"injectables/TransactionService.html":{}}}],["app/app",{"_index":758,"title":{},"body":{"modules/AppModule.html":{}}}],["app/app.component",{"_index":759,"title":{},"body":{"modules/AppModule.html":{}}}],["app/auth/_directives/password",{"_index":910,"title":{},"body":{"modules/AuthModule.html":{}}}],["app/auth/auth",{"_index":908,"title":{},"body":{"modules/AuthModule.html":{}}}],["app/auth/auth.component",{"_index":909,"title":{},"body":{"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{}}}],["app/shared/_directives/menu",{"_index":3022,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/_pipes/safe.pipe",{"_index":3027,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/_pipes/token",{"_index":3024,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/error",{"_index":1344,"title":{},"body":{"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{}}}],["app/shared/footer/footer.component",{"_index":3020,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/shared.module",{"_index":463,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["app/shared/sidebar/sidebar.component",{"_index":3021,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/topbar/topbar.component",{"_index":3019,"title":{},"body":{"modules/SharedModule.html":{}}}],["appcomponent",{"_index":303,"title":{"components/AppComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["applicable",{"_index":3908,"title":{},"body":{"license.html":{}}}],["application",{"_index":146,"title":{},"body":{"classes/AccountIndex.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/TokenRegistry.html":{}}}],["application/json",{"_index":984,"title":{},"body":{"injectables/AuthService.html":{}}}],["applications",{"_index":4491,"title":{},"body":{"license.html":{}}}],["applied",{"_index":3863,"title":{},"body":{"license.html":{}}}],["applies",{"_index":3770,"title":{},"body":{"license.html":{}}}],["apply",{"_index":3774,"title":{},"body":{"license.html":{}}}],["appmenuselection",{"_index":1571,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["appmenuselection]'},{'name",{"_index":339,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["appmenutoggle",{"_index":1584,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["appmenutoggle]'},{'name",{"_index":341,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["appmodule",{"_index":742,"title":{"modules/AppModule.html":{}},"body":{"modules/AppModule.html":{},"modules.html":{},"overview.html":{}}}],["apppasswordtoggle",{"_index":2873,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["apppasswordtoggle]'},{'name",{"_index":343,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["appropriate",{"_index":1450,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["appropriately",{"_index":4055,"title":{},"body":{"license.html":{}}}],["approuterlink",{"_index":345,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["approutingmodule",{"_index":748,"title":{"modules/AppRoutingModule.html":{}},"body":{"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["approval",{"_index":515,"title":{},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["approvalstatus",{"_index":563,"title":{},"body":{"components/AdminComponent.html":{}}}],["approvalstatus(action.approval",{"_index":629,"title":{},"body":{"components/AdminComponent.html":{}}}],["approvalstatus(status",{"_index":568,"title":{},"body":{"components/AdminComponent.html":{}}}],["approve",{"_index":585,"title":{},"body":{"components/AdminComponent.html":{}}}],["approveaction",{"_index":564,"title":{},"body":{"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{}}}],["approveaction(action",{"_index":571,"title":{},"body":{"components/AdminComponent.html":{}}}],["approveaction(action.id",{"_index":620,"title":{},"body":{"components/AdminComponent.html":{}}}],["approveaction(id",{"_index":3489,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["approved",{"_index":617,"title":{},"body":{"components/AdminComponent.html":{},"classes/UserServiceStub.html":{}}}],["approximates",{"_index":4448,"title":{},"body":{"license.html":{}}}],["area",{"_index":32,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["area_name",{"_index":33,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["area_type",{"_index":34,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["areaname",{"_index":518,"title":{"interfaces/AreaName.html":{}},"body":{"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{}}}],["areaname.locations.includes(stringfromurl",{"_index":2542,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areaname.name",{"_index":2538,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areanamelist",{"_index":2536,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areanames",{"_index":1212,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["areanames.find((areaname",{"_index":2541,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areanames.map((areaname",{"_index":2537,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatype",{"_index":520,"title":{"interfaces/AreaType.html":{}},"body":{"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{}}}],["areatype.area.includes(stringfromurl",{"_index":2550,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatype.name",{"_index":2546,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatypelist",{"_index":2544,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatypes",{"_index":1877,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["areatypes.find((areatype",{"_index":2549,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatypes.map((areatype",{"_index":2545,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["args",{"_index":2946,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{}}}],["arguments",{"_index":664,"title":{},"body":{"components/AppComponent.html":{}}}],["arise",{"_index":3844,"title":{},"body":{"license.html":{}}}],["arising",{"_index":4431,"title":{},"body":{"license.html":{}}}],["arr",{"_index":3631,"title":{},"body":{"miscellaneous/functions.html":{}}}],["arrange",{"_index":4346,"title":{},"body":{"license.html":{}}}],["arrangement",{"_index":4358,"title":{},"body":{"license.html":{}}}],["array",{"_index":139,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"components/AdminComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"injectables/AuthService.html":{},"interfaces/Category.html":{},"components/CreateAccountComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/SettingsComponent.html":{},"classes/TokenRegistry.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["array.from",{"_index":3126,"title":{},"body":{"injectables/TokenService.html":{}}}],["arraybuffer",{"_index":1012,"title":{},"body":{"injectables/AuthService.html":{}}}],["arraydata",{"_index":3648,"title":{},"body":{"miscellaneous/functions.html":{}}}],["arraysum",{"_index":3518,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["arraysum(arr",{"_index":3629,"title":{},"body":{"miscellaneous/functions.html":{}}}],["article",{"_index":4034,"title":{},"body":{"license.html":{}}}],["artifacts",{"_index":3706,"title":{},"body":{"index.html":{}}}],["artisan",{"_index":2105,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["artist",{"_index":1994,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["askari",{"_index":1996,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["asking",{"_index":3791,"title":{},"body":{"license.html":{}}}],["assert",{"_index":3808,"title":{},"body":{"license.html":{}}}],["assets",{"_index":4297,"title":{},"body":{"license.html":{}}}],["assets/js/block",{"_index":2903,"title":{},"body":{"injectables/RegistryService.html":{}}}],["assigned",{"_index":3092,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["associated",{"_index":883,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["assume",{"_index":4422,"title":{},"body":{"license.html":{}}}],["assumption",{"_index":4452,"title":{},"body":{"license.html":{}}}],["assumptions",{"_index":4239,"title":{},"body":{"license.html":{}}}],["assures",{"_index":3866,"title":{},"body":{"license.html":{}}}],["async",{"_index":84,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["atomic",{"_index":969,"title":{},"body":{"injectables/AuthService.html":{}}}],["attach",{"_index":4461,"title":{},"body":{"license.html":{}}}],["attempt",{"_index":4253,"title":{},"body":{"license.html":{}}}],["attributed",{"_index":3824,"title":{},"body":{"license.html":{}}}],["attributions",{"_index":4222,"title":{},"body":{"license.html":{}}}],["auth",{"_index":792,"title":{},"body":{"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{}}}],["auth'},{'name",{"_index":306,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["auth.component.html",{"_index":803,"title":{},"body":{"components/AuthComponent.html":{}}}],["auth.component.scss",{"_index":802,"title":{},"body":{"components/AuthComponent.html":{}}}],["authcomponent",{"_index":305,"title":{"components/AuthComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["authenticate",{"_index":1016,"title":{},"body":{"injectables/AuthService.html":{}}}],["authentication",{"_index":865,"title":{},"body":{"guards/AuthGuard.html":{},"components/SettingsComponent.html":{}}}],["authguard",{"_index":766,"title":{"guards/AuthGuard.html":{}},"body":{"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"coverage.html":{}}}],["authheader",{"_index":1014,"title":{},"body":{"injectables/AuthService.html":{}}}],["authmodule",{"_index":902,"title":{"modules/AuthModule.html":{}},"body":{"modules/AuthModule.html":{},"modules.html":{},"overview.html":{}}}],["author",{"_index":4221,"title":{},"body":{"license.html":{}}}],["authorization",{"_index":4175,"title":{},"body":{"license.html":{}}}],["authorized",{"_index":1034,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["authorizes",{"_index":4319,"title":{},"body":{"license.html":{}}}],["authorizing",{"_index":4362,"title":{},"body":{"license.html":{}}}],["authors",{"_index":3773,"title":{},"body":{"license.html":{}}}],["authroutingmodule",{"_index":906,"title":{"modules/AuthRoutingModule.html":{}},"body":{"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["authservice",{"_index":659,"title":{"injectables/AuthService.html":{}},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"components/SettingsComponent.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["automatic",{"_index":4289,"title":{},"body":{"license.html":{}}}],["automatically",{"_index":3689,"title":{},"body":{"index.html":{},"license.html":{}}}],["automerge",{"_index":987,"title":{},"body":{"injectables/AuthService.html":{}}}],["availability",{"_index":107,"title":{},"body":{"classes/AccountIndex.html":{}}}],["available",{"_index":126,"title":{},"body":{"classes/AccountIndex.html":{},"components/AppComponent.html":{},"license.html":{},"modules.html":{}}}],["avenue",{"_index":3654,"title":{},"body":{"miscellaneous/functions.html":{}}}],["avocado",{"_index":2121,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["avoid",{"_index":3860,"title":{},"body":{"license.html":{}}}],["await",{"_index":167,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["away",{"_index":3760,"title":{},"body":{"license.html":{}}}],["b",{"_index":3959,"title":{},"body":{"license.html":{}}}],["baby",{"_index":1900,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["babycare",{"_index":1899,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["backend",{"_index":1387,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["backend.ts",{"_index":1595,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["backend.ts:1097",{"_index":1599,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["bag",{"_index":2315,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bajia",{"_index":2123,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["baker",{"_index":1998,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["balance",{"_index":14,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/AccountsComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"interfaces/Token.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["bamburi",{"_index":1816,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["banana",{"_index":2128,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bananas",{"_index":2129,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bangla",{"_index":1798,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bangladesh",{"_index":1799,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bar",{"_index":503,"title":{},"body":{"modules/AccountsModule.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TransactionDetailsComponent.html":{},"modules/TransactionsModule.html":{},"miscellaneous/variables.html":{}}}],["barafu",{"_index":2273,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["barakoa",{"_index":2280,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["barber",{"_index":2001,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["based",{"_index":3898,"title":{},"body":{"license.html":{}}}],["basic",{"_index":3990,"title":{},"body":{"license.html":{}}}],["bead",{"_index":2316,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beadwork",{"_index":1999,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beans",{"_index":2125,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bearer",{"_index":982,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/HttpConfigInterceptor.html":{}}}],["beautician",{"_index":2112,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beauty",{"_index":2000,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beba",{"_index":2384,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bebabeba",{"_index":2385,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bed",{"_index":2320,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bedding",{"_index":2318,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["behalf",{"_index":4013,"title":{},"body":{"license.html":{}}}],["behave",{"_index":1262,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["behaviorsubject",{"_index":3118,"title":{},"body":{"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["behaviorsubject(this.transactions",{"_index":3288,"title":{},"body":{"injectables/TransactionService.html":{}}}],["being",{"_index":1300,"title":{},"body":{"classes/CustomValidator.html":{},"license.html":{}}}],["believe",{"_index":4355,"title":{},"body":{"license.html":{}}}],["below",{"_index":4020,"title":{},"body":{"license.html":{}}}],["belt",{"_index":2317,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["benefit",{"_index":4349,"title":{},"body":{"license.html":{}}}],["best",{"_index":4458,"title":{},"body":{"license.html":{}}}],["between",{"_index":3988,"title":{},"body":{"license.html":{}}}],["beyond",{"_index":4092,"title":{},"body":{"license.html":{}}}],["bezier(0.4",{"_index":609,"title":{},"body":{"components/AdminComponent.html":{}}}],["bhajia",{"_index":2122,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biashara",{"_index":2041,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bicycle",{"_index":2387,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bike",{"_index":2386,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["binding",{"_index":1279,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["bio",{"_index":3467,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["biogas",{"_index":2416,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biringanya",{"_index":2127,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biscuits",{"_index":2126,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bit",{"_index":1106,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bitwise",{"_index":1146,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["block",{"_index":854,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"dependencies.html":{}}}],["blockchain",{"_index":155,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["blockfilter",{"_index":1190,"title":{},"body":{"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["blockfilterbinstr",{"_index":1169,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blockfilterbinstr.charcodeat(i",{"_index":1176,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocksbloom",{"_index":1187,"title":{"interfaces/BlocksBloom.html":{}},"body":{"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"coverage.html":{}}}],["blocksync",{"_index":1082,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocksync(address",{"_index":1091,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocksyncservice",{"_index":1079,"title":{"injectables/BlockSyncService.html":{}},"body":{"injectables/BlockSyncService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["blocktxfilter",{"_index":1191,"title":{},"body":{"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["blocktxfilterbinstr",{"_index":1177,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocktxfilterbinstr.charcodeat(i",{"_index":1182,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomblockbytes",{"_index":1111,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomblocktxbytes",{"_index":1113,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomrounds",{"_index":1114,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloxberg:8996",{"_index":28,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["bloxbergchainid",{"_index":4511,"title":{},"body":{"miscellaneous/variables.html":{}}}],["boda",{"_index":2389,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bodaboda",{"_index":2390,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["body",{"_index":1371,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["body.approval",{"_index":2530,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["bofu",{"_index":1653,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bombolulu",{"_index":1820,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bomet",{"_index":1862,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bone",{"_index":1171,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bone.map((e",{"_index":1173,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["book",{"_index":1882,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["boolean",{"_index":231,"title":{},"body":{"components/AccountSearchComponent.html":{},"interfaces/Action.html":{},"components/AdminComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Category.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/LoggingService.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"miscellaneous/functions.html":{}}}],["bootstrap",{"_index":445,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"dependencies.html":{},"overview.html":{}}}],["both",{"_index":3818,"title":{},"body":{"license.html":{}}}],["botique",{"_index":2322,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["boutique",{"_index":2323,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["box",{"_index":1363,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"license.html":{}}}],["bread",{"_index":2213,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["break",{"_index":1401,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["brewer",{"_index":2119,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bricks",{"_index":2095,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["browse",{"_index":4497,"title":{},"body":{"modules.html":{}}}],["browser",{"_index":756,"title":{},"body":{"modules/AppModule.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"pipes/SafePipe.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"dependencies.html":{},"modules.html":{}}}],["browser/animations",{"_index":761,"title":{},"body":{"modules/AppModule.html":{}}}],["browseranimationsmodule",{"_index":760,"title":{},"body":{"modules/AppModule.html":{}}}],["browsermodule",{"_index":754,"title":{},"body":{"modules/AppModule.html":{}}}],["btwo",{"_index":1179,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["btwo.map((e",{"_index":1181,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["buck",{"_index":3469,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["build",{"_index":3699,"title":{},"body":{"index.html":{}}}],["build:dev",{"_index":3705,"title":{},"body":{"index.html":{}}}],["build:prod",{"_index":3709,"title":{},"body":{"index.html":{}}}],["bungoma",{"_index":1864,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["buru",{"_index":1776,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["busaa",{"_index":2200,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["busia",{"_index":1843,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["business",{"_index":1252,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["businesscategory",{"_index":1235,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["butcher",{"_index":2153,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["butchery",{"_index":2154,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["button",{"_index":634,"title":{},"body":{"components/AdminComponent.html":{},"injectables/AuthService.html":{}}}],["c",{"_index":3740,"title":{},"body":{"license.html":{}}}],["cabbages",{"_index":2202,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cachedtx.tx.txhash",{"_index":3313,"title":{},"body":{"injectables/TransactionService.html":{}}}],["cachesize",{"_index":3272,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["cafe",{"_index":2332,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cake",{"_index":2140,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["call",{"_index":2486,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["called",{"_index":3896,"title":{},"body":{"license.html":{}}}],["calls",{"_index":3658,"title":{},"body":{"miscellaneous/functions.html":{}}}],["can't",{"_index":2663,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["can\\'t",{"_index":695,"title":{},"body":{"components/AppComponent.html":{}}}],["canactivate",{"_index":798,"title":{},"body":{"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["canactivate(route",{"_index":875,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["candebug",{"_index":1530,"title":{},"body":{"injectables/LoggingService.html":{}}}],["candy",{"_index":2328,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["capabilities",{"_index":874,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"guards/RoleGuard.html":{}}}],["capenter",{"_index":2007,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["car",{"_index":2005,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["card",{"_index":2769,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["care",{"_index":1901,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["caretaker",{"_index":2004,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carpenter",{"_index":2017,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carrier",{"_index":2392,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carry",{"_index":4068,"title":{},"body":{"license.html":{}}}],["cart",{"_index":2391,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carwash",{"_index":2013,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["case",{"_index":1398,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["cases",{"_index":4160,"title":{},"body":{"license.html":{}}}],["cashier",{"_index":1606,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cassava",{"_index":2139,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["casual",{"_index":2002,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["catch",{"_index":405,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{},"injectables/AuthService.html":{}}}],["catch((e",{"_index":2839,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["catcherror",{"_index":684,"title":{},"body":{"components/AppComponent.html":{},"interceptors/ErrorInterceptor.html":{}}}],["catcherror((err",{"_index":1379,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["categories",{"_index":1213,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["categories.find((category",{"_index":2557,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["categories.map((category",{"_index":2553,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["category",{"_index":15,"title":{"interfaces/Category.html":{}},"body":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"components/CreateAccountComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"coverage.html":{}}}],["category.name",{"_index":2554,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["category.products.includes(stringfromurl",{"_index":2558,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["categorylist",{"_index":2552,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["catering",{"_index":2010,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["caught",{"_index":1373,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["cause",{"_index":4095,"title":{},"body":{"license.html":{}}}],["cdr",{"_index":2735,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["cease",{"_index":4257,"title":{},"body":{"license.html":{}}}],["cement",{"_index":2321,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["centralized",{"_index":1421,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["cereal",{"_index":2134,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cereals",{"_index":2141,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["certain",{"_index":1597,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["cessation",{"_index":4269,"title":{},"body":{"license.html":{}}}],["chai",{"_index":2137,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chakula",{"_index":2131,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["challenge",{"_index":1000,"title":{},"body":{"injectables/AuthService.html":{}}}],["chama",{"_index":2308,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["changamwe",{"_index":1810,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["change",{"_index":857,"title":{},"body":{"components/AuthComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/SettingsComponent.html":{},"classes/UserServiceStub.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["changed",{"_index":3822,"title":{},"body":{"license.html":{}}}],["changedetection",{"_index":192,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["changedetectionstrategy",{"_index":247,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["changedetectionstrategy.onpush",{"_index":193,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["changedetectorref",{"_index":2733,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["changing",{"_index":3751,"title":{},"body":{"license.html":{}}}],["chapati",{"_index":2133,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chapo",{"_index":2136,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["characterized",{"_index":4184,"title":{},"body":{"license.html":{}}}],["charcoal",{"_index":2418,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["charcol",{"_index":2417,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["charge",{"_index":3778,"title":{},"body":{"license.html":{}}}],["charging",{"_index":2065,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chart.js",{"_index":3587,"title":{},"body":{"dependencies.html":{}}}],["charts",{"_index":2859,"title":{},"body":{"modules/PagesModule.html":{},"dependencies.html":{}}}],["chartsmodule",{"_index":2857,"title":{},"body":{"modules/PagesModule.html":{}}}],["check",{"_index":834,"title":{},"body":{"components/AuthComponent.html":{},"index.html":{}}}],["checks",{"_index":123,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"guards/RoleGuard.html":{}}}],["chef",{"_index":2009,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chemicals",{"_index":2282,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chemist",{"_index":2281,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chibuga",{"_index":1654,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chicken",{"_index":2145,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chidzivuni",{"_index":1666,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chidzuvini",{"_index":1665,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chief",{"_index":1951,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigale",{"_index":1660,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigato",{"_index":1659,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigojoni",{"_index":1657,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikole",{"_index":1661,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikomani",{"_index":1655,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikomeni",{"_index":1664,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikuyu",{"_index":1667,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["children",{"_index":1921,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chilongoni",{"_index":1656,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chilumani",{"_index":1662,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chinguluni",{"_index":1658,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chipo",{"_index":2135,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chips",{"_index":2138,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chizingo",{"_index":1668,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chizini",{"_index":1663,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choma",{"_index":2196,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choo",{"_index":1965,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choose",{"_index":4406,"title":{},"body":{"license.html":{}}}],["choosing",{"_index":4410,"title":{},"body":{"license.html":{}}}],["christine",{"_index":1614,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["chumvi",{"_index":2201,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["church",{"_index":1945,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chv",{"_index":2283,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cic",{"_index":986,"title":{},"body":{"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"dependencies.html":{},"index.html":{},"license.html":{}}}],["cicada",{"_index":681,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/SidebarComponent.html":{},"index.html":{}}}],["ciccacheurl",{"_index":4522,"title":{},"body":{"miscellaneous/variables.html":{}}}],["cicconvert(event",{"_index":739,"title":{},"body":{"components/AppComponent.html":{}}}],["cicmetaurl",{"_index":4517,"title":{},"body":{"miscellaneous/variables.html":{}}}],["cicregistry",{"_index":2899,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["cictransfer(event",{"_index":735,"title":{},"body":{"components/AppComponent.html":{}}}],["cicussdurl",{"_index":4527,"title":{},"body":{"miscellaneous/variables.html":{}}}],["circumstances",{"_index":4018,"title":{},"body":{"license.html":{}}}],["circumvention",{"_index":4026,"title":{},"body":{"license.html":{}}}],["civil",{"_index":4451,"title":{},"body":{"license.html":{}}}],["claim",{"_index":4311,"title":{},"body":{"license.html":{}}}],["claims",{"_index":4321,"title":{},"body":{"license.html":{}}}],["class",{"_index":66,"title":{"classes/AccountIndex.html":{},"classes/ActivatedRouteStub.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"classes/HttpError.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"classes/TokenServiceStub.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{}},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"coverage.html":{},"license.html":{}}}],["classes",{"_index":68,"title":{},"body":{"classes/AccountIndex.html":{},"classes/ActivatedRouteStub.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"classes/HttpError.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"classes/TokenServiceStub.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{},"overview.html":{}}}],["cleaner",{"_index":1978,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cleaning",{"_index":1971,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clear",{"_index":4128,"title":{},"body":{"license.html":{}}}],["clearkeysinkeyring",{"_index":2580,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["clearly",{"_index":3815,"title":{},"body":{"license.html":{}}}],["cles",{"_index":3480,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["cli",{"_index":3678,"title":{},"body":{"index.html":{}}}],["click",{"_index":1580,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["client",{"_index":1119,"title":{},"body":{"injectables/BlockSyncService.html":{},"interceptors/ErrorInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"dependencies.html":{},"index.html":{},"license.html":{}}}],["clinic",{"_index":2295,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clinical",{"_index":2296,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clipboard",{"_index":3636,"title":{},"body":{"miscellaneous/functions.html":{}}}],["close",{"_index":3226,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["closely",{"_index":4447,"title":{},"body":{"license.html":{}}}],["cloth",{"_index":2329,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["club",{"_index":2377,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clues",{"_index":1391,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["cluster_accountsmodule",{"_index":447,"title":{},"body":{"modules/AccountsModule.html":{},"overview.html":{}}}],["cluster_accountsmodule_declarations",{"_index":448,"title":{},"body":{"modules/AccountsModule.html":{},"overview.html":{}}}],["cluster_accountsmodule_imports",{"_index":449,"title":{},"body":{"modules/AccountsModule.html":{},"overview.html":{}}}],["cluster_adminmodule",{"_index":638,"title":{},"body":{"modules/AdminModule.html":{},"overview.html":{}}}],["cluster_adminmodule_declarations",{"_index":639,"title":{},"body":{"modules/AdminModule.html":{},"overview.html":{}}}],["cluster_adminmodule_imports",{"_index":640,"title":{},"body":{"modules/AdminModule.html":{},"overview.html":{}}}],["cluster_appmodule",{"_index":743,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_bootstrap",{"_index":747,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_declarations",{"_index":746,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_imports",{"_index":745,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_providers",{"_index":744,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_authmodule",{"_index":903,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_authmodule_declarations",{"_index":905,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_authmodule_imports",{"_index":904,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_pagesmodule",{"_index":2850,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_pagesmodule_declarations",{"_index":2852,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_pagesmodule_imports",{"_index":2851,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_settingsmodule",{"_index":3001,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_settingsmodule_declarations",{"_index":3002,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_settingsmodule_imports",{"_index":3003,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_sharedmodule",{"_index":3014,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_sharedmodule_declarations",{"_index":3016,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_sharedmodule_exports",{"_index":3015,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_tokensmodule",{"_index":3164,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_tokensmodule_declarations",{"_index":3166,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_tokensmodule_imports",{"_index":3165,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule",{"_index":3445,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_declarations",{"_index":3448,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_exports",{"_index":3447,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_imports",{"_index":3446,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["coach",{"_index":1883,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cobbler",{"_index":2012,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cobler",{"_index":2011,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["coconut",{"_index":2132,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["code",{"_index":1389,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"components/OrganizationComponent.html":{},"index.html":{},"license.html":{}}}],["coffee",{"_index":2144,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["collapsed",{"_index":606,"title":{},"body":{"components/AdminComponent.html":{}}}],["collect",{"_index":4388,"title":{},"body":{"license.html":{}}}],["collection",{"_index":1980,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["college",{"_index":1893,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["columnstodisplay",{"_index":3142,"title":{},"body":{"components/TokensComponent.html":{}}}],["combination",{"_index":4395,"title":{},"body":{"license.html":{}}}],["combine",{"_index":4392,"title":{},"body":{"license.html":{}}}],["combined",{"_index":4086,"title":{},"body":{"license.html":{}}}],["comes",{"_index":2677,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["command",{"_index":3732,"title":{},"body":{"index.html":{}}}],["commands",{"_index":3937,"title":{},"body":{"license.html":{}}}],["commas",{"_index":3653,"title":{},"body":{"miscellaneous/functions.html":{}}}],["comment",{"_index":3043,"title":{},"body":{"interfaces/Staff.html":{}}}],["commercial",{"_index":4169,"title":{},"body":{"license.html":{}}}],["commitment",{"_index":4337,"title":{},"body":{"license.html":{}}}],["common",{"_index":4163,"title":{},"body":{"license.html":{}}}],["commonmodule",{"_index":458,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["communication",{"_index":3986,"title":{},"body":{"license.html":{}}}],["community",{"_index":2294,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["compilation",{"_index":4082,"title":{},"body":{"license.html":{}}}],["compilation's",{"_index":4091,"title":{},"body":{"license.html":{}}}],["compilations",{"_index":4372,"title":{},"body":{"license.html":{}}}],["compiler",{"_index":3969,"title":{},"body":{"license.html":{}}}],["complete",{"_index":1620,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["compliance",{"_index":4294,"title":{},"body":{"license.html":{}}}],["comply",{"_index":4011,"title":{},"body":{"license.html":{}}}],["component",{"_index":179,"title":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthRoutingModule.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"modules/PagesRoutingModule.html":{},"guards/RoleGuard.html":{},"components/SettingsComponent.html":{},"modules/SettingsRoutingModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsRoutingModule.html":{},"coverage.html":{},"index.html":{},"license.html":{}}}],["component({selector",{"_index":1416,"title":{},"body":{"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{}}}],["component_template",{"_index":295,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["components",{"_index":181,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"overview.html":{}}}],["computer",{"_index":3911,"title":{},"body":{"license.html":{}}}],["computers",{"_index":3859,"title":{},"body":{"license.html":{}}}],["concerning",{"_index":4394,"title":{},"body":{"license.html":{}}}],["concerns",{"_index":4400,"title":{},"body":{"license.html":{}}}],["conditioned",{"_index":4367,"title":{},"body":{"license.html":{}}}],["conditions",{"_index":3870,"title":{},"body":{"license.html":{}}}],["conductor",{"_index":2397,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["config",{"_index":1490,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["config.interceptor.ts",{"_index":1487,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"coverage.html":{}}}],["config.interceptor.ts:10",{"_index":1489,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["config.interceptor.ts:21",{"_index":1491,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["configurations",{"_index":1488,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["confirm",{"_index":1298,"title":{},"body":{"classes/CustomValidator.html":{}}}],["confirm('approve",{"_index":619,"title":{},"body":{"components/AdminComponent.html":{}}}],["confirm('create",{"_index":1245,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["confirm('disapprove",{"_index":622,"title":{},"body":{"components/AdminComponent.html":{}}}],["confirm('new",{"_index":715,"title":{},"body":{"components/AppComponent.html":{}}}],["confirm('set",{"_index":2765,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["confirmpassword",{"_index":1311,"title":{},"body":{"classes/CustomValidator.html":{}}}],["congo",{"_index":1746,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["connection",{"_index":94,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["consequence",{"_index":4282,"title":{},"body":{"license.html":{}}}],["consequential",{"_index":4430,"title":{},"body":{"license.html":{}}}],["conservation",{"_index":1963,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consider",{"_index":4489,"title":{},"body":{"license.html":{}}}],["considered",{"_index":4241,"title":{},"body":{"license.html":{}}}],["consistent",{"_index":4328,"title":{},"body":{"license.html":{}}}],["console.log('here",{"_index":3497,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["console.log(arraysum([1",{"_index":3633,"title":{},"body":{"miscellaneous/functions.html":{}}}],["console.log(await",{"_index":114,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["console.log(copytoclipboard('hello",{"_index":3639,"title":{},"body":{"miscellaneous/functions.html":{}}}],["conspicuously",{"_index":4054,"title":{},"body":{"license.html":{}}}],["const",{"_index":53,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"modules/AccountsRoutingModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"guards/RoleGuard.html":{},"components/SettingsComponent.html":{},"modules/SettingsRoutingModule.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"modules/TokensRoutingModule.html":{},"injectables/TransactionService.html":{},"modules/TransactionsRoutingModule.html":{}}}],["constantly",{"_index":3854,"title":{},"body":{"license.html":{}}}],["constitutes",{"_index":4001,"title":{},"body":{"license.html":{}}}],["construction",{"_index":2008,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["constructor",{"_index":89,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["constructor(@inject(mat_dialog_data",{"_index":1330,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["constructor(authservice",{"_index":658,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/SettingsComponent.html":{}}}],["constructor(blocksyncservice",{"_index":3406,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["constructor(cdr",{"_index":2732,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["constructor(contractaddress",{"_index":90,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["constructor(data",{"_index":1323,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["constructor(dialog",{"_index":1337,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["constructor(elementref",{"_index":1573,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["constructor(errordialogservice",{"_index":1360,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["constructor(formbuilder",{"_index":219,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["constructor(httpclient",{"_index":929,"title":{},"body":{"injectables/AuthService.html":{},"injectables/LocationService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["constructor(initialparams",{"_index":537,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["constructor(keystore",{"_index":2788,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["constructor(logger",{"_index":1539,"title":{},"body":{"injectables/LoggingService.html":{}}}],["constructor(loggingservice",{"_index":1429,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"interceptors/LoggingInterceptor.html":{}}}],["constructor(message",{"_index":1460,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["constructor(private",{"_index":612,"title":{},"body":{"components/AdminComponent.html":{},"guards/AuthGuard.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"directives/PasswordToggleDirective.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"components/TokenDetailsComponent.html":{},"injectables/TokenService.html":{}}}],["constructor(public",{"_index":1346,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["constructor(route",{"_index":3051,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["constructor(router",{"_index":866,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"components/TransactionDetailsComponent.html":{}}}],["constructor(scanfilter",{"_index":2956,"title":{},"body":{"classes/Settings.html":{},"interfaces/W3.html":{}}}],["constructor(tokenservice",{"_index":3144,"title":{},"body":{"components/TokensComponent.html":{}}}],["constructor(transactionservice",{"_index":1088,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["constructor(userservice",{"_index":363,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{}}}],["construed",{"_index":4376,"title":{},"body":{"license.html":{}}}],["consult",{"_index":1892,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consultant",{"_index":1891,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consumer",{"_index":4147,"title":{},"body":{"license.html":{}}}],["contact",{"_index":4472,"title":{},"body":{"license.html":{}}}],["contain",{"_index":1390,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"license.html":{}}}],["contained",{"_index":3721,"title":{},"body":{"index.html":{}}}],["containing",{"_index":4224,"title":{},"body":{"license.html":{}}}],["contains",{"_index":881,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"index.html":{},"license.html":{}}}],["content",{"_index":721,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"license.html":{}}}],["content?.classlist.add('active",{"_index":731,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["content?.classlist.contains('active",{"_index":730,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["content?.classlist.remove('active",{"_index":733,"title":{},"body":{"components/AppComponent.html":{}}}],["content?.classlist.toggle('active",{"_index":1591,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["contents",{"_index":4332,"title":{},"body":{"license.html":{}}}],["context",{"_index":3963,"title":{},"body":{"license.html":{}}}],["continue",{"_index":4190,"title":{},"body":{"license.html":{}}}],["continued",{"_index":4177,"title":{},"body":{"license.html":{}}}],["contract",{"_index":59,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["contract's",{"_index":98,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["contractaddress",{"_index":80,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["contracts",{"_index":1140,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["contractual",{"_index":4238,"title":{},"body":{"license.html":{}}}],["contradict",{"_index":4382,"title":{},"body":{"license.html":{}}}],["contrast",{"_index":3762,"title":{},"body":{"license.html":{}}}],["contributor",{"_index":4318,"title":{},"body":{"license.html":{}}}],["contributor's",{"_index":4320,"title":{},"body":{"license.html":{}}}],["control",{"_index":1275,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"license.html":{}}}],["control.dirty",{"_index":1284,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["control.get('confirmpassword').seterrors",{"_index":1313,"title":{},"body":{"classes/CustomValidator.html":{}}}],["control.get('confirmpassword').value",{"_index":1312,"title":{},"body":{"classes/CustomValidator.html":{}}}],["control.get('password').value",{"_index":1310,"title":{},"body":{"classes/CustomValidator.html":{}}}],["control.invalid",{"_index":1283,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["control.touched",{"_index":1285,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["control.value",{"_index":1315,"title":{},"body":{"classes/CustomValidator.html":{}}}],["controlled",{"_index":4323,"title":{},"body":{"license.html":{}}}],["controls",{"_index":1261,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["convenient",{"_index":3929,"title":{},"body":{"license.html":{}}}],["conversion",{"_index":740,"title":{"interfaces/Conversion.html":{}},"body":{"components/AppComponent.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"coverage.html":{}}}],["conversion.fromvalue",{"_index":3327,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.recipient",{"_index":3333,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.sender",{"_index":3332,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.tovalue",{"_index":3329,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.tx.txhash",{"_index":3325,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.type",{"_index":3326,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversions",{"_index":2476,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["converted",{"_index":3649,"title":{},"body":{"miscellaneous/functions.html":{}}}],["converting",{"_index":3651,"title":{},"body":{"miscellaneous/functions.html":{}}}],["converts",{"_index":3664,"title":{},"body":{"miscellaneous/functions.html":{}}}],["converttoparammap",{"_index":549,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["convey",{"_index":3918,"title":{},"body":{"license.html":{}}}],["conveyance",{"_index":4360,"title":{},"body":{"license.html":{}}}],["conveyed",{"_index":4185,"title":{},"body":{"license.html":{}}}],["conveying",{"_index":3924,"title":{},"body":{"license.html":{}}}],["conveys",{"_index":4237,"title":{},"body":{"license.html":{}}}],["cook",{"_index":2142,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["copied",{"_index":3225,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"miscellaneous/functions.html":{}}}],["copies",{"_index":3635,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{}}}],["copy",{"_index":3640,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{}}}],["copy.ts",{"_index":3520,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["copyaddress",{"_index":3188,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copyaddress(address",{"_index":3197,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copying",{"_index":3871,"title":{},"body":{"license.html":{}}}],["copyleft",{"_index":3753,"title":{},"body":{"license.html":{}}}],["copyright",{"_index":3739,"title":{},"body":{"license.html":{}}}],["copyrightable",{"_index":3881,"title":{},"body":{"license.html":{}}}],["copyrighted",{"_index":4015,"title":{},"body":{"license.html":{}}}],["copytoclipboard",{"_index":3206,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["copytoclipboard(address",{"_index":3223,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copytoclipboard(text",{"_index":3634,"title":{},"body":{"miscellaneous/functions.html":{}}}],["corn",{"_index":2143,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["correction",{"_index":4425,"title":{},"body":{"license.html":{}}}],["corresponding",{"_index":3972,"title":{},"body":{"license.html":{}}}],["cosmetics",{"_index":2302,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cost",{"_index":4115,"title":{},"body":{"license.html":{}}}],["counsellor",{"_index":1925,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["count",{"_index":172,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/TokenService.html":{}}}],["counterclaim",{"_index":4312,"title":{},"body":{"license.html":{}}}],["counties",{"_index":1858,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["countries",{"_index":3915,"title":{},"body":{"license.html":{}}}],["country",{"_index":1953,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["countrycode",{"_index":2762,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["county",{"_index":1954,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["course",{"_index":4484,"title":{},"body":{"license.html":{}}}],["court",{"_index":4381,"title":{},"body":{"license.html":{}}}],["courts",{"_index":4446,"title":{},"body":{"license.html":{}}}],["covenant",{"_index":4340,"title":{},"body":{"license.html":{}}}],["coverage",{"_index":3508,"title":{"coverage.html":{}},"body":{"coverage.html":{},"license.html":{}}}],["covered",{"_index":3899,"title":{},"body":{"license.html":{}}}],["create",{"_index":93,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"index.html":{}}}],["createaccountcomponent",{"_index":307,"title":{"components/CreateAccountComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["created",{"_index":381,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{}}}],["createform",{"_index":1214,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["createformstub",{"_index":1216,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["credentials",{"_index":2988,"title":{},"body":{"components/SettingsComponent.html":{}}}],["credit",{"_index":2312,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["crisps",{"_index":2130,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["criterion",{"_index":3942,"title":{},"body":{"license.html":{}}}],["cross",{"_index":1906,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["csv",{"_index":3645,"title":{},"body":{"miscellaneous/functions.html":{}}}],["csv.ts",{"_index":3523,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["cubic",{"_index":608,"title":{},"body":{"components/AdminComponent.html":{}}}],["curated",{"_index":1605,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cure",{"_index":4272,"title":{},"body":{"license.html":{}}}],["currency",{"_index":3063,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["currentuser",{"_index":2917,"title":{},"body":{"guards/RoleGuard.html":{}}}],["custom",{"_index":1257,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{}}}],["customarily",{"_index":4106,"title":{},"body":{"license.html":{}}}],["customer",{"_index":4111,"title":{},"body":{"license.html":{}}}],["customerrorstatematcher",{"_index":234,"title":{"classes/CustomErrorStateMatcher.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"components/OrganizationComponent.html":{},"coverage.html":{}}}],["customevent",{"_index":667,"title":{},"body":{"components/AppComponent.html":{}}}],["customevent('cic_convert",{"_index":1162,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["customevent('cic_transfer",{"_index":1160,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["customvalidator",{"_index":1286,"title":{"classes/CustomValidator.html":{}},"body":{"classes/CustomValidator.html":{},"coverage.html":{}}}],["cyber",{"_index":1914,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["d",{"_index":2977,"title":{},"body":{"components/SettingsComponent.html":{},"license.html":{}}}],["d.getdate()}/${d.getmonth()}/${d.getfullyear",{"_index":2979,"title":{},"body":{"components/SettingsComponent.html":{}}}],["dagaa",{"_index":2146,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dagoreti",{"_index":1750,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dagoretti",{"_index":1792,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["daktari",{"_index":2285,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["damages",{"_index":4428,"title":{},"body":{"license.html":{}}}],["dandora",{"_index":1751,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["danger",{"_index":3862,"title":{},"body":{"license.html":{}}}],["danish",{"_index":1932,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dashboard",{"_index":3034,"title":{},"body":{"components/SidebarComponent.html":{}}}],["data",{"_index":9,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Transaction.html":{},"injectables/TransactionService.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["data.message",{"_index":1331,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["data?.status",{"_index":1332,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["datafile",{"_index":4536,"title":{},"body":{"miscellaneous/variables.html":{}}}],["datasource",{"_index":352,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["datasource.filter",{"_index":3432,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["datatables",{"_index":469,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AppModule.html":{},"modules/TransactionsModule.html":{},"dependencies.html":{}}}],["datatables.net",{"_index":3596,"title":{},"body":{"dependencies.html":{}}}],["datatablesmodule",{"_index":467,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AppModule.html":{},"modules/TransactionsModule.html":{}}}],["date",{"_index":436,"title":{},"body":{"components/AccountsComponent.html":{},"components/SettingsComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["date.now",{"_index":55,"title":{},"body":{"interfaces/AccountDetails.html":{},"interceptors/LoggingInterceptor.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["date_registered",{"_index":16,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["dateregistered",{"_index":3498,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["dawa",{"_index":2286,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["daycare",{"_index":1898,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["days",{"_index":4268,"title":{},"body":{"license.html":{}}}],["debug",{"_index":1560,"title":{},"body":{"injectables/LoggingService.html":{}}}],["december",{"_index":4038,"title":{},"body":{"license.html":{}}}],["decide",{"_index":4408,"title":{},"body":{"license.html":{}}}],["decimals",{"_index":2450,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["declarations",{"_index":444,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"overview.html":{}}}],["declining",{"_index":4230,"title":{},"body":{"license.html":{}}}],["decorators",{"_index":387,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/ErrorDialogComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["deemed",{"_index":4028,"title":{},"body":{"license.html":{}}}],["default",{"_index":52,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"injectables/RegistryService.html":{},"directives/RouterLinkDirectiveStub.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"interfaces/Signature.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["defaultaccount",{"_index":54,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"injectables/TransactionService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["defaultpagesize",{"_index":353,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{}}}],["defaults",{"_index":3652,"title":{},"body":{"miscellaneous/functions.html":{}}}],["defective",{"_index":4421,"title":{},"body":{"license.html":{}}}],["defenses",{"_index":4379,"title":{},"body":{"license.html":{}}}],["define",{"_index":1042,"title":{},"body":{"injectables/AuthService.html":{}}}],["defined",{"_index":91,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["defines",{"_index":1259,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{}}}],["defining",{"_index":4537,"title":{},"body":{"miscellaneous/variables.html":{}}}],["definition",{"_index":3979,"title":{},"body":{"license.html":{}}}],["definitions",{"_index":3875,"title":{},"body":{"license.html":{}}}],["delay",{"_index":1601,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["delayed",{"_index":2482,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["delimiter",{"_index":3644,"title":{},"body":{"miscellaneous/functions.html":{}}}],["dematerialize",{"_index":1602,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["demo",{"_index":1917,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["denied",{"_index":4192,"title":{},"body":{"license.html":{}}}],["denominated",{"_index":4338,"title":{},"body":{"license.html":{}}}],["denote",{"_index":1455,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["deny",{"_index":3827,"title":{},"body":{"license.html":{}}}],["denying",{"_index":3790,"title":{},"body":{"license.html":{}}}],["dependencies",{"_index":443,"title":{"dependencies.html":{}},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"dependencies.html":{},"overview.html":{}}}],["depending",{"_index":131,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["deployed",{"_index":95,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["deprive",{"_index":4347,"title":{},"body":{"license.html":{}}}],["dera",{"_index":2345,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dereva",{"_index":2396,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["description",{"_index":7,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Category.html":{},"interfaces/Conversion.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"classes/Settings.html":{},"interfaces/Signature.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"classes/TokenRegistry.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"interfaces/W3.html":{},"miscellaneous/functions.html":{}}}],["design",{"_index":2016,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["designated",{"_index":4123,"title":{},"body":{"license.html":{}}}],["designed",{"_index":3758,"title":{},"body":{"license.html":{}}}],["destination",{"_index":3253,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["destinationtoken",{"_index":1195,"title":{},"body":{"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["detached",{"_index":2696,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["detail",{"_index":1161,"title":{},"body":{"injectables/BlockSyncService.html":{},"license.html":{}}}],["details",{"_index":632,"title":{},"body":{"components/AdminComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{},"license.html":{}}}],["details'},{'name",{"_index":297,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["details.component",{"_index":466,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{}}}],["details.component.html",{"_index":3050,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["details.component.scss",{"_index":3049,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["details.component.ts",{"_index":3048,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{},"coverage.html":{}}}],["details.component.ts:14",{"_index":3054,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["details.component.ts:15",{"_index":3196,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:16",{"_index":3205,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:17",{"_index":3204,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:18",{"_index":3195,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:26",{"_index":3199,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:27",{"_index":3055,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["details.component.ts:38",{"_index":3202,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:42",{"_index":3201,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:46",{"_index":3203,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:50",{"_index":3200,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:59",{"_index":3198,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.the",{"_index":4481,"title":{},"body":{"license.html":{}}}],["details/account",{"_index":465,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"coverage.html":{}}}],["details/token",{"_index":3047,"title":{},"body":{"components/TokenDetailsComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"coverage.html":{}}}],["details/transaction",{"_index":3184,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"modules/TransactionsModule.html":{},"coverage.html":{}}}],["detergent",{"_index":2343,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["detergents",{"_index":2344,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["determining",{"_index":4158,"title":{},"body":{"license.html":{}}}],["dev",{"_index":3686,"title":{},"body":{"index.html":{}}}],["develop",{"_index":4455,"title":{},"body":{"license.html":{}}}],["developers",{"_index":3805,"title":{},"body":{"license.html":{}}}],["development",{"_index":3684,"title":{},"body":{"index.html":{},"license.html":{}}}],["devices",{"_index":3826,"title":{},"body":{"license.html":{}}}],["dgst",{"_index":2782,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["dhobi",{"_index":2014,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dialog",{"_index":1320,"title":{},"body":{"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["dialog'},{'name",{"_index":311,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["dialog.component",{"_index":1345,"title":{},"body":{"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{}}}],["dialog.component.html",{"_index":1322,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.scss",{"_index":1321,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.ts",{"_index":1319,"title":{},"body":{"components/ErrorDialogComponent.html":{},"coverage.html":{}}}],["dialog.component.ts:10",{"_index":1324,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.ts:11",{"_index":1326,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.service",{"_index":962,"title":{},"body":{"injectables/AuthService.html":{}}}],["dialog.service.ts",{"_index":1334,"title":{},"body":{"injectables/ErrorDialogService.html":{},"coverage.html":{}}}],["dialog.service.ts:11",{"_index":1342,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog.service.ts:13",{"_index":1341,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog.service.ts:9",{"_index":1339,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog/error",{"_index":1318,"title":{},"body":{"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{},"coverage.html":{}}}],["dialogref",{"_index":1348,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialogref.afterclosed().subscribe",{"_index":1351,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["diani",{"_index":1814,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dictates",{"_index":863,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["diesel",{"_index":2440,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["differ",{"_index":4399,"title":{},"body":{"license.html":{}}}],["different",{"_index":1434,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["differently",{"_index":4218,"title":{},"body":{"license.html":{}}}],["digest",{"_index":45,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["direction",{"_index":4014,"title":{},"body":{"license.html":{}}}],["directions",{"_index":4129,"title":{},"body":{"license.html":{}}}],["directive",{"_index":293,"title":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["directives",{"_index":337,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"overview.html":{}}}],["directive|pipe|service|class|guard|interface|enum|module",{"_index":3695,"title":{},"body":{"index.html":{}}}],["directly",{"_index":3904,"title":{},"body":{"license.html":{}}}],["directory",{"_index":1250,"title":{},"body":{"components/CreateAccountComponent.html":{},"index.html":{}}}],["directoryentry",{"_index":1233,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["disableconsolelogging",{"_index":782,"title":{},"body":{"modules/AppModule.html":{}}}],["disapprove",{"_index":630,"title":{},"body":{"components/AdminComponent.html":{}}}],["disapproveaction",{"_index":565,"title":{},"body":{"components/AdminComponent.html":{}}}],["disapproveaction(action",{"_index":573,"title":{},"body":{"components/AdminComponent.html":{}}}],["disburse",{"_index":1612,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["disbursement",{"_index":2760,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["disbursements",{"_index":2477,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["disclaim",{"_index":4049,"title":{},"body":{"license.html":{}}}],["disclaimer",{"_index":4411,"title":{},"body":{"license.html":{}}}],["disclaiming",{"_index":4215,"title":{},"body":{"license.html":{}}}],["discriminatory",{"_index":4364,"title":{},"body":{"license.html":{}}}],["dispatcher",{"_index":1372,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["dispensary",{"_index":2279,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["display",{"_index":4081,"title":{},"body":{"license.html":{}}}],["displayed",{"_index":4223,"title":{},"body":{"license.html":{}}}],["displayedcolumns",{"_index":354,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{}}}],["displaying",{"_index":1264,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"interceptors/ErrorInterceptor.html":{}}}],["displays",{"_index":3926,"title":{},"body":{"license.html":{}}}],["dist",{"_index":3708,"title":{},"body":{"index.html":{}}}],["distinguishing",{"_index":4401,"title":{},"body":{"license.html":{}}}],["distribute",{"_index":3748,"title":{},"body":{"license.html":{}}}],["distributed",{"_index":4468,"title":{},"body":{"license.html":{}}}],["distributing",{"_index":4368,"title":{},"body":{"license.html":{}}}],["distribution",{"_index":3872,"title":{},"body":{"license.html":{}}}],["divone",{"_index":847,"title":{},"body":{"components/AuthComponent.html":{}}}],["divtwo",{"_index":849,"title":{},"body":{"components/AuthComponent.html":{}}}],["doctor",{"_index":2284,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["document",{"_index":3750,"title":{},"body":{"license.html":{}}}],["document.getelementbyid('content",{"_index":722,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["document.getelementbyid('one",{"_index":848,"title":{},"body":{"components/AuthComponent.html":{}}}],["document.getelementbyid('one').style.display",{"_index":1046,"title":{},"body":{"injectables/AuthService.html":{}}}],["document.getelementbyid('sidebar",{"_index":720,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["document.getelementbyid('sidebarcollapse",{"_index":724,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["document.getelementbyid('state').innerhtml",{"_index":973,"title":{},"body":{"injectables/AuthService.html":{}}}],["document.getelementbyid('two",{"_index":850,"title":{},"body":{"components/AuthComponent.html":{}}}],["document.getelementbyid('two').style.display",{"_index":1047,"title":{},"body":{"injectables/AuthService.html":{}}}],["document.getelementbyid(this.iconid",{"_index":2882,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["document.getelementbyid(this.id",{"_index":2880,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["documentation",{"_index":3509,"title":{},"body":{"coverage.html":{}}}],["documented",{"_index":4201,"title":{},"body":{"license.html":{}}}],["doe",{"_index":3461,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["doesn\\'t",{"_index":1059,"title":{},"body":{"injectables/AuthService.html":{}}}],["dofilter",{"_index":358,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["dofilter(value",{"_index":366,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["doing",{"_index":2678,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["dom",{"_index":184,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["domains",{"_index":3846,"title":{},"body":{"license.html":{}}}],["domsanitizer",{"_index":2949,"title":{},"body":{"pipes/SafePipe.html":{}}}],["don't",{"_index":3703,"title":{},"body":{"index.html":{}}}],["donald",{"_index":3475,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["donholm",{"_index":1749,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donhom",{"_index":1753,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donor",{"_index":1948,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donut",{"_index":2147,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["doti",{"_index":1669,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["double",{"_index":527,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["doubtful",{"_index":4159,"title":{},"body":{"license.html":{}}}],["dough",{"_index":2148,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["download",{"_index":3647,"title":{},"body":{"miscellaneous/functions.html":{}}}],["downloadcsv",{"_index":359,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["downloaded",{"_index":3650,"title":{},"body":{"miscellaneous/functions.html":{}}}],["downstream",{"_index":4291,"title":{},"body":{"license.html":{}}}],["driver",{"_index":2395,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dt",{"_index":3598,"title":{},"body":{"dependencies.html":{}}}],["duka",{"_index":2335,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["durable",{"_index":4105,"title":{},"body":{"license.html":{}}}],["duration",{"_index":3227,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["dwelling",{"_index":4157,"title":{},"body":{"license.html":{}}}],["dynamic",{"_index":3580,"title":{},"body":{"dependencies.html":{}}}],["dynamically",{"_index":3981,"title":{},"body":{"license.html":{}}}],["dzivani",{"_index":1671,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dzovuni",{"_index":1672,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dzugwe",{"_index":1670,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["e",{"_index":674,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["e.matches",{"_index":727,"title":{},"body":{"components/AppComponent.html":{}}}],["e2e",{"_index":3719,"title":{},"body":{"index.html":{}}}],["each",{"_index":3884,"title":{},"body":{"license.html":{}}}],["earlier",{"_index":3897,"title":{},"body":{"license.html":{}}}],["east",{"_index":1786,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["economics",{"_index":1039,"title":{},"body":{"injectables/AuthService.html":{},"components/FooterComponent.html":{},"license.html":{}}}],["education",{"_index":1881,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["educator",{"_index":1923,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["effect",{"_index":4444,"title":{},"body":{"license.html":{}}}],["effected",{"_index":4047,"title":{},"body":{"license.html":{}}}],["effective",{"_index":4029,"title":{},"body":{"license.html":{}}}],["effectively",{"_index":3864,"title":{},"body":{"license.html":{}}}],["efforts",{"_index":4305,"title":{},"body":{"license.html":{}}}],["egg",{"_index":2238,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["eimu",{"_index":1903,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["elapsedtime",{"_index":1524,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["elder",{"_index":1950,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["eldoret",{"_index":1865,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electrian",{"_index":2003,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electricals",{"_index":2330,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electrician",{"_index":2093,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electronic",{"_index":4473,"title":{},"body":{"license.html":{}}}],["electronics",{"_index":2090,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["element",{"_index":292,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["element.style.display",{"_index":855,"title":{},"body":{"components/AuthComponent.html":{}}}],["elementref",{"_index":1574,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["elim",{"_index":1902,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["email",{"_index":35,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"components/SettingsComponent.html":{},"interfaces/Signature.html":{},"interfaces/Staff.html":{},"miscellaneous/variables.html":{}}}],["embakasi",{"_index":1784,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["embakassi",{"_index":1783,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["embodied",{"_index":4100,"title":{},"body":{"license.html":{}}}],["emergency",{"_index":2306,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["employer",{"_index":4486,"title":{},"body":{"license.html":{}}}],["enable",{"_index":3961,"title":{},"body":{"license.html":{}}}],["enabled",{"_index":785,"title":{},"body":{"modules/AppModule.html":{}}}],["enables",{"_index":3920,"title":{},"body":{"license.html":{}}}],["end",{"_index":3718,"title":{},"body":{"index.html":{},"license.html":{}}}],["endpoint",{"_index":694,"title":{},"body":{"components/AppComponent.html":{}}}],["enforce",{"_index":4339,"title":{},"body":{"license.html":{}}}],["enforcing",{"_index":4051,"title":{},"body":{"license.html":{}}}],["engine",{"_index":46,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"classes/Settings.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/W3.html":{}}}],["engineer",{"_index":2050,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["enroller",{"_index":1611,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["ensure",{"_index":2487,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["enter",{"_index":858,"title":{},"body":{"components/AuthComponent.html":{}}}],["entered",{"_index":4373,"title":{},"body":{"license.html":{}}}],["entire",{"_index":4072,"title":{},"body":{"license.html":{}}}],["entirely",{"_index":4390,"title":{},"body":{"license.html":{}}}],["entity",{"_index":4295,"title":{},"body":{"license.html":{}}}],["entry",{"_index":1251,"title":{},"body":{"components/CreateAccountComponent.html":{},"classes/TokenRegistry.html":{}}}],["entry(2",{"_index":3097,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["entry(serial",{"_index":3093,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["env",{"_index":1531,"title":{},"body":{"injectables/LoggingService.html":{},"index.html":{}}}],["env.example",{"_index":3723,"title":{},"body":{"index.html":{}}}],["env.ts",{"_index":3701,"title":{},"body":{"index.html":{}}}],["envelope",{"_index":3295,"title":{},"body":{"injectables/TransactionService.html":{}}}],["envelope.fromjson(json.stringify(account)).unwrap().m.data",{"_index":3340,"title":{},"body":{"injectables/TransactionService.html":{}}}],["environment",{"_index":148,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AppModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{},"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["environment.cicmetaurl",{"_index":979,"title":{},"body":{"injectables/AuthService.html":{}}}],["environment.loggingurl}/api/logs",{"_index":781,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.loglevel",{"_index":777,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.prod.ts",{"_index":3728,"title":{},"body":{"index.html":{}}}],["environment.production",{"_index":786,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.registryaddress",{"_index":2901,"title":{},"body":{"injectables/RegistryService.html":{}}}],["environment.serverloglevel",{"_index":779,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.ts",{"_index":3727,"title":{},"body":{"index.html":{}}}],["environment.web3provider",{"_index":1126,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["equivalent",{"_index":4004,"title":{},"body":{"license.html":{}}}],["err",{"_index":1063,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["err.error",{"_index":1381,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.error.message",{"_index":1386,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.message",{"_index":1065,"title":{},"body":{"injectables/AuthService.html":{}}}],["err.status",{"_index":1394,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.statustext",{"_index":1066,"title":{},"body":{"injectables/AuthService.html":{}}}],["erroneously",{"_index":3825,"title":{},"body":{"license.html":{}}}],["error",{"_index":310,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["error's",{"_index":1458,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error('login",{"_index":992,"title":{},"body":{"injectables/AuthService.html":{}}}],["error('the",{"_index":1053,"title":{},"body":{"injectables/AuthService.html":{}}}],["error(`${res.statustext",{"_index":1075,"title":{},"body":{"injectables/AuthService.html":{}}}],["error(message",{"_index":1468,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["error.message",{"_index":1466,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.stack",{"_index":1470,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.status",{"_index":1032,"title":{},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.tostring",{"_index":1467,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errordialogcomponent",{"_index":309,"title":{"components/ErrorDialogComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["errordialogservice",{"_index":661,"title":{"injectables/ErrorDialogService.html":{}},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"coverage.html":{}}}],["errorevent",{"_index":1382,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["errorhandler",{"_index":757,"title":{},"body":{"modules/AppModule.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errorinterceptor",{"_index":749,"title":{"interceptors/ErrorInterceptor.html":{}},"body":{"modules/AppModule.html":{},"interceptors/ErrorInterceptor.html":{},"coverage.html":{},"overview.html":{}}}],["errormessage",{"_index":1380,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["errors",{"_index":1297,"title":{},"body":{"classes/CustomValidator.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errorstatematcher",{"_index":1266,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["errortracestring",{"_index":1443,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errortracestring.includes('/src/app",{"_index":1474,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errortracestring.includes(whitelistsentence",{"_index":1476,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["essential",{"_index":3964,"title":{},"body":{"license.html":{}}}],["establish",{"_index":154,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["eth",{"_index":2774,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ethereum",{"_index":3500,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["ethers",{"_index":3300,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{}}}],["ethiopia",{"_index":2775,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["even",{"_index":2488,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["event",{"_index":665,"title":{},"body":{"components/AppComponent.html":{},"interceptors/LoggingInterceptor.html":{},"license.html":{}}}],["event.detail.tx",{"_index":736,"title":{},"body":{"components/AppComponent.html":{}}}],["eventemitter",{"_index":3115,"title":{},"body":{"injectables/TokenService.html":{}}}],["events",{"_index":1514,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["everyone",{"_index":3746,"title":{},"body":{"license.html":{}}}],["evm",{"_index":27,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["exact",{"_index":3894,"title":{},"body":{"license.html":{}}}],["example",{"_index":79,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"classes/TokenRegistry.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["except",{"_index":3909,"title":{},"body":{"license.html":{}}}],["exception",{"_index":1422,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["exceptions",{"_index":4205,"title":{},"body":{"license.html":{}}}],["exchange",{"_index":3229,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["excluded",{"_index":4146,"title":{},"body":{"license.html":{}}}],["excluding",{"_index":4377,"title":{},"body":{"license.html":{}}}],["exclusion",{"_index":4464,"title":{},"body":{"license.html":{}}}],["exclusive",{"_index":4329,"title":{},"body":{"license.html":{}}}],["exclusively",{"_index":4009,"title":{},"body":{"license.html":{}}}],["excuse",{"_index":4383,"title":{},"body":{"license.html":{}}}],["executable",{"_index":3952,"title":{},"body":{"license.html":{}}}],["execute",{"_index":3716,"title":{},"body":{"index.html":{},"license.html":{}}}],["executing",{"_index":3910,"title":{},"body":{"license.html":{}}}],["exercise",{"_index":4306,"title":{},"body":{"license.html":{}}}],["exercising",{"_index":4048,"title":{},"body":{"license.html":{}}}],["existing",{"_index":1280,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["expand",{"_index":584,"title":{},"body":{"components/AdminComponent.html":{}}}],["expandcollapse",{"_index":566,"title":{},"body":{"components/AdminComponent.html":{}}}],["expandcollapse(row",{"_index":577,"title":{},"body":{"components/AdminComponent.html":{}}}],["expected",{"_index":4167,"title":{},"body":{"license.html":{}}}],["expects",{"_index":4166,"title":{},"body":{"license.html":{}}}],["expert",{"_index":1918,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["explains",{"_index":3816,"title":{},"body":{"license.html":{}}}],["explicitly",{"_index":3997,"title":{},"body":{"license.html":{}}}],["export",{"_index":62,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Category.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{}}}],["exportcsv",{"_index":396,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["exportcsv(arraydata",{"_index":3642,"title":{},"body":{"miscellaneous/functions.html":{}}}],["exportcsv(this.accounts",{"_index":429,"title":{},"body":{"components/AccountsComponent.html":{}}}],["exportcsv(this.actions",{"_index":625,"title":{},"body":{"components/AdminComponent.html":{}}}],["exportcsv(this.tokens",{"_index":3162,"title":{},"body":{"components/TokensComponent.html":{}}}],["exportcsv(this.transactions",{"_index":3436,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["exportcsv(this.trustedusers",{"_index":2983,"title":{},"body":{"components/SettingsComponent.html":{}}}],["exports",{"_index":61,"title":{},"body":{"interfaces/AccountDetails.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Category.html":{},"interfaces/Conversion.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"classes/Settings.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"interfaces/Signature.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"interfaces/Transaction.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"interfaces/W3.html":{},"miscellaneous/functions.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["express",{"_index":4335,"title":{},"body":{"license.html":{}}}],["expressed",{"_index":4413,"title":{},"body":{"license.html":{}}}],["expression",{"_index":1306,"title":{},"body":{"classes/CustomValidator.html":{}}}],["expressly",{"_index":4252,"title":{},"body":{"license.html":{}}}],["extend",{"_index":3849,"title":{},"body":{"license.html":{}}}],["extended",{"_index":4363,"title":{},"body":{"license.html":{}}}],["extends",{"_index":1424,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["extensions",{"_index":4085,"title":{},"body":{"license.html":{}}}],["extent",{"_index":3928,"title":{},"body":{"license.html":{}}}],["external",{"_index":3503,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["eye",{"_index":2887,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["f",{"_index":4235,"title":{},"body":{"license.html":{}}}],["facilitator",{"_index":1934,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["facilities",{"_index":4010,"title":{},"body":{"license.html":{}}}],["facing",{"_index":1406,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["fagio",{"_index":1967,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["failed",{"_index":1021,"title":{},"body":{"injectables/AuthService.html":{},"classes/CustomValidator.html":{},"interceptors/LoggingInterceptor.html":{}}}],["failedpinattempts",{"_index":3466,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["fails",{"_index":4265,"title":{},"body":{"license.html":{}}}],["failure",{"_index":4438,"title":{},"body":{"license.html":{}}}],["fair",{"_index":4003,"title":{},"body":{"license.html":{}}}],["faith",{"_index":1937,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["false",{"_index":127,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"modules/AppModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"components/CreateAccountComponent.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"guards/RoleGuard.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["family",{"_index":4152,"title":{},"body":{"license.html":{}}}],["family/surname",{"_index":1249,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["farm",{"_index":1985,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["farmer",{"_index":1986,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["farming",{"_index":1984,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fashion",{"_index":3891,"title":{},"body":{"license.html":{}}}],["favor",{"_index":4161,"title":{},"body":{"license.html":{}}}],["feature",{"_index":3697,"title":{},"body":{"index.html":{},"license.html":{}}}],["fee",{"_index":3798,"title":{},"body":{"license.html":{}}}],["feels",{"_index":402,"title":{},"body":{"components/AccountsComponent.html":{}}}],["female",{"_index":2442,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["fetch",{"_index":150,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["fetch(environment.publickeysurl).then((res",{"_index":1072,"title":{},"body":{"injectables/AuthService.html":{}}}],["fetched",{"_index":3089,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["fetcher",{"_index":1083,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["fetcher(settings",{"_index":1096,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["fetching",{"_index":3655,"title":{},"body":{"miscellaneous/functions.html":{}}}],["fia",{"_index":3485,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["field",{"_index":482,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"classes/CustomValidator.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["file",{"_index":5,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Category.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{}}}],["filegetter",{"_index":2891,"title":{},"body":{"injectables/RegistryService.html":{}}}],["filename",{"_index":3643,"title":{},"body":{"miscellaneous/functions.html":{}}}],["files",{"_index":3691,"title":{},"body":{"index.html":{},"license.html":{}}}],["filter",{"_index":432,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["filter_rounds",{"_index":1168,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["filteraccounts",{"_index":360,"title":{},"body":{"components/AccountsComponent.html":{}}}],["filterrounds",{"_index":1192,"title":{},"body":{"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["filters",{"_index":1167,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["filtertransactions",{"_index":3403,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["finalize",{"_index":1518,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["finally",{"_index":3323,"title":{},"body":{"injectables/TransactionService.html":{},"license.html":{}}}],["finance",{"_index":2313,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["find",{"_index":2664,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["fingerprint",{"_index":2785,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["fire",{"_index":2427,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["firewood",{"_index":2428,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["firm",{"_index":2118,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["first",{"_index":397,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"components/TokenDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["fish",{"_index":2157,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fitness",{"_index":4416,"title":{},"body":{"license.html":{}}}],["fix",{"_index":2837,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["fixed",{"_index":4104,"title":{},"body":{"license.html":{}}}],["flag",{"_index":2811,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["flow",{"_index":3987,"title":{},"body":{"license.html":{}}}],["flowers",{"_index":2370,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fn",{"_index":37,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["follow",{"_index":3874,"title":{},"body":{"license.html":{}}}],["following",{"_index":4333,"title":{},"body":{"license.html":{}}}],["foo",{"_index":2460,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["food",{"_index":2120,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["footballer",{"_index":2070,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["footer",{"_index":1409,"title":{},"body":{"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{}}}],["footer'},{'name",{"_index":313,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["footer.component.html",{"_index":1411,"title":{},"body":{"components/FooterComponent.html":{}}}],["footer.component.scss",{"_index":1410,"title":{},"body":{"components/FooterComponent.html":{}}}],["footercomponent",{"_index":312,"title":{"components/FooterComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["footerstubcomponent",{"_index":314,"title":{"components/FooterStubComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["forbid",{"_index":4046,"title":{},"body":{"license.html":{}}}],["forbidden",{"_index":1402,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["force",{"_index":4006,"title":{},"body":{"license.html":{}}}],["form",{"_index":1260,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"license.html":{}}}],["form.submitted",{"_index":1282,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["format",{"_index":3646,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{}}}],["formbuilder",{"_index":220,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["formcontrol",{"_index":1269,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["formgroup",{"_index":229,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"components/OrganizationComponent.html":{}}}],["formgroupdirective",{"_index":1270,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["forms",{"_index":4096,"title":{},"body":{"license.html":{}}}],["forward",{"_index":2494,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["forwarded",{"_index":1492,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{}}}],["found",{"_index":281,"title":{},"body":{"components/AccountSearchComponent.html":{},"index.html":{},"license.html":{}}}],["foundation",{"_index":3743,"title":{},"body":{"license.html":{}}}],["free",{"_index":3741,"title":{},"body":{"license.html":{}}}],["freedom",{"_index":3761,"title":{},"body":{"license.html":{}}}],["freedoms",{"_index":3801,"title":{},"body":{"license.html":{}}}],["freelance",{"_index":2088,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fromhex",{"_index":3302,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromhex(methodsignature",{"_index":3357,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromhex(strip0x(transferauthaddress",{"_index":3368,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromvalue",{"_index":1197,"title":{},"body":{"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["fruit",{"_index":2155,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fruits",{"_index":2156,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fua",{"_index":2039,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuata",{"_index":1780,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuel",{"_index":2421,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuel/energy",{"_index":2413,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fulfilling",{"_index":4032,"title":{},"body":{"license.html":{}}}],["full",{"_index":511,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{},"license.html":{}}}],["function",{"_index":2498,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"coverage.html":{}}}],["functioning",{"_index":4178,"title":{},"body":{"license.html":{}}}],["functions",{"_index":2524,"title":{"miscellaneous/functions.html":{}},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/functions.html":{}}}],["fundamentally",{"_index":3831,"title":{},"body":{"license.html":{}}}],["fundi",{"_index":2018,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["furniture",{"_index":2379,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["further",{"_index":3729,"title":{},"body":{"index.html":{},"license.html":{}}}],["future",{"_index":3851,"title":{},"body":{"license.html":{}}}],["g",{"_index":3682,"title":{},"body":{"index.html":{}}}],["g.e",{"_index":1835,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gandini",{"_index":1687,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["garage",{"_index":2056,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["garbage",{"_index":1966,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gardener",{"_index":1972,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gari",{"_index":2410,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gas",{"_index":2432,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gatina",{"_index":1761,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ge",{"_index":1836,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gender",{"_index":17,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/CreateAccountComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["genders",{"_index":1215,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["general",{"_index":1482,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["generalized",{"_index":1457,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["generally",{"_index":3977,"title":{},"body":{"license.html":{}}}],["generate",{"_index":3694,"title":{},"body":{"index.html":{},"license.html":{}}}],["generated",{"_index":3677,"title":{},"body":{"index.html":{}}}],["ger",{"_index":2776,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["germany",{"_index":2777,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["get(`${environment.cicmetaurl}/areatypes/${area.tolowercase",{"_index":1512,"title":{},"body":{"injectables/LocationService.html":{}}}],["getaccountdetailsfrommeta(await",{"_index":3316,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaccountinfo",{"_index":3263,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaccountinfo(account",{"_index":3274,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaccounttypes",{"_index":409,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getactionbyid",{"_index":2504,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{}}}],["getactionbyid(id",{"_index":3491,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getactions",{"_index":2502,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getaddresssearchformstub",{"_index":245,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["getaddresstransactions",{"_index":3264,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaddresstransactions(address",{"_index":1159,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{}}}],["getalltransactions",{"_index":3265,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["getalltransactions(offset",{"_index":1157,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["getareanamebylocation",{"_index":1498,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getareanamebylocation(location",{"_index":1502,"title":{},"body":{"injectables/LocationService.html":{}}}],["getareanames",{"_index":1239,"title":{},"body":{"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getareatypebyarea",{"_index":1499,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getareatypebyarea(area",{"_index":1505,"title":{},"body":{"injectables/LocationService.html":{}}}],["getareatypes",{"_index":1500,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getbysymbol",{"_index":3136,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["getbysymbol(symbol",{"_index":3137,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["getcategories",{"_index":1236,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getcategorybyproduct",{"_index":2512,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getchallenge",{"_index":918,"title":{},"body":{"injectables/AuthService.html":{}}}],["getcreateformstub",{"_index":1227,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["getencryptkeys",{"_index":2581,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getfingerprint",{"_index":2582,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getgenders",{"_index":1241,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getkeyformstub",{"_index":822,"title":{},"body":{"components/AuthComponent.html":{}}}],["getkeyid",{"_index":2583,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getkeyid(key",{"_index":2606,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getkeysforid",{"_index":2584,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getkeysforid(keyid",{"_index":2608,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getnamesearchformstub",{"_index":241,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["getorganizationformstub",{"_index":2757,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["getphonesearchformstub",{"_index":243,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["getprivatekey",{"_index":919,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeyforid",{"_index":2585,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeyforid(keyid",{"_index":2612,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeyid",{"_index":2586,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeys",{"_index":2587,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforid",{"_index":2588,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforid(keyid",{"_index":2616,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforsubkeyid",{"_index":2589,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforsubkeyid(subkeyid",{"_index":2618,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeys",{"_index":920,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeysforaddress",{"_index":2590,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeysforaddress(address",{"_index":2622,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getregistry",{"_index":2892,"title":{},"body":{"injectables/RegistryService.html":{}}}],["getter.ts",{"_index":3526,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["getting",{"_index":3672,"title":{"index.html":{},"license.html":{}},"body":{}}],["gettokenbalance",{"_index":3108,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenbalance(address",{"_index":3110,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenbysymbol",{"_index":2517,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"injectables/TokenService.html":{}}}],["gettokenbysymbol(params.get('id",{"_index":3058,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["gettokenbysymbol(symbol",{"_index":3112,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokens",{"_index":2515,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"injectables/TokenService.html":{}}}],["gettransactiontypes",{"_index":2519,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TransactionsComponent.html":{}}}],["gettrustedactivekeys",{"_index":2591,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["gettrustedkeys",{"_index":2592,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["gettrustedusers",{"_index":921,"title":{},"body":{"injectables/AuthService.html":{}}}],["getuser",{"_index":3457,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuser(userkey",{"_index":3493,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuserbyid",{"_index":3458,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuserbyid(id",{"_index":3496,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getweb3",{"_index":2893,"title":{},"body":{"injectables/RegistryService.html":{}}}],["getwithtoken",{"_index":922,"title":{},"body":{"injectables/AuthService.html":{}}}],["giftable",{"_index":2444,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["githeri",{"_index":2158,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["githurai",{"_index":1787,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["give",{"_index":4065,"title":{},"body":{"license.html":{}}}],["given",{"_index":1246,"title":{},"body":{"components/CreateAccountComponent.html":{},"classes/CustomValidator.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["givenname",{"_index":1231,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["gives",{"_index":4078,"title":{},"body":{"license.html":{}}}],["giving",{"_index":3810,"title":{},"body":{"license.html":{}}}],["global",{"_index":1431,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["globalerrorhandler",{"_index":750,"title":{"injectables/GlobalErrorHandler.html":{}},"body":{"modules/AppModule.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{},"overview.html":{}}}],["gnu",{"_index":3735,"title":{},"body":{"license.html":{}}}],["go",{"_index":843,"title":{},"body":{"components/AuthComponent.html":{},"index.html":{}}}],["goats",{"_index":2163,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gona",{"_index":1685,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["good",{"_index":2242,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["governed",{"_index":4208,"title":{},"body":{"license.html":{}}}],["government",{"_index":1949,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gpl",{"_index":3806,"title":{},"body":{"license.html":{}}}],["grant",{"_index":4231,"title":{},"body":{"license.html":{}}}],["granted",{"_index":3992,"title":{},"body":{"license.html":{}}}],["grants",{"_index":4285,"title":{},"body":{"license.html":{}}}],["graph",{"_index":4498,"title":{},"body":{"modules.html":{}}}],["grassroots",{"_index":1038,"title":{},"body":{"injectables/AuthService.html":{},"components/FooterComponent.html":{},"license.html":{}}}],["gratis",{"_index":3797,"title":{},"body":{"license.html":{}}}],["greatest",{"_index":4456,"title":{},"body":{"license.html":{}}}],["grocer",{"_index":2160,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["groceries",{"_index":3473,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["grocery",{"_index":2159,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["groundnuts",{"_index":2149,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["group",{"_index":1609,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["grz",{"_index":2446,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["guarantee",{"_index":3764,"title":{},"body":{"license.html":{}}}],["guard",{"_index":859,"title":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}},"body":{"guards/AuthGuard.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["guards",{"_index":860,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"overview.html":{}}}],["gui",{"_index":4485,"title":{},"body":{"license.html":{}}}],["guitarist",{"_index":2104,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["guro",{"_index":1686,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hair",{"_index":2045,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["halt",{"_index":706,"title":{},"body":{"components/AppComponent.html":{}}}],["handle",{"_index":841,"title":{},"body":{"components/AuthComponent.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["handled",{"_index":2522,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["handleerror",{"_index":1426,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handleerror(error",{"_index":1432,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["handlenetworkchange",{"_index":2731,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["handler",{"_index":403,"title":{},"body":{"components/AccountsComponent.html":{},"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["handler.ts",{"_index":1419,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{}}}],["handler.ts:104",{"_index":1448,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:16",{"_index":1496,"title":{},"body":{"classes/HttpError.html":{}}}],["handler.ts:41",{"_index":1430,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:58",{"_index":1433,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:84",{"_index":1441,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handleroute",{"_index":2499,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["handlers",{"_index":2497,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["handles",{"_index":1355,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["handling",{"_index":1423,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["hanje",{"_index":1673,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["happened",{"_index":1485,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["hardware",{"_index":2342,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hash",{"_index":3241,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["hash.tostring('hex').substring(0",{"_index":3351,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction",{"_index":3346,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction.digest",{"_index":3349,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction.update('createrequest(address,address,address,uint256",{"_index":3348,"title":{},"body":{"injectables/TransactionService.html":{}}}],["haveaccount",{"_index":86,"title":{},"body":{"classes/AccountIndex.html":{}}}],["haveaccount('0xc0ffee254729296a45a3885639ac7e10f9d54979'",{"_index":132,"title":{},"body":{"classes/AccountIndex.html":{}}}],["haveaccount('0xc0ffee254729296a45a3885639ac7e10f9d54979",{"_index":170,"title":{},"body":{"classes/AccountIndex.html":{}}}],["haveaccount(address",{"_index":121,"title":{},"body":{"classes/AccountIndex.html":{}}}],["having",{"_index":4008,"title":{},"body":{"license.html":{}}}],["hawinga",{"_index":1849,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hawker",{"_index":2020,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hawking",{"_index":2019,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hazina",{"_index":1632,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headers",{"_index":2480,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["headmaster",{"_index":1922,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headmistress",{"_index":1912,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headteacher",{"_index":1913,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["health",{"_index":2277,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["heath",{"_index":2293,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["height",{"_index":598,"title":{},"body":{"components/AdminComponent.html":{}}}],["help",{"_index":2024,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["helper",{"_index":2568,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["hera",{"_index":3479,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["herbalist",{"_index":2288,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hereafter",{"_index":4325,"title":{},"body":{"license.html":{}}}],["hi",{"_index":1110,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["hidden",{"_index":602,"title":{},"body":{"components/AdminComponent.html":{}}}],["hoba",{"_index":1006,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaparsechallengeheader",{"_index":955,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaparsechallengeheader(authheader",{"_index":1017,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaresponseencoded",{"_index":946,"title":{},"body":{"injectables/AuthService.html":{}}}],["holder",{"_index":4259,"title":{},"body":{"license.html":{}}}],["holders",{"_index":4214,"title":{},"body":{"license.html":{}}}],["holel",{"_index":2151,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["homabay",{"_index":1853,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["homaboy",{"_index":1854,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["home",{"_index":286,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"modules/PagesRoutingModule.html":{},"components/SettingsComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["hook",{"_index":1420,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["hope",{"_index":4469,"title":{},"body":{"license.html":{}}}],["hospital",{"_index":2287,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hostlistener",{"_index":683,"title":{},"body":{"components/AppComponent.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["hostlistener('click",{"_index":2936,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["hostlistener('window:cic_convert",{"_index":738,"title":{},"body":{"components/AppComponent.html":{}}}],["hostlistener('window:cic_transfer",{"_index":734,"title":{},"body":{"components/AppComponent.html":{}}}],["hostlisteners",{"_index":655,"title":{},"body":{"components/AppComponent.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["hosts",{"_index":4131,"title":{},"body":{"license.html":{}}}],["hotel",{"_index":2150,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hoteli",{"_index":2152,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["house",{"_index":2023,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["housegirl",{"_index":2025,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["househelp",{"_index":2021,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["household",{"_index":4153,"title":{},"body":{"license.html":{}}}],["hsehelp",{"_index":2022,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["html",{"_index":291,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["htmlelement",{"_index":719,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["http",{"_index":1357,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"dependencies.html":{},"miscellaneous/functions.html":{}}}],["http://localhost:4200",{"_index":3688,"title":{},"body":{"index.html":{}}}],["http://localhost:8000",{"_index":4534,"title":{},"body":{"miscellaneous/variables.html":{}}}],["http_interceptors",{"_index":762,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["httpclient",{"_index":930,"title":{},"body":{"injectables/AuthService.html":{},"injectables/LocationService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["httpclientmodule",{"_index":763,"title":{},"body":{"modules/AppModule.html":{}}}],["httpconfiginterceptor",{"_index":751,"title":{"interceptors/HttpConfigInterceptor.html":{}},"body":{"modules/AppModule.html":{},"interceptors/HttpConfigInterceptor.html":{},"coverage.html":{},"overview.html":{}}}],["httperror",{"_index":963,"title":{"classes/HttpError.html":{}},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{}}}],["httperror(xhr.statustext",{"_index":1007,"title":{},"body":{"injectables/AuthService.html":{}}}],["httperrorresponse",{"_index":1374,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["httperrorresponse).status",{"_index":1479,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["httpevent",{"_index":1375,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpgetter",{"_index":2897,"title":{},"body":{"injectables/RegistryService.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["httphandler",{"_index":1367,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpinterceptor",{"_index":1376,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httprequest",{"_index":1366,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpresponse",{"_index":1517,"title":{},"body":{"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["https://blockexplorer.bloxberg.org/address",{"_index":3209,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["https://cache.dev.grassrootseconomics.net",{"_index":4523,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://dashboard.sarafu.network",{"_index":2846,"title":{},"body":{"components/PagesComponent.html":{}}}],["https://dev.grassrootseconomics.net/.well",{"_index":4520,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://fsf.org",{"_index":3745,"title":{},"body":{"license.html":{}}}],["https://meta.dev.grassrootseconomics.net",{"_index":4518,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://ussd.dev.grassrootseconomics.net",{"_index":4528,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://www.gnu.org/licenses",{"_index":4471,"title":{},"body":{"license.html":{}}}],["https://www.gnu.org/licenses/why",{"_index":4494,"title":{},"body":{"license.html":{}}}],["huruma",{"_index":1754,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hustler",{"_index":2040,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hypothetical",{"_index":4482,"title":{},"body":{"license.html":{}}}],["icon",{"_index":2881,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["icon.classlist.add('fa",{"_index":2888,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["icon.classlist.remove('fa",{"_index":2886,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["iconid",{"_index":2875,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["id",{"_index":48,"title":{},"body":{"interfaces/AccountDetails.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"components/CreateAccountComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"directives/PasswordToggleDirective.html":{},"components/SettingsComponent.html":{},"interfaces/Signature.html":{},"classes/TokenRegistry.html":{},"modules/TokensRoutingModule.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["identifiable",{"_index":4353,"title":{},"body":{"license.html":{}}}],["identifier",{"_index":3088,"title":{},"body":{"classes/TokenRegistry.html":{},"coverage.html":{}}}],["identities",{"_index":18,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["idfromurl",{"_index":2528,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["idnumber",{"_index":1230,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["iframes",{"_index":2848,"title":{},"body":{"components/PagesComponent.html":{}}}],["ignore",{"_index":2884,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["imam",{"_index":1939,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["immagration",{"_index":1961,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["immigration",{"_index":1962,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["implement",{"_index":3962,"title":{},"body":{"license.html":{}}}],["implementation",{"_index":862,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["implements",{"_index":189,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["implied",{"_index":4378,"title":{},"body":{"license.html":{}}}],["import",{"_index":144,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"license.html":{}}}],["import('@app/auth/auth.module').then((m",{"_index":794,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["import('@pages/accounts/accounts.module').then((m",{"_index":2866,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/admin/admin.module').then((m",{"_index":2870,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/pages.module').then((m",{"_index":796,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["import('@pages/settings/settings.module').then((m",{"_index":2864,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/tokens/tokens.module').then((m",{"_index":2868,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/transactions/transactions.module').then((m",{"_index":2862,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["imported",{"_index":2668,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["imported.keys",{"_index":2670,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importing",{"_index":4317,"title":{},"body":{"license.html":{}}}],["importkeypair",{"_index":2593,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importkeypair(publickey",{"_index":2626,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importprivatekey",{"_index":2594,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importprivatekey(privatekey",{"_index":2629,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importpublickey",{"_index":2595,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importpublickey(publickey",{"_index":2631,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["imports",{"_index":147,"title":{},"body":{"classes/AccountIndex.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"guards/RoleGuard.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"classes/TokenRegistry.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["impose",{"_index":4240,"title":{},"body":{"license.html":{}}}],["imposed",{"_index":4380,"title":{},"body":{"license.html":{}}}],["inability",{"_index":4432,"title":{},"body":{"license.html":{}}}],["inaccurate",{"_index":4435,"title":{},"body":{"license.html":{}}}],["inc",{"_index":3744,"title":{},"body":{"license.html":{}}}],["incidental",{"_index":4429,"title":{},"body":{"license.html":{}}}],["include",{"_index":3953,"title":{},"body":{"license.html":{}}}],["included",{"_index":3955,"title":{},"body":{"license.html":{}}}],["includes",{"_index":3914,"title":{},"body":{"license.html":{}}}],["including",{"_index":3973,"title":{},"body":{"license.html":{}}}],["inclusion",{"_index":4094,"title":{},"body":{"license.html":{}}}],["inclusive",{"_index":3062,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["income",{"_index":3067,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["incompatible",{"_index":3832,"title":{},"body":{"license.html":{}}}],["incorporating",{"_index":4487,"title":{},"body":{"license.html":{}}}],["incorporation",{"_index":4156,"title":{},"body":{"license.html":{}}}],["incorrect",{"_index":1043,"title":{},"body":{"injectables/AuthService.html":{}}}],["indemnification",{"_index":4236,"title":{},"body":{"license.html":{}}}],["independent",{"_index":4083,"title":{},"body":{"license.html":{}}}],["index",{"_index":10,"title":{"index.html":{}},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Category.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["indicate",{"_index":4288,"title":{},"body":{"license.html":{}}}],["indicating",{"_index":4250,"title":{},"body":{"license.html":{}}}],["individual",{"_index":1278,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"license.html":{}}}],["individuals",{"_index":3838,"title":{},"body":{"license.html":{}}}],["industrial",{"_index":1763,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["info",{"_index":3,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Category.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{}}}],["inform",{"_index":4139,"title":{},"body":{"license.html":{}}}],["information",{"_index":882,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"guards/RoleGuard.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["infringe",{"_index":4286,"title":{},"body":{"license.html":{}}}],["infringed",{"_index":4315,"title":{},"body":{"license.html":{}}}],["infringement",{"_index":3907,"title":{},"body":{"license.html":{}}}],["init",{"_index":923,"title":{},"body":{"injectables/AuthService.html":{}}}],["initialization",{"_index":1362,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{}}}],["initialize",{"_index":1459,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["initialparams",{"_index":540,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["initiate",{"_index":4309,"title":{},"body":{"license.html":{}}}],["inject",{"_index":1327,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["inject(mat_dialog_data",{"_index":1325,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["injectable",{"_index":896,"title":{"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"injectables/LocationService.html":{},"injectables/LoggingService.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"interceptors/MockBackendInterceptor.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["injectables",{"_index":913,"title":{},"body":{"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"injectables/LocationService.html":{},"injectables/LoggingService.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"overview.html":{}}}],["input",{"_index":1273,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/TransactionDetailsComponent.html":{},"miscellaneous/functions.html":{}}}],["input('routerlink",{"_index":2934,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["inputs",{"_index":1289,"title":{},"body":{"classes/CustomValidator.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/TransactionDetailsComponent.html":{}}}],["inside",{"_index":3828,"title":{},"body":{"license.html":{}}}],["install",{"_index":3681,"title":{},"body":{"index.html":{},"license.html":{}}}],["installation",{"_index":4173,"title":{},"body":{"license.html":{}}}],["installed",{"_index":4188,"title":{},"body":{"license.html":{}}}],["instance",{"_index":71,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["instanceof",{"_index":1031,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{}}}],["instantiates",{"_index":868,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["instead",{"_index":4493,"title":{},"body":{"license.html":{}}}],["instructor",{"_index":1908,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["insurance",{"_index":2077,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["intact",{"_index":4058,"title":{},"body":{"license.html":{}}}],["intended",{"_index":3763,"title":{},"body":{"license.html":{}}}],["intention",{"_index":4050,"title":{},"body":{"license.html":{}}}],["interaction",{"_index":3923,"title":{},"body":{"license.html":{}}}],["interactive",{"_index":3925,"title":{},"body":{"license.html":{}}}],["intercept",{"_index":1359,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["intercept(request",{"_index":1365,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["interceptor",{"_index":839,"title":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}},"body":{"components/AuthComponent.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"coverage.html":{}}}],["interceptors",{"_index":1352,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["intercepts",{"_index":1354,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["interchange",{"_index":4107,"title":{},"body":{"license.html":{}}}],["interest",{"_index":4303,"title":{},"body":{"license.html":{}}}],["interface",{"_index":0,"title":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Category.html":{},"interfaces/Conversion.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/MutableKeyStore.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"interfaces/W3.html":{}},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"injectables/AuthService.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Category.html":{},"interfaces/Conversion.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"classes/Settings.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"classes/TokenRegistry.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"interfaces/W3.html":{},"coverage.html":{},"license.html":{}}}],["interfaces",{"_index":2,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Category.html":{},"interfaces/Conversion.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/MutableKeyStore.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"interfaces/W3.html":{},"license.html":{},"overview.html":{}}}],["interfered",{"_index":4180,"title":{},"body":{"license.html":{}}}],["intern",{"_index":1929,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["internal",{"_index":2496,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["internally",{"_index":1596,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["interpretation",{"_index":4442,"title":{},"body":{"license.html":{}}}],["interpreter",{"_index":3971,"title":{},"body":{"license.html":{}}}],["intimate",{"_index":3985,"title":{},"body":{"license.html":{}}}],["invalid",{"_index":1054,"title":{},"body":{"injectables/AuthService.html":{},"classes/CustomErrorStateMatcher.html":{}}}],["invalidate",{"_index":4079,"title":{},"body":{"license.html":{}}}],["irrevocable",{"_index":3994,"title":{},"body":{"license.html":{}}}],["isdevmode",{"_index":1557,"title":{},"body":{"injectables/LoggingService.html":{}}}],["isdialogopen",{"_index":1335,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["isencryptedkeycheck",{"_index":1057,"title":{},"body":{"injectables/AuthService.html":{}}}],["isencryptedprivatekey",{"_index":2596,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["isencryptedprivatekey(privatekey",{"_index":2633,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["iserrorstate",{"_index":1267,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["iserrorstate(control",{"_index":1268,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["issubmitted",{"_index":1281,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["isvalidkey",{"_index":2597,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["isvalidkey(key",{"_index":2635,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["isvalidkeycheck",{"_index":1051,"title":{},"body":{"injectables/AuthService.html":{}}}],["iswarning",{"_index":1427,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["iswarning(errortracestring",{"_index":1440,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["it's",{"_index":1444,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["item",{"_index":3940,"title":{},"body":{"license.html":{}}}],["items",{"_index":1598,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["itself",{"_index":4193,"title":{},"body":{"license.html":{}}}],["jack",{"_index":1623,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["jane",{"_index":3468,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["jembe",{"_index":1991,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jewel",{"_index":2375,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jik",{"_index":2319,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jogoo",{"_index":1771,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["john",{"_index":3460,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["jomvu",{"_index":1811,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["journalist",{"_index":1909,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jquery",{"_index":3601,"title":{},"body":{"dependencies.html":{}}}],["js",{"_index":3617,"title":{},"body":{"dependencies.html":{}}}],["json.parse(localstorage.getitem(atob('cicada_user",{"_index":2918,"title":{},"body":{"guards/RoleGuard.html":{}}}],["json.stringify",{"_index":1395,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["jua",{"_index":2030,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juacali",{"_index":2029,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juakali",{"_index":2027,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jualikali",{"_index":2028,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juice",{"_index":2274,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juja",{"_index":1769,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["junda",{"_index":1826,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["june",{"_index":3737,"title":{},"body":{"license.html":{}}}],["kabete",{"_index":1752,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kabiro",{"_index":1782,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kafuduni",{"_index":1680,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kahawa",{"_index":2191,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kaimati",{"_index":2188,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kajiado",{"_index":1868,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kakamega",{"_index":1866,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kakuma",{"_index":1839,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kalalani",{"_index":1679,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kali",{"_index":2031,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kaloleni",{"_index":1681,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kamba",{"_index":2186,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kambi",{"_index":1630,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kamongo",{"_index":1641,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kangemi",{"_index":1744,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kanisa",{"_index":1946,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kariobangi",{"_index":1764,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["karma",{"_index":3717,"title":{},"body":{"index.html":{}}}],["kasarani",{"_index":1765,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kasemeni",{"_index":1674,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["katundani",{"_index":1675,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kawangware",{"_index":1747,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayaba",{"_index":1628,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayba",{"_index":1629,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayole",{"_index":1766,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kazi",{"_index":2036,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ke",{"_index":2770,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["kebeba",{"_index":2383,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["keccak",{"_index":3297,"title":{},"body":{"injectables/TransactionService.html":{}}}],["keccak(256",{"_index":3347,"title":{},"body":{"injectables/TransactionService.html":{}}}],["keep",{"_index":4057,"title":{},"body":{"license.html":{}}}],["keki",{"_index":2192,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kenya",{"_index":2771,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["kenyatta",{"_index":1758,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kericho",{"_index":1867,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kernel",{"_index":3965,"title":{},"body":{"license.html":{}}}],["kerosene",{"_index":2439,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kerosine",{"_index":2438,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["key",{"_index":825,"title":{},"body":{"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/CustomValidator.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["key.getkeyid().tohex",{"_index":2675,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["key.isdecrypted",{"_index":2671,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyform",{"_index":804,"title":{},"body":{"components/AuthComponent.html":{}}}],["keyformstub",{"_index":811,"title":{},"body":{"components/AuthComponent.html":{}}}],["keyid",{"_index":2610,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring",{"_index":2651,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["keyring.clear",{"_index":2688,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.getkeysforid(keyid",{"_index":2680,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.load",{"_index":2653,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys",{"_index":2659,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.getforid(keyid",{"_index":2682,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.importkey(privatekey",{"_index":2656,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys",{"_index":2658,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0",{"_index":2660,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0].getkeyid().tohex",{"_index":2679,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0].keypacket",{"_index":2673,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0].keypacket.fingerprint",{"_index":2674,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.getforaddress(address",{"_index":2684,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.getforid(keyid",{"_index":2681,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.getforid(subkeyid",{"_index":2683,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.importkey(publickey",{"_index":2655,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.keys",{"_index":2657,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.removeforid(keyid",{"_index":2686,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.removekeysforid(keyid",{"_index":2685,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.store",{"_index":2654,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keys",{"_index":692,"title":{},"body":{"components/AppComponent.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["keystore",{"_index":2579,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["khaimati",{"_index":2187,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kiambu",{"_index":1872,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibanda",{"_index":2325,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibandaogo",{"_index":1676,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibandaongo",{"_index":1677,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibera",{"_index":1738,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibira",{"_index":1739,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibra",{"_index":1740,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kidzuvini",{"_index":1678,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kikuyu",{"_index":1774,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kilfi",{"_index":1829,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kilibole",{"_index":1682,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kilifi",{"_index":57,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["kinango",{"_index":1650,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kind",{"_index":3919,"title":{},"body":{"license.html":{}}}],["kinds",{"_index":3754,"title":{},"body":{"license.html":{}}}],["kingston",{"_index":1638,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kingstone",{"_index":1640,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kinyozi",{"_index":2035,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kiosk",{"_index":2326,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kirembe",{"_index":1793,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisauni",{"_index":1815,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisii",{"_index":1861,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisumu",{"_index":1847,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitabu",{"_index":1936,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitengela",{"_index":1755,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitui",{"_index":1840,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kizingo",{"_index":1800,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kmoja",{"_index":1785,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["knitting",{"_index":2037,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["know",{"_index":3783,"title":{},"body":{"license.html":{}}}],["knowingly",{"_index":4342,"title":{},"body":{"license.html":{}}}],["knowledge",{"_index":4351,"title":{},"body":{"license.html":{}}}],["known/publickeys",{"_index":4521,"title":{},"body":{"miscellaneous/variables.html":{}}}],["kobo",{"_index":2986,"title":{},"body":{"components/SettingsComponent.html":{}}}],["kokotoni",{"_index":1733,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["korokocho",{"_index":1639,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["korosho",{"_index":2272,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kra",{"_index":1959,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["krcs",{"_index":1931,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kubeba",{"_index":2398,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kufua",{"_index":2038,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kujenga",{"_index":2034,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kuku",{"_index":2190,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kulima",{"_index":1988,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kunde",{"_index":2189,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kuni",{"_index":2419,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kushona",{"_index":2026,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kusumu",{"_index":1856,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kwale",{"_index":1651,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kwangware",{"_index":1748,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kware",{"_index":1781,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lab",{"_index":2299,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["labor",{"_index":2042,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["labour",{"_index":1993,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["landi",{"_index":1788,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["landlord",{"_index":2015,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["langata",{"_index":1789,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["language",{"_index":3949,"title":{},"body":{"license.html":{}}}],["larger",{"_index":4087,"title":{},"body":{"license.html":{}}}],["last",{"_index":87,"title":{},"body":{"classes/AccountIndex.html":{}}}],["last(5",{"_index":140,"title":{},"body":{"classes/AccountIndex.html":{}}}],["last(numberofaccounts",{"_index":133,"title":{},"body":{"classes/AccountIndex.html":{}}}],["later",{"_index":699,"title":{},"body":{"components/AppComponent.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["latitude",{"_index":30,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["laundry",{"_index":2043,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["law",{"_index":2117,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["laws",{"_index":3878,"title":{},"body":{"license.html":{}}}],["lawsuit",{"_index":4313,"title":{},"body":{"license.html":{}}}],["lazy",{"_index":3696,"title":{},"body":{"index.html":{}}}],["leader",{"_index":1958,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["leaving",{"_index":1055,"title":{},"body":{"injectables/AuthService.html":{}}}],["lecturer",{"_index":1895,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["legal",{"_index":3811,"title":{},"body":{"license.html":{}}}],["legend",{"_index":290,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"components/AuthComponent.html":{},"modules/AuthModule.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"overview.html":{}}}],["length",{"_index":3127,"title":{},"body":{"injectables/TokenService.html":{}}}],["leso",{"_index":2333,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lesser",{"_index":4492,"title":{},"body":{"license.html":{}}}],["lesso",{"_index":2334,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lesson",{"_index":1910,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["level",{"_index":776,"title":{},"body":{"modules/AppModule.html":{}}}],["lgpl.html",{"_index":4495,"title":{},"body":{"license.html":{}}}],["liability",{"_index":4217,"title":{},"body":{"license.html":{}}}],["liable",{"_index":3906,"title":{},"body":{"license.html":{}}}],["libraries",{"_index":3951,"title":{},"body":{"license.html":{}}}],["library",{"_index":2676,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["license",{"_index":3734,"title":{"license.html":{}},"body":{"license.html":{}}}],["licensed",{"_index":3882,"title":{},"body":{"license.html":{}}}],["licensee",{"_index":3885,"title":{},"body":{"license.html":{}}}],["licensees",{"_index":3887,"title":{},"body":{"license.html":{}}}],["licenses",{"_index":3756,"title":{},"body":{"license.html":{}}}],["licensing",{"_index":4290,"title":{},"body":{"license.html":{}}}],["licensors",{"_index":4229,"title":{},"body":{"license.html":{}}}],["likewise",{"_index":4283,"title":{},"body":{"license.html":{}}}],["likoni",{"_index":1797,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["limit",{"_index":1093,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"license.html":{}}}],["limitation",{"_index":4426,"title":{},"body":{"license.html":{}}}],["limited",{"_index":4414,"title":{},"body":{"license.html":{}}}],["limiting",{"_index":4216,"title":{},"body":{"license.html":{}}}],["limuru",{"_index":1790,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lindi",{"_index":1737,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["line",{"_index":4465,"title":{},"body":{"license.html":{}}}],["line:directive",{"_index":2932,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["line:no",{"_index":1145,"title":{},"body":{"injectables/BlockSyncService.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["lines",{"_index":2324,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["link",{"_index":2926,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{},"coverage.html":{},"license.html":{}}}],["linked",{"_index":3982,"title":{},"body":{"license.html":{}}}],["linking",{"_index":4490,"title":{},"body":{"license.html":{}}}],["linkparams",{"_index":2935,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["list",{"_index":3936,"title":{},"body":{"license.html":{}}}],["literal",{"_index":26,"title":{},"body":{"interfaces/AccountDetails.html":{},"injectables/AuthService.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["litigation",{"_index":4310,"title":{},"body":{"license.html":{}}}],["lo",{"_index":1109,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["load",{"_index":407,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{}}}],["loadchildren",{"_index":793,"title":{},"body":{"modules/AppRoutingModule.html":{},"modules/PagesRoutingModule.html":{}}}],["loaded",{"_index":884,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"index.html":{}}}],["loadevent",{"_index":3107,"title":{},"body":{"injectables/TokenService.html":{}}}],["loading",{"_index":805,"title":{},"body":{"components/AuthComponent.html":{},"index.html":{}}}],["loadkeyring",{"_index":2598,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["loan",{"_index":2309,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["local",{"_index":4443,"title":{},"body":{"license.html":{}}}],["localstorage",{"_index":895,"title":{},"body":{"guards/AuthGuard.html":{}}}],["localstorage.getitem(btoa('cicada_private_key",{"_index":900,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{}}}],["localstorage.setitem(btoa('cicada_private_key",{"_index":1062,"title":{},"body":{"injectables/AuthService.html":{}}}],["location",{"_index":19,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["locations",{"_index":519,"title":{},"body":{"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["locationservice",{"_index":1217,"title":{"injectables/LocationService.html":{}},"body":{"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"coverage.html":{}}}],["log",{"_index":996,"title":{},"body":{"injectables/AuthService.html":{}}}],["logerror",{"_index":1428,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["logerror(error",{"_index":1447,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["logger",{"_index":770,"title":{},"body":{"modules/AppModule.html":{},"injectables/LoggingService.html":{},"dependencies.html":{}}}],["loggermodule",{"_index":768,"title":{},"body":{"modules/AppModule.html":{}}}],["loggermodule.forroot",{"_index":775,"title":{},"body":{"modules/AppModule.html":{}}}],["logging",{"_index":1364,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{}}}],["logginginterceptor",{"_index":752,"title":{"interceptors/LoggingInterceptor.html":{}},"body":{"modules/AppModule.html":{},"interceptors/LoggingInterceptor.html":{},"coverage.html":{},"overview.html":{}}}],["loggingservice",{"_index":364,"title":{"injectables/LoggingService.html":{}},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"components/TokensComponent.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["loggingurl",{"_index":4516,"title":{},"body":{"miscellaneous/variables.html":{}}}],["login",{"_index":807,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["loginresponse",{"_index":924,"title":{},"body":{"injectables/AuthService.html":{}}}],["loginresponse(o",{"_index":939,"title":{},"body":{"injectables/AuthService.html":{}}}],["loginview",{"_index":925,"title":{},"body":{"injectables/AuthService.html":{}}}],["loglevel",{"_index":4513,"title":{},"body":{"miscellaneous/variables.html":{}}}],["logout",{"_index":926,"title":{},"body":{"injectables/AuthService.html":{},"components/SettingsComponent.html":{}}}],["logs",{"_index":1451,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["long",{"_index":4005,"title":{},"body":{"license.html":{}}}],["longitude",{"_index":31,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["loss",{"_index":4433,"title":{},"body":{"license.html":{}}}],["losses",{"_index":4436,"title":{},"body":{"license.html":{}}}],["low",{"_index":1193,"title":{},"body":{"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["lower",{"_index":3065,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["lowest",{"_index":174,"title":{},"body":{"classes/AccountIndex.html":{}}}],["lunga",{"_index":1646,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lungalunga",{"_index":1642,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lungu",{"_index":1645,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lutsangani",{"_index":1683,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["m",{"_index":51,"title":{},"body":{"interfaces/AccountDetails.html":{},"injectables/BlockSyncService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"miscellaneous/variables.html":{}}}],["m.accountsmodule",{"_index":2867,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.adminmodule",{"_index":2871,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.authmodule",{"_index":795,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["m.pagesmodule",{"_index":797,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["m.settingsmodule",{"_index":2865,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.tokensmodule",{"_index":2869,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.transactionsmodule",{"_index":2863,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["maalim",{"_index":1890,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maandazi",{"_index":2224,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maandzi",{"_index":2267,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabenda",{"_index":2164,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabesheni",{"_index":1704,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabuyu",{"_index":2203,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["machakos",{"_index":1863,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["machine",{"_index":4097,"title":{},"body":{"license.html":{}}}],["machungwa",{"_index":2204,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["made",{"_index":1274,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["madewani",{"_index":1700,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["madrasa",{"_index":1940,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maembe",{"_index":2087,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mafuta",{"_index":2423,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magari",{"_index":2411,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magogoni",{"_index":1825,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magongo",{"_index":1808,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mahamri",{"_index":2232,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maharagwe",{"_index":2230,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mahindi",{"_index":2223,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mail",{"_index":4475,"title":{},"body":{"license.html":{}}}],["mailman",{"_index":1960,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["main",{"_index":1880,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maintain",{"_index":4127,"title":{},"body":{"license.html":{}}}],["maize",{"_index":2217,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majani",{"_index":2086,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majaoni",{"_index":1823,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majengo",{"_index":1727,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maji",{"_index":2276,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["major",{"_index":3958,"title":{},"body":{"license.html":{}}}],["makaa",{"_index":2422,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makadara",{"_index":1756,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makanga",{"_index":2412,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["make",{"_index":3767,"title":{},"body":{"license.html":{}}}],["makes",{"_index":4023,"title":{},"body":{"license.html":{}}}],["makina",{"_index":1741,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["making",{"_index":3893,"title":{},"body":{"license.html":{}}}],["makobeni",{"_index":1699,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makonge",{"_index":2108,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makongeni",{"_index":1832,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makueni",{"_index":1859,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makuluni",{"_index":1697,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makupa",{"_index":1803,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makuti",{"_index":2033,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["male",{"_index":2441,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["mali",{"_index":2341,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["malimali",{"_index":2339,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["management",{"_index":2992,"title":{},"body":{"components/SettingsComponent.html":{}}}],["manager",{"_index":2051,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["managing",{"_index":3675,"title":{},"body":{"index.html":{}}}],["manamba",{"_index":2403,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mandazi",{"_index":2221,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mango",{"_index":2177,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mangwe",{"_index":2351,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["manipulation",{"_index":873,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"guards/RoleGuard.html":{}}}],["manner",{"_index":4326,"title":{},"body":{"license.html":{}}}],["manufacturer",{"_index":3830,"title":{},"body":{"license.html":{}}}],["manyani",{"_index":1824,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["map",{"_index":1308,"title":{},"body":{"classes/CustomValidator.html":{}}}],["march",{"_index":4375,"title":{},"body":{"license.html":{}}}],["mariakani",{"_index":1698,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marital",{"_index":1924,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marked",{"_index":3821,"title":{},"body":{"license.html":{}}}],["market",{"_index":1795,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marketing",{"_index":2111,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marks",{"_index":4234,"title":{},"body":{"license.html":{}}}],["marondo",{"_index":2266,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["masai",{"_index":1631,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mask",{"_index":2297,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["masks",{"_index":3880,"title":{},"body":{"license.html":{}}}],["mason",{"_index":2054,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mat_dialog_data",{"_index":1328,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["matatu",{"_index":2388,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matbuttonmodule",{"_index":483,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matcardmodule",{"_index":485,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["match",{"_index":1299,"title":{},"body":{"classes/CustomValidator.html":{}}}],["matcheckboxmodule",{"_index":475,"title":{},"body":{"modules/AccountsModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matcher",{"_index":204,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["matcher.ts",{"_index":1256,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"coverage.html":{}}}],["matcher.ts:17",{"_index":1272,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["matches",{"_index":2914,"title":{},"body":{"guards/RoleGuard.html":{}}}],["matching",{"_index":64,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Category.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"routes.html":{},"miscellaneous/variables.html":{}}}],["matdialog",{"_index":1338,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["matdialogmodule",{"_index":3026,"title":{},"body":{"modules/SharedModule.html":{}}}],["matdialogref",{"_index":1343,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["material",{"_index":2802,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["material.digest",{"_index":2817,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["materialize",{"_index":1603,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["materially",{"_index":4194,"title":{},"body":{"license.html":{}}}],["matformfieldmodule",{"_index":480,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["math.pow(10",{"_index":3077,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["mathare",{"_index":1767,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mathere",{"_index":1791,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maticonmodule",{"_index":487,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matinputmodule",{"_index":478,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matmenumodule",{"_index":3011,"title":{},"body":{"modules/SettingsModule.html":{}}}],["matoke",{"_index":2268,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matpaginator",{"_index":386,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["matpaginatormodule",{"_index":477,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matprogressspinnermodule",{"_index":496,"title":{},"body":{"modules/AccountsModule.html":{}}}],["matpseudocheckboxmodule",{"_index":3172,"title":{},"body":{"modules/TokensModule.html":{}}}],["matradiomodule",{"_index":3009,"title":{},"body":{"modules/SettingsModule.html":{}}}],["matress",{"_index":2358,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matripplemodule",{"_index":494,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matselectmodule",{"_index":489,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TransactionsModule.html":{}}}],["matsidenavmodule",{"_index":3173,"title":{},"body":{"modules/TokensModule.html":{}}}],["matsnackbar",{"_index":3194,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["matsnackbarmodule",{"_index":501,"title":{},"body":{"modules/AccountsModule.html":{},"modules/TransactionsModule.html":{}}}],["matsort",{"_index":390,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["matsortmodule",{"_index":474,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["mattabledatasource",{"_index":377,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["mattabledatasource(accounts",{"_index":415,"title":{},"body":{"components/AccountsComponent.html":{}}}],["mattabledatasource(actions",{"_index":615,"title":{},"body":{"components/AdminComponent.html":{}}}],["mattabledatasource(this.tokens",{"_index":3160,"title":{},"body":{"components/TokensComponent.html":{}}}],["mattabledatasource(this.trustedusers",{"_index":2982,"title":{},"body":{"components/SettingsComponent.html":{}}}],["mattabledatasource(transactions",{"_index":3427,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["mattablemodule",{"_index":473,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["mattabsmodule",{"_index":492,"title":{},"body":{"modules/AccountsModule.html":{}}}],["mattoolbarmodule",{"_index":3175,"title":{},"body":{"modules/TokensModule.html":{}}}],["mattress",{"_index":2359,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mattresses",{"_index":2360,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matuga",{"_index":1728,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matunda",{"_index":2176,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mawe",{"_index":2085,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mayai",{"_index":2239,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazera",{"_index":1706,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazeras",{"_index":1705,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazingira",{"_index":1975,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maziwa",{"_index":2197,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbaazi",{"_index":2222,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbao",{"_index":2420,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbata",{"_index":2218,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbenda",{"_index":2165,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbita",{"_index":1845,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbog",{"_index":2199,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mboga",{"_index":2198,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbonga",{"_index":2124,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbuzi",{"_index":2205,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mc",{"_index":3474,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["mchanga",{"_index":2355,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchele",{"_index":2175,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchicha",{"_index":2207,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchuuzi",{"_index":2220,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchuzi",{"_index":2219,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["meaning",{"_index":4244,"title":{},"body":{"license.html":{}}}],["means",{"_index":3877,"title":{},"body":{"license.html":{}}}],["measure",{"_index":4031,"title":{},"body":{"license.html":{}}}],["measures",{"_index":4043,"title":{},"body":{"license.html":{}}}],["meat",{"_index":2226,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mechanic",{"_index":2057,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mediaquery",{"_index":650,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["mediaquery.matches",{"_index":1581,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["mediaquerylist",{"_index":675,"title":{},"body":{"components/AppComponent.html":{}}}],["medicine",{"_index":2298,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["medium",{"_index":4053,"title":{},"body":{"license.html":{}}}],["meet",{"_index":4067,"title":{},"body":{"license.html":{}}}],["meets",{"_index":3941,"title":{},"body":{"license.html":{}}}],["mellon",{"_index":2179,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["melon",{"_index":2178,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["menu",{"_index":1589,"title":{},"body":{"directives/MenuToggleDirective.html":{},"license.html":{}}}],["menuselectiondirective",{"_index":338,"title":{"directives/MenuSelectionDirective.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuSelectionDirective.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["menutoggledirective",{"_index":340,"title":{"directives/MenuToggleDirective.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuToggleDirective.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["merchantability",{"_index":4415,"title":{},"body":{"license.html":{}}}],["mere",{"_index":3922,"title":{},"body":{"license.html":{}}}],["mergemap",{"_index":1604,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["merging",{"_index":4299,"title":{},"body":{"license.html":{}}}],["meru",{"_index":1860,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["message",{"_index":704,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{},"components/ErrorDialogComponent.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["message:\\n${message}.\\nstack",{"_index":1469,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["messages",{"_index":1265,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["met",{"_index":3996,"title":{},"body":{"license.html":{}}}],["meta",{"_index":40,"title":{"interfaces/Meta.html":{}},"body":{"interfaces/AccountDetails.html":{},"components/AuthComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"interfaces/Signature.html":{},"injectables/TransactionService.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["metadata",{"_index":191,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["metal",{"_index":2114,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["metaresponse",{"_index":50,"title":{"interfaces/MetaResponse.html":{}},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"coverage.html":{}}}],["method",{"_index":532,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["methods",{"_index":82,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"license.html":{}}}],["methodsignature",{"_index":3350,"title":{},"body":{"injectables/TransactionService.html":{}}}],["mfugaji",{"_index":2059,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mganga",{"_index":2289,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mgema",{"_index":2069,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mhogo",{"_index":2227,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miatsani",{"_index":1710,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miatsiani",{"_index":1691,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["middle",{"_index":3066,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["mienzeni",{"_index":1692,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mifugo",{"_index":2240,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["migori",{"_index":1855,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miguneni",{"_index":1714,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mihogo",{"_index":2228,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikate",{"_index":2214,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikeka",{"_index":2352,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikindani",{"_index":1734,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["milk",{"_index":2195,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mill",{"_index":2047,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miloeni",{"_index":1703,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["minheight",{"_index":600,"title":{},"body":{"components/AdminComponent.html":{}}}],["minyenzeni",{"_index":1694,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mioleni",{"_index":1696,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miraa",{"_index":2194,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miritini",{"_index":1809,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["misc",{"_index":1735,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miscellaneous",{"_index":3622,"title":{"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}},"body":{"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["misrepresentation",{"_index":4225,"title":{},"body":{"license.html":{}}}],["miti",{"_index":1976,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mitumba",{"_index":2233,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mitungi",{"_index":2340,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miwa",{"_index":2231,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miyani",{"_index":1695,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miyenzeni",{"_index":1690,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjambere",{"_index":1822,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjengo",{"_index":2089,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjenzi",{"_index":2058,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkanyeni",{"_index":1688,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkate",{"_index":2212,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkokoteni",{"_index":2405,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mksiti",{"_index":1947,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkulima",{"_index":1987,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mlola",{"_index":1707,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mlolongo",{"_index":1757,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnarani",{"_index":1833,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnazi",{"_index":2206,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnyenzeni",{"_index":1693,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mocha",{"_index":3603,"title":{},"body":{"dependencies.html":{}}}],["mock",{"_index":543,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mockbackendinterceptor",{"_index":1593,"title":{"interceptors/MockBackendInterceptor.html":{}},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["mockbackendprovider",{"_index":765,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["mode",{"_index":1561,"title":{},"body":{"injectables/LoggingService.html":{},"license.html":{}}}],["model",{"_index":4112,"title":{},"body":{"license.html":{}}}],["modification",{"_index":3873,"title":{},"body":{"license.html":{}}}],["modifications",{"_index":3944,"title":{},"body":{"license.html":{}}}],["modified",{"_index":3820,"title":{},"body":{"license.html":{}}}],["modifies",{"_index":4071,"title":{},"body":{"license.html":{}}}],["modify",{"_index":3794,"title":{},"body":{"license.html":{}}}],["modifying",{"_index":3912,"title":{},"body":{"license.html":{}}}],["module",{"_index":440,"title":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"components/FooterStubComponent.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"components/SidebarStubComponent.html":{},"modules/TokensModule.html":{},"components/TopbarStubComponent.html":{},"modules/TransactionsModule.html":{},"coverage.html":{},"index.html":{},"overview.html":{}}}],["modules",{"_index":442,"title":{"modules.html":{}},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"index.html":{},"modules.html":{},"overview.html":{}}}],["mogoka",{"_index":2225,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mombasa",{"_index":1796,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["moment",{"_index":887,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["moolb",{"_index":3605,"title":{},"body":{"dependencies.html":{}}}],["more",{"_index":3730,"title":{},"body":{"index.html":{},"license.html":{}}}],["moreover",{"_index":4270,"title":{},"body":{"license.html":{}}}],["moto",{"_index":2424,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["motorbike",{"_index":2408,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["motorist",{"_index":2407,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mover",{"_index":2406,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["movie",{"_index":2353,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpesa",{"_index":2362,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpishi",{"_index":2067,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpsea",{"_index":2361,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ms",{"_index":1527,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["mshomoroni",{"_index":1828,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["msusi",{"_index":2068,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtambo",{"_index":2048,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtopanga",{"_index":1821,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtumba",{"_index":2055,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtwapa",{"_index":1830,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muguka",{"_index":2193,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muhogo",{"_index":2229,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mukuru",{"_index":1626,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["multi",{"_index":789,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["multiple",{"_index":2672,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["mulunguni",{"_index":1709,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mumias",{"_index":1852,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["musician",{"_index":2106,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mutable",{"_index":2648,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["mutablekeystore",{"_index":915,"title":{"interfaces/MutableKeyStore.html":{}},"body":{"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["mutablepgpkeystore",{"_index":772,"title":{"classes/MutablePgpKeyStore.html":{}},"body":{"modules/AppModule.html":{},"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"coverage.html":{}}}],["mutumba",{"_index":2331,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muugano",{"_index":1708,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mvita",{"_index":1804,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mvuvi",{"_index":2084,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwache",{"_index":1711,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwakirunge",{"_index":1827,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwalimu",{"_index":1889,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwangani",{"_index":1712,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwangaraba",{"_index":1701,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwashanga",{"_index":1702,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwea",{"_index":1873,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwehavikonje",{"_index":1713,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwiki",{"_index":1779,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwingi",{"_index":1841,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mworoni",{"_index":1817,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["myenzeni",{"_index":1689,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["n",{"_index":38,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["nairobi",{"_index":1627,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nakuru",{"_index":1874,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["name",{"_index":97,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Category.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["name(s",{"_index":1247,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["names",{"_index":1248,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["namesearchform",{"_index":205,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["namesearchformstub",{"_index":216,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["namesearchloading",{"_index":206,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["namesearchsubmitted",{"_index":207,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["nandi",{"_index":1869,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["narok",{"_index":1875,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nature",{"_index":4084,"title":{},"body":{"license.html":{}}}],["navigate",{"_index":3687,"title":{},"body":{"index.html":{}}}],["navigatedto",{"_index":2927,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["navigation",{"_index":870,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"guards/RoleGuard.html":{}}}],["navigator.online",{"_index":2738,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["nazi",{"_index":2210,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ndizi",{"_index":2184,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["necessary",{"_index":4423,"title":{},"body":{"license.html":{}}}],["need",{"_index":3787,"title":{},"body":{"license.html":{}}}],["needed",{"_index":3852,"title":{},"body":{"license.html":{}}}],["network",{"_index":78,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["networkstatuscomponent",{"_index":315,"title":{"components/NetworkStatusComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["new",{"_index":156,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"injectables/RegistryService.html":{},"components/SettingsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["newconversionevent",{"_index":1084,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["newconversionevent(tx",{"_index":1100,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["newtransferevent",{"_index":1085,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["newtransferevent(tx",{"_index":1103,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["next",{"_index":534,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"injectables/BlockSyncService.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"directives/RouterLinkDirectiveStub.html":{},"license.html":{}}}],["next.handle(request",{"_index":1495,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["next.handle(request).pipe",{"_index":1378,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["next.handle(request).pipe(tap(event",{"_index":1522,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["ng",{"_index":3693,"title":{},"body":{"index.html":{}}}],["ng2",{"_index":2858,"title":{},"body":{"modules/PagesModule.html":{},"dependencies.html":{}}}],["ngafterviewinit",{"_index":3404,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["ngano",{"_index":2209,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngform",{"_index":1271,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["ngmodule",{"_index":457,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["ngombe",{"_index":2208,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngombeni",{"_index":1805,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngong",{"_index":1777,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngoninit",{"_index":211,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/FooterComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["nguo",{"_index":2053,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngx",{"_index":769,"title":{},"body":{"modules/AppModule.html":{},"injectables/LoggingService.html":{},"dependencies.html":{}}}],["ngxlogger",{"_index":1540,"title":{},"body":{"injectables/LoggingService.html":{}}}],["ngxloggerlevel.error",{"_index":4514,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ngxloggerlevel.off",{"_index":4515,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ngómbeni",{"_index":1806,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["njugu",{"_index":2185,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nobody",{"_index":1483,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["nointernetconnection",{"_index":2730,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["non",{"_index":3868,"title":{},"body":{"license.html":{}}}],["noncommercially",{"_index":4119,"title":{},"body":{"license.html":{}}}],["none",{"_index":856,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nopasswordmatch",{"_index":1314,"title":{},"body":{"classes/CustomValidator.html":{}}}],["normal",{"_index":3956,"title":{},"body":{"license.html":{}}}],["normally",{"_index":4151,"title":{},"body":{"license.html":{}}}],["nothing",{"_index":4284,"title":{},"body":{"license.html":{}}}],["notice",{"_index":3931,"title":{},"body":{"license.html":{}}}],["notices",{"_index":3927,"title":{},"body":{"license.html":{}}}],["notifies",{"_index":4271,"title":{},"body":{"license.html":{}}}],["notify",{"_index":4266,"title":{},"body":{"license.html":{}}}],["notwithstanding",{"_index":4213,"title":{},"body":{"license.html":{}}}],["now",{"_index":1056,"title":{},"body":{"injectables/AuthService.html":{}}}],["npm",{"_index":3680,"title":{},"body":{"index.html":{}}}],["null",{"_index":1095,"title":{},"body":{"injectables/BlockSyncService.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["number",{"_index":25,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Category.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"interfaces/Staff.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"interfaces/Transaction.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["number(await",{"_index":3363,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(conversion.fromvalue",{"_index":3328,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(conversion.tovalue",{"_index":3330,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(transaction.value",{"_index":3314,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(value",{"_index":3076,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["numbered",{"_index":4403,"title":{},"body":{"license.html":{}}}],["numberofaccounts",{"_index":137,"title":{},"body":{"classes/AccountIndex.html":{}}}],["numbers",{"_index":3632,"title":{},"body":{"miscellaneous/functions.html":{}}}],["nurse",{"_index":2292,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nursery",{"_index":1904,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyalenda",{"_index":1848,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyalgunga",{"_index":1844,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyali",{"_index":1818,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyama",{"_index":2181,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyanya",{"_index":2180,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyanza",{"_index":1842,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyeri",{"_index":1870,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzora",{"_index":1715,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzovuni",{"_index":1716,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzugu",{"_index":2271,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["o",{"_index":941,"title":{},"body":{"injectables/AuthService.html":{}}}],["o.challenge",{"_index":1027,"title":{},"body":{"injectables/AuthService.html":{}}}],["o.realm",{"_index":1028,"title":{},"body":{"injectables/AuthService.html":{}}}],["objcsv",{"_index":3530,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["object",{"_index":47,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Category.html":{},"interfaces/Conversion.html":{},"classes/CustomValidator.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/Settings.html":{},"interfaces/Signature.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"interfaces/W3.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["objects",{"_index":1436,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["obligate",{"_index":4387,"title":{},"body":{"license.html":{}}}],["obligated",{"_index":4133,"title":{},"body":{"license.html":{}}}],["obligations",{"_index":4033,"title":{},"body":{"license.html":{}}}],["observable",{"_index":529,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{}}}],["observables's",{"_index":548,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["occasionally",{"_index":4118,"title":{},"body":{"license.html":{}}}],["occurred",{"_index":1384,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["occurring",{"_index":4281,"title":{},"body":{"license.html":{}}}],["occurs",{"_index":1439,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["of('hello",{"_index":3393,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["of(new",{"_index":2574,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["of(null",{"_index":2489,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["offer",{"_index":3809,"title":{},"body":{"license.html":{}}}],["offered",{"_index":4141,"title":{},"body":{"license.html":{}}}],["offering",{"_index":4122,"title":{},"body":{"license.html":{}}}],["office",{"_index":1834,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["official",{"_index":3946,"title":{},"body":{"license.html":{}}}],["offline",{"_index":2744,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["offset",{"_index":1092,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["ohuru",{"_index":1812,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["oil",{"_index":2430,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ok(accounttypes",{"_index":2533,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(actions",{"_index":2534,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(areanamelist",{"_index":2539,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(areatypelist",{"_index":2547,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(categorylist",{"_index":2555,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(genders",{"_index":2560,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(message",{"_index":2532,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedaction",{"_index":2535,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedareaname.name",{"_index":2543,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedareatype.name",{"_index":2551,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedcategory.name",{"_index":2559,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedtoken",{"_index":2566,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(responsebody",{"_index":2573,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(tokens",{"_index":2561,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(transactiontypes",{"_index":2567,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["old",{"_index":1801,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["oldchain:1",{"_index":29,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["olympic",{"_index":1743,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ombeni",{"_index":1807,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["omena",{"_index":2182,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["omeno",{"_index":2269,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["onaddresssearch",{"_index":212,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["once",{"_index":3724,"title":{},"body":{"index.html":{}}}],["onclick",{"_index":2937,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["one",{"_index":3704,"title":{},"body":{"index.html":{},"license.html":{}}}],["oninit",{"_index":190,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/FooterComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["onions",{"_index":2270,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["online",{"_index":2745,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["onmenuselect",{"_index":1572,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["onmenutoggle",{"_index":1585,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["onnamesearch",{"_index":213,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["onphonesearch",{"_index":214,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["onresize",{"_index":654,"title":{},"body":{"components/AppComponent.html":{}}}],["onresize(e",{"_index":672,"title":{},"body":{"components/AppComponent.html":{}}}],["onsign",{"_index":2783,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["onsign(signature",{"_index":2809,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["onsubmit",{"_index":808,"title":{},"body":{"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["onverify",{"_index":2784,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["onverify(flag",{"_index":2810,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["opendialog",{"_index":1336,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["opendialog(data",{"_index":1340,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["openpgp",{"_index":2650,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["openpgp.cleartext.fromtext(digest",{"_index":2821,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["openpgp.key.readarmored(key",{"_index":2666,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.key.readarmored(privatekey",{"_index":2669,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.keyring",{"_index":2652,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"miscellaneous/variables.html":{}}}],["openpgp.message.fromtext(plaintext",{"_index":2694,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.readkey",{"_index":2662,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.sign(opts",{"_index":2698,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.signature",{"_index":2818,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["openpgp.verify(opts).then((v",{"_index":2824,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["operate",{"_index":4439,"title":{},"body":{"license.html":{}}}],["operated",{"_index":4125,"title":{},"body":{"license.html":{}}}],["operating",{"_index":3967,"title":{},"body":{"license.html":{}}}],["operation",{"_index":3641,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{}}}],["option",{"_index":4210,"title":{},"body":{"license.html":{}}}],["optional",{"_index":12,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"interfaces/Signer.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{}}}],["options",{"_index":3938,"title":{},"body":{"license.html":{}}}],["opts",{"_index":2693,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["oranges",{"_index":2211,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["order",{"_index":4279,"title":{},"body":{"license.html":{}}}],["organisation",{"_index":2766,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organization",{"_index":2747,"title":{},"body":{"components/OrganizationComponent.html":{},"components/SettingsComponent.html":{},"modules/SettingsRoutingModule.html":{},"license.html":{}}}],["organization'},{'name",{"_index":318,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["organization.component.html",{"_index":2749,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organization.component.scss",{"_index":2748,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organizationcomponent",{"_index":317,"title":{"components/OrganizationComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["organizationform",{"_index":2750,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organizationformstub",{"_index":2751,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organizations",{"_index":3888,"title":{},"body":{"license.html":{}}}],["origin",{"_index":4226,"title":{},"body":{"license.html":{}}}],["original",{"_index":4227,"title":{},"body":{"license.html":{}}}],["others",{"_index":3789,"title":{},"body":{"license.html":{}}}],["otherwise",{"_index":128,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{}}}],["out",{"_index":455,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"index.html":{},"license.html":{},"overview.html":{}}}],["outgoing",{"_index":1356,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["outlet",{"_index":885,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["output",{"_index":4000,"title":{},"body":{"license.html":{}}}],["outside",{"_index":4016,"title":{},"body":{"license.html":{}}}],["overview",{"_index":3731,"title":{"overview.html":{}},"body":{"index.html":{},"overview.html":{}}}],["owino",{"_index":1647,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["owned",{"_index":4322,"title":{},"body":{"license.html":{}}}],["owner",{"_index":2458,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["package",{"_index":3574,"title":{"dependencies.html":{}},"body":{}}],["packaged",{"_index":4077,"title":{},"body":{"license.html":{}}}],["packaging",{"_index":3957,"title":{},"body":{"license.html":{}}}],["page",{"_index":709,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["pages",{"_index":2842,"title":{},"body":{"components/PagesComponent.html":{}}}],["pages'},{'name",{"_index":320,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["pages.component",{"_index":2861,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["pages.component.html",{"_index":2844,"title":{},"body":{"components/PagesComponent.html":{}}}],["pages.component.scss",{"_index":2843,"title":{},"body":{"components/PagesComponent.html":{}}}],["pages/accounts/account",{"_index":464,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["pages/accounts/accounts",{"_index":460,"title":{},"body":{"modules/AccountsModule.html":{}}}],["pages/accounts/accounts.component",{"_index":462,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["pages/accounts/create",{"_index":470,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["pages/admin/admin",{"_index":643,"title":{},"body":{"modules/AdminModule.html":{}}}],["pages/admin/admin.component",{"_index":644,"title":{},"body":{"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{}}}],["pages/pages",{"_index":2855,"title":{},"body":{"modules/PagesModule.html":{}}}],["pages/pages.component",{"_index":2856,"title":{},"body":{"modules/PagesModule.html":{}}}],["pages/settings/organization/organization.component",{"_index":3008,"title":{},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["pages/settings/settings",{"_index":3006,"title":{},"body":{"modules/SettingsModule.html":{}}}],["pages/settings/settings.component",{"_index":3007,"title":{},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["pages/tokens/token",{"_index":3171,"title":{},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{}}}],["pages/tokens/tokens",{"_index":3169,"title":{},"body":{"modules/TokensModule.html":{}}}],["pages/tokens/tokens.component",{"_index":3170,"title":{},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{}}}],["pages/transactions/transaction",{"_index":3453,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["pages/transactions/transactions",{"_index":3451,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["pages/transactions/transactions.component",{"_index":3452,"title":{},"body":{"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["pages/transactions/transactions.module",{"_index":491,"title":{},"body":{"modules/AccountsModule.html":{}}}],["pagescomponent",{"_index":319,"title":{"components/PagesComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["pagesizeoptions",{"_index":355,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{}}}],["pagesmodule",{"_index":2849,"title":{"modules/PagesModule.html":{}},"body":{"modules/PagesModule.html":{},"modules.html":{},"overview.html":{}}}],["pagesroutingmodule",{"_index":2853,"title":{"modules/PagesRoutingModule.html":{}},"body":{"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["paginator",{"_index":356,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["painter",{"_index":2060,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pampers",{"_index":2348,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["papa",{"_index":2162,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["paper",{"_index":4474,"title":{},"body":{"license.html":{}}}],["paraffin",{"_index":2433,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["parafin",{"_index":2435,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["paragraph",{"_index":4256,"title":{},"body":{"license.html":{}}}],["paragraphs",{"_index":4334,"title":{},"body":{"license.html":{}}}],["param",{"_index":159,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"classes/TokenRegistry.html":{}}}],["parameters",{"_index":96,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{}}}],["parammap",{"_index":528,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["params",{"_index":538,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"components/TokenDetailsComponent.html":{}}}],["parrafin",{"_index":2434,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["parsed",{"_index":3661,"title":{},"body":{"miscellaneous/functions.html":{}}}],["parsedata",{"_index":3528,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["parsedata(data",{"_index":3659,"title":{},"body":{"miscellaneous/functions.html":{}}}],["parseint(urlparts[urlparts.length",{"_index":2572,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["parser",{"_index":3309,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["parses",{"_index":3660,"title":{},"body":{"miscellaneous/functions.html":{}}}],["part",{"_index":3890,"title":{},"body":{"license.html":{}}}],["particular",{"_index":886,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["parties",{"_index":3921,"title":{},"body":{"license.html":{}}}],["parts",{"_index":2337,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["party",{"_index":898,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["party's",{"_index":4301,"title":{},"body":{"license.html":{}}}],["pass",{"_index":2520,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["passphrase",{"_index":1044,"title":{},"body":{"injectables/AuthService.html":{}}}],["password",{"_index":1060,"title":{},"body":{"injectables/AuthService.html":{},"classes/CustomValidator.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"components/SettingsComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{},"license.html":{}}}],["password.type",{"_index":2885,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["passwordmatchvalidator",{"_index":1291,"title":{},"body":{"classes/CustomValidator.html":{}}}],["passwordmatchvalidator(control",{"_index":1293,"title":{},"body":{"classes/CustomValidator.html":{}}}],["passwordtoggledirective",{"_index":342,"title":{"directives/PasswordToggleDirective.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"modules/AuthModule.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["pastor",{"_index":1938,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["patent",{"_index":4255,"title":{},"body":{"license.html":{}}}],["patents",{"_index":3855,"title":{},"body":{"license.html":{}}}],["path",{"_index":508,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["pathmatch",{"_index":510,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["patience",{"_index":1625,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["pattern",{"_index":3836,"title":{},"body":{"license.html":{}}}],["patternvalidator",{"_index":1292,"title":{},"body":{"classes/CustomValidator.html":{}}}],["patternvalidator(regex",{"_index":1301,"title":{},"body":{"classes/CustomValidator.html":{}}}],["payment",{"_index":4369,"title":{},"body":{"license.html":{}}}],["peanuts",{"_index":2168,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["peddler",{"_index":2072,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["peer",{"_index":4137,"title":{},"body":{"license.html":{}}}],["peers",{"_index":4140,"title":{},"body":{"license.html":{}}}],["peku",{"_index":1684,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["people",{"_index":3702,"title":{},"body":{"index.html":{}}}],["perform",{"_index":1288,"title":{},"body":{"classes/CustomValidator.html":{}}}],["performance",{"_index":4419,"title":{},"body":{"license.html":{}}}],["performing",{"_index":3978,"title":{},"body":{"license.html":{}}}],["perfume",{"_index":2365,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["periurban",{"_index":1879,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["permanently",{"_index":4264,"title":{},"body":{"license.html":{}}}],["permission",{"_index":3812,"title":{},"body":{"license.html":{}}}],["permissions",{"_index":3991,"title":{},"body":{"license.html":{}}}],["permissive",{"_index":4060,"title":{},"body":{"license.html":{}}}],["permit",{"_index":4093,"title":{},"body":{"license.html":{}}}],["permits",{"_index":4246,"title":{},"body":{"license.html":{}}}],["permitted",{"_index":3747,"title":{},"body":{"license.html":{}}}],["perpetuity",{"_index":4183,"title":{},"body":{"license.html":{}}}],["person",{"_index":3668,"title":{},"body":{"miscellaneous/functions.html":{}}}],["personal",{"_index":4149,"title":{},"body":{"license.html":{}}}],["personvalidation",{"_index":3533,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["personvalidation(person",{"_index":3666,"title":{},"body":{"miscellaneous/functions.html":{}}}],["pertinent",{"_index":4385,"title":{},"body":{"license.html":{}}}],["pesa",{"_index":2380,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["petro",{"_index":2437,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["petrol",{"_index":2436,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pgp",{"_index":1048,"title":{},"body":{"injectables/AuthService.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["pgp.js",{"_index":959,"title":{},"body":{"injectables/AuthService.html":{}}}],["pgpsigner",{"_index":2780,"title":{"classes/PGPSigner.html":{}},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["pharmacy",{"_index":2301,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["phone",{"_index":287,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["phonenumber",{"_index":261,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/CreateAccountComponent.html":{}}}],["phonesearchform",{"_index":208,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["phonesearchformstub",{"_index":217,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["phonesearchloading",{"_index":209,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["phonesearchsubmitted",{"_index":210,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["photo",{"_index":2113,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["photocopy",{"_index":2071,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["photographer",{"_index":2091,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["physical",{"_index":4101,"title":{},"body":{"license.html":{}}}],["physically",{"_index":4116,"title":{},"body":{"license.html":{}}}],["pieces",{"_index":3782,"title":{},"body":{"license.html":{}}}],["piki",{"_index":2401,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pikipiki",{"_index":2402,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pilau",{"_index":2236,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pipe",{"_index":1768,"title":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{}},"body":{"interceptors/MockBackendInterceptor.html":{},"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["pipe(catcherror(async",{"_index":689,"title":{},"body":{"components/AppComponent.html":{}}}],["pipe(delay(500",{"_index":2492,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(dematerialize",{"_index":2493,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(first",{"_index":410,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"components/TokenDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["pipe(materialize",{"_index":2491,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(mergemap(handleroute",{"_index":2490,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipes",{"_index":2941,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{},"overview.html":{}}}],["pipetransform",{"_index":2948,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{}}}],["pk",{"_index":2827,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["pk.decrypt(password",{"_index":2830,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["pk.isdecrypted",{"_index":2829,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["place",{"_index":4124,"title":{},"body":{"license.html":{}}}],["plaintext",{"_index":2646,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["plastic",{"_index":1979,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["playstation",{"_index":2366,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["please",{"_index":697,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{},"license.html":{}}}],["plumb",{"_index":2064,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["plus",{"_index":4304,"title":{},"body":{"license.html":{}}}],["pointer",{"_index":4466,"title":{},"body":{"license.html":{}}}],["pojo",{"_index":2161,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["police",{"_index":1952,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pombe",{"_index":2347,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pool",{"_index":2349,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["popper.js",{"_index":3610,"title":{},"body":{"dependencies.html":{}}}],["popperjs/core",{"_index":3581,"title":{},"body":{"dependencies.html":{}}}],["populated",{"_index":3725,"title":{},"body":{"index.html":{}}}],["porridge",{"_index":2235,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["portion",{"_index":4144,"title":{},"body":{"license.html":{}}}],["posho",{"_index":2046,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["possesses",{"_index":4113,"title":{},"body":{"license.html":{}}}],["possession",{"_index":4074,"title":{},"body":{"license.html":{}}}],["possibility",{"_index":4441,"title":{},"body":{"license.html":{}}}],["possible",{"_index":4457,"title":{},"body":{"license.html":{}}}],["post",{"_index":2505,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["potatoes",{"_index":2169,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["poultry",{"_index":2166,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["power",{"_index":4045,"title":{},"body":{"license.html":{}}}],["practical",{"_index":3757,"title":{},"body":{"license.html":{}}}],["practice",{"_index":3842,"title":{},"body":{"license.html":{}}}],["preamble",{"_index":3752,"title":{},"body":{"license.html":{}}}],["precise",{"_index":3869,"title":{},"body":{"license.html":{}}}],["precisely",{"_index":3839,"title":{},"body":{"license.html":{}}}],["predecessor",{"_index":4302,"title":{},"body":{"license.html":{}}}],["preferred",{"_index":3943,"title":{},"body":{"license.html":{}}}],["preloadallmodules",{"_index":791,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["preloadingstrategy",{"_index":800,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["prepare",{"_index":2786,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signer.html":{}}}],["prepare(material",{"_index":2799,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["present",{"_index":4398,"title":{},"body":{"license.html":{}}}],["presents",{"_index":3935,"title":{},"body":{"license.html":{}}}],["preservation",{"_index":4220,"title":{},"body":{"license.html":{}}}],["prevent",{"_index":3788,"title":{},"body":{"license.html":{}}}],["prevented",{"_index":4179,"title":{},"body":{"license.html":{}}}],["previous",{"_index":552,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"license.html":{}}}],["price",{"_index":3777,"title":{},"body":{"license.html":{}}}],["primarily",{"_index":4371,"title":{},"body":{"license.html":{}}}],["primary",{"_index":1896,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["printing",{"_index":2062,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["prints",{"_index":109,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/functions.html":{}}}],["prior",{"_index":4267,"title":{},"body":{"license.html":{}}}],["private",{"_index":256,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"components/TokenDetailsComponent.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["privatekey",{"_index":835,"title":{},"body":{"components/AuthComponent.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["privatekey.decrypt(password",{"_index":2692,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["privatekey.isdecrypted",{"_index":2690,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["privatekey.keypacket.privateparams.d",{"_index":3376,"title":{},"body":{"injectables/TransactionService.html":{}}}],["privatekeyarmored",{"_index":949,"title":{},"body":{"injectables/AuthService.html":{}}}],["privatekeys",{"_index":2695,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["problems",{"_index":3823,"title":{},"body":{"license.html":{}}}],["procedures",{"_index":4174,"title":{},"body":{"license.html":{}}}],["procuring",{"_index":4359,"title":{},"body":{"license.html":{}}}],["produce",{"_index":3970,"title":{},"body":{"license.html":{}}}],["product",{"_index":4102,"title":{},"body":{"license.html":{}}}],["production",{"_index":3711,"title":{},"body":{"index.html":{},"miscellaneous/variables.html":{}}}],["products",{"_index":20,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["professor",{"_index":1916,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["profile",{"_index":1621,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["program",{"_index":3766,"title":{},"body":{"license.html":{}}}],["program's",{"_index":4052,"title":{},"body":{"license.html":{}}}],["programmer",{"_index":2092,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["programming",{"_index":2063,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["programs",{"_index":3775,"title":{},"body":{"license.html":{}}}],["programsif",{"_index":4454,"title":{},"body":{"license.html":{}}}],["progress...show",{"_index":707,"title":{},"body":{"components/AppComponent.html":{}}}],["prohibit",{"_index":3841,"title":{},"body":{"license.html":{}}}],["prohibiting",{"_index":4041,"title":{},"body":{"license.html":{}}}],["prohibits",{"_index":4366,"title":{},"body":{"license.html":{}}}],["project",{"_index":3676,"title":{},"body":{"index.html":{}}}],["prominent",{"_index":3939,"title":{},"body":{"license.html":{}}}],["prominently",{"_index":3930,"title":{},"body":{"license.html":{}}}],["promise",{"_index":117,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"miscellaneous/functions.html":{}}}],["promise((resolve",{"_index":1004,"title":{},"body":{"injectables/AuthService.html":{}}}],["promise(async",{"_index":1024,"title":{},"body":{"injectables/AuthService.html":{}}}],["propagate",{"_index":3901,"title":{},"body":{"license.html":{}}}],["propagating",{"_index":4287,"title":{},"body":{"license.html":{}}}],["propagation",{"_index":3913,"title":{},"body":{"license.html":{}}}],["properties",{"_index":11,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Category.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/LoggingService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"injectables/RegistryService.html":{},"directives/RouterLinkDirectiveStub.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"miscellaneous/variables.html":{}}}],["property",{"_index":4150,"title":{},"body":{"license.html":{}}}],["proprietary",{"_index":3865,"title":{},"body":{"license.html":{}}}],["protect",{"_index":3785,"title":{},"body":{"license.html":{}}}],["protecting",{"_index":3834,"title":{},"body":{"license.html":{}}}],["protection",{"_index":3814,"title":{},"body":{"license.html":{}}}],["protocols",{"_index":4199,"title":{},"body":{"license.html":{}}}],["protractor",{"_index":3720,"title":{},"body":{"index.html":{}}}],["prove",{"_index":4420,"title":{},"body":{"license.html":{}}}],["provide",{"_index":787,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["provided",{"_index":3934,"title":{},"body":{"license.html":{}}}],["providedin",{"_index":899,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"injectables/LocationService.html":{},"injectables/LoggingService.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["provider",{"_index":1258,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/Settings.html":{},"interfaces/W3.html":{},"miscellaneous/variables.html":{}}}],["providers",{"_index":446,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"overview.html":{}}}],["provides",{"_index":70,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"classes/CustomValidator.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"classes/TokenRegistry.html":{},"miscellaneous/functions.html":{}}}],["provision",{"_index":3850,"title":{},"body":{"license.html":{}}}],["provisionally",{"_index":4261,"title":{},"body":{"license.html":{}}}],["proxy",{"_index":4407,"title":{},"body":{"license.html":{}}}],["proxy's",{"_index":4409,"title":{},"body":{"license.html":{}}}],["pry",{"_index":1887,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pub",{"_index":2378,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["public",{"_index":83,"title":{},"body":{"classes/AccountIndex.html":{},"components/AppComponent.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["publicity",{"_index":4228,"title":{},"body":{"license.html":{}}}],["publickey",{"_index":2628,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["publickey.getkeyid().tohex",{"_index":2687,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["publickeys",{"_index":701,"title":{},"body":{"components/AppComponent.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["publickeysurl",{"_index":4519,"title":{},"body":{"miscellaneous/variables.html":{}}}],["publicly",{"_index":4200,"title":{},"body":{"license.html":{}}}],["publish",{"_index":4056,"title":{},"body":{"license.html":{}}}],["published",{"_index":4404,"title":{},"body":{"license.html":{}}}],["pump",{"_index":555,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["purpose",{"_index":3858,"title":{},"body":{"license.html":{}}}],["purposes",{"_index":4154,"title":{},"body":{"license.html":{}}}],["pursuant",{"_index":4356,"title":{},"body":{"license.html":{}}}],["put",{"_index":2647,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["qkvhsu46vknbukqnclzfulnjt046my4wdqpftufjtdphyxjuzxnlbkbob3rtywlslmnvbq0krk46s3vydmkgs3jhbmpjdqpooktyyw5qyztldxj0ozs7dqpuruw7vflqpunftew6njkyntazmzq5ode5ng0kru5eolzdqvjedqo",{"_index":3507,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["qualify",{"_index":4276,"title":{},"body":{"license.html":{}}}],["quality",{"_index":4418,"title":{},"body":{"license.html":{}}}],["queriedaction",{"_index":2525,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedaction.approval",{"_index":2529,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedareaname",{"_index":2540,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedareatype",{"_index":2548,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedcategory",{"_index":2556,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedtoken",{"_index":2562,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["querying",{"_index":75,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["queryparams",{"_index":2922,"title":{},"body":{"guards/RoleGuard.html":{}}}],["quot;false"",{"_index":130,"title":{},"body":{"classes/AccountIndex.html":{}}}],["quot;true"",{"_index":110,"title":{},"body":{"classes/AccountIndex.html":{},"miscellaneous/functions.html":{}}}],["r",{"_index":1026,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["raibai",{"_index":1837,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rangala",{"_index":1850,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ratio.pipe",{"_index":3025,"title":{},"body":{"modules/SharedModule.html":{}}}],["ratio.pipe.ts",{"_index":3073,"title":{},"body":{"pipes/TokenRatioPipe.html":{},"coverage.html":{}}}],["ratio.pipe.ts:5",{"_index":3075,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["rcu",{"_index":2767,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["reached",{"_index":696,"title":{},"body":{"components/AppComponent.html":{}}}],["reactiveformsmodule",{"_index":499,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AuthModule.html":{},"modules/SettingsModule.html":{}}}],["read",{"_index":3665,"title":{},"body":{"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["readable",{"_index":4098,"title":{},"body":{"license.html":{}}}],["readarmored(signature.data",{"_index":2819,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["readcsv",{"_index":3529,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["readcsv(input",{"_index":3662,"title":{},"body":{"miscellaneous/functions.html":{}}}],["readily",{"_index":4344,"title":{},"body":{"license.html":{}}}],["reading",{"_index":4203,"title":{},"body":{"license.html":{}}}],["readonly",{"_index":535,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["reads",{"_index":3663,"title":{},"body":{"miscellaneous/functions.html":{}}}],["ready",{"_index":3848,"title":{},"body":{"license.html":{}}}],["readystate",{"_index":651,"title":{},"body":{"components/AppComponent.html":{},"injectables/BlockSyncService.html":{}}}],["readystateelements",{"_index":1124,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateelements.network",{"_index":1142,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateprocessor",{"_index":1086,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateprocessor(settings",{"_index":1105,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystatetarget",{"_index":652,"title":{},"body":{"components/AppComponent.html":{},"injectables/BlockSyncService.html":{}}}],["realm",{"_index":1023,"title":{},"body":{"injectables/AuthService.html":{}}}],["reason",{"_index":4354,"title":{},"body":{"license.html":{}}}],["reasonable",{"_index":4114,"title":{},"body":{"license.html":{}}}],["receipt",{"_index":4274,"title":{},"body":{"license.html":{}}}],["receive",{"_index":3780,"title":{},"body":{"license.html":{}}}],["received",{"_index":3802,"title":{},"body":{"license.html":{}}}],["receives",{"_index":4292,"title":{},"body":{"license.html":{}}}],["receiving",{"_index":4361,"title":{},"body":{"license.html":{}}}],["recently",{"_index":136,"title":{},"body":{"classes/AccountIndex.html":{}}}],["receptionist",{"_index":2061,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["recipient",{"_index":1202,"title":{},"body":{"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"license.html":{}}}],["recipient's",{"_index":4352,"title":{},"body":{"license.html":{}}}],["recipientaddress",{"_index":3285,"title":{},"body":{"injectables/TransactionService.html":{}}}],["recipientbloxberglink",{"_index":3185,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["recipients",{"_index":3799,"title":{},"body":{"license.html":{}}}],["reclaim",{"_index":1616,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["reclamation",{"_index":2479,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["recognized",{"_index":3947,"title":{},"body":{"license.html":{}}}],["recommend",{"_index":1074,"title":{},"body":{"injectables/AuthService.html":{}}}],["recycling",{"_index":1983,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["red",{"_index":1905,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["redcross",{"_index":1930,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["redirectto",{"_index":509,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["redistribute",{"_index":4460,"title":{},"body":{"license.html":{}}}],["reference",{"_index":3733,"title":{},"body":{"index.html":{}}}],["referrer",{"_index":1234,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["referring",{"_index":3776,"title":{},"body":{"license.html":{}}}],["refers",{"_index":3876,"title":{},"body":{"license.html":{}}}],["refrain",{"_index":4389,"title":{},"body":{"license.html":{}}}],["refreshpaginator",{"_index":361,"title":{},"body":{"components/AccountsComponent.html":{}}}],["regard",{"_index":4209,"title":{},"body":{"license.html":{}}}],["regardless",{"_index":4076,"title":{},"body":{"license.html":{}}}],["regards",{"_index":1263,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["regenerate",{"_index":3989,"title":{},"body":{"license.html":{}}}],["regex",{"_index":1307,"title":{},"body":{"classes/CustomValidator.html":{}}}],["regex.test(control.value",{"_index":1316,"title":{},"body":{"classes/CustomValidator.html":{}}}],["regexp",{"_index":1302,"title":{},"body":{"classes/CustomValidator.html":{}}}],["registered",{"_index":76,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["registers",{"_index":105,"title":{},"body":{"classes/AccountIndex.html":{}}}],["registration",{"_index":111,"title":{},"body":{"classes/AccountIndex.html":{}}}],["registry",{"_index":73,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/RegistryService.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"interfaces/W3.html":{},"miscellaneous/variables.html":{}}}],["registry.ts",{"_index":3080,"title":{},"body":{"classes/TokenRegistry.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["registry.ts:21",{"_index":3084,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:23",{"_index":3085,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:25",{"_index":3083,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:56",{"_index":3087,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:74",{"_index":3094,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:90",{"_index":3098,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registryaddress",{"_index":4529,"title":{},"body":{"miscellaneous/variables.html":{}}}],["registryservice",{"_index":1089,"title":{"injectables/RegistryService.html":{}},"body":{"injectables/BlockSyncService.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["registryservice.getregistry",{"_index":3120,"title":{},"body":{"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["regular",{"_index":1305,"title":{},"body":{"classes/CustomValidator.html":{}}}],["reinstated",{"_index":4260,"title":{},"body":{"license.html":{}}}],["reject",{"_index":1005,"title":{},"body":{"injectables/AuthService.html":{}}}],["reject(error",{"_index":1008,"title":{},"body":{"injectables/AuthService.html":{}}}],["rejected",{"_index":993,"title":{},"body":{"injectables/AuthService.html":{}}}],["relationship",{"_index":4017,"title":{},"body":{"license.html":{}}}],["released",{"_index":3771,"title":{},"body":{"license.html":{}}}],["relevant",{"_index":4069,"title":{},"body":{"license.html":{}}}],["relicensing",{"_index":4247,"title":{},"body":{"license.html":{}}}],["religious",{"_index":1942,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["religous",{"_index":1941,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["reload",{"_index":3690,"title":{},"body":{"index.html":{}}}],["relying",{"_index":4343,"title":{},"body":{"license.html":{}}}],["remain",{"_index":4132,"title":{},"body":{"license.html":{}}}],["remains",{"_index":3769,"title":{},"body":{"license.html":{}}}],["remarks",{"_index":158,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["removal",{"_index":4212,"title":{},"body":{"license.html":{}}}],["remove",{"_index":4211,"title":{},"body":{"license.html":{}}}],["removekeysforid",{"_index":2599,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removekeysforid(keyid",{"_index":2638,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickey",{"_index":2600,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickey(publickey",{"_index":2640,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickeyforid",{"_index":2601,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickeyforid(keyid",{"_index":2642,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["rename",{"_index":998,"title":{},"body":{"injectables/AuthService.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["render",{"_index":3867,"title":{},"body":{"license.html":{}}}],["rendered",{"_index":4434,"title":{},"body":{"license.html":{}}}],["renderer",{"_index":1575,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["renderer2",{"_index":1576,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["repair",{"_index":2044,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["replaysubject",{"_index":544,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["represent",{"_index":4171,"title":{},"body":{"license.html":{}}}],["represents",{"_index":891,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["request",{"_index":1358,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["request.clone({headers",{"_index":1493,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["request.headers.set('authorization",{"_index":1494,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["request.method",{"_index":1525,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["request.urlwithparams",{"_index":1526,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["requesting",{"_index":1040,"title":{},"body":{"injectables/AuthService.html":{}}}],["requests",{"_index":1369,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["require",{"_index":2768,"title":{},"body":{"components/OrganizationComponent.html":{},"license.html":{}}}],["require('@src/assets/js/block",{"_index":152,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["require('openpgp",{"_index":2808,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"miscellaneous/variables.html":{}}}],["require('vcard",{"_index":3308,"title":{},"body":{"injectables/TransactionService.html":{},"miscellaneous/variables.html":{}}}],["required",{"_index":288,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["requirement",{"_index":4070,"title":{},"body":{"license.html":{}}}],["requirements",{"_index":4135,"title":{},"body":{"license.html":{}}}],["requires",{"_index":106,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{}}}],["requiring",{"_index":3892,"title":{},"body":{"license.html":{}}}],["res",{"_index":276,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"components/TokenDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["res.ok",{"_index":1073,"title":{},"body":{"injectables/AuthService.html":{}}}],["res.status",{"_index":1076,"title":{},"body":{"injectables/AuthService.html":{}}}],["res.text",{"_index":1077,"title":{},"body":{"injectables/AuthService.html":{}}}],["researcher",{"_index":1915,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["resend",{"_index":3245,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reserve",{"_index":2445,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenServiceStub.html":{},"miscellaneous/variables.html":{}}}],["reserveratio",{"_index":2457,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["reserves",{"_index":2452,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["reset",{"_index":454,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"overview.html":{}}}],["resettransactionslist",{"_index":3266,"title":{},"body":{"injectables/TransactionService.html":{}}}],["resize",{"_index":717,"title":{},"body":{"components/AppComponent.html":{}}}],["resolve",{"_index":1025,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolve(false",{"_index":1045,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolve(true",{"_index":1011,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolved",{"_index":1600,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["resource",{"_index":1404,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["resources",{"_index":3656,"title":{},"body":{"miscellaneous/functions.html":{}}}],["respect",{"_index":3795,"title":{},"body":{"license.html":{}}}],["response",{"_index":49,"title":{},"body":{"interfaces/AccountDetails.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["responsebody",{"_index":2575,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["responsibilities",{"_index":1003,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["responsible",{"_index":4293,"title":{},"body":{"license.html":{}}}],["restrict",{"_index":3857,"title":{},"body":{"license.html":{}}}],["restricting",{"_index":4042,"title":{},"body":{"license.html":{}}}],["restriction",{"_index":4245,"title":{},"body":{"license.html":{}}}],["restrictions",{"_index":4242,"title":{},"body":{"license.html":{}}}],["result",{"_index":63,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Category.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"routes.html":{},"miscellaneous/variables.html":{}}}],["resulting",{"_index":3895,"title":{},"body":{"license.html":{}}}],["results",{"_index":65,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Category.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"license.html":{},"modules.html":{},"overview.html":{},"routes.html":{},"miscellaneous/variables.html":{}}}],["retail",{"_index":2346,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["retains",{"_index":4186,"title":{},"body":{"license.html":{}}}],["return",{"_index":138,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AdminComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{},"license.html":{}}}],["returned",{"_index":1309,"title":{},"body":{"classes/CustomValidator.html":{},"interceptors/ErrorInterceptor.html":{}}}],["returns",{"_index":116,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{}}}],["returnurl",{"_index":2923,"title":{},"body":{"guards/RoleGuard.html":{}}}],["reverse",{"_index":3247,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reversetransaction",{"_index":3189,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reviewing",{"_index":4445,"title":{},"body":{"license.html":{}}}],["revised",{"_index":4396,"title":{},"body":{"license.html":{}}}],["revokeaction(action.id",{"_index":623,"title":{},"body":{"components/AdminComponent.html":{}}}],["rewards",{"_index":2478,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ribe",{"_index":1838,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["right",{"_index":4181,"title":{},"body":{"license.html":{}}}],["rights",{"_index":3786,"title":{},"body":{"license.html":{}}}],["risk",{"_index":4417,"title":{},"body":{"license.html":{}}}],["road",{"_index":1648,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["role",{"_index":516,"title":{},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["roleguard",{"_index":2910,"title":{"guards/RoleGuard.html":{}},"body":{"guards/RoleGuard.html":{},"coverage.html":{}}}],["roles",{"_index":2916,"title":{},"body":{"guards/RoleGuard.html":{}}}],["rom",{"_index":4189,"title":{},"body":{"license.html":{}}}],["root",{"_index":647,"title":{},"body":{"components/AppComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/ErrorDialogService.html":{},"injectables/LocationService.html":{},"injectables/LoggingService.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["root'},{'name",{"_index":304,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["route",{"_index":523,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"guards/AuthGuard.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"components/TokenDetailsComponent.html":{},"coverage.html":{},"index.html":{}}}],["route.data.roles",{"_index":2919,"title":{},"body":{"guards/RoleGuard.html":{}}}],["route.data.roles.indexof(currentuser.role",{"_index":2920,"title":{},"body":{"guards/RoleGuard.html":{}}}],["router",{"_index":222,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"guards/RoleGuard.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["routerlink",{"_index":2928,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["routerlinkdirectivestub",{"_index":344,"title":{"directives/RouterLinkDirectiveStub.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["routermodule",{"_index":507,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["routermodule.forchild(routes",{"_index":512,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["routermodule.forroot(routes",{"_index":799,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["routerstatesnapshot",{"_index":877,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["routes",{"_index":506,"title":{"routes.html":{}},"body":{"modules/AccountsRoutingModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"modules/AuthRoutingModule.html":{},"interceptors/MockBackendInterceptor.html":{},"modules/PagesRoutingModule.html":{},"guards/RoleGuard.html":{},"modules/SettingsRoutingModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsRoutingModule.html":{},"routes.html":{}}}],["route}.\\n${error.message",{"_index":1481,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["route}.\\n${error.message}.\\nstatus",{"_index":1478,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["routing.module",{"_index":461,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["routing.module.ts",{"_index":505,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["row",{"_index":579,"title":{},"body":{"components/AdminComponent.html":{}}}],["row.isexpanded",{"_index":624,"title":{},"body":{"components/AdminComponent.html":{}}}],["royalty",{"_index":4308,"title":{},"body":{"license.html":{}}}],["rsv",{"_index":1613,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/TokenServiceStub.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["rubbish",{"_index":1973,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ruben",{"_index":1636,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rueben",{"_index":1637,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ruiru",{"_index":1745,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rules",{"_index":4198,"title":{},"body":{"license.html":{}}}],["run",{"_index":3679,"title":{},"body":{"index.html":{},"license.html":{}}}],["running",{"_index":3712,"title":{},"body":{"index.html":{},"license.html":{}}}],["runs",{"_index":3968,"title":{},"body":{"license.html":{}}}],["runtime",{"_index":1438,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["rural",{"_index":1857,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rxjs",{"_index":550,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{},"dependencies.html":{}}}],["rxjs/operators",{"_index":398,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["s",{"_index":952,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["s.signature",{"_index":2836,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["sabuni",{"_index":2290,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sad",{"_index":708,"title":{},"body":{"components/AppComponent.html":{}}}],["safe",{"_index":2943,"title":{},"body":{"pipes/SafePipe.html":{}}}],["safepipe",{"_index":2940,"title":{"pipes/SafePipe.html":{}},"body":{"pipes/SafePipe.html":{},"modules/SharedModule.html":{},"coverage.html":{},"overview.html":{}}}],["safest",{"_index":4462,"title":{},"body":{"license.html":{}}}],["sake",{"_index":3819,"title":{},"body":{"license.html":{}}}],["sale",{"_index":4316,"title":{},"body":{"license.html":{}}}],["sales",{"_index":2073,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["salon",{"_index":2066,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["saloon",{"_index":2074,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["samaki",{"_index":2172,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sambusa",{"_index":2246,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["same",{"_index":3800,"title":{},"body":{"license.html":{}}}],["samosa",{"_index":2170,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sanitizer",{"_index":2950,"title":{},"body":{"pipes/SafePipe.html":{}}}],["sarafu",{"_index":58,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"classes/TokenRegistry.html":{},"components/TransactionDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["sarafutoken",{"_index":3130,"title":{},"body":{"injectables/TokenService.html":{}}}],["sarafutoken.methods.balanceof(address).call",{"_index":3133,"title":{},"body":{"injectables/TokenService.html":{}}}],["satisfy",{"_index":4134,"title":{},"body":{"license.html":{}}}],["sausages",{"_index":2216,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["savings",{"_index":2307,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["saying",{"_index":4130,"title":{},"body":{"license.html":{}}}],["scaffolding",{"_index":3692,"title":{},"body":{"index.html":{}}}],["scan",{"_index":1087,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["scan(settings",{"_index":1108,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["scanfilter",{"_index":2953,"title":{},"body":{"classes/Settings.html":{},"interfaces/W3.html":{}}}],["sch",{"_index":1885,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["schema",{"_index":3670,"title":{},"body":{"miscellaneous/functions.html":{}}}],["schemas",{"_index":3592,"title":{},"body":{"dependencies.html":{}}}],["school",{"_index":1886,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["science",{"_index":1933,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["scope",{"_index":4365,"title":{},"body":{"license.html":{}}}],["scrap",{"_index":1970,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["script",{"_index":3710,"title":{},"body":{"index.html":{}}}],["scripts",{"_index":3974,"title":{},"body":{"license.html":{}}}],["search",{"_index":196,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsRoutingModule.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["search'},{'name",{"_index":300,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["search.component",{"_index":500,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["search.component.html",{"_index":200,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.scss",{"_index":198,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts",{"_index":188,"title":{},"body":{"components/AccountSearchComponent.html":{},"coverage.html":{}}}],["search.component.ts:16",{"_index":235,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:17",{"_index":237,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:18",{"_index":236,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:19",{"_index":238,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:20",{"_index":240,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:21",{"_index":239,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:22",{"_index":230,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:23",{"_index":233,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:24",{"_index":232,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:25",{"_index":223,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:33",{"_index":224,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:45",{"_index":242,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:48",{"_index":244,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:51",{"_index":246,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:55",{"_index":227,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:65",{"_index":228,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:85",{"_index":226,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search/account",{"_index":187,"title":{},"body":{"components/AccountSearchComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"coverage.html":{}}}],["secondarily",{"_index":3905,"title":{},"body":{"license.html":{}}}],["secondary",{"_index":1897,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["secp256k1",{"_index":3306,"title":{},"body":{"injectables/TransactionService.html":{}}}],["secp256k1.ecdsasign(txmsg",{"_index":3375,"title":{},"body":{"injectables/TransactionService.html":{}}}],["secretary",{"_index":2078,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["section",{"_index":4022,"title":{},"body":{"license.html":{}}}],["sections",{"_index":1454,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["secure",{"_index":2995,"title":{},"body":{"components/SettingsComponent.html":{}}}],["security",{"_index":2076,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["see",{"_index":3722,"title":{},"body":{"index.html":{},"license.html":{}}}],["seedling",{"_index":1981,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["seedlings",{"_index":1982,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["seigei",{"_index":1649,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["select",{"_index":2495,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["selection.directive",{"_index":3023,"title":{},"body":{"modules/SharedModule.html":{}}}],["selection.directive.ts",{"_index":1570,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"coverage.html":{}}}],["selection.directive.ts:16",{"_index":1578,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["selection.directive.ts:6",{"_index":1577,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["selector",{"_index":194,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["sell",{"_index":4331,"title":{},"body":{"license.html":{}}}],["selling",{"_index":3506,"title":{},"body":{"classes/UserServiceStub.html":{},"license.html":{}}}],["semiconductor",{"_index":3879,"title":{},"body":{"license.html":{}}}],["send",{"_index":836,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["senddebuglevelmessage",{"_index":1532,"title":{},"body":{"injectables/LoggingService.html":{}}}],["senddebuglevelmessage(message",{"_index":1542,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sender",{"_index":1201,"title":{},"body":{"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["senderaddress",{"_index":3284,"title":{},"body":{"injectables/TransactionService.html":{}}}],["senderbloxberglink",{"_index":3186,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["senderrorlevelmessage",{"_index":1533,"title":{},"body":{"injectables/LoggingService.html":{}}}],["senderrorlevelmessage(message",{"_index":1544,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendfatallevelmessage",{"_index":1534,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendfatallevelmessage(message",{"_index":1546,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendinfolevelmessage",{"_index":1535,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendinfolevelmessage(message",{"_index":1548,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendloglevelmessage",{"_index":1536,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendloglevelmessage(message",{"_index":1550,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendresponse",{"_index":927,"title":{},"body":{"injectables/AuthService.html":{}}}],["sendresponse(hobaresponseencoded",{"_index":944,"title":{},"body":{"injectables/AuthService.html":{}}}],["sendtracelevelmessage",{"_index":1537,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendtracelevelmessage(message",{"_index":1552,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendwarnlevelmessage",{"_index":1538,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendwarnlevelmessage(message",{"_index":1554,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sentence",{"_index":1453,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["sentencesforwarninglogging",{"_index":1425,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["separable",{"_index":4143,"title":{},"body":{"license.html":{}}}],["separate",{"_index":1002,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["separately",{"_index":4080,"title":{},"body":{"license.html":{}}}],["seremala",{"_index":2075,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["serial",{"_index":3095,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["server",{"_index":2484,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"dependencies.html":{},"index.html":{},"license.html":{}}}],["serverloggingurl",{"_index":780,"title":{},"body":{"modules/AppModule.html":{}}}],["serverloglevel",{"_index":778,"title":{},"body":{"modules/AppModule.html":{},"miscellaneous/variables.html":{}}}],["serves",{"_index":3960,"title":{},"body":{"license.html":{}}}],["service",{"_index":869,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"classes/TokenServiceStub.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["serviceworkermodule",{"_index":774,"title":{},"body":{"modules/AppModule.html":{}}}],["serviceworkermodule.register('ngsw",{"_index":783,"title":{},"body":{"modules/AppModule.html":{}}}],["servicing",{"_index":4424,"title":{},"body":{"license.html":{}}}],["session",{"_index":1001,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessionlogincount",{"_index":916,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessionstorage.getitem(btoa('cicada_session_token",{"_index":970,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/HttpConfigInterceptor.html":{}}}],["sessionstorage.removeitem(btoa('cicada_session_token",{"_index":1068,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessionstorage.setitem(btoa('cicada_session_token",{"_index":1010,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessiontoken",{"_index":917,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessiontokenresult",{"_index":1029,"title":{},"body":{"injectables/AuthService.html":{}}}],["set",{"_index":547,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/functions.html":{},"index.html":{}}}],["setconversion",{"_index":3267,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["setconversion(conversion",{"_index":3279,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["setkey",{"_index":827,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["setkey(privatekeyarmored",{"_index":947,"title":{},"body":{"injectables/AuthService.html":{}}}],["setparammap",{"_index":531,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["setparammap(params",{"_index":545,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["sets",{"_index":1296,"title":{},"body":{"classes/CustomValidator.html":{}}}],["setstate",{"_index":928,"title":{},"body":{"injectables/AuthService.html":{}}}],["setstate(s",{"_index":950,"title":{},"body":{"injectables/AuthService.html":{}}}],["settimeout",{"_index":2740,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["setting",{"_index":967,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/HttpConfigInterceptor.html":{}}}],["settings",{"_index":1097,"title":{"classes/Settings.html":{}},"body":{"injectables/BlockSyncService.html":{},"components/OrganizationComponent.html":{},"modules/PagesRoutingModule.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/W3.html":{},"coverage.html":{}}}],["settings'},{'name",{"_index":322,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["settings(this.scan",{"_index":1123,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.component.html",{"_index":2964,"title":{},"body":{"components/SettingsComponent.html":{}}}],["settings.component.scss",{"_index":2963,"title":{},"body":{"components/SettingsComponent.html":{}}}],["settings.registry",{"_index":1129,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.registry.load",{"_index":1143,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.registry.onload",{"_index":1137,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.scanfilter",{"_index":1183,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper",{"_index":1131,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.onconversion",{"_index":1135,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.ontransfer",{"_index":1133,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.processreceipt(m.data",{"_index":1153,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.w3.engine",{"_index":1127,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.w3.provider",{"_index":1125,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settingscomponent",{"_index":321,"title":{"components/SettingsComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["settingsmodule",{"_index":3000,"title":{"modules/SettingsModule.html":{}},"body":{"modules/SettingsModule.html":{},"modules.html":{},"overview.html":{}}}],["settingsroutingmodule",{"_index":3004,"title":{"modules/SettingsRoutingModule.html":{}},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["settransaction",{"_index":3268,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["settransaction(transaction",{"_index":3281,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["sha256",{"_index":2790,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["sha3",{"_index":3298,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{}}}],["shall",{"_index":4027,"title":{},"body":{"license.html":{}}}],["shamba",{"_index":1992,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shanzu",{"_index":1819,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["share",{"_index":551,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"license.html":{}}}],["shared",{"_index":3980,"title":{},"body":{"license.html":{}}}],["sharedmodule",{"_index":451,"title":{"modules/SharedModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"modules.html":{},"overview.html":{}}}],["shepard",{"_index":2080,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shephard",{"_index":2081,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shepherd",{"_index":2032,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shirt",{"_index":2363,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shoe",{"_index":2079,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shop",{"_index":2314,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["short",{"_index":4477,"title":{},"body":{"license.html":{}}}],["show",{"_index":3803,"title":{},"body":{"license.html":{}}}],["siaya",{"_index":1846,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sickly",{"_index":2305,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["side",{"_index":1383,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["sidebar",{"_index":718,"title":{},"body":{"components/AppComponent.html":{},"components/FooterStubComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{}}}],["sidebar'},{'name",{"_index":324,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["sidebar.component.html",{"_index":3031,"title":{},"body":{"components/SidebarComponent.html":{}}}],["sidebar.component.scss",{"_index":3030,"title":{},"body":{"components/SidebarComponent.html":{}}}],["sidebar?.classlist.add('active",{"_index":729,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebar?.classlist.contains('active",{"_index":728,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebar?.classlist.remove('active",{"_index":732,"title":{},"body":{"components/AppComponent.html":{}}}],["sidebar?.classlist.toggle('active",{"_index":1590,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["sidebarcollapse",{"_index":723,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["sidebarcollapse?.classlist.contains('active",{"_index":725,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebarcollapse?.classlist.remove('active",{"_index":726,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebarcollapse?.classlist.toggle('active",{"_index":1592,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["sidebarcomponent",{"_index":323,"title":{"components/SidebarComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["sidebarstubcomponent",{"_index":325,"title":{"components/SidebarStubComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["sig",{"_index":2823,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["sigei",{"_index":1644,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sign",{"_index":2602,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["sign(digest",{"_index":2803,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["sign(opts",{"_index":2831,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["sign(plaintext",{"_index":2644,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["signable",{"_index":2800,"title":{"interfaces/Signable.html":{}},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["signature",{"_index":43,"title":{"interfaces/Signature.html":{},"interfaces/Signature-1.html":{}},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["signatureobject",{"_index":2697,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["signatureobject.recid",{"_index":3380,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signatureobject.signature",{"_index":2699,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["signatureobject.signature.slice(0",{"_index":3377,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signatureobject.signature.slice(32",{"_index":3379,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signchallenge",{"_index":957,"title":{},"body":{"injectables/AuthService.html":{}}}],["signed",{"_index":999,"title":{},"body":{"injectables/AuthService.html":{}}}],["signer",{"_index":108,"title":{"interfaces/Signer.html":{}},"body":{"classes/AccountIndex.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["signer.ts",{"_index":2781,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["signer.ts:18",{"_index":3037,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:19",{"_index":3038,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:20",{"_index":3036,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:21",{"_index":3039,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:22",{"_index":3041,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:23",{"_index":3040,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:27",{"_index":2793,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:28",{"_index":2791,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:29",{"_index":2792,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:30",{"_index":2797,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:31",{"_index":2794,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:32",{"_index":2795,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:33",{"_index":2796,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:34",{"_index":2789,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:42",{"_index":2798,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:46",{"_index":2801,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:51",{"_index":2806,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:7",{"_index":3035,"title":{},"body":{"interfaces/Signable.html":{}}}],["signer.ts:83",{"_index":2804,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signeraddress",{"_index":81,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["significant",{"_index":4172,"title":{},"body":{"license.html":{}}}],["silc",{"_index":2310,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["silver",{"_index":3484,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["sima",{"_index":2243,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["similar",{"_index":4040,"title":{},"body":{"license.html":{}}}],["simsim",{"_index":2234,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["simu",{"_index":2350,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["simulate",{"_index":2483,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["simultaneously",{"_index":4384,"title":{},"body":{"license.html":{}}}],["sinai",{"_index":1643,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["single",{"_index":4357,"title":{},"body":{"license.html":{}}}],["size",{"_index":4535,"title":{},"body":{"miscellaneous/variables.html":{}}}],["slash",{"_index":2889,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["smokie",{"_index":2254,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["smokies",{"_index":2255,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sms",{"_index":3246,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["snackbar",{"_index":3193,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["snacks",{"_index":2247,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soap",{"_index":2291,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["societies",{"_index":3068,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["socks",{"_index":2338,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soda",{"_index":2167,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["software",{"_index":3742,"title":{},"body":{"license.html":{}}}],["soko",{"_index":2171,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["solar",{"_index":2425,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sold",{"_index":4155,"title":{},"body":{"license.html":{}}}],["soldier",{"_index":1955,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sole",{"_index":4007,"title":{},"body":{"license.html":{}}}],["solely",{"_index":4019,"title":{},"body":{"license.html":{}}}],["somehow",{"_index":838,"title":{},"body":{"components/AuthComponent.html":{}}}],["something",{"_index":705,"title":{},"body":{"components/AppComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["sort",{"_index":357,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["soup",{"_index":2252,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["source",{"_index":4,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Category.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"index.html":{},"license.html":{}}}],["sourcetoken",{"_index":1198,"title":{},"body":{"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["south",{"_index":1633,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soweto",{"_index":1742,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["spare",{"_index":2336,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["spareparts",{"_index":2327,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["speak",{"_index":1037,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["special",{"_index":3861,"title":{},"body":{"license.html":{}}}],["specific",{"_index":125,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["specifically",{"_index":3984,"title":{},"body":{"license.html":{}}}],["specified",{"_index":135,"title":{},"body":{"classes/AccountIndex.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["specifies",{"_index":4402,"title":{},"body":{"license.html":{}}}],["specify",{"_index":4405,"title":{},"body":{"license.html":{}}}],["spinach",{"_index":2253,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["spinner",{"_index":498,"title":{},"body":{"modules/AccountsModule.html":{}}}],["spirit",{"_index":4397,"title":{},"body":{"license.html":{}}}],["src/.../account.ts",{"_index":4504,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../accountindex.ts",{"_index":4501,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../array",{"_index":3623,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../clipboard",{"_index":3624,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../environment.dev.ts",{"_index":4505,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../environment.prod.ts",{"_index":4506,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../environment.ts",{"_index":4507,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../export",{"_index":3625,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../http",{"_index":3626,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../mock",{"_index":4503,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../pgp",{"_index":4508,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../read",{"_index":3627,"title":{},"body":{"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["src/.../schema",{"_index":3628,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../token",{"_index":4502,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../transaction.service.ts",{"_index":4509,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../user.service.ts",{"_index":4510,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/app/_eth/accountindex.ts",{"_index":69,"title":{},"body":{"classes/AccountIndex.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_eth/accountindex.ts:121",{"_index":142,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:21",{"_index":101,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:23",{"_index":102,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:25",{"_index":92,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:57",{"_index":104,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:78",{"_index":122,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:95",{"_index":134,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/token",{"_index":3079,"title":{},"body":{"classes/TokenRegistry.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_guards/auth.guard.ts",{"_index":861,"title":{},"body":{"guards/AuthGuard.html":{},"coverage.html":{}}}],["src/app/_guards/auth.guard.ts:21",{"_index":867,"title":{},"body":{"guards/AuthGuard.html":{}}}],["src/app/_guards/auth.guard.ts:38",{"_index":878,"title":{},"body":{"guards/AuthGuard.html":{}}}],["src/app/_guards/role.guard.ts",{"_index":2911,"title":{},"body":{"guards/RoleGuard.html":{},"coverage.html":{}}}],["src/app/_guards/role.guard.ts:21",{"_index":2912,"title":{},"body":{"guards/RoleGuard.html":{}}}],["src/app/_guards/role.guard.ts:38",{"_index":2913,"title":{},"body":{"guards/RoleGuard.html":{}}}],["src/app/_helpers/array",{"_index":3516,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/clipboard",{"_index":3519,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/custom",{"_index":1255,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"coverage.html":{}}}],["src/app/_helpers/custom.validator.ts",{"_index":1287,"title":{},"body":{"classes/CustomValidator.html":{},"coverage.html":{}}}],["src/app/_helpers/custom.validator.ts:13",{"_index":1295,"title":{},"body":{"classes/CustomValidator.html":{}}}],["src/app/_helpers/custom.validator.ts:28",{"_index":1304,"title":{},"body":{"classes/CustomValidator.html":{}}}],["src/app/_helpers/export",{"_index":3522,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/global",{"_index":1418,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{}}}],["src/app/_helpers/http",{"_index":3525,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/mock",{"_index":1594,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_helpers/read",{"_index":3527,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["src/app/_helpers/schema",{"_index":3531,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_interceptors/error.interceptor.ts",{"_index":1353,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/error.interceptor.ts:21",{"_index":1361,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["src/app/_interceptors/error.interceptor.ts:42",{"_index":1368,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["src/app/_interceptors/http",{"_index":1486,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/logging.interceptor.ts",{"_index":1513,"title":{},"body":{"interceptors/LoggingInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/logging.interceptor.ts:20",{"_index":1515,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["src/app/_interceptors/logging.interceptor.ts:35",{"_index":1516,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["src/app/_models/account.ts",{"_index":6,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_models/mappings.ts",{"_index":514,"title":{},"body":{"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"coverage.html":{}}}],["src/app/_models/settings.ts",{"_index":2952,"title":{},"body":{"classes/Settings.html":{},"interfaces/W3.html":{},"coverage.html":{}}}],["src/app/_models/settings.ts:3",{"_index":2960,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:7",{"_index":2959,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:8",{"_index":2958,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:9",{"_index":2957,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/staff.ts",{"_index":3042,"title":{},"body":{"interfaces/Staff.html":{},"coverage.html":{}}}],["src/app/_models/token.ts",{"_index":3045,"title":{},"body":{"interfaces/Token.html":{},"coverage.html":{}}}],["src/app/_models/transaction.ts",{"_index":1188,"title":{},"body":{"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"coverage.html":{}}}],["src/app/_pgp/pgp",{"_index":2577,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_services/auth.service.ts",{"_index":914,"title":{},"body":{"injectables/AuthService.html":{},"coverage.html":{}}}],["src/app/_services/auth.service.ts:116",{"_index":940,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:15",{"_index":954,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:150",{"_index":942,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:16",{"_index":953,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:160",{"_index":948,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:17",{"_index":931,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:188",{"_index":943,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:194",{"_index":935,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:200",{"_index":934,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:210",{"_index":933,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:27",{"_index":937,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:38",{"_index":951,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:42",{"_index":936,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:61",{"_index":945,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:84",{"_index":932,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:98",{"_index":938,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/block",{"_index":1080,"title":{},"body":{"injectables/BlockSyncService.html":{},"coverage.html":{}}}],["src/app/_services/error",{"_index":1333,"title":{},"body":{"injectables/ErrorDialogService.html":{},"coverage.html":{}}}],["src/app/_services/location.service.ts",{"_index":1497,"title":{},"body":{"injectables/LocationService.html":{},"coverage.html":{}}}],["src/app/_services/location.service.ts:10",{"_index":1501,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:13",{"_index":1504,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:17",{"_index":1503,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:21",{"_index":1507,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:25",{"_index":1506,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/logging.service.ts",{"_index":1529,"title":{},"body":{"injectables/LoggingService.html":{},"coverage.html":{}}}],["src/app/_services/logging.service.ts:18",{"_index":1553,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:22",{"_index":1543,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:26",{"_index":1549,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:30",{"_index":1551,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:34",{"_index":1555,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:38",{"_index":1545,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:42",{"_index":1547,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:8",{"_index":1556,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:9",{"_index":1541,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/registry.service.ts",{"_index":2890,"title":{},"body":{"injectables/RegistryService.html":{},"coverage.html":{}}}],["src/app/_services/registry.service.ts:11",{"_index":2906,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:12",{"_index":2898,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:13",{"_index":2905,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:19",{"_index":2894,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:26",{"_index":2895,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:30",{"_index":2896,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/token.service.ts",{"_index":3106,"title":{},"body":{"injectables/TokenService.html":{},"coverage.html":{}}}],["src/app/_services/token.service.ts:13",{"_index":3116,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:14",{"_index":3117,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:15",{"_index":3109,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:28",{"_index":3114,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:33",{"_index":3113,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:37",{"_index":3111,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/transaction.service.ts",{"_index":3258,"title":{},"body":{"injectables/TransactionService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_services/transaction.service.ts:111",{"_index":3273,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:119",{"_index":3278,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:124",{"_index":3275,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:130",{"_index":3286,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:26",{"_index":3290,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:27",{"_index":3289,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:28",{"_index":3292,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:29",{"_index":3293,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:30",{"_index":3294,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:31",{"_index":3270,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:45",{"_index":3277,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:49",{"_index":3276,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:53",{"_index":3282,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:87",{"_index":3280,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/user.service.ts",{"_index":3560,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/app",{"_index":790,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["src/app/app.component.ts",{"_index":646,"title":{},"body":{"components/AppComponent.html":{},"coverage.html":{}}}],["src/app/app.component.ts:18",{"_index":682,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:19",{"_index":680,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:20",{"_index":678,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:21",{"_index":663,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:51",{"_index":671,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:62",{"_index":673,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:87",{"_index":670,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:93",{"_index":668,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.module.ts",{"_index":753,"title":{},"body":{"modules/AppModule.html":{}}}],["src/app/auth/_directives/password",{"_index":2872,"title":{},"body":{"directives/PasswordToggleDirective.html":{},"coverage.html":{}}}],["src/app/auth/auth",{"_index":912,"title":{},"body":{"modules/AuthRoutingModule.html":{}}}],["src/app/auth/auth.component.ts",{"_index":801,"title":{},"body":{"components/AuthComponent.html":{},"coverage.html":{}}}],["src/app/auth/auth.component.ts:14",{"_index":819,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:15",{"_index":821,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:16",{"_index":820,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:17",{"_index":812,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:25",{"_index":814,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:36",{"_index":823,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:40",{"_index":815,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:52",{"_index":813,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:63",{"_index":816,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:71",{"_index":818,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.module.ts",{"_index":907,"title":{},"body":{"modules/AuthModule.html":{}}}],["src/app/pages/accounts/account",{"_index":186,"title":{},"body":{"components/AccountSearchComponent.html":{},"coverage.html":{}}}],["src/app/pages/accounts/accounts",{"_index":504,"title":{},"body":{"modules/AccountsRoutingModule.html":{}}}],["src/app/pages/accounts/accounts.component.ts",{"_index":347,"title":{},"body":{"components/AccountsComponent.html":{},"coverage.html":{}}}],["src/app/pages/accounts/accounts.component.ts:20",{"_index":378,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:21",{"_index":374,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:22",{"_index":382,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:23",{"_index":380,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:24",{"_index":385,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:25",{"_index":375,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:26",{"_index":376,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:28",{"_index":389,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:29",{"_index":365,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:50",{"_index":370,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:59",{"_index":367,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:63",{"_index":373,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:69",{"_index":369,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:80",{"_index":371,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:88",{"_index":368,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.module.ts",{"_index":456,"title":{},"body":{"modules/AccountsModule.html":{}}}],["src/app/pages/accounts/create",{"_index":1208,"title":{},"body":{"components/CreateAccountComponent.html":{},"coverage.html":{}}}],["src/app/pages/admin/admin",{"_index":645,"title":{},"body":{"modules/AdminRoutingModule.html":{}}}],["src/app/pages/admin/admin.component.ts",{"_index":558,"title":{},"body":{"components/AdminComponent.html":{},"coverage.html":{}}}],["src/app/pages/admin/admin.component.ts:25",{"_index":583,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:26",{"_index":586,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:27",{"_index":581,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:28",{"_index":582,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:30",{"_index":587,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:31",{"_index":567,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:43",{"_index":580,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:45",{"_index":575,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:49",{"_index":569,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:53",{"_index":572,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:64",{"_index":574,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:75",{"_index":578,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:79",{"_index":576,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.module.ts",{"_index":642,"title":{},"body":{"modules/AdminModule.html":{}}}],["src/app/pages/pages",{"_index":2860,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["src/app/pages/pages.component.ts",{"_index":2841,"title":{},"body":{"components/PagesComponent.html":{},"coverage.html":{}}}],["src/app/pages/pages.component.ts:10",{"_index":2845,"title":{},"body":{"components/PagesComponent.html":{}}}],["src/app/pages/pages.module.ts",{"_index":2854,"title":{},"body":{"modules/PagesModule.html":{}}}],["src/app/pages/settings/organization/organization.component.ts",{"_index":2746,"title":{},"body":{"components/OrganizationComponent.html":{},"coverage.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:12",{"_index":2755,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:13",{"_index":2756,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:14",{"_index":2752,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:18",{"_index":2753,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:26",{"_index":2758,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:30",{"_index":2754,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/settings",{"_index":3013,"title":{},"body":{"modules/SettingsRoutingModule.html":{}}}],["src/app/pages/settings/settings.component.ts",{"_index":2962,"title":{},"body":{"components/SettingsComponent.html":{},"coverage.html":{}}}],["src/app/pages/settings/settings.component.ts:16",{"_index":2971,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:17",{"_index":2970,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:18",{"_index":2973,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:19",{"_index":2975,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:21",{"_index":2974,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:22",{"_index":2965,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:26",{"_index":2969,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:35",{"_index":2966,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:39",{"_index":2967,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:43",{"_index":2968,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.module.ts",{"_index":3005,"title":{},"body":{"modules/SettingsModule.html":{}}}],["src/app/pages/tokens/token",{"_index":3046,"title":{},"body":{"components/TokenDetailsComponent.html":{},"coverage.html":{}}}],["src/app/pages/tokens/tokens",{"_index":3177,"title":{},"body":{"modules/TokensRoutingModule.html":{}}}],["src/app/pages/tokens/tokens.component.ts",{"_index":3139,"title":{},"body":{"components/TokensComponent.html":{},"coverage.html":{}}}],["src/app/pages/tokens/tokens.component.ts:18",{"_index":3152,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:19",{"_index":3151,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:20",{"_index":3153,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:21",{"_index":3154,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:22",{"_index":3145,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:30",{"_index":3148,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:41",{"_index":3146,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:45",{"_index":3150,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:49",{"_index":3147,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.module.ts",{"_index":3168,"title":{},"body":{"modules/TokensModule.html":{}}}],["src/app/pages/transactions/transaction",{"_index":3183,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"coverage.html":{}}}],["src/app/pages/transactions/transactions",{"_index":3454,"title":{},"body":{"modules/TransactionsRoutingModule.html":{}}}],["src/app/pages/transactions/transactions.component.ts",{"_index":3395,"title":{},"body":{"components/TransactionsComponent.html":{},"coverage.html":{}}}],["src/app/pages/transactions/transactions.component.ts:23",{"_index":3419,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:24",{"_index":3420,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:25",{"_index":3415,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:26",{"_index":3416,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:27",{"_index":3421,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:28",{"_index":3418,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:29",{"_index":3422,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:30",{"_index":3423,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:32",{"_index":3417,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:33",{"_index":3407,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:43",{"_index":3412,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:56",{"_index":3414,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:60",{"_index":3408,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:64",{"_index":3410,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:77",{"_index":3411,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:82",{"_index":3409,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.module.ts",{"_index":3450,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["src/app/shared/_directives/menu",{"_index":1569,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"coverage.html":{}}}],["src/app/shared/_pipes/safe.pipe.ts",{"_index":2942,"title":{},"body":{"pipes/SafePipe.html":{},"coverage.html":{}}}],["src/app/shared/_pipes/safe.pipe.ts:10",{"_index":2947,"title":{},"body":{"pipes/SafePipe.html":{}}}],["src/app/shared/_pipes/token",{"_index":3072,"title":{},"body":{"pipes/TokenRatioPipe.html":{},"coverage.html":{}}}],["src/app/shared/error",{"_index":1317,"title":{},"body":{"components/ErrorDialogComponent.html":{},"coverage.html":{}}}],["src/app/shared/footer/footer.component.ts",{"_index":1408,"title":{},"body":{"components/FooterComponent.html":{},"coverage.html":{}}}],["src/app/shared/footer/footer.component.ts:12",{"_index":1413,"title":{},"body":{"components/FooterComponent.html":{}}}],["src/app/shared/footer/footer.component.ts:9",{"_index":1412,"title":{},"body":{"components/FooterComponent.html":{}}}],["src/app/shared/network",{"_index":2725,"title":{},"body":{"components/NetworkStatusComponent.html":{},"coverage.html":{}}}],["src/app/shared/shared.module.ts",{"_index":3018,"title":{},"body":{"modules/SharedModule.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts",{"_index":3029,"title":{},"body":{"components/SidebarComponent.html":{},"coverage.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts:12",{"_index":3033,"title":{},"body":{"components/SidebarComponent.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts:9",{"_index":3032,"title":{},"body":{"components/SidebarComponent.html":{}}}],["src/app/shared/topbar/topbar.component.ts",{"_index":3178,"title":{},"body":{"components/TopbarComponent.html":{},"coverage.html":{}}}],["src/app/shared/topbar/topbar.component.ts:12",{"_index":3182,"title":{},"body":{"components/TopbarComponent.html":{}}}],["src/app/shared/topbar/topbar.component.ts:9",{"_index":3181,"title":{},"body":{"components/TopbarComponent.html":{}}}],["src/assets/js/ethtx/dist",{"_index":3304,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/assets/js/ethtx/dist/hex",{"_index":255,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["src/assets/js/ethtx/dist/tx",{"_index":3305,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/assets/js/hoba",{"_index":958,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/assets/js/hoba.js",{"_index":956,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/environments",{"_index":3726,"title":{},"body":{"index.html":{}}}],["src/environments/environment",{"_index":149,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AppModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/LocationService.html":{},"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["src/environments/environment.dev.ts",{"_index":3568,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/environments/environment.prod.ts",{"_index":3569,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/environments/environment.ts",{"_index":3570,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/testing/activated",{"_index":522,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"coverage.html":{}}}],["src/testing/router",{"_index":2925,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{},"coverage.html":{}}}],["src/testing/shared",{"_index":1415,"title":{},"body":{"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{},"coverage.html":{}}}],["src/testing/token",{"_index":3135,"title":{},"body":{"classes/TokenServiceStub.html":{},"coverage.html":{}}}],["src/testing/transaction",{"_index":3389,"title":{},"body":{"classes/TransactionServiceStub.html":{},"coverage.html":{}}}],["src/testing/user",{"_index":3456,"title":{},"body":{"classes/UserServiceStub.html":{},"coverage.html":{}}}],["srf",{"_index":3236,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["stack",{"_index":1445,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["stadium",{"_index":1775,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["staff",{"_index":631,"title":{"interfaces/Staff.html":{}},"body":{"components/AdminComponent.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"components/SettingsComponent.html":{},"interfaces/Staff.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["staff@grassrootseconomics.net",{"_index":1041,"title":{},"body":{"injectables/AuthService.html":{}}}],["stand",{"_index":3847,"title":{},"body":{"license.html":{}}}],["standard",{"_index":3945,"title":{},"body":{"license.html":{}}}],["standards",{"_index":3948,"title":{},"body":{"license.html":{}}}],["starehe",{"_index":1778,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["start",{"_index":4463,"title":{},"body":{"license.html":{}}}],["start:dev",{"_index":3685,"title":{},"body":{"index.html":{}}}],["started",{"_index":3673,"title":{"index.html":{},"license.html":{}},"body":{}}],["starts",{"_index":4478,"title":{},"body":{"license.html":{}}}],["starttime",{"_index":1521,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["state",{"_index":589,"title":{},"body":{"components/AdminComponent.html":{},"guards/AuthGuard.html":{},"classes/CustomErrorStateMatcher.html":{},"guards/RoleGuard.html":{},"coverage.html":{},"license.html":{}}}],["state('collapsed",{"_index":597,"title":{},"body":{"components/AdminComponent.html":{}}}],["state('expanded",{"_index":603,"title":{},"body":{"components/AdminComponent.html":{}}}],["state.url",{"_index":2924,"title":{},"body":{"guards/RoleGuard.html":{}}}],["stated",{"_index":3995,"title":{},"body":{"license.html":{}}}],["statement",{"_index":4249,"title":{},"body":{"license.html":{}}}],["statements",{"_index":3510,"title":{},"body":{"coverage.html":{}}}],["states",{"_index":2773,"title":{},"body":{"components/OrganizationComponent.html":{},"license.html":{}}}],["static",{"_index":1290,"title":{},"body":{"classes/CustomValidator.html":{}}}],["stating",{"_index":4059,"title":{},"body":{"license.html":{}}}],["station",{"_index":2374,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["status",{"_index":570,"title":{},"body":{"components/AdminComponent.html":{},"guards/AuthGuard.html":{},"classes/CustomErrorStateMatcher.html":{},"components/ErrorDialogComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.html":{},"classes/UserServiceStub.html":{},"license.html":{}}}],["status'},{'name",{"_index":316,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["status.component",{"_index":3028,"title":{},"body":{"modules/SharedModule.html":{}}}],["status.component.html",{"_index":2729,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["status.component.scss",{"_index":2728,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["status.component.ts",{"_index":2727,"title":{},"body":{"components/NetworkStatusComponent.html":{},"coverage.html":{}}}],["status.component.ts:10",{"_index":2734,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["status.component.ts:16",{"_index":2737,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["status.component.ts:18",{"_index":2736,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["status/network",{"_index":2726,"title":{},"body":{"components/NetworkStatusComponent.html":{},"modules/SharedModule.html":{},"coverage.html":{}}}],["step",{"_index":2994,"title":{},"body":{"components/SettingsComponent.html":{}}}],["steps",{"_index":3807,"title":{},"body":{"license.html":{}}}],["stima",{"_index":2426,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["storage",{"_index":4089,"title":{},"body":{"license.html":{}}}],["store",{"_index":2649,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["store.ts",{"_index":2578,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["store.ts:10",{"_index":2637,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:106",{"_index":2703,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:11",{"_index":2627,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:110",{"_index":2707,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:119",{"_index":2704,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:12",{"_index":2632,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:123",{"_index":2709,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:127",{"_index":2706,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:13",{"_index":2630,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:131",{"_index":2710,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:135",{"_index":2712,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:139",{"_index":2721,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:14",{"_index":2621,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:143",{"_index":2723,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:147",{"_index":2722,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:15",{"_index":2625,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:152",{"_index":2700,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:156",{"_index":2724,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:16",{"_index":2624,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:17",{"_index":2604,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:18",{"_index":2615,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:19",{"_index":2611,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:20",{"_index":2636,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:21",{"_index":2634,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:22",{"_index":2605,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:23",{"_index":2607,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:24",{"_index":2614,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:25",{"_index":2609,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:26",{"_index":2617,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:27",{"_index":2613,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:28",{"_index":2619,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:29",{"_index":2623,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:30",{"_index":2639,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:31",{"_index":2643,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:32",{"_index":2641,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:33",{"_index":2603,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:34",{"_index":2645,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:38",{"_index":2720,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:43",{"_index":2715,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:48",{"_index":2717,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:52",{"_index":2716,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:56",{"_index":2711,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:60",{"_index":2714,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:64",{"_index":2713,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:68",{"_index":2701,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:72",{"_index":2708,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:76",{"_index":2705,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:80",{"_index":2719,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:86",{"_index":2718,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:96",{"_index":2702,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["stored",{"_index":3707,"title":{},"body":{"index.html":{}}}],["string",{"_index":23,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Category.html":{},"interfaces/Conversion.html":{},"classes/CustomValidator.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"pipes/SafePipe.html":{},"components/SettingsComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{}}}],["stringfromurl",{"_index":2565,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["strip0x",{"_index":254,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["strip0x(abi",{"_index":3358,"title":{},"body":{"injectables/TransactionService.html":{}}}],["stub.ts",{"_index":524,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"components/FooterStubComponent.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SidebarStubComponent.html":{},"classes/TokenServiceStub.html":{},"components/TopbarStubComponent.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{},"coverage.html":{}}}],["stub.ts:10",{"_index":2931,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["stub.ts:11",{"_index":539,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["stub.ts:12",{"_index":3459,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:13",{"_index":2930,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["stub.ts:18",{"_index":542,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["stub.ts:2",{"_index":3138,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["stub.ts:21",{"_index":546,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"classes/UserServiceStub.html":{}}}],["stub.ts:37",{"_index":3494,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:4",{"_index":3392,"title":{},"body":{"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{}}}],["stub.ts:6",{"_index":3391,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["stub.ts:61",{"_index":3492,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:71",{"_index":3490,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:8",{"_index":3390,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["stub.ts:9",{"_index":2929,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["student",{"_index":1888,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["style",{"_index":590,"title":{},"body":{"components/AdminComponent.html":{},"components/AuthComponent.html":{}}}],["styles",{"_index":183,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["styleurls",{"_index":197,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["subdividing",{"_index":4298,"title":{},"body":{"license.html":{}}}],["subject",{"_index":536,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"license.html":{}}}],["subkeyid",{"_index":2620,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["sublicenses",{"_index":4327,"title":{},"body":{"license.html":{}}}],["sublicensing",{"_index":4021,"title":{},"body":{"license.html":{}}}],["submit",{"_index":1254,"title":{},"body":{"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["submitted",{"_index":806,"title":{},"body":{"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["subprograms",{"_index":3983,"title":{},"body":{"license.html":{}}}],["subroutine",{"_index":4488,"title":{},"body":{"license.html":{}}}],["subscribe",{"_index":3318,"title":{},"body":{"injectables/TransactionService.html":{}}}],["subscribe((res",{"_index":411,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["subscribe(async",{"_index":275,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["subscribe(this.authservice.mutablekeystore.importpublickey",{"_index":700,"title":{},"body":{"components/AppComponent.html":{}}}],["subscribers",{"_index":554,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["subsection",{"_index":4120,"title":{},"body":{"license.html":{}}}],["substantial",{"_index":4168,"title":{},"body":{"license.html":{}}}],["substantially",{"_index":3845,"title":{},"body":{"license.html":{}}}],["succeeded",{"_index":1523,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["success",{"_index":1203,"title":{},"body":{"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["successful",{"_index":119,"title":{},"body":{"classes/AccountIndex.html":{},"miscellaneous/functions.html":{}}}],["successfully",{"_index":2531,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TransactionDetailsComponent.html":{}}}],["such",{"_index":3796,"title":{},"body":{"license.html":{}}}],["sue",{"_index":4341,"title":{},"body":{"license.html":{}}}],["suffice",{"_index":4176,"title":{},"body":{"license.html":{}}}],["suffix",{"_index":2933,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["sugar",{"_index":2248,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["suger",{"_index":2249,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sukari",{"_index":2251,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sukuma",{"_index":2256,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sum",{"_index":3630,"title":{},"body":{"miscellaneous/functions.html":{}}}],["sum.ts",{"_index":3517,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["super",{"_index":1464,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["super(message",{"_index":1461,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["superadmin",{"_index":1615,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["supplement",{"_index":4204,"title":{},"body":{"license.html":{}}}],["supplier",{"_index":2116,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["supply",{"_index":2448,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"miscellaneous/variables.html":{}}}],["support",{"_index":2847,"title":{},"body":{"components/PagesComponent.html":{},"license.html":{},"modules.html":{}}}],["supports",{"_index":4126,"title":{},"body":{"license.html":{}}}],["supposed",{"_index":2661,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["sure",{"_index":3768,"title":{},"body":{"license.html":{}}}],["surname",{"_index":1232,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["surrender",{"_index":3792,"title":{},"body":{"license.html":{}}}],["survive",{"_index":4248,"title":{},"body":{"license.html":{}}}],["sustained",{"_index":4437,"title":{},"body":{"license.html":{}}}],["svg",{"_index":4496,"title":{},"body":{"modules.html":{}}}],["sweats",{"_index":2245,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sweet",{"_index":2244,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["switch",{"_index":1397,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["switchwindows",{"_index":809,"title":{},"body":{"components/AuthComponent.html":{}}}],["swupdate",{"_index":662,"title":{},"body":{"components/AppComponent.html":{}}}],["symbol",{"_index":1207,"title":{},"body":{"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"miscellaneous/variables.html":{}}}],["sync.service.ts",{"_index":1081,"title":{},"body":{"injectables/BlockSyncService.html":{},"coverage.html":{}}}],["sync.service.ts:118",{"_index":1099,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:14",{"_index":1117,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:15",{"_index":1090,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:23",{"_index":1094,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:46",{"_index":1107,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:81",{"_index":1104,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:89",{"_index":1101,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:97",{"_index":1115,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync/data",{"_index":2904,"title":{},"body":{"injectables/RegistryService.html":{}}}],["sync/data/accountregistry.json",{"_index":153,"title":{},"body":{"classes/AccountIndex.html":{},"miscellaneous/variables.html":{}}}],["sync/data/tokenuniquesymbolindex.json",{"_index":3099,"title":{},"body":{"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["sync/head.js",{"_index":1151,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync/ondemand.js",{"_index":1164,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["syncer",{"_index":3584,"title":{},"body":{"dependencies.html":{}}}],["system",{"_index":1035,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["systematic",{"_index":3835,"title":{},"body":{"license.html":{}}}],["taa",{"_index":2431,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["table",{"_index":2376,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["tablesort(document.getelementbyid('coverage",{"_index":3573,"title":{},"body":{"coverage.html":{}}}],["tag",{"_index":3044,"title":{},"body":{"interfaces/Staff.html":{}}}],["tailor",{"_index":2052,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["taka",{"_index":1969,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["takaungu",{"_index":1831,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["take",{"_index":3759,"title":{},"body":{"license.html":{}}}],["talk",{"_index":837,"title":{},"body":{"components/AuthComponent.html":{}}}],["tangible",{"_index":4148,"title":{},"body":{"license.html":{}}}],["tap",{"_index":1519,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["tasia",{"_index":1760,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tassia",{"_index":1759,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["taxi",{"_index":2400,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tea",{"_index":2257,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["teacher",{"_index":1884,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["technician",{"_index":2300,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["technological",{"_index":4030,"title":{},"body":{"license.html":{}}}],["tel",{"_index":39,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["tells",{"_index":3932,"title":{},"body":{"license.html":{}}}],["template",{"_index":182,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"index.html":{}}}],["templateurl",{"_index":199,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["term",{"_index":3993,"title":{},"body":{"license.html":{}}}],["terminal",{"_index":4476,"title":{},"body":{"license.html":{}}}],["terminate",{"_index":4254,"title":{},"body":{"license.html":{}}}],["terminated",{"_index":4275,"title":{},"body":{"license.html":{}}}],["terminates",{"_index":4263,"title":{},"body":{"license.html":{}}}],["termination",{"_index":4251,"title":{},"body":{"license.html":{}}}],["terms",{"_index":3804,"title":{},"body":{"license.html":{}}}],["test",{"_index":526,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["test:dev",{"_index":3715,"title":{},"body":{"index.html":{}}}],["testa",{"_index":2467,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["testb",{"_index":2463,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["testc",{"_index":2471,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["testkey",{"_index":2665,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["testkey.err",{"_index":2667,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["tests",{"_index":3714,"title":{},"body":{"index.html":{}}}],["tetra",{"_index":1634,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tetrapak",{"_index":1635,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["text",{"_index":977,"title":{},"body":{"injectables/AuthService.html":{},"directives/PasswordToggleDirective.html":{},"miscellaneous/functions.html":{}}}],["then((s",{"_index":2832,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["then((sig",{"_index":2820,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["therefore",{"_index":3793,"title":{},"body":{"license.html":{}}}],["thika",{"_index":1773,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["things",{"_index":3784,"title":{},"body":{"license.html":{}}}],["third",{"_index":897,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["this.accounts",{"_index":420,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.accounts.filter((account",{"_index":426,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.accountstype",{"_index":424,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.accounttypes",{"_index":412,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{}}}],["this.actions",{"_index":616,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.addresssearchform",{"_index":262,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchform.controls",{"_index":265,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchform.invalid",{"_index":283,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchloading",{"_index":284,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchsubmitted",{"_index":282,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addtransaction(conversion",{"_index":3334,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.addtransaction(transaction",{"_index":3324,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.algo",{"_index":2835,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.areanames",{"_index":1240,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.authservice.getprivatekey",{"_index":844,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.getpublickeys",{"_index":688,"title":{},"body":{"components/AppComponent.html":{}}}],["this.authservice.gettrustedusers",{"_index":2981,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.authservice.init",{"_index":687,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{}}}],["this.authservice.logout",{"_index":2985,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.authservice.mutablekeystore.getprivatekey",{"_index":3374,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.authservice.mutablekeystore.importpublickey(publickeys",{"_index":702,"title":{},"body":{"components/AppComponent.html":{}}}],["this.authservice.privatekey",{"_index":826,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.sessiontoken",{"_index":846,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.setkey(this.authservice.privatekey",{"_index":828,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.setkey(this.keyformstub.key.value",{"_index":833,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.blocksyncservice.blocksync",{"_index":3424,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.categories",{"_index":1237,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.cdr.detectchanges",{"_index":2742,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["this.contract",{"_index":161,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["this.contract.methods.accountindex(address).call",{"_index":171,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.accounts(i).call",{"_index":176,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.add(address).send",{"_index":169,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.addressof(id).call",{"_index":3103,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["this.contract.methods.count().call",{"_index":178,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.entry(serial).call",{"_index":3104,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["this.contract.methods.entrycount().call",{"_index":3105,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["this.contractaddress",{"_index":160,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["this.createform",{"_index":1229,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.createform.controls",{"_index":1243,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.createform.invalid",{"_index":1244,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.datasource",{"_index":414,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.datasource.data",{"_index":425,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.datasource.filter",{"_index":421,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.datasource.paginator",{"_index":416,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.datasource.sort",{"_index":418,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.date",{"_index":2978,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.dgst",{"_index":2816,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.dialog.open(errordialogcomponent",{"_index":1349,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["this.engine",{"_index":2834,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.errordialogservice.opendialog",{"_index":703,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{}}}],["this.errordialogservice.opendialog({message",{"_index":693,"title":{},"body":{"components/AppComponent.html":{}}}],["this.fetcher(settings",{"_index":1158,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.filegetter",{"_index":2902,"title":{},"body":{"injectables/RegistryService.html":{}}}],["this.formbuilder.group",{"_index":258,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["this.genders",{"_index":1242,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.getaccountinfo(res.body",{"_index":3320,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.getchallenge",{"_index":1022,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.getprivatekey",{"_index":2689,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["this.getwithtoken",{"_index":1019,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.handlenetworkchange",{"_index":2739,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["this.haveaccount(address",{"_index":168,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.httpclient",{"_index":1511,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.httpclient.get(`${environment.ciccacheurl}/tokens/${symbol",{"_index":3129,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.httpclient.get(`${environment.ciccacheurl}/tx/${address}/${offset}/${limit",{"_index":3311,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.httpclient.get(`${environment.ciccacheurl}/tx/${offset}/${limit",{"_index":3310,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.httpclient.get(`${environment.cicmetaurl}/areanames",{"_index":1508,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.httpclient.get(`${environment.cicmetaurl}/areanames/${location.tolowercase",{"_index":1509,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.httpclient.get(`${environment.cicmetaurl}/areatypes`).pipe(first",{"_index":1510,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.isdialogopen",{"_index":1347,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["this.iswarning(errortracestring",{"_index":1471,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.keyform",{"_index":824,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.keyform.controls",{"_index":829,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.keyform.invalid",{"_index":831,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.keystore",{"_index":2812,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.keystore.getfingerprint",{"_index":2815,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.keystore.getprivatekey",{"_index":2828,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.keystore.gettrustedkeys",{"_index":2822,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.linkparams",{"_index":2939,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["this.loadevent.next(date.now",{"_index":3124,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.loading",{"_index":832,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.locationservice",{"_index":1238,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.logerror(error",{"_index":1465,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.logger.debug(message",{"_index":1563,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.error(message",{"_index":1567,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.fatal(message",{"_index":1568,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.info(message",{"_index":1564,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.log(message",{"_index":1565,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.trace(message",{"_index":1562,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.warn(message",{"_index":1566,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.loggingservice.senderrorlevelmessage",{"_index":1064,"title":{},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loggingservice.senderrorlevelmessage('failed",{"_index":406,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.loggingservice.senderrorlevelmessage('login",{"_index":1020,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.loggingservice.senderrorlevelmessage('unable",{"_index":690,"title":{},"body":{"components/AppComponent.html":{}}}],["this.loggingservice.senderrorlevelmessage(e.message",{"_index":2825,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.loggingservice.senderrorlevelmessage(errormessage",{"_index":1396,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["this.loggingservice.senderrorlevelmessage(errortracestring",{"_index":1473,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loggingservice.sendinfolevelmessage(`loaded",{"_index":1139,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.loggingservice.sendinfolevelmessage(`result",{"_index":3385,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.loggingservice.sendinfolevelmessage(`transaction",{"_index":3387,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.loggingservice.sendinfolevelmessage(message",{"_index":1528,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["this.loggingservice.sendinfolevelmessage(request",{"_index":1520,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["this.loggingservice.sendinfolevelmessage(res",{"_index":621,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.loggingservice.sendinfolevelmessage(this.tokens",{"_index":3159,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.loggingservice.sendwarnlevelmessage(errortracestring",{"_index":1472,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loginresponse(o",{"_index":1018,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.loginview",{"_index":1067,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mediaquery.addeventlistener('change",{"_index":710,"title":{},"body":{"components/AppComponent.html":{}}}],["this.mutablekeystore",{"_index":965,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.getprivatekey",{"_index":1078,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.getprivatekeyid",{"_index":1049,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.getpublickeys().foreach((key",{"_index":1070,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.importprivatekey(localstorage.getitem(btoa('cicada_private_key",{"_index":972,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.importprivatekey(privatekeyarmored",{"_index":1061,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.isencryptedprivatekey(privatekeyarmored",{"_index":1058,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.isvalidkey(privatekeyarmored",{"_index":1052,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.loadkeyring",{"_index":966,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.name",{"_index":1463,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.namesearchform",{"_index":257,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.namesearchform.controls",{"_index":263,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.namesearchform.invalid",{"_index":267,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.namesearchloading",{"_index":268,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.namesearchsubmitted",{"_index":266,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.navigatedto",{"_index":2938,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["this.nointernetconnection",{"_index":2741,"title":{},"body":{"components/NetworkStatusComponent.html":{}}}],["this.onmenuselect",{"_index":1582,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["this.onmenutoggle",{"_index":1588,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["this.onresize",{"_index":711,"title":{},"body":{"components/AppComponent.html":{}}}],["this.onresize(this.mediaquery",{"_index":712,"title":{},"body":{"components/AppComponent.html":{}}}],["this.onsign",{"_index":2813,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.onsign(this.signature",{"_index":2838,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.onsign(undefined",{"_index":2840,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.onverify",{"_index":2814,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.onverify(false",{"_index":2826,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.organizationform",{"_index":2759,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["this.organizationform.controls",{"_index":2763,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["this.organizationform.invalid",{"_index":2764,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["this.paginator",{"_index":417,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["this.paginator._changepagesize(this.paginator.pagesize",{"_index":428,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.phonesearchform",{"_index":260,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchform.controls",{"_index":264,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchform.invalid",{"_index":271,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchloading",{"_index":272,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchsubmitted",{"_index":270,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.readystate",{"_index":1147,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.readystateprocessor(settings",{"_index":1141,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.readystatetarget",{"_index":1148,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.recipientbloxberglink",{"_index":3213,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.registry",{"_index":2909,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["this.registry.addtoken(await",{"_index":3131,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.registry.declaratorhelper.addtrust(environment.trusteddeclaratoraddress",{"_index":2907,"title":{},"body":{"injectables/RegistryService.html":{}}}],["this.registry.getcontractaddressbyname",{"_index":3344,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.registry.getcontractaddressbyname('tokenregistry",{"_index":3123,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.registry.load",{"_index":2908,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["this.registry.onload",{"_index":3121,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.registryservice.getregistry",{"_index":1130,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.registryservice.getweb3",{"_index":1128,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{}}}],["this.renderer.listen(this.elementref.nativeelement",{"_index":1579,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["this.route.parammap.subscribe((params",{"_index":3056,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["this.router.navigate",{"_index":2921,"title":{},"body":{"guards/RoleGuard.html":{}}}],["this.router.navigate(['/auth",{"_index":901,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["this.router.navigate(['/home",{"_index":845,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.router.navigatebyurl",{"_index":278,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{}}}],["this.router.navigatebyurl('/auth').then",{"_index":1400,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(this.transaction.from",{"_index":3215,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(this.transaction.to",{"_index":3216,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(this.transaction.trader",{"_index":3217,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.navigatebyurl(`/tokens/${token.symbol",{"_index":3161,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.router.url",{"_index":1477,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.sanitizer.bypasssecuritytrustresourceurl(url",{"_index":2951,"title":{},"body":{"pipes/SafePipe.html":{}}}],["this.scanfilter",{"_index":2961,"title":{},"body":{"classes/Settings.html":{},"interfaces/W3.html":{}}}],["this.senderbloxberglink",{"_index":3211,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.sendinfolevelmessage('dropping",{"_index":1559,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.sendresponse(r",{"_index":1030,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sentencesforwarninglogging.foreach((whitelistsentence",{"_index":1475,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.sessionlogincount",{"_index":994,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sessiontoken",{"_index":971,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.setparammap(initialparams",{"_index":556,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["this.setstate('click",{"_index":995,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.signature",{"_index":2833,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["this.signeraddress",{"_index":163,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["this.snackbar.open(address",{"_index":3224,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.sort",{"_index":419,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["this.status",{"_index":1462,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.subject.asobservable",{"_index":541,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["this.subject.next(converttoparammap(params",{"_index":557,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["this.submitted",{"_index":830,"title":{},"body":{"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["this.swupdate.available.subscribe",{"_index":714,"title":{},"body":{"components/AppComponent.html":{}}}],["this.swupdate.isenabled",{"_index":713,"title":{},"body":{"components/AppComponent.html":{}}}],["this.toggledisplay(divone",{"_index":851,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.toggledisplay(divtwo",{"_index":852,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.togglepasswordvisibility",{"_index":2879,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["this.token",{"_index":3059,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["this.tokenregistry",{"_index":3122,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenregistry.entry(0",{"_index":3132,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenregistry.entry(i",{"_index":3128,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenregistry.totaltokens",{"_index":3125,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokens",{"_index":3157,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.tokenservice",{"_index":3057,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["this.tokenservice.gettokens",{"_index":3158,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.tokenservice.loadevent.subscribe(async",{"_index":3156,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.totalaccounts",{"_index":173,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.traderbloxberglink",{"_index":3208,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction",{"_index":3431,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transaction.from",{"_index":3221,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.to",{"_index":3220,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.token.address",{"_index":3219,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.value",{"_index":3222,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.from",{"_index":3212,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.to",{"_index":3214,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.trader",{"_index":3210,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.type",{"_index":3207,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transactiondatasource",{"_index":3426,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.data",{"_index":3434,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.paginator",{"_index":3428,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.sort",{"_index":3429,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionlist.asobservable",{"_index":3291,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactionlist.next(this.transactions",{"_index":3337,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions",{"_index":3338,"title":{},"body":{"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["this.transactions.filter",{"_index":3435,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactions.find((cachedtx",{"_index":3312,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions.length",{"_index":3336,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions.unshift(transaction",{"_index":3335,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactionservice",{"_index":1156,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.transactionservice.resettransactionslist",{"_index":1122,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.transactionservice.setconversion(conversion",{"_index":741,"title":{},"body":{"components/AppComponent.html":{}}}],["this.transactionservice.settransaction(transaction",{"_index":737,"title":{},"body":{"components/AppComponent.html":{}}}],["this.transactionservice.transactionssubject.subscribe((transactions",{"_index":3425,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionservice.transferrequest",{"_index":3218,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transactionstype",{"_index":3433,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionstypes",{"_index":3430,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.trustedusers",{"_index":2980,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.userservice",{"_index":408,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/CreateAccountComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["this.userservice.accountssubject.subscribe((accounts",{"_index":413,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.userservice.actionssubject.subscribe((actions",{"_index":614,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.userservice.getaccountbyaddress(this.addresssearchformstub.address.value",{"_index":285,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.userservice.getaccountbyphone(this.phonesearchformstub.phonenumber.value",{"_index":273,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.userservice.getactions",{"_index":613,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.userservice.loadaccounts(100",{"_index":404,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.userservice.searchaccountbyname(this.namesearchformstub.name.value",{"_index":269,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.web3",{"_index":2900,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TransactionService.html":{}}}],["this.web3.eth.getgasprice",{"_index":3364,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.gettransaction(result.transactionhash",{"_index":3386,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.gettransactioncount(senderaddress",{"_index":3361,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.sendsignedtransaction(txwire",{"_index":3384,"title":{},"body":{"injectables/TransactionService.html":{}}}],["those",{"_index":3843,"title":{},"body":{"license.html":{}}}],["though",{"_index":4207,"title":{},"body":{"license.html":{}}}],["threatened",{"_index":3853,"title":{},"body":{"license.html":{}}}],["three",{"_index":4109,"title":{},"body":{"license.html":{}}}],["threw",{"_index":1484,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["through",{"_index":2521,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["throw",{"_index":991,"title":{},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["throwerror",{"_index":1377,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["throwerror(err",{"_index":1407,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["thrown",{"_index":1437,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["throws",{"_index":1050,"title":{},"body":{"injectables/AuthService.html":{}}}],["thus",{"_index":4012,"title":{},"body":{"license.html":{}}}],["timber",{"_index":2414,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["timberyard",{"_index":2415,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["time",{"_index":888,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["timestamp",{"_index":1204,"title":{},"body":{"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["tissue",{"_index":2367,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["title",{"_index":653,"title":{},"body":{"components/AppComponent.html":{}}}],["titlecase",{"_index":1253,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["todo",{"_index":401,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"index.html":{}}}],["together",{"_index":968,"title":{},"body":{"injectables/AuthService.html":{}}}],["toggle.directive",{"_index":911,"title":{},"body":{"modules/AuthModule.html":{},"modules/SharedModule.html":{}}}],["toggle.directive.ts",{"_index":1583,"title":{},"body":{"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"coverage.html":{}}}],["toggle.directive.ts:11",{"_index":2876,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggle.directive.ts:14",{"_index":1587,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["toggle.directive.ts:19",{"_index":2878,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggle.directive.ts:6",{"_index":1586,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["toggle.directive.ts:8",{"_index":2877,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggledisplay",{"_index":810,"title":{},"body":{"components/AuthComponent.html":{}}}],["toggledisplay(element",{"_index":817,"title":{},"body":{"components/AuthComponent.html":{}}}],["togglepasswordvisibility",{"_index":2874,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["tohex",{"_index":3303,"title":{},"body":{"injectables/TransactionService.html":{}}}],["toi",{"_index":1794,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["toilet",{"_index":1964,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["token",{"_index":327,"title":{"interfaces/Token.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["token.address",{"_index":3061,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["token.name",{"_index":3060,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["token.owner",{"_index":3071,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["token.reserveratio",{"_index":3070,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["token.supply",{"_index":3069,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["token.symbol",{"_index":2564,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["tokenaddress",{"_index":3287,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tokenagent",{"_index":1608,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tokendetailscomponent",{"_index":326,"title":{"components/TokenDetailsComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["tokenratio",{"_index":438,"title":{},"body":{"components/AccountsComponent.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["tokenratiopipe",{"_index":3017,"title":{"pipes/TokenRatioPipe.html":{}},"body":{"modules/SharedModule.html":{},"pipes/TokenRatioPipe.html":{},"coverage.html":{},"overview.html":{}}}],["tokenregistry",{"_index":3078,"title":{"classes/TokenRegistry.html":{}},"body":{"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"coverage.html":{}}}],["tokens",{"_index":2443,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"modules/PagesRoutingModule.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenRegistry.html":{},"components/TokensComponent.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["tokens'},{'name",{"_index":329,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["tokens.component.html",{"_index":3141,"title":{},"body":{"components/TokensComponent.html":{}}}],["tokens.component.scss",{"_index":3140,"title":{},"body":{"components/TokensComponent.html":{}}}],["tokens.find((token",{"_index":2563,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["tokenscomponent",{"_index":328,"title":{"components/TokensComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["tokenservice",{"_index":3053,"title":{"injectables/TokenService.html":{}},"body":{"components/TokenDetailsComponent.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"coverage.html":{}}}],["tokenservicestub",{"_index":3134,"title":{"classes/TokenServiceStub.html":{}},"body":{"classes/TokenServiceStub.html":{},"coverage.html":{}}}],["tokensmodule",{"_index":3163,"title":{"modules/TokensModule.html":{}},"body":{"modules/TokensModule.html":{},"modules.html":{},"overview.html":{}}}],["tokensroutingmodule",{"_index":3167,"title":{"modules/TokensRoutingModule.html":{}},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["tom",{"_index":1610,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["tomato",{"_index":2173,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tomatoes",{"_index":2174,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["toolbox",{"_index":2987,"title":{},"body":{"components/SettingsComponent.html":{}}}],["tools",{"_index":3976,"title":{},"body":{"license.html":{}}}],["topbar",{"_index":1417,"title":{},"body":{"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{}}}],["topbar'},{'name",{"_index":331,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["topbar.component.html",{"_index":3180,"title":{},"body":{"components/TopbarComponent.html":{}}}],["topbar.component.scss",{"_index":3179,"title":{},"body":{"components/TopbarComponent.html":{}}}],["topbarcomponent",{"_index":330,"title":{"components/TopbarComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"modules/SharedModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{},"overview.html":{}}}],["topbarstubcomponent",{"_index":332,"title":{"components/TopbarStubComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["total",{"_index":143,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["totalaccounts",{"_index":88,"title":{},"body":{"classes/AccountIndex.html":{}}}],["totaltokens",{"_index":3082,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["tour",{"_index":2393,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tout",{"_index":2082,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tovalue",{"_index":1199,"title":{},"body":{"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"injectables/TransactionService.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["tovalue(value",{"_index":3370,"title":{},"body":{"injectables/TransactionService.html":{}}}],["town",{"_index":1802,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trace",{"_index":1446,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["trace|debug|info|log|warn|error|fatal|off",{"_index":1558,"title":{},"body":{"injectables/LoggingService.html":{}}}],["tracks",{"_index":1276,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["trade",{"_index":2107,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["trademark",{"_index":4232,"title":{},"body":{"license.html":{}}}],["trademarks",{"_index":4233,"title":{},"body":{"license.html":{}}}],["trader",{"_index":1200,"title":{},"body":{"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["traderbloxberglink",{"_index":3187,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["trading",{"_index":3064,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["trainer",{"_index":1926,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["transaction",{"_index":334,"title":{"interfaces/Transaction.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/BlockSyncService.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["transaction.destinationtoken.address",{"_index":3254,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.destinationtoken.name",{"_index":3255,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.destinationtoken.symbol",{"_index":3256,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.from",{"_index":3231,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.fromvalue",{"_index":3252,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.recipient",{"_index":3322,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transaction.recipient?.vcard.fn[0].value",{"_index":3233,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sender",{"_index":3319,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transaction.sender?.vcard.fn[0].value",{"_index":3230,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.address",{"_index":3249,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.name",{"_index":3250,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.symbol",{"_index":3251,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.to",{"_index":3234,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.token._address",{"_index":3238,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tovalue",{"_index":3257,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.trader",{"_index":3248,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.block",{"_index":3239,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.success",{"_index":3243,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.timestamp",{"_index":3244,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.txhash",{"_index":3242,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["transaction.tx.txindex",{"_index":3240,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.type",{"_index":3315,"title":{},"body":{"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["transaction.value",{"_index":3237,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["transaction?.recipient?.vcard.fn[0].value",{"_index":3440,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.sender?.vcard.fn[0].value",{"_index":3439,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.tovalue",{"_index":3442,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.tx.timestamp",{"_index":3443,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.type",{"_index":3444,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.value",{"_index":3441,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiondatasource",{"_index":3399,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiondetailscomponent",{"_index":333,"title":{"components/TransactionDetailsComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"coverage.html":{},"overview.html":{}}}],["transactiondisplayedcolumns",{"_index":3400,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactionhelper",{"_index":1118,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionhelper(settings.w3.engine",{"_index":1132,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionlist",{"_index":3259,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transactions",{"_index":336,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["transactions.component.html",{"_index":3398,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactions.component.scss",{"_index":3397,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactionscomponent",{"_index":335,"title":{"components/TransactionsComponent.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"coverage.html":{},"overview.html":{}}}],["transactionservice",{"_index":660,"title":{"injectables/TransactionService.html":{}},"body":{"components/AppComponent.html":{},"injectables/BlockSyncService.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["transactionservicestub",{"_index":3388,"title":{"classes/TransactionServiceStub.html":{}},"body":{"classes/TransactionServiceStub.html":{},"coverage.html":{}}}],["transactionsinfo",{"_index":1098,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.filter_rounds",{"_index":1186,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.high",{"_index":1185,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.low",{"_index":1184,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsmodule",{"_index":452,"title":{"modules/TransactionsModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules/TransactionsModule.html":{},"modules.html":{},"overview.html":{}}}],["transactionsroutingmodule",{"_index":3449,"title":{"modules/TransactionsRoutingModule.html":{}},"body":{"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["transactionssubject",{"_index":3260,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transactionstype",{"_index":3401,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactionstypes",{"_index":3402,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiontype",{"_index":3438,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiontypes",{"_index":2475,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["transfer",{"_index":2761,"title":{},"body":{"components/OrganizationComponent.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["transferauthaddress",{"_index":3343,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferauthorization",{"_index":3345,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferred",{"_index":4182,"title":{},"body":{"license.html":{}}}],["transferrequest",{"_index":3269,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferrequest(tokenaddress",{"_index":3283,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferring",{"_index":4296,"title":{},"body":{"license.html":{}}}],["transfers",{"_index":3437,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transform",{"_index":2944,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{}}}],["transform(url",{"_index":2945,"title":{},"body":{"pipes/SafePipe.html":{}}}],["transform(value",{"_index":3074,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["transition",{"_index":591,"title":{},"body":{"components/AdminComponent.html":{}}}],["transition('expanded",{"_index":605,"title":{},"body":{"components/AdminComponent.html":{}}}],["transmission",{"_index":4138,"title":{},"body":{"license.html":{}}}],["transport",{"_index":2382,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["transpoter",{"_index":2409,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trash",{"_index":1977,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trasportion",{"_index":2404,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["travel",{"_index":2394,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["traverse",{"_index":890,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["treated",{"_index":4206,"title":{},"body":{"license.html":{}}}],["treaty",{"_index":4036,"title":{},"body":{"license.html":{}}}],["tree",{"_index":185,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"guards/RoleGuard.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"miscellaneous/variables.html":{}}}],["trigger",{"_index":592,"title":{},"body":{"components/AdminComponent.html":{},"directives/MenuToggleDirective.html":{}}}],["trigger('detailexpand",{"_index":596,"title":{},"body":{"components/AdminComponent.html":{}}}],["true",{"_index":118,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"modules/AppModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"classes/UserServiceStub.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["trusted",{"_index":691,"title":{},"body":{"components/AppComponent.html":{},"components/SettingsComponent.html":{}}}],["trusteddeclaratoraddress",{"_index":4531,"title":{},"body":{"miscellaneous/variables.html":{}}}],["trustedusers",{"_index":1069,"title":{},"body":{"injectables/AuthService.html":{},"components/SettingsComponent.html":{}}}],["trustedusers.push(key.users[0].userid",{"_index":1071,"title":{},"body":{"injectables/AuthService.html":{}}}],["try",{"_index":400,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{},"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["ts",{"_index":2883,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["tslib",{"_index":3614,"title":{},"body":{"dependencies.html":{}}}],["tslint:disable",{"_index":1144,"title":{},"body":{"injectables/BlockSyncService.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["tsta",{"_index":2468,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tstb",{"_index":2464,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tstc",{"_index":2472,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tudor",{"_index":1813,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tuition",{"_index":1920,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tuktuk",{"_index":2399,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tution",{"_index":1919,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tv",{"_index":2083,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["two",{"_index":2993,"title":{},"body":{"components/SettingsComponent.html":{},"license.html":{}}}],["tx",{"_index":1102,"title":{"interfaces/Tx.html":{}},"body":{"injectables/BlockSyncService.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"modules/PagesRoutingModule.html":{},"interfaces/Transaction.html":{},"injectables/TransactionService.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"coverage.html":{}}}],["tx(environment.bloxbergchainid",{"_index":3359,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.data",{"_index":3371,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.gaslimit",{"_index":3365,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.gasprice",{"_index":3362,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.message",{"_index":3373,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.nonce",{"_index":3360,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.setsignature(r",{"_index":3381,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.to",{"_index":3367,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.value",{"_index":3369,"title":{},"body":{"injectables/TransactionService.html":{}}}],["txhash",{"_index":1205,"title":{},"body":{"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["txhelper",{"_index":2954,"title":{},"body":{"classes/Settings.html":{},"interfaces/W3.html":{}}}],["txindex",{"_index":1206,"title":{},"body":{"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{}}}],["txmsg",{"_index":3372,"title":{},"body":{"injectables/TransactionService.html":{}}}],["txtoken",{"_index":1196,"title":{"interfaces/TxToken.html":{}},"body":{"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"interfaces/Transaction.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"coverage.html":{}}}],["txwire",{"_index":3382,"title":{},"body":{"injectables/TransactionService.html":{}}}],["typ",{"_index":41,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"miscellaneous/variables.html":{}}}],["type",{"_index":21,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Category.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"directives/PasswordToggleDirective.html":{},"injectables/RegistryService.html":{},"guards/RoleGuard.html":{},"directives/RouterLinkDirectiveStub.html":{},"pipes/SafePipe.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"interfaces/Signature.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"classes/TokenServiceStub.html":{},"components/TokensComponent.html":{},"interfaces/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"interfaces/W3.html":{},"coverage.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["typed",{"_index":1370,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["typeerror",{"_index":1480,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["types",{"_index":1435,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["typescript",{"_index":113,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/functions.html":{}}}],["typical",{"_index":4162,"title":{},"body":{"license.html":{}}}],["uchumi",{"_index":1770,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uchuuzi",{"_index":2261,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uchuzi",{"_index":2260,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ug",{"_index":2778,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ugali",{"_index":2259,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uganda",{"_index":2779,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ugoro",{"_index":2250,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uint256",{"_index":3356,"title":{},"body":{"injectables/TransactionService.html":{}}}],["uint8array",{"_index":1112,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["uint8array(blockfilterbinstr.length",{"_index":1172,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["uint8array(blocktxfilterbinstr.length",{"_index":1180,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["ujenzi",{"_index":2109,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uji",{"_index":2258,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ukulima",{"_index":1989,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ukunda",{"_index":1732,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["umena",{"_index":2183,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["umoja",{"_index":1772,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unable",{"_index":1036,"title":{},"body":{"injectables/AuthService.html":{}}}],["unacceptable",{"_index":3840,"title":{},"body":{"license.html":{}}}],["unapproved",{"_index":618,"title":{},"body":{"components/AdminComponent.html":{},"classes/UserServiceStub.html":{}}}],["unauthorized",{"_index":1399,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["undefined",{"_index":277,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"classes/Settings.html":{},"interfaces/W3.html":{}}}],["under",{"_index":3883,"title":{},"body":{"license.html":{}}}],["unga",{"_index":2241,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uniform",{"_index":2369,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unit",{"_index":3713,"title":{},"body":{"index.html":{}}}],["united",{"_index":2772,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["university",{"_index":1894,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unknown",{"_index":1876,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"pipes/SafePipe.html":{},"miscellaneous/variables.html":{}}}],["unless",{"_index":4170,"title":{},"body":{"license.html":{}}}],["unlimited",{"_index":3999,"title":{},"body":{"license.html":{}}}],["unmodified",{"_index":3900,"title":{},"body":{"license.html":{}}}],["unnecessary",{"_index":4024,"title":{},"body":{"license.html":{}}}],["unpacking",{"_index":4202,"title":{},"body":{"license.html":{}}}],["unsuccessful",{"_index":1388,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["until",{"_index":4262,"title":{},"body":{"license.html":{}}}],["update",{"_index":2991,"title":{},"body":{"components/SettingsComponent.html":{}}}],["updates",{"_index":4191,"title":{},"body":{"license.html":{}}}],["uploaded",{"_index":880,"title":{},"body":{"guards/AuthGuard.html":{}}}],["uppercase",{"_index":431,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"components/TransactionsComponent.html":{}}}],["urban",{"_index":1878,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["url",{"_index":872,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"components/PagesComponent.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{}}}],["url.endswith('/accounttypes",{"_index":2500,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/actions",{"_index":2501,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/areanames",{"_index":2506,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/areatypes",{"_index":2508,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/categories",{"_index":2510,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/genders",{"_index":2513,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/tokens",{"_index":2514,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/transactiontypes",{"_index":2518,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/actions\\/\\d",{"_index":2503,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/areanames\\/\\w",{"_index":2507,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/areatypes\\/\\w",{"_index":2509,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/categories\\/\\w",{"_index":2511,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/tokens\\/\\w",{"_index":2516,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.split",{"_index":2571,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urlparts",{"_index":2570,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urlparts[urlparts.length",{"_index":2576,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urltree",{"_index":892,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["usafi",{"_index":1974,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["use",{"_index":530,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"injectables/AuthService.html":{},"index.html":{},"license.html":{}}}],["useclass",{"_index":788,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["used",{"_index":889,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["useful",{"_index":4470,"title":{},"body":{"license.html":{}}}],["user",{"_index":517,"title":{},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"guards/AuthGuard.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Category.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"components/SettingsComponent.html":{},"interfaces/Transaction.html":{},"injectables/TransactionService.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["user's",{"_index":894,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"miscellaneous/variables.html":{}}}],["user.email",{"_index":2998,"title":{},"body":{"components/SettingsComponent.html":{}}}],["user.name",{"_index":2997,"title":{},"body":{"components/SettingsComponent.html":{}}}],["user.tokey(conversion.trader",{"_index":3331,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.tokey(transaction.from",{"_index":3317,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.tokey(transaction.to",{"_index":3321,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.userid",{"_index":2999,"title":{},"body":{"components/SettingsComponent.html":{}}}],["user?.balance",{"_index":437,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.date_registered",{"_index":435,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.location.area_name",{"_index":439,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.vcard.fn[0].value",{"_index":433,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.vcard.tel[0].value",{"_index":434,"title":{},"body":{"components/AccountsComponent.html":{}}}],["userid",{"_index":2972,"title":{},"body":{"components/SettingsComponent.html":{},"interfaces/Staff.html":{}}}],["userinfo",{"_index":3261,"title":{},"body":{"injectables/TransactionService.html":{}}}],["userkey",{"_index":3495,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["username",{"_index":2989,"title":{},"body":{"components/SettingsComponent.html":{}}}],["users",{"_index":2984,"title":{},"body":{"components/SettingsComponent.html":{},"classes/UserServiceStub.html":{},"index.html":{},"license.html":{}}}],["userservice",{"_index":221,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/CreateAccountComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["userservicestub",{"_index":3455,"title":{"classes/UserServiceStub.html":{}},"body":{"classes/UserServiceStub.html":{},"coverage.html":{}}}],["uses",{"_index":4165,"title":{},"body":{"license.html":{}}}],["using",{"_index":4136,"title":{},"body":{"license.html":{}}}],["ustadh",{"_index":1943,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ustadhi",{"_index":1944,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utencils",{"_index":2372,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utensils",{"_index":2373,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utils",{"_index":3299,"title":{},"body":{"injectables/TransactionService.html":{}}}],["utils.abicoder",{"_index":3354,"title":{},"body":{"injectables/TransactionService.html":{}}}],["uto",{"_index":2356,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uvuvi",{"_index":2049,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uyoma",{"_index":1851,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["v",{"_index":1174,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["v[i",{"_index":1175,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["valid",{"_index":77,"title":{},"body":{"classes/AccountIndex.html":{},"classes/CustomValidator.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["validated",{"_index":129,"title":{},"body":{"classes/AccountIndex.html":{},"classes/CustomValidator.html":{},"miscellaneous/functions.html":{}}}],["validates",{"_index":3667,"title":{},"body":{"miscellaneous/functions.html":{}}}],["validation",{"_index":1277,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{}}}],["validation.ts",{"_index":3532,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["validationerrors",{"_index":1303,"title":{},"body":{"classes/CustomValidator.html":{}}}],["validator",{"_index":3593,"title":{},"body":{"dependencies.html":{}}}],["validators",{"_index":249,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["validators.required",{"_index":259,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["value",{"_index":36,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"interfaces/BlocksBloom.html":{},"interfaces/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"injectables/RegistryService.html":{},"directives/RouterLinkDirectiveStub.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"interfaces/Signature.html":{},"pipes/TokenRatioPipe.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"interfaces/Transaction.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"interfaces/Tx.html":{},"interfaces/TxToken.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["value.trim().tolocalelowercase",{"_index":422,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["values",{"_index":553,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"miscellaneous/functions.html":{}}}],["var",{"_index":294,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["variable",{"_index":3512,"title":{},"body":{"coverage.html":{}}}],["variables",{"_index":3700,"title":{"miscellaneous/variables.html":{}},"body":{"index.html":{},"miscellaneous/variables.html":{}}}],["vcard",{"_index":22,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"injectables/TransactionService.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["vcard.parse(atob(accountinfo.vcard",{"_index":3342,"title":{},"body":{"injectables/TransactionService.html":{}}}],["vcards",{"_index":3616,"title":{},"body":{"dependencies.html":{}}}],["vcardvalidation",{"_index":3534,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["vcardvalidation(vcard",{"_index":3671,"title":{},"body":{"miscellaneous/functions.html":{}}}],["vegetable",{"_index":2237,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vendor",{"_index":1607,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["verbatim",{"_index":3749,"title":{},"body":{"license.html":{}}}],["verification",{"_index":2996,"title":{},"body":{"components/SettingsComponent.html":{}}}],["verify",{"_index":2787,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signer.html":{}}}],["verify(digest",{"_index":2805,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{}}}],["version",{"_index":42,"title":{},"body":{"interfaces/AccountDetails.html":{},"components/AppComponent.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["versions",{"_index":3765,"title":{},"body":{"license.html":{}}}],["vet",{"_index":2304,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["veterinary",{"_index":2303,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["via",{"_index":3657,"title":{},"body":{"miscellaneous/functions.html":{},"index.html":{}}}],["viatu",{"_index":2102,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["viazi",{"_index":2262,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vidziweni",{"_index":1730,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["view",{"_index":3232,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"license.html":{}}}],["view_in_ar",{"_index":289,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["viewaccount",{"_index":362,"title":{},"body":{"components/AccountsComponent.html":{}}}],["viewaccount(account",{"_index":372,"title":{},"body":{"components/AccountsComponent.html":{}}}],["viewchild",{"_index":392,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["viewchild(matpaginator",{"_index":388,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["viewchild(matsort",{"_index":391,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["viewrecipient",{"_index":3190,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["views",{"_index":871,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"guards/RoleGuard.html":{}}}],["viewsender",{"_index":3191,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["viewtoken",{"_index":3143,"title":{},"body":{"components/TokensComponent.html":{}}}],["viewtoken(token",{"_index":3149,"title":{},"body":{"components/TokensComponent.html":{}}}],["viewtrader",{"_index":3192,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["viewtransaction",{"_index":3405,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["viewtransaction(transaction",{"_index":3413,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["vigungani",{"_index":1729,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vijana",{"_index":1927,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikapu",{"_index":2368,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikinduni",{"_index":1717,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikolani",{"_index":1718,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["village",{"_index":1956,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vinyunduni",{"_index":1731,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["viogato",{"_index":1720,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["violates",{"_index":4197,"title":{},"body":{"license.html":{}}}],["violation",{"_index":4258,"title":{},"body":{"license.html":{}}}],["visibility",{"_index":601,"title":{},"body":{"components/AdminComponent.html":{}}}],["visible",{"_index":604,"title":{},"body":{"components/AdminComponent.html":{},"license.html":{}}}],["vistangani",{"_index":1722,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitabu",{"_index":1935,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitangani",{"_index":1719,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitenge",{"_index":2371,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitungu",{"_index":2215,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vivian",{"_index":1619,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["void",{"_index":225,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomValidator.html":{},"components/FooterComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/NetworkStatusComponent.html":{},"components/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"components/TransactionsComponent.html":{},"miscellaneous/functions.html":{},"license.html":{}}}],["volume",{"_index":4088,"title":{},"body":{"license.html":{}}}],["volunteer",{"_index":1907,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vsla",{"_index":2311,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vyogato",{"_index":1721,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vyombo",{"_index":2381,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["w",{"_index":1163,"title":{},"body":{"injectables/BlockSyncService.html":{},"license.html":{}}}],["w.onmessage",{"_index":1165,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["w.postmessage",{"_index":1166,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["w3",{"_index":2955,"title":{"interfaces/W3.html":{}},"body":{"classes/Settings.html":{},"interfaces/W3.html":{},"coverage.html":{}}}],["w3_provider",{"_index":1155,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["waiter",{"_index":2100,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waitress",{"_index":2101,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waive",{"_index":4044,"title":{},"body":{"license.html":{}}}],["waiver",{"_index":4450,"title":{},"body":{"license.html":{}}}],["wakulima",{"_index":1990,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["want",{"_index":3781,"title":{},"body":{"license.html":{}}}],["ward",{"_index":1957,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["warning",{"_index":1442,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["warnings",{"_index":1456,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["warranties",{"_index":3933,"title":{},"body":{"license.html":{}}}],["warranty",{"_index":3817,"title":{},"body":{"license.html":{}}}],["wash",{"_index":2006,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["washing",{"_index":2094,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waste",{"_index":1968,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["watchlady",{"_index":2110,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["watchman",{"_index":2099,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["water",{"_index":2275,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["way",{"_index":3772,"title":{},"body":{"license.html":{}}}],["ways",{"_index":4099,"title":{},"body":{"license.html":{}}}],["web",{"_index":3674,"title":{},"body":{"index.html":{}}}],["web3",{"_index":145,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/RegistryService.html":{},"classes/Settings.html":{},"classes/TokenRegistry.html":{},"injectables/TransactionService.html":{},"interfaces/W3.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["web3(environment.web3provider",{"_index":157,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["web3.eth.abi.encodeparameter('bytes32",{"_index":3101,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["web3.eth.accounts[0",{"_index":164,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["web3.eth.contract(abi",{"_index":162,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["web3.utils.tohex(identifier",{"_index":3102,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["web3provider",{"_index":4524,"title":{},"body":{"miscellaneous/variables.html":{}}}],["weight",{"_index":2455,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["welcome",{"_index":4480,"title":{},"body":{"license.html":{}}}],["welder",{"_index":2096,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["welding",{"_index":2097,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["well",{"_index":3917,"title":{},"body":{"license.html":{}}}],["went",{"_index":1392,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["west",{"_index":1736,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["whatever",{"_index":4300,"title":{},"body":{"license.html":{}}}],["wheadsync",{"_index":1149,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["wheadsync.onmessage",{"_index":1152,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["wheadsync.postmessage",{"_index":1154,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["whether",{"_index":124,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"classes/CustomErrorStateMatcher.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["whole",{"_index":3954,"title":{},"body":{"license.html":{}}}],["wholesaler",{"_index":2364,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["whose",{"_index":4145,"title":{},"body":{"license.html":{}}}],["widely",{"_index":3950,"title":{},"body":{"license.html":{}}}],["width",{"_index":635,"title":{},"body":{"components/AdminComponent.html":{},"components/AppComponent.html":{},"injectables/ErrorDialogService.html":{},"directives/MenuSelectionDirective.html":{}}}],["window",{"_index":3966,"title":{},"body":{"license.html":{}}}],["window.atob(transactionsinfo.block_filter",{"_index":1170,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.atob(transactionsinfo.blocktx_filter",{"_index":1178,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.dispatchevent(this.newconversionevent(transaction",{"_index":1136,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.dispatchevent(this.newtransferevent(transaction",{"_index":1134,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.getcomputedstyle(element).display",{"_index":853,"title":{},"body":{"components/AuthComponent.html":{}}}],["window.location.reload",{"_index":716,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{}}}],["window.location.search.substring(1",{"_index":980,"title":{},"body":{"injectables/AuthService.html":{}}}],["window.matchmedia('(max",{"_index":676,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["window.prompt('password",{"_index":2691,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature-1.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{}}}],["window:cic_convert",{"_index":656,"title":{},"body":{"components/AppComponent.html":{}}}],["window:cic_convert(event",{"_index":666,"title":{},"body":{"components/AppComponent.html":{}}}],["window:cic_transfer",{"_index":657,"title":{},"body":{"components/AppComponent.html":{}}}],["window:cic_transfer(event",{"_index":669,"title":{},"body":{"components/AppComponent.html":{}}}],["wine",{"_index":2265,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["wipo",{"_index":4035,"title":{},"body":{"license.html":{}}}],["wish",{"_index":3779,"title":{},"body":{"license.html":{}}}],["within",{"_index":4243,"title":{},"body":{"license.html":{}}}],["without",{"_index":3903,"title":{},"body":{"license.html":{}}}],["wood",{"_index":2429,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["work",{"_index":2115,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["work's",{"_index":3975,"title":{},"body":{"license.html":{}}}],["worker",{"_index":686,"title":{},"body":{"components/AppComponent.html":{},"modules/AppModule.html":{},"injectables/BlockSyncService.html":{},"interceptors/MockBackendInterceptor.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["worker('./../assets/js/block",{"_index":1150,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["worker.js",{"_index":784,"title":{},"body":{"modules/AppModule.html":{}}}],["working",{"_index":2098,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["works",{"_index":3755,"title":{},"body":{"license.html":{}}}],["world",{"_index":3394,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["world!'",{"_index":3638,"title":{},"body":{"miscellaneous/functions.html":{}}}],["worldwide",{"_index":4330,"title":{},"body":{"license.html":{}}}],["wote",{"_index":1871,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["wrap",{"_index":2481,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["write",{"_index":1449,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["writing",{"_index":4412,"title":{},"body":{"license.html":{}}}],["written",{"_index":4108,"title":{},"body":{"license.html":{}}}],["wrong",{"_index":1393,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["ws.dev.grassrootseconomics.net",{"_index":4526,"title":{},"body":{"miscellaneous/variables.html":{}}}],["wss://bloxberg",{"_index":4525,"title":{},"body":{"miscellaneous/variables.html":{}}}],["xhr",{"_index":974,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.addeventlistener('load",{"_index":988,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.getresponseheader('token",{"_index":1009,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.getresponseheader('www",{"_index":1015,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.onload",{"_index":1013,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.open('get",{"_index":978,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.responsetype",{"_index":976,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.send",{"_index":997,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.setrequestheader('authorization",{"_index":981,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.setrequestheader('content",{"_index":983,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.setrequestheader('x",{"_index":985,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.status",{"_index":989,"title":{},"body":{"injectables/AuthService.html":{}}}],["xmlhttprequest",{"_index":975,"title":{},"body":{"injectables/AuthService.html":{}}}],["yapha",{"_index":1723,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yava",{"_index":1724,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["years",{"_index":4110,"title":{},"body":{"license.html":{}}}],["yes",{"_index":100,"title":{},"body":{"classes/AccountIndex.html":{},"classes/ActivatedRouteStub.html":{},"classes/TokenRegistry.html":{}}}],["yoga",{"_index":2103,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yoghurt",{"_index":2263,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yogurt",{"_index":2264,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yourself",{"_index":4348,"title":{},"body":{"license.html":{}}}],["youth",{"_index":1928,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yowani",{"_index":1725,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ziwani",{"_index":1726,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["zone.js",{"_index":3620,"title":{},"body":{"dependencies.html":{}}}],["zoom",{"_index":453,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{},"overview.html":{}}}]],"pipeline":["stemmer"]}, + "store": {"interfaces/AccountDetails.html":{"url":"interfaces/AccountDetails.html","title":"interface - AccountDetails","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n AccountDetails\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/account.ts\n \n\n \n Description\n \n \n Account data interface \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n age\n \n \n Optional\n balance\n \n \n Optional\n category\n \n \n date_registered\n \n \n gender\n \n \n identities\n \n \n location\n \n \n products\n \n \n Optional\n type\n \n \n vcard\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n age\n \n \n \n \n age: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n balance\n \n \n \n \n balance: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n category\n \n \n \n \n category: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n date_registered\n \n \n \n \n date_registered: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n gender\n \n \n \n \n gender: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n identities\n \n \n \n \n identities: literal type\n\n \n \n\n\n \n \n Type : literal type\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n location\n \n \n \n \n location: literal type\n\n \n \n\n\n \n \n Type : literal type\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n products\n \n \n \n \n products: string[]\n\n \n \n\n\n \n \n Type : string[]\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n type\n \n \n \n \n type: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n vcard\n \n \n \n \n vcard: literal type\n\n \n \n\n\n \n \n Type : literal type\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n interface AccountDetails {\n date_registered: number;\n gender: string;\n age?: string;\n type?: string;\n balance?: number;\n identities: {\n evm: {\n 'bloxberg:8996': string[];\n 'oldchain:1': string[];\n };\n latitude: number;\n longitude: number;\n };\n location: {\n area?: string;\n area_name: string;\n area_type?: string;\n };\n products: string[];\n category?: string;\n vcard: {\n email: [\n {\n value: string;\n }\n ];\n fn: [\n {\n value: string;\n }\n ];\n n: [\n {\n value: string[];\n }\n ];\n tel: [\n {\n meta: {\n TYP: string[];\n };\n value: string;\n }\n ];\n version: [\n {\n value: string;\n }\n ];\n };\n}\n\n/** Meta signature interface */\ninterface Signature {\n algo: string;\n data: string;\n digest: string;\n engine: string;\n}\n\n/** Meta object interface */\ninterface Meta {\n data: AccountDetails;\n id: string;\n signature: Signature;\n}\n\n/** Meta response interface */\ninterface MetaResponse {\n id: string;\n m: Meta;\n}\n\n/** Default account data object */\nconst defaultAccount: AccountDetails = {\n date_registered: Date.now(),\n gender: 'other',\n identities: {\n evm: {\n 'bloxberg:8996': [''],\n 'oldchain:1': [''],\n },\n latitude: 0,\n longitude: 0,\n },\n location: {\n area_name: 'Kilifi',\n },\n products: [],\n vcard: {\n email: [\n {\n value: '',\n },\n ],\n fn: [\n {\n value: 'Sarafu Contract',\n },\n ],\n n: [\n {\n value: ['Sarafu', 'Contract'],\n },\n ],\n tel: [\n {\n meta: {\n TYP: [],\n },\n value: '',\n },\n ],\n version: [\n {\n value: '3.0',\n },\n ],\n },\n};\n\n/** @exports */\nexport { AccountDetails, Meta, MetaResponse, Signature, defaultAccount };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/AccountIndex.html":{"url":"classes/AccountIndex.html","title":"class - AccountIndex","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n AccountIndex\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_eth/accountIndex.ts\n \n\n \n Description\n \n \n Provides an instance of the accounts registry contract.\nAllows querying of accounts that have been registered as valid accounts in the network.\n\n \n\n\n\n \n Example\n \n \n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n contract\n \n \n contractAddress\n \n \n signerAddress\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n Async\n addToAccountRegistry\n \n \n Public\n Async\n haveAccount\n \n \n Public\n Async\n last\n \n \n Public\n Async\n totalAccounts\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(contractAddress: string, signerAddress?: string)\n \n \n \n \n Defined in src/app/_eth/accountIndex.ts:25\n \n \n\n \n \n Create a connection to the deployed account registry contract.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n contractAddress\n \n \n string\n \n \n \n No\n \n \n \n \nThe deployed account registry contract's address.\n\n\n \n \n \n signerAddress\n \n \n string\n \n \n \n Yes\n \n \n \n \nThe account address of the account that deployed the account registry contract.\n\n\n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n contract\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/app/_eth/accountIndex.ts:21\n \n \n\n \n \n The instance of the account registry contract. \n\n \n \n\n \n \n \n \n \n \n \n \n \n contractAddress\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/_eth/accountIndex.ts:23\n \n \n\n \n \n The deployed account registry contract's address. \n\n \n \n\n \n \n \n \n \n \n \n \n \n signerAddress\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/_eth/accountIndex.ts:25\n \n \n\n \n \n The account address of the account that deployed the account registry contract. \n\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Public\n Async\n addToAccountRegistry\n \n \n \n \n \n \n \n \n addToAccountRegistry(address: string)\n \n \n\n\n \n \n Defined in src/app/_eth/accountIndex.ts:57\n \n \n\n\n \n \n Registers an account to the accounts registry.\nRequires availability of the signer address.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n address\n \n string\n \n\n \n No\n \n\n\n \n \nThe account address to be registered to the accounts registry contract.\n\n\n \n \n \n \n \n \n Example :\n \n Prints "true" for registration of '0xc0ffee254729296a45a3885639AC7E10F9d54979':\n```typescript\n\nconsole.log(await addToAccountRegistry('0xc0ffee254729296a45a3885639AC7E10F9d54979'));\n```\n\n \n \n \n Returns : Promise\n\n \n \n true - If registration is successful or account had already been registered.\n\n \n \n \n \n \n \n \n \n \n \n \n \n Public\n Async\n haveAccount\n \n \n \n \n \n \n \n \n haveAccount(address: string)\n \n \n\n\n \n \n Defined in src/app/_eth/accountIndex.ts:78\n \n \n\n\n \n \n Checks whether a specific account address has been registered in the accounts registry.\nReturns \"true\" for available and \"false\" otherwise.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n address\n \n string\n \n\n \n No\n \n\n\n \n \nThe account address to be validated.\n\n\n \n \n \n \n \n \n Example :\n \n Prints "true" or "false" depending on whether '0xc0ffee254729296a45a3885639AC7E10F9d54979' has been registered:\n```typescript\n\nconsole.log(await haveAccount('0xc0ffee254729296a45a3885639AC7E10F9d54979'));\n```\n\n \n \n \n Returns : Promise\n\n \n \n true - If the address has been registered in the accounts registry.\n\n \n \n \n \n \n \n \n \n \n \n \n \n Public\n Async\n last\n \n \n \n \n \n \n \n \n last(numberOfAccounts: number)\n \n \n\n\n \n \n Defined in src/app/_eth/accountIndex.ts:95\n \n \n\n\n \n \n Returns a specified number of the most recently registered accounts.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n numberOfAccounts\n \n number\n \n\n \n No\n \n\n\n \n \nThe number of accounts to return from the accounts registry.\n\n\n \n \n \n \n \n \n Example :\n \n Prints an array of accounts:\n```typescript\n\nconsole.log(await last(5));\n```\n\n \n \n \n Returns : Promise>\n\n \n \n An array of registered account addresses.\n\n \n \n \n \n \n \n \n \n \n \n \n \n Public\n Async\n totalAccounts\n \n \n \n \n \n \n \n \n totalAccounts()\n \n \n\n\n \n \n Defined in src/app/_eth/accountIndex.ts:121\n \n \n\n\n \n \n Returns the total number of accounts that have been registered in the network.\n\n\n \n Example :\n \n Prints the total number of registered accounts:\n```typescript\n\nconsole.log(await totalAccounts());\n```\n\n \n \n \n Returns : Promise\n\n \n \n The total number of registered accounts.\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n import Web3 from 'web3';\n\n// Application imports\nimport { environment } from '@src/environments/environment';\n\n/** Fetch the account registry contract's ABI. */\nconst abi: Array = require('@src/assets/js/block-sync/data/AccountRegistry.json');\n/** Establish a connection to the blockchain network. */\nconst web3: Web3 = new Web3(environment.web3Provider);\n\n/**\n * Provides an instance of the accounts registry contract.\n * Allows querying of accounts that have been registered as valid accounts in the network.\n *\n * @remarks\n * This is our interface to the accounts registry contract.\n */\nexport class AccountIndex {\n /** The instance of the account registry contract. */\n contract: any;\n /** The deployed account registry contract's address. */\n contractAddress: string;\n /** The account address of the account that deployed the account registry contract. */\n signerAddress: string;\n\n /**\n * Create a connection to the deployed account registry contract.\n *\n * @param contractAddress - The deployed account registry contract's address.\n * @param signerAddress - The account address of the account that deployed the account registry contract.\n */\n constructor(contractAddress: string, signerAddress?: string) {\n this.contractAddress = contractAddress;\n this.contract = new web3.eth.Contract(abi, this.contractAddress);\n if (signerAddress) {\n this.signerAddress = signerAddress;\n } else {\n this.signerAddress = web3.eth.accounts[0];\n }\n }\n\n /**\n * Registers an account to the accounts registry.\n * Requires availability of the signer address.\n *\n * @async\n * @example\n * Prints \"true\" for registration of '0xc0ffee254729296a45a3885639AC7E10F9d54979':\n * ```typescript\n * console.log(await addToAccountRegistry('0xc0ffee254729296a45a3885639AC7E10F9d54979'));\n * ```\n *\n * @param address - The account address to be registered to the accounts registry contract.\n * @returns true - If registration is successful or account had already been registered.\n */\n public async addToAccountRegistry(address: string): Promise {\n if (!(await this.haveAccount(address))) {\n return await this.contract.methods.add(address).send({ from: this.signerAddress });\n }\n return true;\n }\n\n /**\n * Checks whether a specific account address has been registered in the accounts registry.\n * Returns \"true\" for available and \"false\" otherwise.\n *\n * @async\n * @example\n * Prints \"true\" or \"false\" depending on whether '0xc0ffee254729296a45a3885639AC7E10F9d54979' has been registered:\n * ```typescript\n * console.log(await haveAccount('0xc0ffee254729296a45a3885639AC7E10F9d54979'));\n * ```\n *\n * @param address - The account address to be validated.\n * @returns true - If the address has been registered in the accounts registry.\n */\n public async haveAccount(address: string): Promise {\n return (await this.contract.methods.accountIndex(address).call()) !== 0;\n }\n\n /**\n * Returns a specified number of the most recently registered accounts.\n *\n * @async\n * @example\n * Prints an array of accounts:\n * ```typescript\n * console.log(await last(5));\n * ```\n *\n * @param numberOfAccounts - The number of accounts to return from the accounts registry.\n * @returns An array of registered account addresses.\n */\n public async last(numberOfAccounts: number): Promise> {\n const count: number = await this.totalAccounts();\n let lowest: number = count - numberOfAccounts - 1;\n if (lowest = [];\n for (let i = count - 1; i > lowest; i--) {\n const account: string = await this.contract.methods.accounts(i).call();\n accounts.push(account);\n }\n return accounts;\n }\n\n /**\n * Returns the total number of accounts that have been registered in the network.\n *\n * @async\n * @example\n * Prints the total number of registered accounts:\n * ```typescript\n * console.log(await totalAccounts());\n * ```\n *\n * @returns The total number of registered accounts.\n */\n public async totalAccounts(): Promise {\n return await this.contract.methods.count().call();\n }\n}\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/AccountSearchComponent.html":{"url":"components/AccountSearchComponent.html","title":"component - AccountSearchComponent","body":"\n \n\n\n\n\n\n Components\n AccountSearchComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/pages/accounts/account-search/account-search.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-account-search\n \n\n \n styleUrls\n ./account-search.component.scss\n \n\n\n\n \n templateUrl\n ./account-search.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n addressSearchForm\n \n \n addressSearchLoading\n \n \n addressSearchSubmitted\n \n \n matcher\n \n \n nameSearchForm\n \n \n nameSearchLoading\n \n \n nameSearchSubmitted\n \n \n phoneSearchForm\n \n \n phoneSearchLoading\n \n \n phoneSearchSubmitted\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n Async\n onAddressSearch\n \n \n onNameSearch\n \n \n Async\n onPhoneSearch\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n nameSearchFormStub\n \n \n phoneSearchFormStub\n \n \n addressSearchFormStub\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(formBuilder: FormBuilder, userService: UserService, router: Router)\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:25\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n formBuilder\n \n \n FormBuilder\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:33\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n onAddressSearch\n \n \n \n \n \n \n \n \n onAddressSearch()\n \n \n\n\n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:85\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n onNameSearch\n \n \n \n \n \n \n \nonNameSearch()\n \n \n\n\n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:55\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n onPhoneSearch\n \n \n \n \n \n \n \n \n onPhoneSearch()\n \n \n\n\n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:65\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n addressSearchForm\n \n \n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:22\n \n \n\n\n \n \n \n \n \n \n \n \n \n addressSearchLoading\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:24\n \n \n\n\n \n \n \n \n \n \n \n \n \n addressSearchSubmitted\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:23\n \n \n\n\n \n \n \n \n \n \n \n \n \n matcher\n \n \n \n \n \n \n Type : CustomErrorStateMatcher\n\n \n \n \n \n Default value : new CustomErrorStateMatcher()\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:25\n \n \n\n\n \n \n \n \n \n \n \n \n \n nameSearchForm\n \n \n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:16\n \n \n\n\n \n \n \n \n \n \n \n \n \n nameSearchLoading\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:18\n \n \n\n\n \n \n \n \n \n \n \n \n \n nameSearchSubmitted\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:17\n \n \n\n\n \n \n \n \n \n \n \n \n \n phoneSearchForm\n \n \n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:19\n \n \n\n\n \n \n \n \n \n \n \n \n \n phoneSearchLoading\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:21\n \n \n\n\n \n \n \n \n \n \n \n \n \n phoneSearchSubmitted\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:20\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n nameSearchFormStub\n \n \n\n \n \n getnameSearchFormStub()\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:45\n \n \n\n \n \n \n \n \n \n \n phoneSearchFormStub\n \n \n\n \n \n getphoneSearchFormStub()\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:48\n \n \n\n \n \n \n \n \n \n \n addressSearchFormStub\n \n \n\n \n \n getaddressSearchFormStub()\n \n \n \n \n Defined in src/app/pages/accounts/account-search/account-search.component.ts:51\n \n \n\n \n \n\n\n\n\n \n import { Component, OnInit, ChangeDetectionStrategy } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators } from '@angular/forms';\nimport { CustomErrorStateMatcher } from '@app/_helpers';\nimport { UserService } from '@app/_services';\nimport { Router } from '@angular/router';\nimport { strip0x } from '@src/assets/js/ethtx/dist/hex';\nimport { environment } from '@src/environments/environment';\n\n@Component({\n selector: 'app-account-search',\n templateUrl: './account-search.component.html',\n styleUrls: ['./account-search.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class AccountSearchComponent implements OnInit {\n nameSearchForm: FormGroup;\n nameSearchSubmitted: boolean = false;\n nameSearchLoading: boolean = false;\n phoneSearchForm: FormGroup;\n phoneSearchSubmitted: boolean = false;\n phoneSearchLoading: boolean = false;\n addressSearchForm: FormGroup;\n addressSearchSubmitted: boolean = false;\n addressSearchLoading: boolean = false;\n matcher: CustomErrorStateMatcher = new CustomErrorStateMatcher();\n\n constructor(\n private formBuilder: FormBuilder,\n private userService: UserService,\n private router: Router\n ) {}\n\n ngOnInit(): void {\n this.nameSearchForm = this.formBuilder.group({\n name: ['', Validators.required],\n });\n this.phoneSearchForm = this.formBuilder.group({\n phoneNumber: ['', Validators.required],\n });\n this.addressSearchForm = this.formBuilder.group({\n address: ['', Validators.required],\n });\n }\n\n get nameSearchFormStub(): any {\n return this.nameSearchForm.controls;\n }\n get phoneSearchFormStub(): any {\n return this.phoneSearchForm.controls;\n }\n get addressSearchFormStub(): any {\n return this.addressSearchForm.controls;\n }\n\n onNameSearch(): void {\n this.nameSearchSubmitted = true;\n if (this.nameSearchForm.invalid) {\n return;\n }\n this.nameSearchLoading = true;\n this.userService.searchAccountByName(this.nameSearchFormStub.name.value);\n this.nameSearchLoading = false;\n }\n\n async onPhoneSearch(): Promise {\n this.phoneSearchSubmitted = true;\n if (this.phoneSearchForm.invalid) {\n return;\n }\n this.phoneSearchLoading = true;\n (\n await this.userService.getAccountByPhone(this.phoneSearchFormStub.phoneNumber.value, 100)\n ).subscribe(async (res) => {\n if (res !== undefined) {\n await this.router.navigateByUrl(\n `/accounts/${strip0x(res.identities.evm[`bloxberg:${environment.bloxbergChainId}`][0])}`\n );\n } else {\n alert('Account not found!');\n }\n });\n this.phoneSearchLoading = false;\n }\n\n async onAddressSearch(): Promise {\n this.addressSearchSubmitted = true;\n if (this.addressSearchForm.invalid) {\n return;\n }\n this.addressSearchLoading = true;\n (\n await this.userService.getAccountByAddress(this.addressSearchFormStub.address.value, 100)\n ).subscribe(async (res) => {\n if (res !== undefined) {\n await this.router.navigateByUrl(\n `/accounts/${strip0x(res.identities.evm[`bloxberg:${environment.bloxbergChainId}`][0])}`\n );\n } else {\n alert('Account not found!');\n }\n });\n this.addressSearchLoading = false;\n }\n}\n\n \n\n \n \n\n \n\n \n \n \n\n \n \n \n \n \n \n Home\n Accounts\n Search\n \n \n \n \n Accounts\n \n \n \n \n \n \n Search \n \n Phone Number is required.\n phone\n Phone Number\n \n SEARCH \n \n \n \n \n \n Search \n \n Account Address is required.\n view_in_ar\n Account Address\n \n SEARCH \n \n \n \n \n \n \n \n \n \n \n \n\n\n \n\n \n \n ./account-search.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Home Accounts Search Accounts Search Phone Number is required. phone Phone Number SEARCH Search Account Address is required. view_in_ar Account Address SEARCH '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'AccountSearchComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/AccountsComponent.html":{"url":"components/AccountsComponent.html","title":"component - AccountsComponent","body":"\n \n\n\n\n\n\n Components\n AccountsComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/pages/accounts/accounts.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-accounts\n \n\n \n styleUrls\n ./accounts.component.scss\n \n\n\n\n \n templateUrl\n ./accounts.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n accounts\n \n \n accountsType\n \n \n accountTypes\n \n \n dataSource\n \n \n defaultPageSize\n \n \n displayedColumns\n \n \n pageSizeOptions\n \n \n paginator\n \n \n sort\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n doFilter\n \n \n downloadCsv\n \n \n filterAccounts\n \n \n ngOnInit\n \n \n refreshPaginator\n \n \n Async\n viewAccount\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, loggingService: LoggingService, router: Router)\n \n \n \n \n Defined in src/app/pages/accounts/accounts.component.ts:29\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n loggingService\n \n \n LoggingService\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n doFilter\n \n \n \n \n \n \n \ndoFilter(value: string)\n \n \n\n\n \n \n Defined in src/app/pages/accounts/accounts.component.ts:59\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n downloadCsv\n \n \n \n \n \n \n \ndownloadCsv()\n \n \n\n\n \n \n Defined in src/app/pages/accounts/accounts.component.ts:88\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n filterAccounts\n \n \n \n \n \n \n \nfilterAccounts()\n \n \n\n\n \n \n Defined in src/app/pages/accounts/accounts.component.ts:69\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/pages/accounts/accounts.component.ts:50\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n refreshPaginator\n \n \n \n \n \n \n \nrefreshPaginator()\n \n \n\n\n \n \n Defined in src/app/pages/accounts/accounts.component.ts:80\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n viewAccount\n \n \n \n \n \n \n \n \n viewAccount(account)\n \n \n\n\n \n \n Defined in src/app/pages/accounts/accounts.component.ts:63\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n account\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n accounts\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in src/app/pages/accounts/accounts.component.ts:21\n \n \n\n\n \n \n \n \n \n \n \n \n \n accountsType\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : 'all'\n \n \n \n \n Defined in src/app/pages/accounts/accounts.component.ts:25\n \n \n\n\n \n \n \n \n \n \n \n \n \n accountTypes\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Defined in src/app/pages/accounts/accounts.component.ts:26\n \n \n\n\n \n \n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : MatTableDataSource\n\n \n \n \n \n Defined in src/app/pages/accounts/accounts.component.ts:20\n \n \n\n\n \n \n \n \n \n \n \n \n \n defaultPageSize\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Default value : 10\n \n \n \n \n Defined in src/app/pages/accounts/accounts.component.ts:23\n \n \n\n\n \n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : ['name', 'phone', 'created', 'balance', 'location']\n \n \n \n \n Defined in src/app/pages/accounts/accounts.component.ts:22\n \n \n\n\n \n \n \n \n \n \n \n \n \n pageSizeOptions\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : [10, 20, 50, 100]\n \n \n \n \n Defined in src/app/pages/accounts/accounts.component.ts:24\n \n \n\n\n \n \n \n \n \n \n \n \n \n paginator\n \n \n \n \n \n \n Type : MatPaginator\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatPaginator)\n \n \n \n \n \n Defined in src/app/pages/accounts/accounts.component.ts:28\n \n \n\n\n \n \n \n \n \n \n \n \n \n sort\n \n \n \n \n \n \n Type : MatSort\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatSort)\n \n \n \n \n \n Defined in src/app/pages/accounts/accounts.component.ts:29\n \n \n\n\n \n \n\n\n\n\n\n \n import { ChangeDetectionStrategy, Component, OnInit, ViewChild } from '@angular/core';\nimport { MatTableDataSource } from '@angular/material/table';\nimport { MatPaginator } from '@angular/material/paginator';\nimport { MatSort } from '@angular/material/sort';\nimport { LoggingService, UserService } from '@app/_services';\nimport { Router } from '@angular/router';\nimport { exportCsv } from '@app/_helpers';\nimport { strip0x } from '@src/assets/js/ethtx/dist/hex';\nimport { first } from 'rxjs/operators';\nimport { environment } from '@src/environments/environment';\nimport { AccountDetails } from '@app/_models';\n\n@Component({\n selector: 'app-accounts',\n templateUrl: './accounts.component.html',\n styleUrls: ['./accounts.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class AccountsComponent implements OnInit {\n dataSource: MatTableDataSource;\n accounts: Array = [];\n displayedColumns: Array = ['name', 'phone', 'created', 'balance', 'location'];\n defaultPageSize: number = 10;\n pageSizeOptions: Array = [10, 20, 50, 100];\n accountsType: string = 'all';\n accountTypes: Array;\n\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n\n constructor(\n private userService: UserService,\n private loggingService: LoggingService,\n private router: Router\n ) {\n (async () => {\n try {\n // TODO it feels like this should be in the onInit handler\n await this.userService.loadAccounts(100);\n } catch (error) {\n this.loggingService.sendErrorLevelMessage('Failed to load accounts', this, { error });\n }\n })();\n this.userService\n .getAccountTypes()\n .pipe(first())\n .subscribe((res) => (this.accountTypes = res));\n }\n\n ngOnInit(): void {\n this.userService.accountsSubject.subscribe((accounts) => {\n this.dataSource = new MatTableDataSource(accounts);\n this.dataSource.paginator = this.paginator;\n this.dataSource.sort = this.sort;\n this.accounts = accounts;\n });\n }\n\n doFilter(value: string): void {\n this.dataSource.filter = value.trim().toLocaleLowerCase();\n }\n\n async viewAccount(account): Promise {\n await this.router.navigateByUrl(\n `/accounts/${strip0x(account.identities.evm[`bloxberg:${environment.bloxbergChainId}`][0])}`\n );\n }\n\n filterAccounts(): void {\n if (this.accountsType === 'all') {\n this.userService.accountsSubject.subscribe((accounts) => {\n this.dataSource.data = accounts;\n this.accounts = accounts;\n });\n } else {\n this.dataSource.data = this.accounts.filter((account) => account.type === this.accountsType);\n }\n }\n\n refreshPaginator(): void {\n if (!this.dataSource.paginator) {\n this.dataSource.paginator = this.paginator;\n }\n\n this.paginator._changePageSize(this.paginator.pageSize);\n }\n\n downloadCsv(): void {\n exportCsv(this.accounts, 'accounts');\n }\n}\n\n \n\n \n \n\n \n\n \n \n \n\n \n \n \n \n \n \n Home\n Accounts\n \n \n \n \n Accounts\n \n \n \n \n ACCOUNT TYPE \n \n ALL\n \n {{accountType | uppercase}}\n \n \n \n SEARCH \n EXPORT \n \n\n \n Filter \n \n search\n \n\n \n\n \n NAME \n {{user?.vcard.fn[0].value}} \n \n\n \n PHONE NUMBER \n {{user?.vcard.tel[0].value}} \n \n\n \n CREATED \n {{user?.date_registered | date}} \n \n\n \n BALANCE \n {{user?.balance | tokenRatio}} \n \n\n \n LOCATION \n {{user?.location.area_name}} \n \n\n \n \n \n\n \n \n \n \n \n \n \n \n \n\n\n \n\n \n \n ./accounts.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Home Accounts Accounts ACCOUNT TYPE ALL {{accountType | uppercase}} SEARCH EXPORT Filter search NAME {{user?.vcard.fn[0].value}} PHONE NUMBER {{user?.vcard.tel[0].value}} CREATED {{user?.date_registered | date}} BALANCE {{user?.balance | tokenRatio}} LOCATION {{user?.location.area_name}} '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'AccountsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AccountsModule.html":{"url":"modules/AccountsModule.html","title":"module - AccountsModule","body":"\n \n\n\n\n\n Modules\n AccountsModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AccountsModule\n\n\n\ncluster_AccountsModule_declarations\n\n\n\ncluster_AccountsModule_imports\n\n\n\n\nAccountDetailsComponent\n\nAccountDetailsComponent\n\n\n\nAccountsModule\n\nAccountsModule\n\nAccountsModule -->\n\nAccountDetailsComponent->AccountsModule\n\n\n\n\n\nAccountSearchComponent\n\nAccountSearchComponent\n\nAccountsModule -->\n\nAccountSearchComponent->AccountsModule\n\n\n\n\n\nAccountsComponent\n\nAccountsComponent\n\nAccountsModule -->\n\nAccountsComponent->AccountsModule\n\n\n\n\n\nCreateAccountComponent\n\nCreateAccountComponent\n\nAccountsModule -->\n\nCreateAccountComponent->AccountsModule\n\n\n\n\n\nAccountsRoutingModule\n\nAccountsRoutingModule\n\nAccountsModule -->\n\nAccountsRoutingModule->AccountsModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nAccountsModule -->\n\nSharedModule->AccountsModule\n\n\n\n\n\nTransactionsModule\n\nTransactionsModule\n\nAccountsModule -->\n\nTransactionsModule->AccountsModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/pages/accounts/accounts.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n AccountDetailsComponent\n \n \n AccountSearchComponent\n \n \n AccountsComponent\n \n \n CreateAccountComponent\n \n \n \n \n Imports\n \n \n AccountsRoutingModule\n \n \n SharedModule\n \n \n TransactionsModule\n \n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { AccountsRoutingModule } from '@pages/accounts/accounts-routing.module';\nimport { AccountsComponent } from '@pages/accounts/accounts.component';\nimport { SharedModule } from '@app/shared/shared.module';\nimport { AccountDetailsComponent } from '@pages/accounts/account-details/account-details.component';\nimport { DataTablesModule } from 'angular-datatables';\nimport { CreateAccountComponent } from '@pages/accounts/create-account/create-account.component';\nimport { MatTableModule } from '@angular/material/table';\nimport { MatSortModule } from '@angular/material/sort';\nimport { MatCheckboxModule } from '@angular/material/checkbox';\nimport { MatPaginatorModule } from '@angular/material/paginator';\nimport { MatInputModule } from '@angular/material/input';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatCardModule } from '@angular/material/card';\nimport { MatIconModule } from '@angular/material/icon';\nimport { MatSelectModule } from '@angular/material/select';\nimport { TransactionsModule } from '@pages/transactions/transactions.module';\nimport { MatTabsModule } from '@angular/material/tabs';\nimport { MatRippleModule } from '@angular/material/core';\nimport { MatProgressSpinnerModule } from '@angular/material/progress-spinner';\nimport { ReactiveFormsModule } from '@angular/forms';\nimport { AccountSearchComponent } from './account-search/account-search.component';\nimport { MatSnackBarModule } from '@angular/material/snack-bar';\n\n@NgModule({\n declarations: [\n AccountsComponent,\n AccountDetailsComponent,\n CreateAccountComponent,\n AccountSearchComponent,\n ],\n imports: [\n CommonModule,\n AccountsRoutingModule,\n SharedModule,\n DataTablesModule,\n MatTableModule,\n MatSortModule,\n MatCheckboxModule,\n MatPaginatorModule,\n MatInputModule,\n MatFormFieldModule,\n MatButtonModule,\n MatCardModule,\n MatIconModule,\n MatSelectModule,\n TransactionsModule,\n MatTabsModule,\n MatRippleModule,\n MatProgressSpinnerModule,\n ReactiveFormsModule,\n MatSnackBarModule,\n ],\n})\nexport class AccountsModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AccountsRoutingModule.html":{"url":"modules/AccountsRoutingModule.html","title":"module - AccountsRoutingModule","body":"\n \n\n\n\n\n Modules\n AccountsRoutingModule\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/pages/accounts/accounts-routing.module.ts\n \n\n\n\n\n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { AccountsComponent } from '@pages/accounts/accounts.component';\nimport { CreateAccountComponent } from '@pages/accounts/create-account/create-account.component';\nimport { AccountDetailsComponent } from '@pages/accounts/account-details/account-details.component';\nimport { AccountSearchComponent } from '@pages/accounts/account-search/account-search.component';\n\nconst routes: Routes = [\n { path: '', component: AccountsComponent },\n { path: 'search', component: AccountSearchComponent },\n // { path: 'create', component: CreateAccountComponent },\n { path: ':id', component: AccountDetailsComponent },\n { path: '**', redirectTo: '', pathMatch: 'full' },\n];\n\n@NgModule({\n imports: [RouterModule.forChild(routes)],\n exports: [RouterModule],\n})\nexport class AccountsRoutingModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Action.html":{"url":"interfaces/Action.html","title":"interface - Action","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Action\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/mappings.ts\n \n\n \n Description\n \n \n Action object interface \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n action\n \n \n approval\n \n \n id\n \n \n role\n \n \n user\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n action\n \n \n \n \n action: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n approval\n \n \n \n \n approval: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n id\n \n \n \n \n id: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n role\n \n \n \n \n role: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n user\n \n \n \n \n user: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n interface Action {\n id: number;\n user: string;\n role: string;\n action: string;\n approval: boolean;\n}\n\n/** Area name object interface */\ninterface AreaName {\n name: string;\n locations: Array;\n}\n\n/** Area type object interface */\ninterface AreaType {\n name: string;\n area: Array;\n}\n\n/** Category object interface */\ninterface Category {\n name: string;\n products: Array;\n}\n\n/** @exports */\nexport { Action, AreaName, AreaType, Category };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/ActivatedRouteStub.html":{"url":"classes/ActivatedRouteStub.html","title":"class - ActivatedRouteStub","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n ActivatedRouteStub\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/testing/activated-route-stub.ts\n \n\n \n Description\n \n \n An ActivateRoute test double with a paramMap observable.\nUse the setParamMap() method to add the next paramMap value.\n\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Readonly\n paramMap\n \n \n Private\n subject\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n setParamMap\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(initialParams?: Params)\n \n \n \n \n Defined in src/testing/activated-route-stub.ts:11\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n initialParams\n \n \n Params\n \n \n \n Yes\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Readonly\n paramMap\n \n \n \n \n \n \n Default value : this.subject.asObservable()\n \n \n \n \n Defined in src/testing/activated-route-stub.ts:18\n \n \n\n \n \n The mock paramMap observable \n\n \n \n\n \n \n \n \n \n \n \n \n \n Private\n subject\n \n \n \n \n \n \n Default value : new ReplaySubject()\n \n \n \n \n Defined in src/testing/activated-route-stub.ts:11\n \n \n\n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n setParamMap\n \n \n \n \n \n \n \nsetParamMap(params?: Params)\n \n \n\n\n \n \n Defined in src/testing/activated-route-stub.ts:21\n \n \n\n\n \n \n Set the paramMap observables's next value \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n params\n \n Params\n \n\n \n Yes\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n import { convertToParamMap, ParamMap, Params } from '@angular/router';\nimport { ReplaySubject } from 'rxjs';\n\n/**\n * An ActivateRoute test double with a `paramMap` observable.\n * Use the `setParamMap()` method to add the next `paramMap` value.\n */\nexport class ActivatedRouteStub {\n // Use a ReplaySubject to share previous values with subscribers\n // and pump new values into the `paramMap` observable\n private subject = new ReplaySubject();\n\n constructor(initialParams?: Params) {\n this.setParamMap(initialParams);\n }\n\n /** The mock paramMap observable */\n readonly paramMap = this.subject.asObservable();\n\n /** Set the paramMap observables's next value */\n setParamMap(params?: Params): void {\n this.subject.next(convertToParamMap(params));\n }\n}\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/AdminComponent.html":{"url":"components/AdminComponent.html","title":"component - AdminComponent","body":"\n \n\n\n\n\n\n Components\n AdminComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/pages/admin/admin.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-admin\n \n\n \n styleUrls\n ./admin.component.scss\n \n\n\n\n \n templateUrl\n ./admin.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n action\n \n \n actions\n \n \n dataSource\n \n \n displayedColumns\n \n \n paginator\n \n \n sort\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n approvalStatus\n \n \n approveAction\n \n \n disapproveAction\n \n \n doFilter\n \n \n downloadCsv\n \n \n expandCollapse\n \n \n ngOnInit\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(userService: UserService, loggingService: LoggingService)\n \n \n \n \n Defined in src/app/pages/admin/admin.component.ts:31\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n loggingService\n \n \n LoggingService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n approvalStatus\n \n \n \n \n \n \n \napprovalStatus(status: boolean)\n \n \n\n\n \n \n Defined in src/app/pages/admin/admin.component.ts:49\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n status\n \n boolean\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n approveAction\n \n \n \n \n \n \n \napproveAction(action: any)\n \n \n\n\n \n \n Defined in src/app/pages/admin/admin.component.ts:53\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n action\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n disapproveAction\n \n \n \n \n \n \n \ndisapproveAction(action: any)\n \n \n\n\n \n \n Defined in src/app/pages/admin/admin.component.ts:64\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n action\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n doFilter\n \n \n \n \n \n \n \ndoFilter(value: string)\n \n \n\n\n \n \n Defined in src/app/pages/admin/admin.component.ts:45\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n downloadCsv\n \n \n \n \n \n \n \ndownloadCsv()\n \n \n\n\n \n \n Defined in src/app/pages/admin/admin.component.ts:79\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n expandCollapse\n \n \n \n \n \n \n \nexpandCollapse(row)\n \n \n\n\n \n \n Defined in src/app/pages/admin/admin.component.ts:75\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n row\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/pages/admin/admin.component.ts:43\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n action\n \n \n \n \n \n \n Type : Action\n\n \n \n \n \n Defined in src/app/pages/admin/admin.component.ts:27\n \n \n\n\n \n \n \n \n \n \n \n \n \n actions\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Defined in src/app/pages/admin/admin.component.ts:28\n \n \n\n\n \n \n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : MatTableDataSource\n\n \n \n \n \n Defined in src/app/pages/admin/admin.component.ts:25\n \n \n\n\n \n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : ['expand', 'user', 'role', 'action', 'status', 'approve']\n \n \n \n \n Defined in src/app/pages/admin/admin.component.ts:26\n \n \n\n\n \n \n \n \n \n \n \n \n \n paginator\n \n \n \n \n \n \n Type : MatPaginator\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatPaginator)\n \n \n \n \n \n Defined in src/app/pages/admin/admin.component.ts:30\n \n \n\n\n \n \n \n \n \n \n \n \n \n sort\n \n \n \n \n \n \n Type : MatSort\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatSort)\n \n \n \n \n \n Defined in src/app/pages/admin/admin.component.ts:31\n \n \n\n\n \n \n\n\n\n\n\n \n import { ChangeDetectionStrategy, Component, OnInit, ViewChild } from '@angular/core';\nimport { MatTableDataSource } from '@angular/material/table';\nimport { MatPaginator } from '@angular/material/paginator';\nimport { MatSort } from '@angular/material/sort';\nimport { LoggingService, UserService } from '@app/_services';\nimport { animate, state, style, transition, trigger } from '@angular/animations';\nimport { first } from 'rxjs/operators';\nimport { exportCsv } from '@app/_helpers';\nimport { Action } from '../../_models';\n\n@Component({\n selector: 'app-admin',\n templateUrl: './admin.component.html',\n styleUrls: ['./admin.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n animations: [\n trigger('detailExpand', [\n state('collapsed', style({ height: '0px', minHeight: 0, visibility: 'hidden' })),\n state('expanded', style({ height: '*', visibility: 'visible' })),\n transition('expanded collapsed', animate('225ms cubic-bezier(0.4, 0.0, 0.2, 1)')),\n ]),\n ],\n})\nexport class AdminComponent implements OnInit {\n dataSource: MatTableDataSource;\n displayedColumns: Array = ['expand', 'user', 'role', 'action', 'status', 'approve'];\n action: Action;\n actions: Array;\n\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n\n constructor(private userService: UserService, private loggingService: LoggingService) {\n this.userService.getActions();\n this.userService.actionsSubject.subscribe((actions) => {\n this.dataSource = new MatTableDataSource(actions);\n this.dataSource.paginator = this.paginator;\n this.dataSource.sort = this.sort;\n this.actions = actions;\n });\n }\n\n ngOnInit(): void {}\n\n doFilter(value: string): void {\n this.dataSource.filter = value.trim().toLocaleLowerCase();\n }\n\n approvalStatus(status: boolean): string {\n return status ? 'Approved' : 'Unapproved';\n }\n\n approveAction(action: any): void {\n if (!confirm('Approve action?')) {\n return;\n }\n this.userService\n .approveAction(action.id)\n .pipe(first())\n .subscribe((res) => this.loggingService.sendInfoLevelMessage(res));\n this.userService.getActions();\n }\n\n disapproveAction(action: any): void {\n if (!confirm('Disapprove action?')) {\n return;\n }\n this.userService\n .revokeAction(action.id)\n .pipe(first())\n .subscribe((res) => this.loggingService.sendInfoLevelMessage(res));\n this.userService.getActions();\n }\n\n expandCollapse(row): void {\n row.isExpanded = !row.isExpanded;\n }\n\n downloadCsv(): void {\n exportCsv(this.actions, 'actions');\n }\n}\n\n \n\n \n \n\n \n\n \n \n \n\n \n \n \n \n \n \n Home\n Admin\n \n \n \n \n \n Actions\n EXPORT \n \n \n \n\n \n Filter \n \n search\n \n\n \n\n \n \n Expand \n \n + \n - \n \n \n\n \n NAME \n {{action.user}} \n \n\n \n ROLE \n {{action.role}} \n \n\n \n ACTION \n {{action.action}} \n \n\n \n STATUS \n \n {{approvalStatus(action.approval)}} \n {{approvalStatus(action.approval)}} \n \n \n\n \n APPROVE \n \n Approve \n Disapprove \n \n \n\n \n \n \n \n Staff Name: {{action.user}}\n Role: {{action.role}}\n Action Details: {{action.action}}\n Approval Status: {{action.approval}}\n \n \n \n\n \n \n \n \n\n \n \n \n \n \n \n \n \n \n\n\n\n \n\n \n \n ./admin.component.scss\n \n button {\n width: 6rem;\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Home Admin Actions EXPORT Filter search Expand + - NAME {{action.user}} ROLE {{action.role}} ACTION {{action.action}} STATUS {{approvalStatus(action.approval)}} {{approvalStatus(action.approval)}} APPROVE Approve Disapprove Staff Name: {{action.user}} Role: {{action.role}} Action Details: {{action.action}} Approval Status: {{action.approval}} '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'AdminComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AdminModule.html":{"url":"modules/AdminModule.html","title":"module - AdminModule","body":"\n \n\n\n\n\n Modules\n AdminModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AdminModule\n\n\n\ncluster_AdminModule_declarations\n\n\n\ncluster_AdminModule_imports\n\n\n\n\nAdminComponent\n\nAdminComponent\n\n\n\nAdminModule\n\nAdminModule\n\nAdminModule -->\n\nAdminComponent->AdminModule\n\n\n\n\n\nAdminRoutingModule\n\nAdminRoutingModule\n\nAdminModule -->\n\nAdminRoutingModule->AdminModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nAdminModule -->\n\nSharedModule->AdminModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/pages/admin/admin.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n AdminComponent\n \n \n \n \n Imports\n \n \n AdminRoutingModule\n \n \n SharedModule\n \n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { AdminRoutingModule } from '@pages/admin/admin-routing.module';\nimport { AdminComponent } from '@pages/admin/admin.component';\nimport { SharedModule } from '@app/shared/shared.module';\nimport { MatCardModule } from '@angular/material/card';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatInputModule } from '@angular/material/input';\nimport { MatIconModule } from '@angular/material/icon';\nimport { MatTableModule } from '@angular/material/table';\nimport { MatSortModule } from '@angular/material/sort';\nimport { MatPaginatorModule } from '@angular/material/paginator';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatRippleModule } from '@angular/material/core';\n\n@NgModule({\n declarations: [AdminComponent],\n imports: [\n CommonModule,\n AdminRoutingModule,\n SharedModule,\n MatCardModule,\n MatFormFieldModule,\n MatInputModule,\n MatIconModule,\n MatTableModule,\n MatSortModule,\n MatPaginatorModule,\n MatButtonModule,\n MatRippleModule,\n ],\n})\nexport class AdminModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AdminRoutingModule.html":{"url":"modules/AdminRoutingModule.html","title":"module - AdminRoutingModule","body":"\n \n\n\n\n\n Modules\n AdminRoutingModule\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/pages/admin/admin-routing.module.ts\n \n\n\n\n\n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { AdminComponent } from '@pages/admin/admin.component';\n\nconst routes: Routes = [{ path: '', component: AdminComponent }];\n\n@NgModule({\n imports: [RouterModule.forChild(routes)],\n exports: [RouterModule],\n})\nexport class AdminRoutingModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/AppComponent.html":{"url":"components/AppComponent.html","title":"component - AppComponent","body":"\n \n\n\n\n\n\n Components\n AppComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/app.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-root\n \n\n \n styleUrls\n ./app.component.scss\n \n\n\n\n \n templateUrl\n ./app.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n mediaQuery\n \n \n readyState\n \n \n readyStateTarget\n \n \n title\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n onResize\n \n \n \n \n\n\n\n\n \n \n HostListeners\n \n \n \n \n \n \n window:cic_convert\n \n \n window:cic_transfer\n \n \n \n \n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(authService: AuthService, transactionService: TransactionService, loggingService: LoggingService, errorDialogService: ErrorDialogService, swUpdate: SwUpdate)\n \n \n \n \n Defined in src/app/app.component.ts:21\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n authService\n \n \n AuthService\n \n \n \n No\n \n \n \n \n transactionService\n \n \n TransactionService\n \n \n \n No\n \n \n \n \n loggingService\n \n \n LoggingService\n \n \n \n No\n \n \n \n \n errorDialogService\n \n \n ErrorDialogService\n \n \n \n No\n \n \n \n \n swUpdate\n \n \n SwUpdate\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n \n HostListeners \n \n \n \n \n \n \n window:cic_convert\n \n \n \n \n \n \n \n Arguments : '$event' \n \n \n \n \nwindow:cic_convert(event: CustomEvent)\n \n \n\n\n \n \n Defined in src/app/app.component.ts:93\n \n \n\n\n \n \n \n \n \n \n \n \n \n window:cic_transfer\n \n \n \n \n \n \n \n Arguments : '$event' \n \n \n \n \nwindow:cic_transfer(event: CustomEvent)\n \n \n\n\n \n \n Defined in src/app/app.component.ts:87\n \n \n\n\n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/app.component.ts:51\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n onResize\n \n \n \n \n \n \n \nonResize(e)\n \n \n\n\n \n \n Defined in src/app/app.component.ts:62\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n e\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n mediaQuery\n \n \n \n \n \n \n Type : MediaQueryList\n\n \n \n \n \n Default value : window.matchMedia('(max-width: 768px)')\n \n \n \n \n Defined in src/app/app.component.ts:21\n \n \n\n\n \n \n \n \n \n \n \n \n \n readyState\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Default value : 0\n \n \n \n \n Defined in src/app/app.component.ts:20\n \n \n\n\n \n \n \n \n \n \n \n \n \n readyStateTarget\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Default value : 3\n \n \n \n \n Defined in src/app/app.component.ts:19\n \n \n\n\n \n \n \n \n \n \n \n \n \n title\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : 'CICADA'\n \n \n \n \n Defined in src/app/app.component.ts:18\n \n \n\n\n \n \n\n\n\n\n\n \n import { ChangeDetectionStrategy, Component, HostListener, OnInit } from '@angular/core';\nimport {\n AuthService,\n ErrorDialogService,\n LoggingService,\n TransactionService,\n} from '@app/_services';\nimport { catchError } from 'rxjs/operators';\nimport { SwUpdate } from '@angular/service-worker';\n\n@Component({\n selector: 'app-root',\n templateUrl: './app.component.html',\n styleUrls: ['./app.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class AppComponent implements OnInit {\n title = 'CICADA';\n readyStateTarget: number = 3;\n readyState: number = 0;\n mediaQuery: MediaQueryList = window.matchMedia('(max-width: 768px)');\n\n constructor(\n private authService: AuthService,\n private transactionService: TransactionService,\n private loggingService: LoggingService,\n private errorDialogService: ErrorDialogService,\n private swUpdate: SwUpdate\n ) {\n (async () => {\n try {\n await this.authService.init();\n // this.authService.getPublicKeys()\n // .pipe(catchError(async (error) => {\n // this.loggingService.sendErrorLevelMessage('Unable to load trusted public keys.', this, {error});\n // this.errorDialogService.openDialog({message: 'Trusted keys endpoint can\\'t be reached. Please try again later.'});\n // })).subscribe(this.authService.mutableKeyStore.importPublicKey);\n const publicKeys = await this.authService.getPublicKeys();\n await this.authService.mutableKeyStore.importPublicKey(publicKeys);\n } catch (error) {\n this.errorDialogService.openDialog({\n message: 'Trusted keys endpoint cannot be reached. Please try again later.',\n });\n // TODO do something to halt user progress...show a sad cicada page 🦗?\n }\n })();\n this.mediaQuery.addEventListener('change', this.onResize);\n this.onResize(this.mediaQuery);\n }\n\n ngOnInit(): void {\n if (!this.swUpdate.isEnabled) {\n this.swUpdate.available.subscribe(() => {\n if (confirm('New Version available. Load New Version?')) {\n window.location.reload();\n }\n });\n }\n }\n\n // Load resize\n onResize(e): void {\n const sidebar: HTMLElement = document.getElementById('sidebar');\n const content: HTMLElement = document.getElementById('content');\n const sidebarCollapse: HTMLElement = document.getElementById('sidebarCollapse');\n if (sidebarCollapse?.classList.contains('active')) {\n sidebarCollapse?.classList.remove('active');\n }\n if (e.matches) {\n if (!sidebar?.classList.contains('active')) {\n sidebar?.classList.add('active');\n }\n if (!content?.classList.contains('active')) {\n content?.classList.add('active');\n }\n } else {\n if (sidebar?.classList.contains('active')) {\n sidebar?.classList.remove('active');\n }\n if (content?.classList.contains('active')) {\n content?.classList.remove('active');\n }\n }\n }\n\n @HostListener('window:cic_transfer', ['$event'])\n async cicTransfer(event: CustomEvent): Promise {\n const transaction: any = event.detail.tx;\n await this.transactionService.setTransaction(transaction, 100);\n }\n\n @HostListener('window:cic_convert', ['$event'])\n async cicConvert(event: CustomEvent): Promise {\n const conversion: any = event.detail.tx;\n await this.transactionService.setConversion(conversion, 100);\n }\n}\n\n \n\n \n \n\n\n \n\n \n \n ./app.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'AppComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AppModule.html":{"url":"modules/AppModule.html","title":"module - AppModule","body":"\n \n\n\n\n\n Modules\n AppModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AppModule\n\n\n\ncluster_AppModule_providers\n\n\n\ncluster_AppModule_imports\n\n\n\ncluster_AppModule_declarations\n\n\n\ncluster_AppModule_bootstrap\n\n\n\n\nAppComponent\n\nAppComponent\n\n\n\nAppModule\n\nAppModule\n\nAppModule -->\n\nAppComponent->AppModule\n\n\n\n\n\nAppComponent \n\nAppComponent \n\nAppComponent -->\n\nAppModule->AppComponent \n\n\n\n\n\nAppRoutingModule\n\nAppRoutingModule\n\nAppModule -->\n\nAppRoutingModule->AppModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nAppModule -->\n\nSharedModule->AppModule\n\n\n\n\n\nErrorInterceptor\n\nErrorInterceptor\n\nAppModule -->\n\nErrorInterceptor->AppModule\n\n\n\n\n\nGlobalErrorHandler\n\nGlobalErrorHandler\n\nAppModule -->\n\nGlobalErrorHandler->AppModule\n\n\n\n\n\nHttpConfigInterceptor\n\nHttpConfigInterceptor\n\nAppModule -->\n\nHttpConfigInterceptor->AppModule\n\n\n\n\n\nLoggingInterceptor\n\nLoggingInterceptor\n\nAppModule -->\n\nLoggingInterceptor->AppModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/app.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n AppComponent\n \n \n \n \n Providers\n \n \n ErrorInterceptor\n \n \n GlobalErrorHandler\n \n \n HttpConfigInterceptor\n \n \n LoggingInterceptor\n \n \n \n \n Imports\n \n \n AppRoutingModule\n \n \n SharedModule\n \n \n \n \n Bootstrap\n \n \n AppComponent\n \n \n \n \n \n\n\n \n\n\n \n import { BrowserModule } from '@angular/platform-browser';\nimport { ErrorHandler, NgModule } from '@angular/core';\n\nimport { AppRoutingModule } from '@app/app-routing.module';\nimport { AppComponent } from '@app/app.component';\nimport { BrowserAnimationsModule } from '@angular/platform-browser/animations';\nimport { HTTP_INTERCEPTORS, HttpClientModule } from '@angular/common/http';\nimport { GlobalErrorHandler, MockBackendProvider } from '@app/_helpers';\nimport { DataTablesModule } from 'angular-datatables';\nimport { SharedModule } from '@app/shared/shared.module';\nimport { MatTableModule } from '@angular/material/table';\nimport { AuthGuard } from '@app/_guards';\nimport { LoggerModule } from 'ngx-logger';\nimport { environment } from '@src/environments/environment';\nimport { ErrorInterceptor, HttpConfigInterceptor, LoggingInterceptor } from '@app/_interceptors';\nimport { MutablePgpKeyStore } from '@app/_pgp';\nimport { ServiceWorkerModule } from '@angular/service-worker';\n\n@NgModule({\n declarations: [AppComponent],\n imports: [\n BrowserModule,\n AppRoutingModule,\n BrowserAnimationsModule,\n HttpClientModule,\n DataTablesModule,\n SharedModule,\n MatTableModule,\n LoggerModule.forRoot({\n level: environment.logLevel,\n serverLogLevel: environment.serverLogLevel,\n serverLoggingUrl: `${environment.loggingUrl}/api/logs/`,\n disableConsoleLogging: false,\n }),\n ServiceWorkerModule.register('ngsw-worker.js', { enabled: environment.production }),\n ],\n providers: [\n AuthGuard,\n MutablePgpKeyStore,\n MockBackendProvider,\n GlobalErrorHandler,\n { provide: ErrorHandler, useClass: GlobalErrorHandler },\n { provide: HTTP_INTERCEPTORS, useClass: HttpConfigInterceptor, multi: true },\n { provide: HTTP_INTERCEPTORS, useClass: ErrorInterceptor, multi: true },\n { provide: HTTP_INTERCEPTORS, useClass: LoggingInterceptor, multi: true },\n ],\n bootstrap: [AppComponent],\n})\nexport class AppModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AppRoutingModule.html":{"url":"modules/AppRoutingModule.html","title":"module - AppRoutingModule","body":"\n \n\n\n\n\n Modules\n AppRoutingModule\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/app-routing.module.ts\n \n\n\n\n\n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { Routes, RouterModule, PreloadAllModules } from '@angular/router';\nimport { AuthGuard } from '@app/_guards';\n\nconst routes: Routes = [\n { path: 'auth', loadChildren: () => \"import('@app/auth/auth.module').then((m) => m.AuthModule)\" },\n {\n path: '',\n loadChildren: () => \"import('@pages/pages.module').then((m) => m.PagesModule)\",\n canActivate: [AuthGuard],\n },\n { path: '**', redirectTo: '', pathMatch: 'full' },\n];\n\n@NgModule({\n imports: [\n RouterModule.forRoot(routes, {\n preloadingStrategy: PreloadAllModules,\n }),\n ],\n exports: [RouterModule],\n})\nexport class AppRoutingModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/AreaName.html":{"url":"interfaces/AreaName.html","title":"interface - AreaName","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n AreaName\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/mappings.ts\n \n\n \n Description\n \n \n Area name object interface \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n locations\n \n \n name\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n locations\n \n \n \n \n locations: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n interface Action {\n id: number;\n user: string;\n role: string;\n action: string;\n approval: boolean;\n}\n\n/** Area name object interface */\ninterface AreaName {\n name: string;\n locations: Array;\n}\n\n/** Area type object interface */\ninterface AreaType {\n name: string;\n area: Array;\n}\n\n/** Category object interface */\ninterface Category {\n name: string;\n products: Array;\n}\n\n/** @exports */\nexport { Action, AreaName, AreaType, Category };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/AreaType.html":{"url":"interfaces/AreaType.html","title":"interface - AreaType","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n AreaType\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/mappings.ts\n \n\n \n Description\n \n \n Area type object interface \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n area\n \n \n name\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n area\n \n \n \n \n area: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n interface Action {\n id: number;\n user: string;\n role: string;\n action: string;\n approval: boolean;\n}\n\n/** Area name object interface */\ninterface AreaName {\n name: string;\n locations: Array;\n}\n\n/** Area type object interface */\ninterface AreaType {\n name: string;\n area: Array;\n}\n\n/** Category object interface */\ninterface Category {\n name: string;\n products: Array;\n}\n\n/** @exports */\nexport { Action, AreaName, AreaType, Category };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/AuthComponent.html":{"url":"components/AuthComponent.html","title":"component - AuthComponent","body":"\n \n\n\n\n\n\n Components\n AuthComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/auth/auth.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-auth\n \n\n \n styleUrls\n ./auth.component.scss\n \n\n\n\n \n templateUrl\n ./auth.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n keyForm\n \n \n loading\n \n \n matcher\n \n \n submitted\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n login\n \n \n Async\n ngOnInit\n \n \n Async\n onSubmit\n \n \n switchWindows\n \n \n toggleDisplay\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n keyFormStub\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(authService: AuthService, formBuilder: FormBuilder, router: Router)\n \n \n \n \n Defined in src/app/auth/auth.component.ts:17\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n authService\n \n \n AuthService\n \n \n \n No\n \n \n \n \n formBuilder\n \n \n FormBuilder\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n login\n \n \n \n \n \n \n \nlogin()\n \n \n\n\n \n \n Defined in src/app/auth/auth.component.ts:52\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n ngOnInit\n \n \n \n \n \n \n \n \n ngOnInit()\n \n \n\n\n \n \n Defined in src/app/auth/auth.component.ts:25\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n onSubmit\n \n \n \n \n \n \n \n \n onSubmit()\n \n \n\n\n \n \n Defined in src/app/auth/auth.component.ts:40\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n switchWindows\n \n \n \n \n \n \n \nswitchWindows()\n \n \n\n\n \n \n Defined in src/app/auth/auth.component.ts:63\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n toggleDisplay\n \n \n \n \n \n \n \ntoggleDisplay(element: any)\n \n \n\n\n \n \n Defined in src/app/auth/auth.component.ts:71\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n element\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n keyForm\n \n \n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Defined in src/app/auth/auth.component.ts:14\n \n \n\n\n \n \n \n \n \n \n \n \n \n loading\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/app/auth/auth.component.ts:16\n \n \n\n\n \n \n \n \n \n \n \n \n \n matcher\n \n \n \n \n \n \n Type : CustomErrorStateMatcher\n\n \n \n \n \n Default value : new CustomErrorStateMatcher()\n \n \n \n \n Defined in src/app/auth/auth.component.ts:17\n \n \n\n\n \n \n \n \n \n \n \n \n \n submitted\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/app/auth/auth.component.ts:15\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n keyFormStub\n \n \n\n \n \n getkeyFormStub()\n \n \n \n \n Defined in src/app/auth/auth.component.ts:36\n \n \n\n \n \n\n\n\n\n \n import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators } from '@angular/forms';\nimport { CustomErrorStateMatcher } from '@app/_helpers';\nimport { AuthService } from '@app/_services';\nimport { Router } from '@angular/router';\n\n@Component({\n selector: 'app-auth',\n templateUrl: './auth.component.html',\n styleUrls: ['./auth.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class AuthComponent implements OnInit {\n keyForm: FormGroup;\n submitted: boolean = false;\n loading: boolean = false;\n matcher: CustomErrorStateMatcher = new CustomErrorStateMatcher();\n\n constructor(\n private authService: AuthService,\n private formBuilder: FormBuilder,\n private router: Router\n ) {}\n\n async ngOnInit(): Promise {\n this.keyForm = this.formBuilder.group({\n key: ['', Validators.required],\n });\n await this.authService.init();\n // if (this.authService.privateKey !== undefined) {\n // const setKey = await this.authService.setKey(this.authService.privateKey);\n // }\n // }\n }\n\n get keyFormStub(): any {\n return this.keyForm.controls;\n }\n\n async onSubmit(): Promise {\n this.submitted = true;\n\n if (this.keyForm.invalid) {\n return;\n }\n\n this.loading = true;\n await this.authService.setKey(this.keyFormStub.key.value);\n this.loading = false;\n }\n\n login(): void {\n // TODO check if we have privatekey\n // Send us to home if we have a private key\n // talk to meta somehow\n // in the error interceptor if 401/403 handle it\n // if 200 go /home\n if (this.authService.getPrivateKey()) {\n this.router.navigate(['/home']);\n }\n }\n\n switchWindows(): void {\n this.authService.sessionToken = undefined;\n const divOne: HTMLElement = document.getElementById('one');\n const divTwo: HTMLElement = document.getElementById('two');\n this.toggleDisplay(divOne);\n this.toggleDisplay(divTwo);\n }\n\n toggleDisplay(element: any): void {\n const style: string = window.getComputedStyle(element).display;\n if (style === 'block') {\n element.style.display = 'none';\n } else {\n element.style.display = 'block';\n }\n }\n}\n\n \n\n \n \n \n \n \n \n \n CICADA\n \n \n \n\n \n Add Private Key\n \n\n \n\n \n Private Key\n \n \n Private Key is required.\n \n \n\n \n \n Add Key\n \n\n \n \n \n\n \n \n Login \n \n\n \n \n Change private key? Enter private key\n \n \n \n \n \n \n \n\n\n \n\n \n \n ./auth.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' CICADA Add Private Key Private Key Private Key is required. Add Key Login Change private key? Enter private key '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'AuthComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"guards/AuthGuard.html":{"url":"guards/AuthGuard.html","title":"guard - AuthGuard","body":"\n \n\n\n\n\n\n\n\n\n\n\n Guards\n AuthGuard\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_guards/auth.guard.ts\n \n\n \n Description\n \n \n Auth guard implementation.\nDictates access to routes depending on the authentication status.\n\n \n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n canActivate\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(router: Router)\n \n \n \n \n Defined in src/app/_guards/auth.guard.ts:21\n \n \n\n \n \n Instantiates the auth guard class.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \nA service that provides navigation among views and URL manipulation capabilities.\n\n\n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n canActivate\n \n \n \n \n \n \n \ncanActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot)\n \n \n\n\n \n \n Defined in src/app/_guards/auth.guard.ts:38\n \n \n\n\n \n \n Returns whether navigation to a specific route is acceptable.\nChecks if the user has uploaded a private key.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n route\n \n ActivatedRouteSnapshot\n \n\n \n No\n \n\n\n \n \nContains the information about a route associated with a component loaded in an outlet at a particular moment in time.\nActivatedRouteSnapshot can also be used to traverse the router state tree.\n\n\n \n \n \n state\n \n RouterStateSnapshot\n \n\n \n No\n \n\n\n \n \nRepresents the state of the router at a moment in time.\n\n\n \n \n \n \n \n \n \n \n Returns : Observable | Promise | boolean | UrlTree\n\n \n \n true - If there is an active private key in the user's localStorage.\n\n \n \n \n \n \n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport {\n ActivatedRouteSnapshot,\n CanActivate,\n Router,\n RouterStateSnapshot,\n UrlTree,\n} from '@angular/router';\n\n// Third party imports\nimport { Observable } from 'rxjs';\n\n/**\n * Auth guard implementation.\n * Dictates access to routes depending on the authentication status.\n */\n@Injectable({\n providedIn: 'root',\n})\nexport class AuthGuard implements CanActivate {\n /**\n * Instantiates the auth guard class.\n *\n * @param router - A service that provides navigation among views and URL manipulation capabilities.\n */\n constructor(private router: Router) {}\n\n /**\n * Returns whether navigation to a specific route is acceptable.\n * Checks if the user has uploaded a private key.\n *\n * @param route - Contains the information about a route associated with a component loaded in an outlet at a particular moment in time.\n * ActivatedRouteSnapshot can also be used to traverse the router state tree.\n * @param state - Represents the state of the router at a moment in time.\n * @returns true - If there is an active private key in the user's localStorage.\n */\n canActivate(\n route: ActivatedRouteSnapshot,\n state: RouterStateSnapshot\n ): Observable | Promise | boolean | UrlTree {\n if (localStorage.getItem(btoa('CICADA_PRIVATE_KEY'))) {\n return true;\n }\n this.router.navigate(['/auth']);\n return false;\n }\n}\n\n \n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AuthModule.html":{"url":"modules/AuthModule.html","title":"module - AuthModule","body":"\n \n\n\n\n\n Modules\n AuthModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AuthModule\n\n\n\ncluster_AuthModule_imports\n\n\n\ncluster_AuthModule_declarations\n\n\n\n\nAuthComponent\n\nAuthComponent\n\n\n\nAuthModule\n\nAuthModule\n\nAuthModule -->\n\nAuthComponent->AuthModule\n\n\n\n\n\nPasswordToggleDirective\n\nPasswordToggleDirective\n\nAuthModule -->\n\nPasswordToggleDirective->AuthModule\n\n\n\n\n\nAuthRoutingModule\n\nAuthRoutingModule\n\nAuthModule -->\n\nAuthRoutingModule->AuthModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/auth/auth.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n AuthComponent\n \n \n PasswordToggleDirective\n \n \n \n \n Imports\n \n \n AuthRoutingModule\n \n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { AuthRoutingModule } from '@app/auth/auth-routing.module';\nimport { AuthComponent } from '@app/auth/auth.component';\nimport { ReactiveFormsModule } from '@angular/forms';\nimport { PasswordToggleDirective } from '@app/auth/_directives/password-toggle.directive';\nimport { MatCardModule } from '@angular/material/card';\nimport { MatSelectModule } from '@angular/material/select';\nimport { MatInputModule } from '@angular/material/input';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatRippleModule } from '@angular/material/core';\n\n@NgModule({\n declarations: [AuthComponent, PasswordToggleDirective],\n imports: [\n CommonModule,\n AuthRoutingModule,\n ReactiveFormsModule,\n MatCardModule,\n MatSelectModule,\n MatInputModule,\n MatButtonModule,\n MatRippleModule,\n ],\n})\nexport class AuthModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AuthRoutingModule.html":{"url":"modules/AuthRoutingModule.html","title":"module - AuthRoutingModule","body":"\n \n\n\n\n\n Modules\n AuthRoutingModule\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/auth/auth-routing.module.ts\n \n\n\n\n\n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { AuthComponent } from '@app/auth/auth.component';\n\nconst routes: Routes = [\n { path: '', component: AuthComponent },\n { path: '**', redirectTo: '', pathMatch: 'full' },\n];\n\n@NgModule({\n imports: [RouterModule.forChild(routes)],\n exports: [RouterModule],\n})\nexport class AuthRoutingModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/AuthService.html":{"url":"injectables/AuthService.html","title":"injectable - AuthService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n AuthService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_services/auth.service.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n mutableKeyStore\n \n \n sessionLoginCount\n \n \n sessionToken\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n getChallenge\n \n \n getPrivateKey\n \n \n Async\n getPublicKeys\n \n \n getTrustedUsers\n \n \n getWithToken\n \n \n Async\n init\n \n \n login\n \n \n Async\n loginResponse\n \n \n loginView\n \n \n logout\n \n \n sendResponse\n \n \n Async\n setKey\n \n \n setState\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(httpClient: HttpClient, loggingService: LoggingService, errorDialogService: ErrorDialogService)\n \n \n \n \n Defined in src/app/_services/auth.service.ts:17\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n httpClient\n \n \n HttpClient\n \n \n \n No\n \n \n \n \n loggingService\n \n \n LoggingService\n \n \n \n No\n \n \n \n \n errorDialogService\n \n \n ErrorDialogService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n getChallenge\n \n \n \n \n \n \n \ngetChallenge()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:84\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n getPrivateKey\n \n \n \n \n \n \n \ngetPrivateKey()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:210\n \n \n\n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n getPublicKeys\n \n \n \n \n \n \n \n \n getPublicKeys()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:200\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n getTrustedUsers\n \n \n \n \n \n \n \ngetTrustedUsers()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:194\n \n \n\n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n getWithToken\n \n \n \n \n \n \n \ngetWithToken()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:42\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n init\n \n \n \n \n \n \n \n \n init()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:27\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n login\n \n \n \n \n \n \n \nlogin()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:98\n \n \n\n\n \n \n\n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n loginResponse\n \n \n \n \n \n \n \n \n loginResponse(o: literal type)\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:116\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n o\n \n literal type\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n loginView\n \n \n \n \n \n \n \nloginView()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:150\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n logout\n \n \n \n \n \n \n \nlogout()\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:188\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n sendResponse\n \n \n \n \n \n \n \nsendResponse(hobaResponseEncoded: any)\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:61\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n hobaResponseEncoded\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Async\n setKey\n \n \n \n \n \n \n \n \n setKey(privateKeyArmored)\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:160\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n Description\n \n \n \n \n privateKeyArmored\n\n \n No\n \n\n\n \n \nPrivate key.\n\n\n \n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n setState\n \n \n \n \n \n \n \nsetState(s)\n \n \n\n\n \n \n Defined in src/app/_services/auth.service.ts:38\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n s\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n mutableKeyStore\n \n \n \n \n \n \n Type : MutableKeyStore\n\n \n \n \n \n Defined in src/app/_services/auth.service.ts:17\n \n \n\n\n \n \n \n \n \n \n \n \n \n sessionLoginCount\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Default value : 0\n \n \n \n \n Defined in src/app/_services/auth.service.ts:16\n \n \n\n\n \n \n \n \n \n \n \n \n \n sessionToken\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/app/_services/auth.service.ts:15\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { hobaParseChallengeHeader } from '@src/assets/js/hoba.js';\nimport { signChallenge } from '@src/assets/js/hoba-pgp.js';\nimport { environment } from '@src/environments/environment';\nimport { LoggingService } from '@app/_services/logging.service';\nimport { MutableKeyStore, MutablePgpKeyStore } from '@app/_pgp';\nimport { ErrorDialogService } from '@app/_services/error-dialog.service';\nimport { HttpClient } from '@angular/common/http';\nimport { HttpError } from '@app/_helpers/global-error-handler';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class AuthService {\n sessionToken: any;\n sessionLoginCount: number = 0;\n mutableKeyStore: MutableKeyStore;\n\n constructor(\n private httpClient: HttpClient,\n private loggingService: LoggingService,\n private errorDialogService: ErrorDialogService\n ) {\n this.mutableKeyStore = new MutablePgpKeyStore();\n }\n\n async init(): Promise {\n await this.mutableKeyStore.loadKeyring();\n // TODO setting these together should be atomic\n if (sessionStorage.getItem(btoa('CICADA_SESSION_TOKEN'))) {\n this.sessionToken = sessionStorage.getItem(btoa('CICADA_SESSION_TOKEN'));\n }\n if (localStorage.getItem(btoa('CICADA_PRIVATE_KEY'))) {\n await this.mutableKeyStore.importPrivateKey(localStorage.getItem(btoa('CICADA_PRIVATE_KEY')));\n }\n }\n\n setState(s): void {\n document.getElementById('state').innerHTML = s;\n }\n\n getWithToken(): void {\n const xhr: XMLHttpRequest = new XMLHttpRequest();\n xhr.responseType = 'text';\n xhr.open('GET', environment.cicMetaUrl + window.location.search.substring(1));\n xhr.setRequestHeader('Authorization', 'Bearer ' + this.sessionToken);\n xhr.setRequestHeader('Content-Type', 'application/json');\n xhr.setRequestHeader('x-cic-automerge', 'none');\n xhr.addEventListener('load', (e) => {\n if (xhr.status === 401) {\n throw new Error('login rejected');\n }\n this.sessionLoginCount++;\n this.setState('Click button to log in');\n return;\n });\n xhr.send();\n }\n\n // TODO rename to send signed challenge and set session. Also separate these responsibilities\n sendResponse(hobaResponseEncoded: any): Promise {\n return new Promise((resolve, reject) => {\n const xhr: XMLHttpRequest = new XMLHttpRequest();\n xhr.responseType = 'text';\n xhr.open('GET', environment.cicMetaUrl + window.location.search.substring(1));\n xhr.setRequestHeader('Authorization', 'HOBA ' + hobaResponseEncoded);\n xhr.setRequestHeader('Content-Type', 'application/json');\n xhr.setRequestHeader('x-cic-automerge', 'none');\n xhr.addEventListener('load', (e) => {\n if (xhr.status !== 200) {\n const error = new HttpError(xhr.statusText, xhr.status);\n return reject(error);\n }\n this.sessionToken = xhr.getResponseHeader('Token');\n sessionStorage.setItem(btoa('CICADA_SESSION_TOKEN'), this.sessionToken);\n this.sessionLoginCount++;\n this.setState('Click button to log in');\n return resolve(true);\n });\n xhr.send();\n });\n }\n\n getChallenge(): void {\n const xhr: XMLHttpRequest = new XMLHttpRequest();\n xhr.responseType = 'arraybuffer';\n xhr.open('GET', environment.cicMetaUrl + window.location.search.substring(1));\n xhr.onload = async (e) => {\n if (xhr.status === 401) {\n const authHeader = xhr.getResponseHeader('WWW-Authenticate');\n const o = hobaParseChallengeHeader(authHeader);\n this.loginResponse(o);\n }\n };\n xhr.send();\n }\n\n login(): boolean {\n if (this.sessionToken !== undefined) {\n try {\n this.getWithToken();\n return true;\n } catch (e) {\n this.loggingService.sendErrorLevelMessage('Login token failed', this, { error: e });\n }\n } else {\n try {\n this.getChallenge();\n } catch (e) {\n this.loggingService.sendErrorLevelMessage('Login challenge failed', this, { error: e });\n }\n }\n return false;\n }\n\n async loginResponse(o: { challenge: string; realm: any }): Promise {\n return new Promise(async (resolve, reject) => {\n try {\n const r = await signChallenge(\n o.challenge,\n o.realm,\n environment.cicMetaUrl,\n this.mutableKeyStore\n );\n const sessionTokenResult: boolean = await this.sendResponse(r);\n } catch (error) {\n if (error instanceof HttpError) {\n if (error.status === 403) {\n this.errorDialogService.openDialog({\n message: 'You are not authorized to use this system',\n });\n }\n if (error.status === 401) {\n this.errorDialogService.openDialog({\n message:\n 'Unable to authenticate with the service. ' +\n 'Please speak with the staff at Grassroots ' +\n 'Economics for requesting access ' +\n 'staff@grassrootseconomics.net.',\n });\n }\n }\n // TODO define this error\n this.errorDialogService.openDialog({ message: 'Incorrect key passphrase.' });\n resolve(false);\n }\n });\n }\n\n loginView(): void {\n document.getElementById('one').style.display = 'none';\n document.getElementById('two').style.display = 'block';\n this.setState('Click button to log in with PGP key ' + this.mutableKeyStore.getPrivateKeyId());\n }\n\n /**\n * @throws\n * @param privateKeyArmored - Private key.\n */\n async setKey(privateKeyArmored): Promise {\n try {\n const isValidKeyCheck = await this.mutableKeyStore.isValidKey(privateKeyArmored);\n if (!isValidKeyCheck) {\n throw Error('The private key is invalid');\n }\n // TODO leaving this out for now.\n // const isEncryptedKeyCheck = await this.mutableKeyStore.isEncryptedPrivateKey(privateKeyArmored);\n // if (!isEncryptedKeyCheck) {\n // throw Error('The private key doesn\\'t have a password!');\n // }\n const key = await this.mutableKeyStore.importPrivateKey(privateKeyArmored);\n localStorage.setItem(btoa('CICADA_PRIVATE_KEY'), privateKeyArmored);\n } catch (err) {\n this.loggingService.sendErrorLevelMessage(\n `Failed to set key: ${err.message || err.statusText}`,\n this,\n { error: err }\n );\n this.errorDialogService.openDialog({\n message: `Failed to set key: ${err.message || err.statusText}`,\n });\n return false;\n }\n this.loginView();\n return true;\n }\n\n logout(): void {\n sessionStorage.removeItem(btoa('CICADA_SESSION_TOKEN'));\n this.sessionToken = undefined;\n window.location.reload();\n }\n\n getTrustedUsers(): any {\n const trustedUsers: Array = [];\n this.mutableKeyStore.getPublicKeys().forEach((key) => trustedUsers.push(key.users[0].userId));\n return trustedUsers;\n }\n\n async getPublicKeys(): Promise {\n return await fetch(environment.publicKeysUrl).then((res) => {\n if (!res.ok) {\n // TODO does angular recommend an error interface?\n throw Error(`${res.statusText} - ${res.status}`);\n }\n return res.text();\n });\n }\n\n getPrivateKey(): any {\n return this.mutableKeyStore.getPrivateKey();\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/BlockSyncService.html":{"url":"injectables/BlockSyncService.html","title":"injectable - BlockSyncService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n BlockSyncService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_services/block-sync.service.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n readyState\n \n \n readyStateTarget\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n blockSync\n \n \n fetcher\n \n \n newConversionEvent\n \n \n newTransferEvent\n \n \n readyStateProcessor\n \n \n Async\n scan\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(transactionService: TransactionService, loggingService: LoggingService, registryService: RegistryService)\n \n \n \n \n Defined in src/app/_services/block-sync.service.ts:15\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n transactionService\n \n \n TransactionService\n \n \n \n No\n \n \n \n \n loggingService\n \n \n LoggingService\n \n \n \n No\n \n \n \n \n registryService\n \n \n RegistryService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n blockSync\n \n \n \n \n \n \n \nblockSync(address: string, offset: number, limit: number)\n \n \n\n\n \n \n Defined in src/app/_services/block-sync.service.ts:23\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n address\n \n string\n \n\n \n No\n \n\n \n null\n \n\n \n \n offset\n \n number\n \n\n \n No\n \n\n \n 0\n \n\n \n \n limit\n \n number\n \n\n \n No\n \n\n \n 100\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n fetcher\n \n \n \n \n \n \n \nfetcher(settings: Settings, transactionsInfo: any)\n \n \n\n\n \n \n Defined in src/app/_services/block-sync.service.ts:118\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n settings\n \n Settings\n \n\n \n No\n \n\n\n \n \n transactionsInfo\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n newConversionEvent\n \n \n \n \n \n \n \nnewConversionEvent(tx: any)\n \n \n\n\n \n \n Defined in src/app/_services/block-sync.service.ts:89\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n tx\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n newTransferEvent\n \n \n \n \n \n \n \nnewTransferEvent(tx: any)\n \n \n\n\n \n \n Defined in src/app/_services/block-sync.service.ts:81\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n tx\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n readyStateProcessor\n \n \n \n \n \n \n \nreadyStateProcessor(settings: Settings, bit: number, address: string, offset: number, limit: number)\n \n \n\n\n \n \n Defined in src/app/_services/block-sync.service.ts:46\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n settings\n \n Settings\n \n\n \n No\n \n\n\n \n \n bit\n \n number\n \n\n \n No\n \n\n\n \n \n address\n \n string\n \n\n \n No\n \n\n\n \n \n offset\n \n number\n \n\n \n No\n \n\n\n \n \n limit\n \n number\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Async\n scan\n \n \n \n \n \n \n \n \n scan(settings: Settings, lo: number, hi: number, bloomBlockBytes: Uint8Array, bloomBlocktxBytes: Uint8Array, bloomRounds: any)\n \n \n\n\n \n \n Defined in src/app/_services/block-sync.service.ts:97\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n settings\n \n Settings\n \n\n \n No\n \n\n\n \n \n lo\n \n number\n \n\n \n No\n \n\n\n \n \n hi\n \n number\n \n\n \n No\n \n\n\n \n \n bloomBlockBytes\n \n Uint8Array\n \n\n \n No\n \n\n\n \n \n bloomBlocktxBytes\n \n Uint8Array\n \n\n \n No\n \n\n\n \n \n bloomRounds\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n readyState\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Default value : 0\n \n \n \n \n Defined in src/app/_services/block-sync.service.ts:15\n \n \n\n\n \n \n \n \n \n \n \n \n \n readyStateTarget\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Default value : 2\n \n \n \n \n Defined in src/app/_services/block-sync.service.ts:14\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { Settings } from '@app/_models';\nimport { TransactionHelper } from 'cic-client';\nimport { first } from 'rxjs/operators';\nimport { TransactionService } from '@app/_services/transaction.service';\nimport { environment } from '@src/environments/environment';\nimport { LoggingService } from '@app/_services/logging.service';\nimport { RegistryService } from '@app/_services/registry.service';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class BlockSyncService {\n readyStateTarget: number = 2;\n readyState: number = 0;\n\n constructor(\n private transactionService: TransactionService,\n private loggingService: LoggingService,\n private registryService: RegistryService\n ) {}\n\n blockSync(address: string = null, offset: number = 0, limit: number = 100): void {\n this.transactionService.resetTransactionsList();\n const settings: Settings = new Settings(this.scan);\n const readyStateElements: { network: number } = { network: 2 };\n settings.w3.provider = environment.web3Provider;\n settings.w3.engine = this.registryService.getWeb3();\n settings.registry = this.registryService.getRegistry();\n settings.txHelper = new TransactionHelper(settings.w3.engine, settings.registry);\n\n settings.txHelper.ontransfer = async (transaction: any): Promise => {\n window.dispatchEvent(this.newTransferEvent(transaction));\n };\n settings.txHelper.onconversion = async (transaction: any): Promise => {\n window.dispatchEvent(this.newConversionEvent(transaction));\n };\n settings.registry.onload = (addressReturned: number): void => {\n this.loggingService.sendInfoLevelMessage(`Loaded network contracts ${addressReturned}`);\n this.readyStateProcessor(settings, readyStateElements.network, address, offset, limit);\n };\n\n settings.registry.load();\n }\n\n readyStateProcessor(\n settings: Settings,\n bit: number,\n address: string,\n offset: number,\n limit: number\n ): void {\n // tslint:disable-next-line:no-bitwise\n this.readyState |= bit;\n if (this.readyStateTarget === this.readyState && this.readyStateTarget) {\n const wHeadSync: Worker = new Worker('./../assets/js/block-sync/head.js');\n wHeadSync.onmessage = (m) => {\n settings.txHelper.processReceipt(m.data);\n };\n wHeadSync.postMessage({\n w3_provider: settings.w3.provider,\n });\n if (address === null) {\n this.transactionService\n .getAllTransactions(offset, limit)\n .pipe(first())\n .subscribe((res) => {\n this.fetcher(settings, res);\n });\n } else {\n this.transactionService\n .getAddressTransactions(address, offset, limit)\n .pipe(first())\n .subscribe((res) => {\n this.fetcher(settings, res);\n });\n }\n }\n }\n\n newTransferEvent(tx: any): any {\n return new CustomEvent('cic_transfer', {\n detail: {\n tx,\n },\n });\n }\n\n newConversionEvent(tx: any): any {\n return new CustomEvent('cic_convert', {\n detail: {\n tx,\n },\n });\n }\n\n async scan(\n settings: Settings,\n lo: number,\n hi: number,\n bloomBlockBytes: Uint8Array,\n bloomBlocktxBytes: Uint8Array,\n bloomRounds: any\n ): Promise {\n const w: Worker = new Worker('./../assets/js/block-sync/ondemand.js');\n w.onmessage = (m) => {\n settings.txHelper.processReceipt(m.data);\n };\n w.postMessage({\n w3_provider: settings.w3.provider,\n lo,\n hi,\n filters: [bloomBlockBytes, bloomBlocktxBytes],\n filter_rounds: bloomRounds,\n });\n }\n\n fetcher(settings: Settings, transactionsInfo: any): void {\n const blockFilterBinstr: string = window.atob(transactionsInfo.block_filter);\n const bOne: Uint8Array = new Uint8Array(blockFilterBinstr.length);\n bOne.map((e, i, v) => (v[i] = blockFilterBinstr.charCodeAt(i)));\n\n const blocktxFilterBinstr: string = window.atob(transactionsInfo.blocktx_filter);\n const bTwo: Uint8Array = new Uint8Array(blocktxFilterBinstr.length);\n bTwo.map((e, i, v) => (v[i] = blocktxFilterBinstr.charCodeAt(i)));\n\n settings.scanFilter(\n settings,\n transactionsInfo.low,\n transactionsInfo.high,\n bOne,\n bTwo,\n transactionsInfo.filter_rounds\n );\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/BlocksBloom.html":{"url":"interfaces/BlocksBloom.html","title":"interface - BlocksBloom","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n BlocksBloom\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/transaction.ts\n \n\n \n Description\n \n \n BlocksBloom object interface \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n alg\n \n \n blockFilter\n \n \n blocktxFilter\n \n \n filterRounds\n \n \n low\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n alg\n \n \n \n \n alg: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n blockFilter\n \n \n \n \n blockFilter: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n blocktxFilter\n \n \n \n \n blocktxFilter: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n filterRounds\n \n \n \n \n filterRounds: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n low\n \n \n \n \n low: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { AccountDetails } from '@app/_models/account';\n\n/** BlocksBloom object interface */\ninterface BlocksBloom {\n low: number;\n blockFilter: string;\n blocktxFilter: string;\n alg: string;\n filterRounds: number;\n}\n\n/** Conversion object interface */\ninterface Conversion {\n destinationToken: TxToken;\n fromValue: number;\n sourceToken: TxToken;\n toValue: number;\n trader: string;\n user: AccountDetails;\n tx: Tx;\n}\n\n/** Transaction object interface */\ninterface Transaction {\n from: string;\n sender: AccountDetails;\n to: string;\n recipient: AccountDetails;\n token: TxToken;\n tx: Tx;\n value: number;\n type?: string;\n}\n\n/** Transaction data interface */\ninterface Tx {\n block: number;\n success: boolean;\n timestamp: number;\n txHash: string;\n txIndex: number;\n}\n\n/** Transaction token object interface */\ninterface TxToken {\n address: string;\n name: string;\n symbol: string;\n}\n\n/** @exports */\nexport { BlocksBloom, Conversion, Transaction, Tx, TxToken };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Category.html":{"url":"interfaces/Category.html","title":"interface - Category","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Category\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/mappings.ts\n \n\n \n Description\n \n \n Category object interface \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n name\n \n \n products\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n name\n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n products\n \n \n \n \n products: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n interface Action {\n id: number;\n user: string;\n role: string;\n action: string;\n approval: boolean;\n}\n\n/** Area name object interface */\ninterface AreaName {\n name: string;\n locations: Array;\n}\n\n/** Area type object interface */\ninterface AreaType {\n name: string;\n area: Array;\n}\n\n/** Category object interface */\ninterface Category {\n name: string;\n products: Array;\n}\n\n/** @exports */\nexport { Action, AreaName, AreaType, Category };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Conversion.html":{"url":"interfaces/Conversion.html","title":"interface - Conversion","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Conversion\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/transaction.ts\n \n\n \n Description\n \n \n Conversion object interface \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n destinationToken\n \n \n fromValue\n \n \n sourceToken\n \n \n toValue\n \n \n trader\n \n \n tx\n \n \n user\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n destinationToken\n \n \n \n \n destinationToken: TxToken\n\n \n \n\n\n \n \n Type : TxToken\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n fromValue\n \n \n \n \n fromValue: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n sourceToken\n \n \n \n \n sourceToken: TxToken\n\n \n \n\n\n \n \n Type : TxToken\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n toValue\n \n \n \n \n toValue: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n trader\n \n \n \n \n trader: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n tx\n \n \n \n \n tx: Tx\n\n \n \n\n\n \n \n Type : Tx\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n user\n \n \n \n \n user: AccountDetails\n\n \n \n\n\n \n \n Type : AccountDetails\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { AccountDetails } from '@app/_models/account';\n\n/** BlocksBloom object interface */\ninterface BlocksBloom {\n low: number;\n blockFilter: string;\n blocktxFilter: string;\n alg: string;\n filterRounds: number;\n}\n\n/** Conversion object interface */\ninterface Conversion {\n destinationToken: TxToken;\n fromValue: number;\n sourceToken: TxToken;\n toValue: number;\n trader: string;\n user: AccountDetails;\n tx: Tx;\n}\n\n/** Transaction object interface */\ninterface Transaction {\n from: string;\n sender: AccountDetails;\n to: string;\n recipient: AccountDetails;\n token: TxToken;\n tx: Tx;\n value: number;\n type?: string;\n}\n\n/** Transaction data interface */\ninterface Tx {\n block: number;\n success: boolean;\n timestamp: number;\n txHash: string;\n txIndex: number;\n}\n\n/** Transaction token object interface */\ninterface TxToken {\n address: string;\n name: string;\n symbol: string;\n}\n\n/** @exports */\nexport { BlocksBloom, Conversion, Transaction, Tx, TxToken };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/CreateAccountComponent.html":{"url":"components/CreateAccountComponent.html","title":"component - CreateAccountComponent","body":"\n \n\n\n\n\n\n Components\n CreateAccountComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/pages/accounts/create-account/create-account.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-create-account\n \n\n \n styleUrls\n ./create-account.component.scss\n \n\n\n\n \n templateUrl\n ./create-account.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n accountTypes\n \n \n areaNames\n \n \n categories\n \n \n createForm\n \n \n genders\n \n \n matcher\n \n \n submitted\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n onSubmit\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n createFormStub\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(formBuilder: FormBuilder, locationService: LocationService, userService: UserService)\n \n \n \n \n Defined in src/app/pages/accounts/create-account/create-account.component.ts:21\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n formBuilder\n \n \n FormBuilder\n \n \n \n No\n \n \n \n \n locationService\n \n \n LocationService\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/pages/accounts/create-account/create-account.component.ts:29\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n onSubmit\n \n \n \n \n \n \n \nonSubmit()\n \n \n\n\n \n \n Defined in src/app/pages/accounts/create-account/create-account.component.ts:64\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n accountTypes\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Defined in src/app/pages/accounts/create-account/create-account.component.ts:20\n \n \n\n\n \n \n \n \n \n \n \n \n \n areaNames\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Defined in src/app/pages/accounts/create-account/create-account.component.ts:19\n \n \n\n\n \n \n \n \n \n \n \n \n \n categories\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Defined in src/app/pages/accounts/create-account/create-account.component.ts:18\n \n \n\n\n \n \n \n \n \n \n \n \n \n createForm\n \n \n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Defined in src/app/pages/accounts/create-account/create-account.component.ts:15\n \n \n\n\n \n \n \n \n \n \n \n \n \n genders\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Defined in src/app/pages/accounts/create-account/create-account.component.ts:21\n \n \n\n\n \n \n \n \n \n \n \n \n \n matcher\n \n \n \n \n \n \n Type : CustomErrorStateMatcher\n\n \n \n \n \n Default value : new CustomErrorStateMatcher()\n \n \n \n \n Defined in src/app/pages/accounts/create-account/create-account.component.ts:16\n \n \n\n\n \n \n \n \n \n \n \n \n \n submitted\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/app/pages/accounts/create-account/create-account.component.ts:17\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n createFormStub\n \n \n\n \n \n getcreateFormStub()\n \n \n \n \n Defined in src/app/pages/accounts/create-account/create-account.component.ts:60\n \n \n\n \n \n\n\n\n\n \n import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators } from '@angular/forms';\nimport { LocationService, UserService } from '@app/_services';\nimport { CustomErrorStateMatcher } from '@app/_helpers';\nimport { first } from 'rxjs/operators';\nimport { AreaName, Category } from '@app/_models';\n\n@Component({\n selector: 'app-create-account',\n templateUrl: './create-account.component.html',\n styleUrls: ['./create-account.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class CreateAccountComponent implements OnInit {\n createForm: FormGroup;\n matcher: CustomErrorStateMatcher = new CustomErrorStateMatcher();\n submitted: boolean = false;\n categories: Array;\n areaNames: Array;\n accountTypes: Array;\n genders: Array;\n\n constructor(\n private formBuilder: FormBuilder,\n private locationService: LocationService,\n private userService: UserService\n ) {}\n\n ngOnInit(): void {\n this.createForm = this.formBuilder.group({\n accountType: ['', Validators.required],\n idNumber: ['', Validators.required],\n phoneNumber: ['', Validators.required],\n givenName: ['', Validators.required],\n surname: ['', Validators.required],\n directoryEntry: ['', Validators.required],\n location: ['', Validators.required],\n gender: ['', Validators.required],\n referrer: ['', Validators.required],\n businessCategory: ['', Validators.required],\n });\n this.userService\n .getCategories()\n .pipe(first())\n .subscribe((res) => (this.categories = res));\n this.locationService\n .getAreaNames()\n .pipe(first())\n .subscribe((res) => (this.areaNames = res));\n this.userService\n .getAccountTypes()\n .pipe(first())\n .subscribe((res) => (this.accountTypes = res));\n this.userService\n .getGenders()\n .pipe(first())\n .subscribe((res) => (this.genders = res));\n }\n\n get createFormStub(): any {\n return this.createForm.controls;\n }\n\n onSubmit(): void {\n this.submitted = true;\n if (this.createForm.invalid || !confirm('Create account?')) {\n return;\n }\n this.submitted = false;\n }\n}\n\n \n\n \n \n\n \n\n \n \n \n\n \n \n \n \n \n \n Home\n Accounts\n Create Account\n \n \n \n \n CREATE A USER ACCOUNT\n \n \n \n \n \n Account Type: \n \n \n {{accountType | uppercase}}\n \n \n Account type is required.\n \n \n\n \n \n ID Number: \n \n ID Number is required.\n \n \n\n \n \n Phone Number: \n \n Phone Number is required.\n \n \n\n \n \n Given Name(s):* \n \n Given Names are required.\n \n \n\n \n \n Family/Surname: \n \n Surname is required.\n \n \n\n \n \n Directory Entry: \n \n Directory Entry is required.\n \n \n\n \n \n Location: \n \n \n {{area | uppercase}}\n \n \n Location is required.\n \n \n\n \n \n Gender: \n \n \n {{gender | uppercase}}\n \n \n Gender is required.\n \n \n\n \n \n Referrer Phone Number: \n \n Referrer is required.\n \n \n\n \n \n Business Category: \n \n \n {{category | titlecase}}\n \n \n Business Category is required.\n \n \n\n Submit\n \n \n \n \n \n \n \n \n \n\n\n \n\n \n \n ./create-account.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Home Accounts Create Account CREATE A USER ACCOUNT Account Type: {{accountType | uppercase}} Account type is required. ID Number: ID Number is required. Phone Number: Phone Number is required. Given Name(s):* Given Names are required. Family/Surname: Surname is required. Directory Entry: Directory Entry is required. Location: {{area | uppercase}} Location is required. Gender: {{gender | uppercase}} Gender is required. Referrer Phone Number: Referrer is required. Business Category: {{category | titlecase}} Business Category is required. Submit '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'CreateAccountComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/CustomErrorStateMatcher.html":{"url":"classes/CustomErrorStateMatcher.html","title":"class - CustomErrorStateMatcher","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n CustomErrorStateMatcher\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_helpers/custom-error-state-matcher.ts\n \n\n \n Description\n \n \n Custom provider that defines how form controls behave with regards to displaying error messages.\n\n \n\n\n \n Implements\n \n \n ErrorStateMatcher\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n isErrorState\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n isErrorState\n \n \n \n \n \n \n \nisErrorState(control: FormControl | null, form: FormGroupDirective | NgForm | null)\n \n \n\n\n \n \n Defined in src/app/_helpers/custom-error-state-matcher.ts:17\n \n \n\n\n \n \n Checks whether an invalid input has been made and an error should be made.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n control\n \n FormControl | null\n \n\n \n No\n \n\n\n \n \nTracks the value and validation status of an individual form control.\n\n\n \n \n \n form\n \n FormGroupDirective | NgForm | null\n \n\n \n No\n \n\n\n \n \nBinding of an existing FormGroup to a DOM element.\n\n\n \n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n true - If an invalid input has been made to the form control.\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n import { ErrorStateMatcher } from '@angular/material/core';\nimport { FormControl, FormGroupDirective, NgForm } from '@angular/forms';\n\n/**\n * Custom provider that defines how form controls behave with regards to displaying error messages.\n *\n */\nexport class CustomErrorStateMatcher implements ErrorStateMatcher {\n /**\n * Checks whether an invalid input has been made and an error should be made.\n *\n * @param control - Tracks the value and validation status of an individual form control.\n * @param form - Binding of an existing FormGroup to a DOM element.\n * @returns true - If an invalid input has been made to the form control.\n */\n isErrorState(control: FormControl | null, form: FormGroupDirective | NgForm | null): boolean {\n const isSubmitted: boolean = form && form.submitted;\n return !!(control && control.invalid && (control.dirty || control.touched || isSubmitted));\n }\n}\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/CustomValidator.html":{"url":"classes/CustomValidator.html","title":"class - CustomValidator","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n CustomValidator\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_helpers/custom.validator.ts\n \n\n \n Description\n \n \n Provides methods to perform custom validation to form inputs.\n\n \n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n Static\n passwordMatchValidator\n \n \n Static\n patternValidator\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Static\n passwordMatchValidator\n \n \n \n \n \n \n \n \n passwordMatchValidator(control: AbstractControl)\n \n \n\n\n \n \n Defined in src/app/_helpers/custom.validator.ts:13\n \n \n\n\n \n \n Sets errors to the confirm password input field if it does not match with the value in the password input field.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n control\n \n AbstractControl\n \n\n \n No\n \n\n\n \n \nThe control object of the form being validated.\n\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Static\n patternValidator\n \n \n \n \n \n \n \n \n patternValidator(regex: RegExp, error: ValidationErrors)\n \n \n\n\n \n \n Defined in src/app/_helpers/custom.validator.ts:28\n \n \n\n\n \n \n Sets errors to a form field if it does not match with the regular expression given.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n regex\n \n RegExp\n \n\n \n No\n \n\n\n \n \nThe regular expression to match with the form field.\n\n\n \n \n \n error\n \n ValidationErrors\n \n\n \n No\n \n\n\n \n \nDefines the map of errors to return from failed validation checks.\n\n\n \n \n \n \n \n \n \n \n Returns : ValidationErrors | null\n\n \n \n The map of errors returned from failed validation checks.\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n import { AbstractControl, ValidationErrors } from '@angular/forms';\n\n/**\n * Provides methods to perform custom validation to form inputs.\n */\nexport class CustomValidator {\n /**\n * Sets errors to the confirm password input field if it does not match with the value in the password input field.\n *\n * @param control - The control object of the form being validated.\n */\n static passwordMatchValidator(control: AbstractControl): void {\n const password: string = control.get('password').value;\n const confirmPassword: string = control.get('confirmPassword').value;\n if (password !== confirmPassword) {\n control.get('confirmPassword').setErrors({ NoPasswordMatch: true });\n }\n }\n\n /**\n * Sets errors to a form field if it does not match with the regular expression given.\n *\n * @param regex - The regular expression to match with the form field.\n * @param error - Defines the map of errors to return from failed validation checks.\n * @returns The map of errors returned from failed validation checks.\n */\n static patternValidator(regex: RegExp, error: ValidationErrors): ValidationErrors | null {\n return (control: AbstractControl): { [key: string]: any } => {\n if (!control.value) {\n return null;\n }\n\n const valid: boolean = regex.test(control.value);\n return valid ? null : error;\n };\n }\n}\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ErrorDialogComponent.html":{"url":"components/ErrorDialogComponent.html","title":"component - ErrorDialogComponent","body":"\n \n\n\n\n\n\n Components\n ErrorDialogComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/shared/error-dialog/error-dialog.component.ts\n\n\n\n\n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-error-dialog\n \n\n \n styleUrls\n ./error-dialog.component.scss\n \n\n\n\n \n templateUrl\n ./error-dialog.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n data\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(data: any)\n \n \n \n \n Defined in src/app/shared/error-dialog/error-dialog.component.ts:10\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n data\n \n \n any\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n data\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Decorators : \n \n \n @Inject(MAT_DIALOG_DATA)\n \n \n \n \n \n Defined in src/app/shared/error-dialog/error-dialog.component.ts:11\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, ChangeDetectionStrategy, Inject } from '@angular/core';\nimport { MAT_DIALOG_DATA } from '@angular/material/dialog';\n\n@Component({\n selector: 'app-error-dialog',\n templateUrl: './error-dialog.component.html',\n styleUrls: ['./error-dialog.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class ErrorDialogComponent {\n constructor(@Inject(MAT_DIALOG_DATA) public data: any) {}\n}\n\n \n\n \n \n \n \n Message: {{ data.message }}\n \n \n Status: {{ data?.status }}\n \n \n\n\n \n\n \n \n ./error-dialog.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Message: {{ data.message }} Status: {{ data?.status }} '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'ErrorDialogComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/ErrorDialogService.html":{"url":"injectables/ErrorDialogService.html","title":"injectable - ErrorDialogService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n ErrorDialogService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_services/error-dialog.service.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n dialog\n \n \n Public\n isDialogOpen\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n openDialog\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(dialog: MatDialog)\n \n \n \n \n Defined in src/app/_services/error-dialog.service.ts:9\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n dialog\n \n \n MatDialog\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n openDialog\n \n \n \n \n \n \n \nopenDialog(data)\n \n \n\n\n \n \n Defined in src/app/_services/error-dialog.service.ts:13\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n data\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n dialog\n \n \n \n \n \n \n Type : MatDialog\n\n \n \n \n \n Defined in src/app/_services/error-dialog.service.ts:11\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n isDialogOpen\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/app/_services/error-dialog.service.ts:9\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { MatDialog, MatDialogRef } from '@angular/material/dialog';\nimport { ErrorDialogComponent } from '@app/shared/error-dialog/error-dialog.component';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class ErrorDialogService {\n public isDialogOpen: boolean = false;\n\n constructor(public dialog: MatDialog) {}\n\n openDialog(data): any {\n if (this.isDialogOpen) {\n return false;\n }\n this.isDialogOpen = true;\n const dialogRef: MatDialogRef = this.dialog.open(ErrorDialogComponent, {\n width: '300px',\n data,\n });\n\n dialogRef.afterClosed().subscribe(() => (this.isDialogOpen = false));\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interceptors/ErrorInterceptor.html":{"url":"interceptors/ErrorInterceptor.html","title":"interceptor - ErrorInterceptor","body":"\n \n\n\n\n\n\n\n\n\n\n Interceptors\n ErrorInterceptor\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_interceptors/error.interceptor.ts\n \n\n \n Description\n \n \n Intercepts and handles errors from outgoing HTTP request. \n\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n intercept\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(errorDialogService: ErrorDialogService, loggingService: LoggingService, router: Router)\n \n \n \n \n Defined in src/app/_interceptors/error.interceptor.ts:21\n \n \n\n \n \n Initialization of the error interceptor.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n errorDialogService\n \n \n ErrorDialogService\n \n \n \n No\n \n \n \n \nA service that provides a dialog box for displaying errors to the user.\n\n\n \n \n \n loggingService\n \n \n LoggingService\n \n \n \n No\n \n \n \n \nA service that provides logging capabilities.\n\n\n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \nA service that provides navigation among views and URL manipulation capabilities.\n\n\n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n intercept\n \n \n \n \n \n \n \nintercept(request: HttpRequest, next: HttpHandler)\n \n \n\n\n \n \n Defined in src/app/_interceptors/error.interceptor.ts:42\n \n \n\n\n \n \n Intercepts HTTP requests.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n request\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \nAn outgoing HTTP request with an optional typed body.\n\n\n \n \n \n next\n \n HttpHandler\n \n\n \n No\n \n\n\n \n \nThe next HTTP handler or the outgoing request dispatcher.\n\n\n \n \n \n \n \n \n \n \n Returns : Observable>\n\n \n \n The error caught from the request.\n\n \n \n \n \n \n\n\n \n\n\n \n import {\n HttpErrorResponse,\n HttpEvent,\n HttpHandler,\n HttpInterceptor,\n HttpRequest,\n} from '@angular/common/http';\nimport { Injectable } from '@angular/core';\nimport { Router } from '@angular/router';\n\n// Third party imports\nimport { Observable, throwError } from 'rxjs';\nimport { catchError } from 'rxjs/operators';\n\n// Application imports\nimport { ErrorDialogService, LoggingService } from '@app/_services';\n\n/** Intercepts and handles errors from outgoing HTTP request. */\n@Injectable()\nexport class ErrorInterceptor implements HttpInterceptor {\n /**\n * Initialization of the error interceptor.\n *\n * @param errorDialogService - A service that provides a dialog box for displaying errors to the user.\n * @param loggingService - A service that provides logging capabilities.\n * @param router - A service that provides navigation among views and URL manipulation capabilities.\n */\n constructor(\n private errorDialogService: ErrorDialogService,\n private loggingService: LoggingService,\n private router: Router\n ) {}\n\n /**\n * Intercepts HTTP requests.\n *\n * @param request - An outgoing HTTP request with an optional typed body.\n * @param next - The next HTTP handler or the outgoing request dispatcher.\n * @returns The error caught from the request.\n */\n intercept(request: HttpRequest, next: HttpHandler): Observable> {\n return next.handle(request).pipe(\n catchError((err: HttpErrorResponse) => {\n let errorMessage: string;\n if (err.error instanceof ErrorEvent) {\n // A client-side or network error occurred. Handle it accordingly.\n errorMessage = `An error occurred: ${err.error.message}`;\n } else {\n // The backend returned an unsuccessful response code.\n // The response body may contain clues as to what went wrong.\n errorMessage = `Backend returned code ${err.status}, body was: ${JSON.stringify(\n err.error\n )}`;\n }\n this.loggingService.sendErrorLevelMessage(errorMessage, this, { error: err });\n switch (err.status) {\n case 401: // unauthorized\n this.router.navigateByUrl('/auth').then();\n break;\n case 403: // forbidden\n alert('Access to resource is not allowed!');\n break;\n }\n // Return an observable with a user-facing error message.\n return throwError(err);\n })\n );\n }\n}\n\n \n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/FooterComponent.html":{"url":"components/FooterComponent.html","title":"component - FooterComponent","body":"\n \n\n\n\n\n\n Components\n FooterComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/shared/footer/footer.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-footer\n \n\n \n styleUrls\n ./footer.component.scss\n \n\n\n\n \n templateUrl\n ./footer.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in src/app/shared/footer/footer.component.ts:9\n \n \n\n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/shared/footer/footer.component.ts:12\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n\n\n\n\n \n import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'app-footer',\n templateUrl: './footer.component.html',\n styleUrls: ['./footer.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class FooterComponent implements OnInit {\n constructor() {}\n\n ngOnInit(): void {}\n}\n\n \n\n \n \n\n 2020 © Grassroots Economics\n\n\n\n \n\n \n \n ./footer.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' 2020 © Grassroots Economics'\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'FooterComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/FooterStubComponent.html":{"url":"components/FooterStubComponent.html","title":"component - FooterStubComponent","body":"\n \n\n\n\n\n\n Components\n FooterStubComponent\n\n\n\n \n Info\n \n \n Source\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/testing/shared-module-stub.ts\n\n\n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n app-footer\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n import {Component} from '@angular/core';\n\n@Component({selector: 'app-sidebar', template: ''})\nexport class SidebarStubComponent {}\n\n@Component({selector: 'app-topbar', template: ''})\nexport class TopbarStubComponent {}\n\n@Component({selector: 'app-footer', template: ''})\nexport class FooterStubComponent {}\n\n \n\n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'FooterStubComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/GlobalErrorHandler.html":{"url":"injectables/GlobalErrorHandler.html","title":"injectable - GlobalErrorHandler","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n GlobalErrorHandler\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_helpers/global-error-handler.ts\n \n\n \n Description\n \n \n Provides a hook for centralized exception handling.\n\n \n\n \n Extends\n \n \n ErrorHandler\n \n\n \n Example\n \n \n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n sentencesForWarningLogging\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n handleError\n \n \n Private\n isWarning\n \n \n logError\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(loggingService: LoggingService, router: Router)\n \n \n \n \n Defined in src/app/_helpers/global-error-handler.ts:41\n \n \n\n \n \n Initialization of the Global Error Handler.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n loggingService\n \n \n LoggingService\n \n \n \n No\n \n \n \n \nA service that provides logging capabilities.\n\n\n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \nA service that provides navigation among views and URL manipulation capabilities.\n\n\n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n handleError\n \n \n \n \n \n \n \nhandleError(error: Error)\n \n \n\n\n \n \n Defined in src/app/_helpers/global-error-handler.ts:58\n \n \n\n\n \n \n Handles different types of errors.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n error\n \n Error\n \n\n \n No\n \n\n\n \n \nAn error objects thrown when a runtime errors occurs.\n\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Private\n isWarning\n \n \n \n \n \n \n \n \n isWarning(errorTraceString: string)\n \n \n\n\n \n \n Defined in src/app/_helpers/global-error-handler.ts:84\n \n \n\n\n \n \n Checks if an error is of type warning.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n errorTraceString\n \n string\n \n\n \n No\n \n\n\n \n \nA description of the error and it's stack trace.\n\n\n \n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n true - If the error is of type warning.\n\n \n \n \n \n \n \n \n \n \n \n \n \n logError\n \n \n \n \n \n \n \nlogError(error: any)\n \n \n\n\n \n \n Defined in src/app/_helpers/global-error-handler.ts:104\n \n \n\n\n \n \n Write appropriate logs according to the type of error.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n error\n \n any\n \n\n \n No\n \n\n\n \n \nAn error objects thrown when a runtime errors occurs.\n\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Private\n sentencesForWarningLogging\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in src/app/_helpers/global-error-handler.ts:41\n \n \n\n \n \n An array of sentence sections that denote warnings.\n\n \n \n\n \n \n\n\n \n\n\n \n import { HttpErrorResponse } from '@angular/common/http';\nimport { ErrorHandler, Injectable } from '@angular/core';\nimport { Router } from '@angular/router';\n\n// Application imports\nimport { LoggingService } from '@app/_services/logging.service';\n\n/**\n * A generalized http response error.\n *\n * @extends Error\n */\nexport class HttpError extends Error {\n /** The error's status code. */\n public status: number;\n\n /**\n * Initialize the HttpError class.\n *\n * @param message - The message given by the error.\n * @param status - The status code given by the error.\n */\n constructor(message: string, status: number) {\n super(message);\n this.status = status;\n this.name = 'HttpError';\n }\n}\n\n/**\n * Provides a hook for centralized exception handling.\n *\n * @extends ErrorHandler\n */\n@Injectable()\nexport class GlobalErrorHandler extends ErrorHandler {\n /**\n * An array of sentence sections that denote warnings.\n */\n private sentencesForWarningLogging: Array = [];\n\n /**\n * Initialization of the Global Error Handler.\n *\n * @param loggingService - A service that provides logging capabilities.\n * @param router - A service that provides navigation among views and URL manipulation capabilities.\n */\n constructor(private loggingService: LoggingService, private router: Router) {\n super();\n }\n\n /**\n * Handles different types of errors.\n *\n * @param error - An error objects thrown when a runtime errors occurs.\n */\n handleError(error: Error): void {\n this.logError(error);\n const message: string = error.message ? error.message : error.toString();\n\n // if (error.status) {\n // error = new Error(message);\n // }\n\n const errorTraceString: string = `Error message:\\n${message}.\\nStack trace: ${error.stack}`;\n\n const isWarning: boolean = this.isWarning(errorTraceString);\n if (isWarning) {\n this.loggingService.sendWarnLevelMessage(errorTraceString, { error });\n } else {\n this.loggingService.sendErrorLevelMessage(errorTraceString, this, { error });\n }\n\n throw error;\n }\n\n /**\n * Checks if an error is of type warning.\n *\n * @param errorTraceString - A description of the error and it's stack trace.\n * @returns true - If the error is of type warning.\n */\n private isWarning(errorTraceString: string): boolean {\n let isWarning: boolean = true;\n if (errorTraceString.includes('/src/app/')) {\n isWarning = false;\n }\n\n this.sentencesForWarningLogging.forEach((whiteListSentence: string) => {\n if (errorTraceString.includes(whiteListSentence)) {\n isWarning = true;\n }\n });\n\n return isWarning;\n }\n\n /**\n * Write appropriate logs according to the type of error.\n *\n * @param error - An error objects thrown when a runtime errors occurs.\n */\n logError(error: any): void {\n const route: string = this.router.url;\n if (error instanceof HttpErrorResponse) {\n this.loggingService.sendErrorLevelMessage(\n `There was an HTTP error on route ${route}.\\n${error.message}.\\nStatus code: ${\n (error as HttpErrorResponse).status\n }`,\n this,\n { error }\n );\n } else if (error instanceof TypeError) {\n this.loggingService.sendErrorLevelMessage(\n `There was a Type error on route ${route}.\\n${error.message}`,\n this,\n { error }\n );\n } else if (error instanceof Error) {\n this.loggingService.sendErrorLevelMessage(\n `There was a general error on route ${route}.\\n${error.message}`,\n this,\n { error }\n );\n } else {\n this.loggingService.sendErrorLevelMessage(\n `Nobody threw an error but something happened on route ${route}!`,\n this,\n { error }\n );\n }\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interceptors/HttpConfigInterceptor.html":{"url":"interceptors/HttpConfigInterceptor.html","title":"interceptor - HttpConfigInterceptor","body":"\n \n\n\n\n\n\n\n\n\n\n Interceptors\n HttpConfigInterceptor\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_interceptors/http-config.interceptor.ts\n \n\n \n Description\n \n \n Intercepts and handles setting of configurations to outgoing HTTP request. \n\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n intercept\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in src/app/_interceptors/http-config.interceptor.ts:10\n \n \n\n \n \n Initialization of http config interceptor. \n\n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n intercept\n \n \n \n \n \n \n \nintercept(request: HttpRequest, next: HttpHandler)\n \n \n\n\n \n \n Defined in src/app/_interceptors/http-config.interceptor.ts:21\n \n \n\n\n \n \n Intercepts HTTP requests.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n request\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \nAn outgoing HTTP request with an optional typed body.\n\n\n \n \n \n next\n \n HttpHandler\n \n\n \n No\n \n\n\n \n \nThe next HTTP handler or the outgoing request dispatcher.\n\n\n \n \n \n \n \n \n \n \n Returns : Observable>\n\n \n \n The forwarded request.\n\n \n \n \n \n \n\n\n \n\n\n \n import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http';\nimport { Injectable } from '@angular/core';\n\n// Third party imports\nimport { Observable } from 'rxjs';\n\n/** Intercepts and handles setting of configurations to outgoing HTTP request. */\n@Injectable()\nexport class HttpConfigInterceptor implements HttpInterceptor {\n /** Initialization of http config interceptor. */\n constructor() {}\n\n /**\n * Intercepts HTTP requests.\n *\n * @param request - An outgoing HTTP request with an optional typed body.\n * @param next - The next HTTP handler or the outgoing request dispatcher.\n * @returns The forwarded request.\n */\n intercept(request: HttpRequest, next: HttpHandler): Observable> {\n // const token: string = sessionStorage.getItem(btoa('CICADA_SESSION_TOKEN'));\n\n // if (token) {\n // request = request.clone({headers: request.headers.set('Authorization', 'Bearer ' + token)});\n // }\n\n return next.handle(request);\n }\n}\n\n \n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/HttpError.html":{"url":"classes/HttpError.html","title":"class - HttpError","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n HttpError\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_helpers/global-error-handler.ts\n \n\n \n Description\n \n \n A generalized http response error.\n\n \n\n \n Extends\n \n \n Error\n \n\n\n \n Example\n \n \n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n status\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(message: string, status: number)\n \n \n \n \n Defined in src/app/_helpers/global-error-handler.ts:16\n \n \n\n \n \n Initialize the HttpError class.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n message\n \n \n string\n \n \n \n No\n \n \n \n \nThe message given by the error.\n\n\n \n \n \n status\n \n \n number\n \n \n \n No\n \n \n \n \nThe status code given by the error.\n\n\n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n status\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Defined in src/app/_helpers/global-error-handler.ts:16\n \n \n\n \n \n The error's status code. \n\n \n \n\n \n \n\n\n\n\n\n\n\n\n \n\n\n \n import { HttpErrorResponse } from '@angular/common/http';\nimport { ErrorHandler, Injectable } from '@angular/core';\nimport { Router } from '@angular/router';\n\n// Application imports\nimport { LoggingService } from '@app/_services/logging.service';\n\n/**\n * A generalized http response error.\n *\n * @extends Error\n */\nexport class HttpError extends Error {\n /** The error's status code. */\n public status: number;\n\n /**\n * Initialize the HttpError class.\n *\n * @param message - The message given by the error.\n * @param status - The status code given by the error.\n */\n constructor(message: string, status: number) {\n super(message);\n this.status = status;\n this.name = 'HttpError';\n }\n}\n\n/**\n * Provides a hook for centralized exception handling.\n *\n * @extends ErrorHandler\n */\n@Injectable()\nexport class GlobalErrorHandler extends ErrorHandler {\n /**\n * An array of sentence sections that denote warnings.\n */\n private sentencesForWarningLogging: Array = [];\n\n /**\n * Initialization of the Global Error Handler.\n *\n * @param loggingService - A service that provides logging capabilities.\n * @param router - A service that provides navigation among views and URL manipulation capabilities.\n */\n constructor(private loggingService: LoggingService, private router: Router) {\n super();\n }\n\n /**\n * Handles different types of errors.\n *\n * @param error - An error objects thrown when a runtime errors occurs.\n */\n handleError(error: Error): void {\n this.logError(error);\n const message: string = error.message ? error.message : error.toString();\n\n // if (error.status) {\n // error = new Error(message);\n // }\n\n const errorTraceString: string = `Error message:\\n${message}.\\nStack trace: ${error.stack}`;\n\n const isWarning: boolean = this.isWarning(errorTraceString);\n if (isWarning) {\n this.loggingService.sendWarnLevelMessage(errorTraceString, { error });\n } else {\n this.loggingService.sendErrorLevelMessage(errorTraceString, this, { error });\n }\n\n throw error;\n }\n\n /**\n * Checks if an error is of type warning.\n *\n * @param errorTraceString - A description of the error and it's stack trace.\n * @returns true - If the error is of type warning.\n */\n private isWarning(errorTraceString: string): boolean {\n let isWarning: boolean = true;\n if (errorTraceString.includes('/src/app/')) {\n isWarning = false;\n }\n\n this.sentencesForWarningLogging.forEach((whiteListSentence: string) => {\n if (errorTraceString.includes(whiteListSentence)) {\n isWarning = true;\n }\n });\n\n return isWarning;\n }\n\n /**\n * Write appropriate logs according to the type of error.\n *\n * @param error - An error objects thrown when a runtime errors occurs.\n */\n logError(error: any): void {\n const route: string = this.router.url;\n if (error instanceof HttpErrorResponse) {\n this.loggingService.sendErrorLevelMessage(\n `There was an HTTP error on route ${route}.\\n${error.message}.\\nStatus code: ${\n (error as HttpErrorResponse).status\n }`,\n this,\n { error }\n );\n } else if (error instanceof TypeError) {\n this.loggingService.sendErrorLevelMessage(\n `There was a Type error on route ${route}.\\n${error.message}`,\n this,\n { error }\n );\n } else if (error instanceof Error) {\n this.loggingService.sendErrorLevelMessage(\n `There was a general error on route ${route}.\\n${error.message}`,\n this,\n { error }\n );\n } else {\n this.loggingService.sendErrorLevelMessage(\n `Nobody threw an error but something happened on route ${route}!`,\n this,\n { error }\n );\n }\n }\n}\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/LocationService.html":{"url":"injectables/LocationService.html","title":"injectable - LocationService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n LocationService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_services/location.service.ts\n \n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getAreaNameByLocation\n \n \n getAreaNames\n \n \n getAreaTypeByArea\n \n \n getAreaTypes\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(httpClient: HttpClient)\n \n \n \n \n Defined in src/app/_services/location.service.ts:10\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n httpClient\n \n \n HttpClient\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n getAreaNameByLocation\n \n \n \n \n \n \n \ngetAreaNameByLocation(location: string)\n \n \n\n\n \n \n Defined in src/app/_services/location.service.ts:17\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n location\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getAreaNames\n \n \n \n \n \n \n \ngetAreaNames()\n \n \n\n\n \n \n Defined in src/app/_services/location.service.ts:13\n \n \n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n getAreaTypeByArea\n \n \n \n \n \n \n \ngetAreaTypeByArea(area: string)\n \n \n\n\n \n \n Defined in src/app/_services/location.service.ts:25\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n area\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getAreaTypes\n \n \n \n \n \n \n \ngetAreaTypes()\n \n \n\n\n \n \n Defined in src/app/_services/location.service.ts:21\n \n \n\n\n \n \n\n \n Returns : Observable\n\n \n \n \n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { Observable } from 'rxjs';\nimport { environment } from '@src/environments/environment';\nimport { first } from 'rxjs/operators';\nimport { HttpClient } from '@angular/common/http';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class LocationService {\n constructor(private httpClient: HttpClient) {}\n\n getAreaNames(): Observable {\n return this.httpClient.get(`${environment.cicMetaUrl}/areanames`);\n }\n\n getAreaNameByLocation(location: string): Observable {\n return this.httpClient.get(`${environment.cicMetaUrl}/areanames/${location.toLowerCase()}`);\n }\n\n getAreaTypes(): Observable {\n return this.httpClient.get(`${environment.cicMetaUrl}/areatypes`).pipe(first());\n }\n\n getAreaTypeByArea(area: string): Observable {\n return this.httpClient\n .get(`${environment.cicMetaUrl}/areatypes/${area.toLowerCase()}`)\n .pipe(first());\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interceptors/LoggingInterceptor.html":{"url":"interceptors/LoggingInterceptor.html","title":"interceptor - LoggingInterceptor","body":"\n \n\n\n\n\n\n\n\n\n\n Interceptors\n LoggingInterceptor\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_interceptors/logging.interceptor.ts\n \n\n \n Description\n \n \n Intercepts and handles of events from outgoing HTTP request. \n\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n intercept\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(loggingService: LoggingService)\n \n \n \n \n Defined in src/app/_interceptors/logging.interceptor.ts:20\n \n \n\n \n \n Initialization of the logging interceptor.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n loggingService\n \n \n LoggingService\n \n \n \n No\n \n \n \n \nA service that provides logging capabilities.\n\n\n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n intercept\n \n \n \n \n \n \n \nintercept(request: HttpRequest, next: HttpHandler)\n \n \n\n\n \n \n Defined in src/app/_interceptors/logging.interceptor.ts:35\n \n \n\n\n \n \n Intercepts HTTP requests.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n request\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \nAn outgoing HTTP request with an optional typed body.\n\n\n \n \n \n next\n \n HttpHandler\n \n\n \n No\n \n\n\n \n \nThe next HTTP handler or the outgoing request dispatcher.\n\n\n \n \n \n \n \n \n \n \n Returns : Observable>\n\n \n \n The forwarded request.\n\n \n \n \n \n \n\n\n \n\n\n \n import {\n HttpEvent,\n HttpHandler,\n HttpInterceptor,\n HttpRequest,\n HttpResponse,\n} from '@angular/common/http';\nimport { Injectable } from '@angular/core';\n\n// Third party imports\nimport { Observable } from 'rxjs';\nimport { finalize, tap } from 'rxjs/operators';\n\n// Application imports\nimport { LoggingService } from '@app/_services/logging.service';\n\n/** Intercepts and handles of events from outgoing HTTP request. */\n@Injectable()\nexport class LoggingInterceptor implements HttpInterceptor {\n /**\n * Initialization of the logging interceptor.\n *\n * @param loggingService - A service that provides logging capabilities.\n */\n constructor(private loggingService: LoggingService) {}\n\n /**\n * Intercepts HTTP requests.\n *\n * @param request - An outgoing HTTP request with an optional typed body.\n * @param next - The next HTTP handler or the outgoing request dispatcher.\n * @returns The forwarded request.\n */\n intercept(request: HttpRequest, next: HttpHandler): Observable> {\n return next.handle(request);\n // this.loggingService.sendInfoLevelMessage(request);\n // const startTime: number = Date.now();\n // let status: string;\n //\n // return next.handle(request).pipe(tap(event => {\n // status = '';\n // if (event instanceof HttpResponse) {\n // status = 'succeeded';\n // }\n // }, error => status = 'failed'),\n // finalize(() => {\n // const elapsedTime: number = Date.now() - startTime;\n // const message: string = `${request.method} request for ${request.urlWithParams} ${status} in ${elapsedTime} ms`;\n // this.loggingService.sendInfoLevelMessage(message);\n // }));\n }\n}\n\n \n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/LoggingService.html":{"url":"injectables/LoggingService.html","title":"injectable - LoggingService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n LoggingService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_services/logging.service.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n canDebug\n \n \n env\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n sendDebugLevelMessage\n \n \n sendErrorLevelMessage\n \n \n sendFatalLevelMessage\n \n \n sendInfoLevelMessage\n \n \n sendLogLevelMessage\n \n \n sendTraceLevelMessage\n \n \n sendWarnLevelMessage\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(logger: NGXLogger)\n \n \n \n \n Defined in src/app/_services/logging.service.ts:9\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n logger\n \n \n NGXLogger\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n sendDebugLevelMessage\n \n \n \n \n \n \n \nsendDebugLevelMessage(message: any, source: any, error: any)\n \n \n\n\n \n \n Defined in src/app/_services/logging.service.ts:22\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n message\n \n any\n \n\n \n No\n \n\n\n \n \n source\n \n any\n \n\n \n No\n \n\n\n \n \n error\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n sendErrorLevelMessage\n \n \n \n \n \n \n \nsendErrorLevelMessage(message: any, source: any, error: any)\n \n \n\n\n \n \n Defined in src/app/_services/logging.service.ts:38\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n message\n \n any\n \n\n \n No\n \n\n\n \n \n source\n \n any\n \n\n \n No\n \n\n\n \n \n error\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n sendFatalLevelMessage\n \n \n \n \n \n \n \nsendFatalLevelMessage(message: any, source: any, error: any)\n \n \n\n\n \n \n Defined in src/app/_services/logging.service.ts:42\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n message\n \n any\n \n\n \n No\n \n\n\n \n \n source\n \n any\n \n\n \n No\n \n\n\n \n \n error\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n sendInfoLevelMessage\n \n \n \n \n \n \n \nsendInfoLevelMessage(message: any)\n \n \n\n\n \n \n Defined in src/app/_services/logging.service.ts:26\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n message\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n sendLogLevelMessage\n \n \n \n \n \n \n \nsendLogLevelMessage(message: any, source: any, error: any)\n \n \n\n\n \n \n Defined in src/app/_services/logging.service.ts:30\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n message\n \n any\n \n\n \n No\n \n\n\n \n \n source\n \n any\n \n\n \n No\n \n\n\n \n \n error\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n sendTraceLevelMessage\n \n \n \n \n \n \n \nsendTraceLevelMessage(message: any, source: any, error: any)\n \n \n\n\n \n \n Defined in src/app/_services/logging.service.ts:18\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n message\n \n any\n \n\n \n No\n \n\n\n \n \n source\n \n any\n \n\n \n No\n \n\n\n \n \n error\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n sendWarnLevelMessage\n \n \n \n \n \n \n \nsendWarnLevelMessage(message: any, error: any)\n \n \n\n\n \n \n Defined in src/app/_services/logging.service.ts:34\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n message\n \n any\n \n\n \n No\n \n\n\n \n \n error\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n canDebug\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in src/app/_services/logging.service.ts:9\n \n \n\n\n \n \n \n \n \n \n \n \n \n env\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/_services/logging.service.ts:8\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable, isDevMode } from '@angular/core';\nimport { NGXLogger } from 'ngx-logger';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class LoggingService {\n env: string;\n canDebug: boolean;\n\n constructor(private logger: NGXLogger) {\n // TRACE|DEBUG|INFO|LOG|WARN|ERROR|FATAL|OFF\n if (isDevMode()) {\n this.sendInfoLevelMessage('Dropping into debug mode');\n }\n }\n\n sendTraceLevelMessage(message: any, source: any, error: any): void {\n this.logger.trace(message, source, error);\n }\n\n sendDebugLevelMessage(message: any, source: any, error: any): void {\n this.logger.debug(message, source, error);\n }\n\n sendInfoLevelMessage(message: any): void {\n this.logger.info(message);\n }\n\n sendLogLevelMessage(message: any, source: any, error: any): void {\n this.logger.log(message, source, error);\n }\n\n sendWarnLevelMessage(message: any, error: any): void {\n this.logger.warn(message, error);\n }\n\n sendErrorLevelMessage(message: any, source: any, error: any): void {\n this.logger.error(message, source, error);\n }\n\n sendFatalLevelMessage(message: any, source: any, error: any): void {\n this.logger.fatal(message, source, error);\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"directives/MenuSelectionDirective.html":{"url":"directives/MenuSelectionDirective.html","title":"directive - MenuSelectionDirective","body":"\n \n\n\n\n\n\n\n\n Directives\n MenuSelectionDirective\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/shared/_directives/menu-selection.directive.ts\n \n\n\n\n\n \n Metadata\n \n \n\n \n Selector\n [appMenuSelection]\n \n\n \n \n \n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n onMenuSelect\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(elementRef: ElementRef, renderer: Renderer2)\n \n \n \n \n Defined in src/app/shared/_directives/menu-selection.directive.ts:6\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n elementRef\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n renderer\n \n \n Renderer2\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n onMenuSelect\n \n \n \n \n \n \n \nonMenuSelect()\n \n \n\n\n \n \n Defined in src/app/shared/_directives/menu-selection.directive.ts:16\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n\n\n \n\n\n \n import { Directive, ElementRef, Renderer2 } from '@angular/core';\n\n@Directive({\n selector: '[appMenuSelection]',\n})\nexport class MenuSelectionDirective {\n constructor(private elementRef: ElementRef, private renderer: Renderer2) {\n this.renderer.listen(this.elementRef.nativeElement, 'click', () => {\n const mediaQuery = window.matchMedia('(max-width: 768px)');\n if (mediaQuery.matches) {\n this.onMenuSelect();\n }\n });\n }\n\n onMenuSelect(): void {\n const sidebar: HTMLElement = document.getElementById('sidebar');\n if (!sidebar?.classList.contains('active')) {\n sidebar?.classList.add('active');\n }\n const content: HTMLElement = document.getElementById('content');\n if (!content?.classList.contains('active')) {\n content?.classList.add('active');\n }\n const sidebarCollapse: HTMLElement = document.getElementById('sidebarCollapse');\n if (sidebarCollapse?.classList.contains('active')) {\n sidebarCollapse?.classList.remove('active');\n }\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"directives/MenuToggleDirective.html":{"url":"directives/MenuToggleDirective.html","title":"directive - MenuToggleDirective","body":"\n \n\n\n\n\n\n\n\n Directives\n MenuToggleDirective\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/shared/_directives/menu-toggle.directive.ts\n \n\n\n\n\n \n Metadata\n \n \n\n \n Selector\n [appMenuToggle]\n \n\n \n \n \n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n onMenuToggle\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(elementRef: ElementRef, renderer: Renderer2)\n \n \n \n \n Defined in src/app/shared/_directives/menu-toggle.directive.ts:6\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n elementRef\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n renderer\n \n \n Renderer2\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n onMenuToggle\n \n \n \n \n \n \n \nonMenuToggle()\n \n \n\n\n \n \n Defined in src/app/shared/_directives/menu-toggle.directive.ts:14\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n\n\n \n\n\n \n import { Directive, ElementRef, Renderer2 } from '@angular/core';\n\n@Directive({\n selector: '[appMenuToggle]',\n})\nexport class MenuToggleDirective {\n constructor(private elementRef: ElementRef, private renderer: Renderer2) {\n this.renderer.listen(this.elementRef.nativeElement, 'click', () => {\n this.onMenuToggle();\n });\n }\n\n // Menu Trigger\n onMenuToggle(): void {\n const sidebar: HTMLElement = document.getElementById('sidebar');\n sidebar?.classList.toggle('active');\n const content: HTMLElement = document.getElementById('content');\n content?.classList.toggle('active');\n const sidebarCollapse: HTMLElement = document.getElementById('sidebarCollapse');\n sidebarCollapse?.classList.toggle('active');\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Meta.html":{"url":"interfaces/Meta.html","title":"interface - Meta","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Meta\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/account.ts\n \n\n \n Description\n \n \n Meta object interface \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n data\n \n \n id\n \n \n signature\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n data\n \n \n \n \n data: AccountDetails\n\n \n \n\n\n \n \n Type : AccountDetails\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n id\n \n \n \n \n id: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n signature\n \n \n \n \n signature: Signature\n\n \n \n\n\n \n \n Type : Signature\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n interface AccountDetails {\n date_registered: number;\n gender: string;\n age?: string;\n type?: string;\n balance?: number;\n identities: {\n evm: {\n 'bloxberg:8996': string[];\n 'oldchain:1': string[];\n };\n latitude: number;\n longitude: number;\n };\n location: {\n area?: string;\n area_name: string;\n area_type?: string;\n };\n products: string[];\n category?: string;\n vcard: {\n email: [\n {\n value: string;\n }\n ];\n fn: [\n {\n value: string;\n }\n ];\n n: [\n {\n value: string[];\n }\n ];\n tel: [\n {\n meta: {\n TYP: string[];\n };\n value: string;\n }\n ];\n version: [\n {\n value: string;\n }\n ];\n };\n}\n\n/** Meta signature interface */\ninterface Signature {\n algo: string;\n data: string;\n digest: string;\n engine: string;\n}\n\n/** Meta object interface */\ninterface Meta {\n data: AccountDetails;\n id: string;\n signature: Signature;\n}\n\n/** Meta response interface */\ninterface MetaResponse {\n id: string;\n m: Meta;\n}\n\n/** Default account data object */\nconst defaultAccount: AccountDetails = {\n date_registered: Date.now(),\n gender: 'other',\n identities: {\n evm: {\n 'bloxberg:8996': [''],\n 'oldchain:1': [''],\n },\n latitude: 0,\n longitude: 0,\n },\n location: {\n area_name: 'Kilifi',\n },\n products: [],\n vcard: {\n email: [\n {\n value: '',\n },\n ],\n fn: [\n {\n value: 'Sarafu Contract',\n },\n ],\n n: [\n {\n value: ['Sarafu', 'Contract'],\n },\n ],\n tel: [\n {\n meta: {\n TYP: [],\n },\n value: '',\n },\n ],\n version: [\n {\n value: '3.0',\n },\n ],\n },\n};\n\n/** @exports */\nexport { AccountDetails, Meta, MetaResponse, Signature, defaultAccount };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/MetaResponse.html":{"url":"interfaces/MetaResponse.html","title":"interface - MetaResponse","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n MetaResponse\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/account.ts\n \n\n \n Description\n \n \n Meta response interface \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n id\n \n \n m\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n id\n \n \n \n \n id: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n m\n \n \n \n \n m: Meta\n\n \n \n\n\n \n \n Type : Meta\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n interface AccountDetails {\n date_registered: number;\n gender: string;\n age?: string;\n type?: string;\n balance?: number;\n identities: {\n evm: {\n 'bloxberg:8996': string[];\n 'oldchain:1': string[];\n };\n latitude: number;\n longitude: number;\n };\n location: {\n area?: string;\n area_name: string;\n area_type?: string;\n };\n products: string[];\n category?: string;\n vcard: {\n email: [\n {\n value: string;\n }\n ];\n fn: [\n {\n value: string;\n }\n ];\n n: [\n {\n value: string[];\n }\n ];\n tel: [\n {\n meta: {\n TYP: string[];\n };\n value: string;\n }\n ];\n version: [\n {\n value: string;\n }\n ];\n };\n}\n\n/** Meta signature interface */\ninterface Signature {\n algo: string;\n data: string;\n digest: string;\n engine: string;\n}\n\n/** Meta object interface */\ninterface Meta {\n data: AccountDetails;\n id: string;\n signature: Signature;\n}\n\n/** Meta response interface */\ninterface MetaResponse {\n id: string;\n m: Meta;\n}\n\n/** Default account data object */\nconst defaultAccount: AccountDetails = {\n date_registered: Date.now(),\n gender: 'other',\n identities: {\n evm: {\n 'bloxberg:8996': [''],\n 'oldchain:1': [''],\n },\n latitude: 0,\n longitude: 0,\n },\n location: {\n area_name: 'Kilifi',\n },\n products: [],\n vcard: {\n email: [\n {\n value: '',\n },\n ],\n fn: [\n {\n value: 'Sarafu Contract',\n },\n ],\n n: [\n {\n value: ['Sarafu', 'Contract'],\n },\n ],\n tel: [\n {\n meta: {\n TYP: [],\n },\n value: '',\n },\n ],\n version: [\n {\n value: '3.0',\n },\n ],\n },\n};\n\n/** @exports */\nexport { AccountDetails, Meta, MetaResponse, Signature, defaultAccount };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interceptors/MockBackendInterceptor.html":{"url":"interceptors/MockBackendInterceptor.html","title":"interceptor - MockBackendInterceptor","body":"\n \n\n\n\n\n\n\n\n\n\n Interceptors\n MockBackendInterceptor\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_helpers/mock-backend.ts\n \n\n \n Description\n \n \n Intercepts HTTP requests and handles some specified requests internally.\nProvides a backend that can handle requests for certain data items.\n\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n intercept\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n intercept\n \n \n \n \n \n \n \nintercept(request: HttpRequest, next: HttpHandler)\n \n \n\n\n \n \n Defined in src/app/_helpers/mock-backend.ts:1097\n \n \n\n\n \n \n Intercepts HTTP requests.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n request\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \nAn outgoing HTTP request with an optional typed body.\n\n\n \n \n \n next\n \n HttpHandler\n \n\n \n No\n \n\n\n \n \nThe next HTTP handler or the outgoing request dispatcher.\n\n\n \n \n \n \n \n \n \n \n Returns : Observable>\n\n \n \n The response from the resolved request.\n\n \n \n \n \n \n\n\n \n\n\n \n import {\n HTTP_INTERCEPTORS,\n HttpEvent,\n HttpHandler,\n HttpInterceptor,\n HttpRequest,\n HttpResponse,\n} from '@angular/common/http';\nimport { Injectable } from '@angular/core';\n\n// Third party imports\nimport { Observable, of, throwError } from 'rxjs';\nimport { delay, dematerialize, materialize, mergeMap } from 'rxjs/operators';\n\n// Application imports\nimport { Action, AreaName, AreaType, Category, Token } from '@app/_models';\n\n/** A mock of the curated account types. */\nconst accountTypes: Array = ['user', 'cashier', 'vendor', 'tokenagent', 'group'];\n\n/** A mock of actions made by the admin staff. */\nconst actions: Array = [\n { id: 1, user: 'Tom', role: 'enroller', action: 'Disburse RSV 100', approval: false },\n { id: 2, user: 'Christine', role: 'admin', action: 'Change user phone number', approval: true },\n { id: 3, user: 'Will', role: 'superadmin', action: 'Reclaim RSV 1000', approval: true },\n { id: 4, user: 'Vivian', role: 'enroller', action: 'Complete user profile', approval: true },\n { id: 5, user: 'Jack', role: 'enroller', action: 'Reclaim RSV 200', approval: false },\n { id: 6, user: 'Patience', role: 'enroller', action: 'Change user information', approval: false },\n];\n\n/** A mock of curated area names. */\nconst areaNames: Array = [\n {\n name: 'Mukuru Nairobi',\n locations: [\n 'kayaba',\n 'kayba',\n 'kambi',\n 'mukuru',\n 'masai',\n 'hazina',\n 'south',\n 'tetra',\n 'tetrapak',\n 'ruben',\n 'rueben',\n 'kingston',\n 'korokocho',\n 'kingstone',\n 'kamongo',\n 'lungalunga',\n 'sinai',\n 'sigei',\n 'lungu',\n 'lunga lunga',\n 'owino road',\n 'seigei',\n ],\n },\n {\n name: 'Kinango Kwale',\n locations: [\n 'amani',\n 'bofu',\n 'chibuga',\n 'chikomani',\n 'chilongoni',\n 'chigojoni',\n 'chinguluni',\n 'chigato',\n 'chigale',\n 'chikole',\n 'chilongoni',\n 'chilumani',\n 'chigojoni',\n 'chikomani',\n 'chizini',\n 'chikomeni',\n 'chidzuvini',\n 'chidzivuni',\n 'chikuyu',\n 'chizingo',\n 'doti',\n 'dzugwe',\n 'dzivani',\n 'dzovuni',\n 'hanje',\n 'kasemeni',\n 'katundani',\n 'kibandaogo',\n 'kibandaongo',\n 'kwale',\n 'kinango',\n 'kidzuvini',\n 'kalalani',\n 'kafuduni',\n 'kaloleni',\n 'kilibole',\n 'lutsangani',\n 'peku',\n 'gona',\n 'guro',\n 'gandini',\n 'mkanyeni',\n 'myenzeni',\n 'miyenzeni',\n 'miatsiani',\n 'mienzeni',\n 'mnyenzeni',\n 'minyenzeni',\n 'miyani',\n 'mioleni',\n 'makuluni',\n 'mariakani',\n 'makobeni',\n 'madewani',\n 'mwangaraba',\n 'mwashanga',\n 'miloeni',\n 'mabesheni',\n 'mazeras',\n 'mazera',\n 'mlola',\n 'muugano',\n 'mulunguni',\n 'mabesheni',\n 'miatsani',\n 'miatsiani',\n 'mwache',\n 'mwangani',\n 'mwehavikonje',\n 'miguneni',\n 'nzora',\n 'nzovuni',\n 'vikinduni',\n 'vikolani',\n 'vitangani',\n 'viogato',\n 'vyogato',\n 'vistangani',\n 'yapha',\n 'yava',\n 'yowani',\n 'ziwani',\n 'majengo',\n 'matuga',\n 'vigungani',\n 'vidziweni',\n 'vinyunduni',\n 'ukunda',\n 'kokotoni',\n 'mikindani',\n ],\n },\n {\n name: 'Misc Nairobi',\n locations: [\n 'nairobi',\n 'west',\n 'lindi',\n 'kibera',\n 'kibira',\n 'kibra',\n 'makina',\n 'soweto',\n 'olympic',\n 'kangemi',\n 'ruiru',\n 'congo',\n 'kawangware',\n 'kwangware',\n 'donholm',\n 'dagoreti',\n 'dandora',\n 'kabete',\n 'sinai',\n 'donhom',\n 'donholm',\n 'huruma',\n 'kitengela',\n 'makadara',\n ',mlolongo',\n 'kenyatta',\n 'mlolongo',\n 'tassia',\n 'tasia',\n 'gatina',\n '56',\n 'industrial',\n 'kariobangi',\n 'kasarani',\n 'kayole',\n 'mathare',\n 'pipe',\n 'juja',\n 'uchumi',\n 'jogoo',\n 'umoja',\n 'thika',\n 'kikuyu',\n 'stadium',\n 'buru buru',\n 'ngong',\n 'starehe',\n 'mwiki',\n 'fuata',\n 'kware',\n 'kabiro',\n 'embakassi',\n 'embakasi',\n 'kmoja',\n 'east',\n 'githurai',\n 'landi',\n 'langata',\n 'limuru',\n 'mathere',\n 'dagoretti',\n 'kirembe',\n 'muugano',\n 'mwiki',\n 'toi market',\n ],\n },\n {\n name: 'Misc Mombasa',\n locations: [\n 'mombasa',\n 'likoni',\n 'bangla',\n 'bangladesh',\n 'kizingo',\n 'old town',\n 'makupa',\n 'mvita',\n 'ngombeni',\n 'ngómbeni',\n 'ombeni',\n 'magongo',\n 'miritini',\n 'changamwe',\n 'jomvu',\n 'ohuru',\n 'tudor',\n 'diani',\n ],\n },\n {\n name: 'Kisauni',\n locations: [\n 'bamburi',\n 'kisauni',\n 'mworoni',\n 'nyali',\n 'shanzu',\n 'bombolulu',\n 'mtopanga',\n 'mjambere',\n 'majaoni',\n 'manyani',\n 'magogoni',\n 'junda',\n 'mwakirunge',\n 'mshomoroni',\n ],\n },\n {\n name: 'Kilifi',\n locations: [\n 'kilfi',\n 'kilifi',\n 'mtwapa',\n 'takaungu',\n 'makongeni',\n 'mnarani',\n 'mnarani',\n 'office',\n 'g.e',\n 'ge',\n 'raibai',\n 'ribe',\n ],\n },\n {\n name: 'Kakuma',\n locations: ['kakuma'],\n },\n {\n name: 'Kitui',\n locations: ['kitui', 'mwingi'],\n },\n {\n name: 'Nyanza',\n locations: [\n 'busia',\n 'nyalgunga',\n 'mbita',\n 'siaya',\n 'kisumu',\n 'nyalenda',\n 'hawinga',\n 'rangala',\n 'uyoma',\n 'mumias',\n 'homabay',\n 'homaboy',\n 'migori',\n 'kusumu',\n ],\n },\n {\n name: 'Misc Rural Counties',\n locations: [\n 'makueni',\n 'meru',\n 'kisii',\n 'bomet',\n 'machakos',\n 'bungoma',\n 'eldoret',\n 'kakamega',\n 'kericho',\n 'kajiado',\n 'nandi',\n 'nyeri',\n 'wote',\n 'kiambu',\n 'mwea',\n 'nakuru',\n 'narok',\n ],\n },\n {\n name: 'other',\n locations: ['other', 'none', 'unknown'],\n },\n];\n\n/** A mock of curated area types. */\nconst areaTypes: Array = [\n {\n name: 'urban',\n area: ['urban', 'nairobi', 'mombasa'],\n },\n {\n name: 'rural',\n area: ['rural', 'kakuma', 'kwale', 'kinango', 'kitui', 'nyanza'],\n },\n {\n name: 'periurban',\n area: ['kilifi', 'periurban'],\n },\n {\n name: 'other',\n area: ['other'],\n },\n];\n\n/** A mock of the user's business categories */\nconst categories: Array = [\n {\n name: 'system',\n products: ['system', 'office main', 'office main phone'],\n },\n {\n name: 'education',\n products: [\n 'book',\n 'coach',\n 'teacher',\n 'sch',\n 'school',\n 'pry',\n 'education',\n 'student',\n 'mwalimu',\n 'maalim',\n 'consultant',\n 'consult',\n 'college',\n 'university',\n 'lecturer',\n 'primary',\n 'secondary',\n 'daycare',\n 'babycare',\n 'baby care',\n 'elim',\n 'eimu',\n 'nursery',\n 'red cross',\n 'volunteer',\n 'instructor',\n 'journalist',\n 'lesson',\n 'academy',\n 'headmistress',\n 'headteacher',\n 'cyber',\n 'researcher',\n 'professor',\n 'demo',\n 'expert',\n 'tution',\n 'tuition',\n 'children',\n 'headmaster',\n 'educator',\n 'Marital counsellor',\n 'counsellor',\n 'trainer',\n 'vijana',\n 'youth',\n 'intern',\n 'redcross',\n 'KRCS',\n 'danish',\n 'science',\n 'data',\n 'facilitator',\n 'vitabu',\n 'kitabu',\n ],\n },\n {\n name: 'faith',\n products: [\n 'pastor',\n 'imam',\n 'madrasa',\n 'religous',\n 'religious',\n 'ustadh',\n 'ustadhi',\n 'Marital counsellor',\n 'counsellor',\n 'church',\n 'kanisa',\n 'mksiti',\n 'donor',\n ],\n },\n {\n name: 'government',\n products: [\n 'elder',\n 'chief',\n 'police',\n 'government',\n 'country',\n 'county',\n 'soldier',\n 'village admin',\n 'ward',\n 'leader',\n 'kra',\n 'mailman',\n 'immagration',\n 'immigration',\n ],\n },\n {\n name: 'environment',\n products: [\n 'conservation',\n 'toilet',\n 'choo',\n 'garbage',\n 'fagio',\n 'waste',\n 'tree',\n 'taka',\n 'scrap',\n 'cleaning',\n 'gardener',\n 'rubbish',\n 'usafi',\n 'mazingira',\n 'miti',\n 'trash',\n 'cleaner',\n 'plastic',\n 'collection',\n 'seedling',\n 'seedlings',\n 'recycling',\n ],\n },\n {\n name: 'farming',\n products: [\n 'farm',\n 'farmer',\n 'farming',\n 'mkulima',\n 'kulima',\n 'ukulima',\n 'wakulima',\n 'jembe',\n 'shamba',\n ],\n },\n {\n name: 'labour',\n products: [\n 'artist',\n 'agent',\n 'guard',\n 'askari',\n 'accountant',\n 'baker',\n 'beadwork',\n 'beauty',\n 'business',\n 'barber',\n 'casual',\n 'electrian',\n 'caretaker',\n 'car wash',\n 'capenter',\n 'construction',\n 'chef',\n 'catering',\n 'cobler',\n 'cobbler',\n 'carwash',\n 'dhobi',\n 'landlord',\n 'design',\n 'carpenter',\n 'fundi',\n 'hawking',\n 'hawker',\n 'househelp',\n 'hsehelp',\n 'house help',\n 'help',\n 'housegirl',\n 'kushona',\n 'juakali',\n 'jualikali',\n 'juacali',\n 'jua kali',\n 'shepherd',\n 'makuti',\n 'kujenga',\n 'kinyozi',\n 'kazi',\n 'knitting',\n 'kufua',\n 'fua',\n 'hustler',\n 'biashara',\n 'labour',\n 'labor',\n 'laundry',\n 'repair',\n 'hair',\n 'posho',\n 'mill',\n 'mtambo',\n 'uvuvi',\n 'engineer',\n 'manager',\n 'tailor',\n 'nguo',\n 'mason',\n 'mtumba',\n 'garage',\n 'mechanic',\n 'mjenzi',\n 'mfugaji',\n 'painter',\n 'receptionist',\n 'printing',\n 'programming',\n 'plumb',\n 'charging',\n 'salon',\n 'mpishi',\n 'msusi',\n 'mgema',\n 'footballer',\n 'photocopy',\n 'peddler',\n 'staff',\n 'sales',\n 'service',\n 'saloon',\n 'seremala',\n 'security',\n 'insurance',\n 'secretary',\n 'shoe',\n 'shepard',\n 'shephard',\n 'tout',\n 'tv',\n 'mvuvi',\n 'mawe',\n 'majani',\n 'maembe',\n 'freelance',\n 'mjengo',\n 'electronics',\n 'photographer',\n 'programmer',\n 'electrician',\n 'washing',\n 'bricks',\n 'welder',\n 'welding',\n 'working',\n 'worker',\n 'watchman',\n 'waiter',\n 'waitress',\n 'viatu',\n 'yoga',\n 'guitarist',\n 'house',\n 'artisan',\n 'musician',\n 'trade',\n 'makonge',\n 'ujenzi',\n 'vendor',\n 'watchlady',\n 'marketing',\n 'beautician',\n 'photo',\n 'metal work',\n 'supplier',\n 'law firm',\n 'brewer',\n ],\n },\n {\n name: 'food',\n products: [\n 'avocado',\n 'bhajia',\n 'bajia',\n 'mbonga',\n 'bofu',\n 'beans',\n 'biscuits',\n 'biringanya',\n 'banana',\n 'bananas',\n 'crisps',\n 'chakula',\n 'coconut',\n 'chapati',\n 'cereal',\n 'chipo',\n 'chapo',\n 'chai',\n 'chips',\n 'cassava',\n 'cake',\n 'cereals',\n 'cook',\n 'corn',\n 'coffee',\n 'chicken',\n 'dagaa',\n 'donut',\n 'dough',\n 'groundnuts',\n 'hotel',\n 'holel',\n 'hoteli',\n 'butcher',\n 'butchery',\n 'fruit',\n 'food',\n 'fruits',\n 'fish',\n 'githeri',\n 'grocery',\n 'grocer',\n 'pojo',\n 'papa',\n 'goats',\n 'mabenda',\n 'mbenda',\n 'poultry',\n 'soda',\n 'peanuts',\n 'potatoes',\n 'samosa',\n 'soko',\n 'samaki',\n 'tomato',\n 'tomatoes',\n 'mchele',\n 'matunda',\n 'mango',\n 'melon',\n 'mellon',\n 'nyanya',\n 'nyama',\n 'omena',\n 'umena',\n 'ndizi',\n 'njugu',\n 'kamba kamba',\n 'khaimati',\n 'kaimati',\n 'kunde',\n 'kuku',\n 'kahawa',\n 'keki',\n 'muguka',\n 'miraa',\n 'milk',\n 'choma',\n 'maziwa',\n 'mboga',\n 'mbog',\n 'busaa',\n 'chumvi',\n 'cabbages',\n 'mabuyu',\n 'machungwa',\n 'mbuzi',\n 'mnazi',\n 'mchicha',\n 'ngombe',\n 'ngano',\n 'nazi',\n 'oranges',\n 'peanuts',\n 'mkate',\n 'bread',\n 'mikate',\n 'vitungu',\n 'sausages',\n 'maize',\n 'mbata',\n 'mchuzi',\n 'mchuuzi',\n 'mandazi',\n 'mbaazi',\n 'mahindi',\n 'maandazi',\n 'mogoka',\n 'meat',\n 'mhogo',\n 'mihogo',\n 'muhogo',\n 'maharagwe',\n 'miwa',\n 'mahamri',\n 'mitumba',\n 'simsim',\n 'porridge',\n 'pilau',\n 'vegetable',\n 'egg',\n 'mayai',\n 'mifugo',\n 'unga',\n 'good',\n 'sima',\n 'sweet',\n 'sweats',\n 'sambusa',\n 'snacks',\n 'sugar',\n 'suger',\n 'ugoro',\n 'sukari',\n 'soup',\n 'spinach',\n 'smokie',\n 'smokies',\n 'sukuma',\n 'tea',\n 'uji',\n 'ugali',\n 'uchuzi',\n 'uchuuzi',\n 'viazi',\n 'yoghurt',\n 'yogurt',\n 'wine',\n 'marondo',\n 'maandzi',\n 'matoke',\n 'omeno',\n 'onions',\n 'nzugu',\n 'korosho',\n 'barafu',\n 'juice',\n ],\n },\n {\n name: 'water',\n products: ['maji', 'water'],\n },\n {\n name: 'health',\n products: [\n 'agrovet',\n 'dispensary',\n 'barakoa',\n 'chemist',\n 'Chemicals',\n 'chv',\n 'doctor',\n 'daktari',\n 'dawa',\n 'hospital',\n 'herbalist',\n 'mganga',\n 'sabuni',\n 'soap',\n 'nurse',\n 'heath',\n 'community health worker',\n 'clinic',\n 'clinical',\n 'mask',\n 'medicine',\n 'lab technician',\n 'pharmacy',\n 'cosmetics',\n 'veterinary',\n 'vet',\n 'sickly',\n 'emergency response',\n 'emergency',\n ],\n },\n {\n name: 'savings',\n products: ['chama', 'group', 'savings', 'loan', 'silc', 'vsla', 'credit', 'finance'],\n },\n {\n name: 'shop',\n products: [\n 'bag',\n 'bead',\n 'belt',\n 'bedding',\n 'jik',\n 'bed',\n 'cement',\n 'botique',\n 'boutique',\n 'lines',\n 'kibanda',\n 'kiosk',\n 'spareparts',\n 'candy',\n 'cloth',\n 'electricals',\n 'mutumba',\n 'cafe',\n 'leso',\n 'lesso',\n 'duka',\n 'spare parts',\n 'socks',\n 'malimali',\n 'mitungi',\n 'mali mali',\n 'hardware',\n 'detergent',\n 'detergents',\n 'dera',\n 'retail',\n 'kamba',\n 'pombe',\n 'pampers',\n 'pool',\n 'phone',\n 'simu',\n 'mangwe',\n 'mikeka',\n 'movie',\n 'shop',\n 'acces',\n 'mchanga',\n 'uto',\n 'airtime',\n 'matress',\n 'mattress',\n 'mattresses',\n 'mpsea',\n 'mpesa',\n 'shirt',\n 'wholesaler',\n 'perfume',\n 'playstation',\n 'tissue',\n 'vikapu',\n 'uniform',\n 'flowers',\n 'vitenge',\n 'utencils',\n 'utensils',\n 'station',\n 'jewel',\n 'pool table',\n 'club',\n 'pub',\n 'bar',\n 'furniture',\n 'm-pesa',\n 'vyombo',\n ],\n },\n {\n name: 'transport',\n products: [\n 'kebeba',\n 'beba',\n 'bebabeba',\n 'bike',\n 'bicycle',\n 'matatu',\n 'boda',\n 'bodaboda',\n 'cart',\n 'carrier',\n 'tour',\n 'travel',\n 'driver',\n 'dereva',\n 'tout',\n 'conductor',\n 'kubeba',\n 'tuktuk',\n 'taxi',\n 'piki',\n 'pikipiki',\n 'manamba',\n 'trasportion',\n 'mkokoteni',\n 'mover',\n 'motorist',\n 'motorbike',\n 'transport',\n 'transpoter',\n 'gari',\n 'magari',\n 'makanga',\n 'car',\n ],\n },\n {\n name: 'fuel/energy',\n products: [\n 'timber',\n 'timberyard',\n 'biogas',\n 'charcol',\n 'charcoal',\n 'kuni',\n 'mbao',\n 'fuel',\n 'makaa',\n 'mafuta',\n 'moto',\n 'solar',\n 'stima',\n 'fire',\n 'firewood',\n 'wood',\n 'oil',\n 'taa',\n 'gas',\n 'paraffin',\n 'parrafin',\n 'parafin',\n 'petrol',\n 'petro',\n 'kerosine',\n 'kerosene',\n 'diesel',\n ],\n },\n {\n name: 'other',\n products: ['other', 'none', 'unknown', 'none'],\n },\n];\n\n/** A mock of curated genders */\nconst genders: Array = ['male', 'female', 'other'];\n\n/** A mock of the tokens in the system. */\nconst tokens: Array = [\n {\n name: 'Giftable Reserve',\n symbol: 'GRZ',\n address: '0xa686005CE37Dce7738436256982C3903f2E4ea8E',\n supply: '1000000001000000000000000000',\n decimals: '18',\n reserves: {},\n },\n {\n name: 'Demo Token',\n symbol: 'DEMO',\n address: '0xc80D6aFF8194114c52AEcD84c9f15fd5c8abb187',\n supply: '99999999999999998976',\n decimals: '18',\n reserves: {\n '0xa686005CE37Dce7738436256982C3903f2E4ea8E': {\n weight: '1000000',\n balance: '99999999999999998976',\n },\n },\n reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a',\n },\n {\n name: 'Foo Token',\n symbol: 'FOO',\n address: '0x9ceD86089f7aBB5A97B40eb0E7521e7aa308d354',\n supply: '1000000000000000001014',\n decimals: '18',\n reserves: {\n '0xa686005CE37Dce7738436256982C3903f2E4ea8E': {\n weight: '1000000',\n balance: '1000000000000000001014',\n },\n },\n reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a',\n },\n {\n name: 'testb',\n symbol: 'tstb',\n address: '0xC63cFA91A3BFf41cE31Ff436f67D3ACBC977DB95',\n supply: '99000',\n decimals: '18',\n reserves: {\n '0xa686005CE37Dce7738436256982C3903f2E4ea8E': { weight: '1000000', balance: '99000' },\n },\n reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a',\n },\n {\n name: 'testa',\n symbol: 'tsta',\n address: '0x8fA4101ef19D0a078239d035659e92b278bD083C',\n supply: '9981',\n decimals: '18',\n reserves: {\n '0xa686005CE37Dce7738436256982C3903f2E4ea8E': { weight: '1000000', balance: '9981' },\n },\n reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a',\n },\n {\n name: 'testc',\n symbol: 'tstc',\n address: '0x4A6fA6bc3BfE4C9661bC692D9798425350C9e3D4',\n supply: '100990',\n decimals: '18',\n reserves: {\n '0xa686005CE37Dce7738436256982C3903f2E4ea8E': { weight: '1000000', balance: '100990' },\n },\n reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a',\n },\n];\n\n/** A mock of curated transaction types. */\nconst transactionTypes: Array = [\n 'transactions',\n 'conversions',\n 'disbursements',\n 'rewards',\n 'reclamation',\n];\n\n/**\n * Intercepts HTTP requests and handles some specified requests internally.\n * Provides a backend that can handle requests for certain data items.\n */\n@Injectable()\nexport class MockBackendInterceptor implements HttpInterceptor {\n /**\n * Intercepts HTTP requests.\n *\n * @param request - An outgoing HTTP request with an optional typed body.\n * @param next - The next HTTP handler or the outgoing request dispatcher.\n * @returns The response from the resolved request.\n */\n intercept(request: HttpRequest, next: HttpHandler): Observable> {\n const { url, method, headers, body } = request;\n\n // wrap in delayed observable to simulate server api call\\\n // call materialize and dematerialize to ensure delay even is thrown\n return of(null)\n .pipe(mergeMap(handleRoute))\n .pipe(materialize())\n .pipe(delay(500))\n .pipe(dematerialize());\n\n /** Forward requests from select routes to their internal handlers. */\n function handleRoute(): Observable {\n switch (true) {\n case url.endsWith('/accounttypes') && method === 'GET':\n return getAccountTypes();\n case url.endsWith('/actions') && method === 'GET':\n return getActions();\n case url.match(/\\/actions\\/\\d+$/) && method === 'GET':\n return getActionById();\n case url.match(/\\/actions\\/\\d+$/) && method === 'POST':\n return approveAction();\n case url.endsWith('/areanames') && method === 'GET':\n return getAreaNames();\n case url.match(/\\/areanames\\/\\w+$/) && method === 'GET':\n return getAreaNameByLocation();\n case url.endsWith('/areatypes') && method === 'GET':\n return getAreaTypes();\n case url.match(/\\/areatypes\\/\\w+$/) && method === 'GET':\n return getAreaTypeByArea();\n case url.endsWith('/categories') && method === 'GET':\n return getCategories();\n case url.match(/\\/categories\\/\\w+$/) && method === 'GET':\n return getCategoryByProduct();\n case url.endsWith('/genders') && method === 'GET':\n return getGenders();\n case url.endsWith('/tokens') && method === 'GET':\n return getTokens();\n case url.match(/\\/tokens\\/\\w+$/) && method === 'GET':\n return getTokenBySymbol();\n case url.endsWith('/transactiontypes') && method === 'GET':\n return getTransactionTypes();\n default:\n // pass through any requests not handled above\n return next.handle(request);\n }\n }\n\n // route functions\n\n function approveAction(): Observable> {\n const queriedAction: Action = actions.find((action) => action.id === idFromUrl());\n queriedAction.approval = body.approval;\n const message: string = `Action approval status set to ${body.approval} successfully!`;\n return ok(message);\n }\n\n function getAccountTypes(): Observable> {\n return ok(accountTypes);\n }\n\n function getActions(): Observable> {\n return ok(actions);\n }\n\n function getActionById(): Observable> {\n const queriedAction: Action = actions.find((action) => action.id === idFromUrl());\n return ok(queriedAction);\n }\n\n function getAreaNames(): Observable> {\n const areaNameList: Array = areaNames.map((areaName) => areaName.name);\n return ok(areaNameList);\n }\n\n function getAreaNameByLocation(): Observable> {\n const queriedAreaName: AreaName = areaNames.find((areaName) =>\n areaName.locations.includes(stringFromUrl())\n );\n return ok(queriedAreaName.name);\n }\n\n function getAreaTypes(): Observable> {\n const areaTypeList: Array = areaTypes.map((areaType) => areaType.name);\n return ok(areaTypeList);\n }\n\n function getAreaTypeByArea(): Observable> {\n const queriedAreaType: AreaType = areaTypes.find((areaType) =>\n areaType.area.includes(stringFromUrl())\n );\n return ok(queriedAreaType.name);\n }\n\n function getCategories(): Observable> {\n const categoryList: Array = categories.map((category) => category.name);\n return ok(categoryList);\n }\n\n function getCategoryByProduct(): Observable> {\n const queriedCategory: Category = categories.find((category) =>\n category.products.includes(stringFromUrl())\n );\n return ok(queriedCategory.name);\n }\n\n function getGenders(): Observable> {\n return ok(genders);\n }\n\n function getTokens(): Observable> {\n return ok(tokens);\n }\n\n function getTokenBySymbol(): Observable> {\n const queriedToken: Token = tokens.find((token) => token.symbol === stringFromUrl());\n return ok(queriedToken);\n }\n\n function getTransactionTypes(): Observable> {\n return ok(transactionTypes);\n }\n\n // helper functions\n\n function error(message): Observable {\n return throwError({ status: 400, error: { message } });\n }\n\n function idFromUrl(): number {\n const urlParts: Array = url.split('/');\n return parseInt(urlParts[urlParts.length - 1], 10);\n }\n\n function ok(responseBody: any): Observable> {\n return of(new HttpResponse({ status: 200, body: responseBody }));\n }\n\n function stringFromUrl(): string {\n const urlParts: Array = url.split('/');\n return urlParts[urlParts.length - 1];\n }\n }\n}\n\n/** Exports the MockBackendInterceptor as an Angular provider. */\nexport const MockBackendProvider = {\n provide: HTTP_INTERCEPTORS,\n useClass: MockBackendInterceptor,\n multi: true,\n};\n\n \n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/MutableKeyStore.html":{"url":"interfaces/MutableKeyStore.html","title":"interface - MutableKeyStore","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n MutableKeyStore\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_pgp/pgp-key-store.ts\n \n\n\n \n Extends\n \n \n KeyStore\n \n\n \n Index\n \n \n \n \n Methods\n \n \n \n \n \n \n clearKeysInKeyring\n \n \n getEncryptKeys\n \n \n getFingerprint\n \n \n getKeyId\n \n \n getKeysForId\n \n \n getPrivateKey\n \n \n getPrivateKeyForId\n \n \n getPrivateKeyId\n \n \n getPrivateKeys\n \n \n getPublicKeyForId\n \n \n getPublicKeyForSubkeyId\n \n \n getPublicKeys\n \n \n getPublicKeysForAddress\n \n \n getTrustedActiveKeys\n \n \n getTrustedKeys\n \n \n importKeyPair\n \n \n importPrivateKey\n \n \n importPublicKey\n \n \n isEncryptedPrivateKey\n \n \n isValidKey\n \n \n loadKeyring\n \n \n removeKeysForId\n \n \n removePublicKey\n \n \n removePublicKeyForId\n \n \n sign\n \n \n \n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n clearKeysInKeyring\n \n \n \n \n \n \n \nclearKeysInKeyring()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:33\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n getEncryptKeys\n \n \n \n \n \n \n \ngetEncryptKeys()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:17\n \n \n\n\n \n \n\n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n getFingerprint\n \n \n \n \n \n \n \ngetFingerprint()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:22\n \n \n\n\n \n \n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n getKeyId\n \n \n \n \n \n \n \ngetKeyId(key: any)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:23\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getKeysForId\n \n \n \n \n \n \n \ngetKeysForId(keyId: string)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:25\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n keyId\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getPrivateKey\n \n \n \n \n \n \n \ngetPrivateKey()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:19\n \n \n\n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n getPrivateKeyForId\n \n \n \n \n \n \n \ngetPrivateKeyForId(keyId: string)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:27\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n keyId\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getPrivateKeyId\n \n \n \n \n \n \n \ngetPrivateKeyId()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:24\n \n \n\n\n \n \n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n getPrivateKeys\n \n \n \n \n \n \n \ngetPrivateKeys()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:18\n \n \n\n\n \n \n\n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n getPublicKeyForId\n \n \n \n \n \n \n \ngetPublicKeyForId(keyId: string)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:26\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n keyId\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getPublicKeyForSubkeyId\n \n \n \n \n \n \n \ngetPublicKeyForSubkeyId(subkeyId: string)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:28\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n subkeyId\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getPublicKeys\n \n \n \n \n \n \n \ngetPublicKeys()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:14\n \n \n\n\n \n \n\n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n getPublicKeysForAddress\n \n \n \n \n \n \n \ngetPublicKeysForAddress(address: string)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:29\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n address\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getTrustedActiveKeys\n \n \n \n \n \n \n \ngetTrustedActiveKeys()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:16\n \n \n\n\n \n \n\n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n getTrustedKeys\n \n \n \n \n \n \n \ngetTrustedKeys()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:15\n \n \n\n\n \n \n\n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n importKeyPair\n \n \n \n \n \n \n \nimportKeyPair(publicKey: any, privateKey: any)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:11\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n publicKey\n \n any\n \n\n \n No\n \n\n\n \n \n privateKey\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n importPrivateKey\n \n \n \n \n \n \n \nimportPrivateKey(privateKey: any)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:13\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n privateKey\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n importPublicKey\n \n \n \n \n \n \n \nimportPublicKey(publicKey: any)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:12\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n publicKey\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n isEncryptedPrivateKey\n \n \n \n \n \n \n \nisEncryptedPrivateKey(privateKey: any)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:21\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n privateKey\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n isValidKey\n \n \n \n \n \n \n \nisValidKey(key: any)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:20\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n loadKeyring\n \n \n \n \n \n \n \nloadKeyring()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:10\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n removeKeysForId\n \n \n \n \n \n \n \nremoveKeysForId(keyId: string)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:30\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n keyId\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n removePublicKey\n \n \n \n \n \n \n \nremovePublicKey(publicKey: any)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:32\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n publicKey\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n removePublicKeyForId\n \n \n \n \n \n \n \nremovePublicKeyForId(keyId: string)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:31\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n keyId\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n sign\n \n \n \n \n \n \n \nsign(plainText: string)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:34\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n plainText\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n \n import { KeyStore } from 'cic-client-meta';\n// TODO should we put this on the mutable key store object\nimport * as openpgp from 'openpgp';\nconst keyring = new openpgp.Keyring();\n\n/**\n * @extends\n */\ninterface MutableKeyStore extends KeyStore {\n loadKeyring(): void;\n importKeyPair(publicKey: any, privateKey: any): Promise;\n importPublicKey(publicKey: any): void;\n importPrivateKey(privateKey: any): Promise;\n getPublicKeys(): Array;\n getTrustedKeys(): Array;\n getTrustedActiveKeys(): Array;\n getEncryptKeys(): Array;\n getPrivateKeys(): Array;\n getPrivateKey(): any;\n isValidKey(key: any): Promise;\n isEncryptedPrivateKey(privateKey: any): Promise;\n getFingerprint(): string;\n getKeyId(key: any): string;\n getPrivateKeyId(): string;\n getKeysForId(keyId: string): Array;\n getPublicKeyForId(keyId: string): any;\n getPrivateKeyForId(keyId: string): any;\n getPublicKeyForSubkeyId(subkeyId: string): any;\n getPublicKeysForAddress(address: string): Array;\n removeKeysForId(keyId: string): Array;\n removePublicKeyForId(keyId: string): any;\n removePublicKey(publicKey: any): any;\n clearKeysInKeyring(): void;\n sign(plainText: string): Promise;\n}\n\nclass MutablePgpKeyStore implements MutableKeyStore {\n async loadKeyring(): Promise {\n await keyring.load();\n await keyring.store();\n }\n\n async importKeyPair(publicKey: any, privateKey: any): Promise {\n await keyring.publicKeys.importKey(publicKey);\n await keyring.privateKeys.importKey(privateKey);\n }\n\n importPublicKey(publicKey: any): void {\n keyring.publicKeys.importKey(publicKey);\n }\n\n async importPrivateKey(privateKey: any): Promise {\n await keyring.privateKeys.importKey(privateKey);\n }\n\n getPublicKeys(): Array {\n return keyring.publicKeys.keys;\n }\n\n getTrustedKeys(): Array {\n return keyring.publicKeys.keys;\n }\n\n getTrustedActiveKeys(): Array {\n return keyring.publicKeys.keys;\n }\n\n getEncryptKeys(): Array {\n return [];\n }\n\n getPrivateKeys(): Array {\n return keyring.privateKeys.keys;\n }\n\n getPrivateKey(): any {\n return keyring.privateKeys && keyring.privateKeys.keys[0];\n }\n\n async isValidKey(key): Promise {\n // There is supposed to be an openpgp.readKey() method but I can't find it?\n const testKey = await openpgp.key.readArmored(key);\n return !testKey.err;\n }\n\n async isEncryptedPrivateKey(privateKey: any): Promise {\n const imported = await openpgp.key.readArmored(privateKey);\n for (const key of imported.keys) {\n if (key.isDecrypted()) {\n return false;\n }\n }\n return true;\n }\n\n getFingerprint(): string {\n // TODO Handle multiple keys\n return (\n keyring.privateKeys &&\n keyring.privateKeys.keys[0] &&\n keyring.privateKeys.keys[0].keyPacket &&\n keyring.privateKeys.keys[0].keyPacket.fingerprint\n );\n }\n\n getKeyId(key: any): string {\n return key.getKeyId().toHex();\n }\n\n getPrivateKeyId(): string {\n // TODO is there a library that comes with angular for doing this?\n return (\n keyring.privateKeys &&\n keyring.privateKeys.keys[0] &&\n keyring.privateKeys.keys[0].getKeyId().toHex()\n );\n }\n\n getKeysForId(keyId: string): Array {\n return keyring.getKeysForId(keyId);\n }\n\n getPublicKeyForId(keyId): any {\n return keyring.publicKeys.getForId(keyId);\n }\n\n getPrivateKeyForId(keyId): any {\n return keyring.privateKeys.getForId(keyId);\n }\n\n getPublicKeyForSubkeyId(subkeyId): any {\n return keyring.publicKeys.getForId(subkeyId, true);\n }\n\n getPublicKeysForAddress(address): Array {\n return keyring.publicKeys.getForAddress(address);\n }\n\n removeKeysForId(keyId): Array {\n return keyring.removeKeysForId(keyId);\n }\n\n removePublicKeyForId(keyId): any {\n return keyring.publicKeys.removeForId(keyId);\n }\n\n removePublicKey(publicKey: any): any {\n const keyId = publicKey.getKeyId().toHex();\n return keyring.publicKeys.removeForId(keyId);\n }\n\n clearKeysInKeyring(): void {\n keyring.clear();\n }\n\n async sign(plainText): Promise {\n const privateKey = this.getPrivateKey();\n if (!privateKey.isDecrypted()) {\n const password = window.prompt('password');\n await privateKey.decrypt(password);\n }\n const opts = {\n message: openpgp.message.fromText(plainText),\n privateKeys: [privateKey],\n detached: true,\n };\n const signatureObject = await openpgp.sign(opts);\n return signatureObject.signature;\n }\n}\n\nexport { MutablePgpKeyStore, MutableKeyStore };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/MutablePgpKeyStore.html":{"url":"classes/MutablePgpKeyStore.html","title":"class - MutablePgpKeyStore","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n MutablePgpKeyStore\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_pgp/pgp-key-store.ts\n \n\n\n\n \n Implements\n \n \n MutableKeyStore\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n clearKeysInKeyring\n \n \n getEncryptKeys\n \n \n getFingerprint\n \n \n getKeyId\n \n \n getKeysForId\n \n \n getPrivateKey\n \n \n getPrivateKeyForId\n \n \n getPrivateKeyId\n \n \n getPrivateKeys\n \n \n getPublicKeyForId\n \n \n getPublicKeyForSubkeyId\n \n \n getPublicKeys\n \n \n getPublicKeysForAddress\n \n \n getTrustedActiveKeys\n \n \n getTrustedKeys\n \n \n Async\n importKeyPair\n \n \n Async\n importPrivateKey\n \n \n importPublicKey\n \n \n Async\n isEncryptedPrivateKey\n \n \n Async\n isValidKey\n \n \n Async\n loadKeyring\n \n \n removeKeysForId\n \n \n removePublicKey\n \n \n removePublicKeyForId\n \n \n Async\n sign\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n clearKeysInKeyring\n \n \n \n \n \n \n \nclearKeysInKeyring()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:152\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n getEncryptKeys\n \n \n \n \n \n \n \ngetEncryptKeys()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:68\n \n \n\n\n \n \n\n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n getFingerprint\n \n \n \n \n \n \n \ngetFingerprint()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:96\n \n \n\n\n \n \n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n getKeyId\n \n \n \n \n \n \n \ngetKeyId(key: any)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:106\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getKeysForId\n \n \n \n \n \n \n \ngetKeysForId(keyId: string)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:119\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n keyId\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getPrivateKey\n \n \n \n \n \n \n \ngetPrivateKey()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:76\n \n \n\n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n getPrivateKeyForId\n \n \n \n \n \n \n \ngetPrivateKeyForId(keyId)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:127\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n keyId\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getPrivateKeyId\n \n \n \n \n \n \n \ngetPrivateKeyId()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:110\n \n \n\n\n \n \n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n getPrivateKeys\n \n \n \n \n \n \n \ngetPrivateKeys()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:72\n \n \n\n\n \n \n\n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n getPublicKeyForId\n \n \n \n \n \n \n \ngetPublicKeyForId(keyId)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:123\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n keyId\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getPublicKeyForSubkeyId\n \n \n \n \n \n \n \ngetPublicKeyForSubkeyId(subkeyId)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:131\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n subkeyId\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getPublicKeys\n \n \n \n \n \n \n \ngetPublicKeys()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:56\n \n \n\n\n \n \n\n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n getPublicKeysForAddress\n \n \n \n \n \n \n \ngetPublicKeysForAddress(address)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:135\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n address\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getTrustedActiveKeys\n \n \n \n \n \n \n \ngetTrustedActiveKeys()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:64\n \n \n\n\n \n \n\n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n getTrustedKeys\n \n \n \n \n \n \n \ngetTrustedKeys()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:60\n \n \n\n\n \n \n\n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n importKeyPair\n \n \n \n \n \n \n \n \n importKeyPair(publicKey: any, privateKey: any)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:43\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n publicKey\n \n any\n \n\n \n No\n \n\n\n \n \n privateKey\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Async\n importPrivateKey\n \n \n \n \n \n \n \n \n importPrivateKey(privateKey: any)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:52\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n privateKey\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n importPublicKey\n \n \n \n \n \n \n \nimportPublicKey(publicKey: any)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:48\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n publicKey\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Async\n isEncryptedPrivateKey\n \n \n \n \n \n \n \n \n isEncryptedPrivateKey(privateKey: any)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:86\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n privateKey\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Async\n isValidKey\n \n \n \n \n \n \n \n \n isValidKey(key)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:80\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n key\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Async\n loadKeyring\n \n \n \n \n \n \n \n \n loadKeyring()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:38\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n removeKeysForId\n \n \n \n \n \n \n \nremoveKeysForId(keyId)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:139\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n keyId\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n removePublicKey\n \n \n \n \n \n \n \nremovePublicKey(publicKey: any)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:147\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n publicKey\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n removePublicKeyForId\n \n \n \n \n \n \n \nremovePublicKeyForId(keyId)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:143\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n keyId\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Async\n sign\n \n \n \n \n \n \n \n \n sign(plainText)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-key-store.ts:156\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n plainText\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n import { KeyStore } from 'cic-client-meta';\n// TODO should we put this on the mutable key store object\nimport * as openpgp from 'openpgp';\nconst keyring = new openpgp.Keyring();\n\n/**\n * @extends\n */\ninterface MutableKeyStore extends KeyStore {\n loadKeyring(): void;\n importKeyPair(publicKey: any, privateKey: any): Promise;\n importPublicKey(publicKey: any): void;\n importPrivateKey(privateKey: any): Promise;\n getPublicKeys(): Array;\n getTrustedKeys(): Array;\n getTrustedActiveKeys(): Array;\n getEncryptKeys(): Array;\n getPrivateKeys(): Array;\n getPrivateKey(): any;\n isValidKey(key: any): Promise;\n isEncryptedPrivateKey(privateKey: any): Promise;\n getFingerprint(): string;\n getKeyId(key: any): string;\n getPrivateKeyId(): string;\n getKeysForId(keyId: string): Array;\n getPublicKeyForId(keyId: string): any;\n getPrivateKeyForId(keyId: string): any;\n getPublicKeyForSubkeyId(subkeyId: string): any;\n getPublicKeysForAddress(address: string): Array;\n removeKeysForId(keyId: string): Array;\n removePublicKeyForId(keyId: string): any;\n removePublicKey(publicKey: any): any;\n clearKeysInKeyring(): void;\n sign(plainText: string): Promise;\n}\n\nclass MutablePgpKeyStore implements MutableKeyStore {\n async loadKeyring(): Promise {\n await keyring.load();\n await keyring.store();\n }\n\n async importKeyPair(publicKey: any, privateKey: any): Promise {\n await keyring.publicKeys.importKey(publicKey);\n await keyring.privateKeys.importKey(privateKey);\n }\n\n importPublicKey(publicKey: any): void {\n keyring.publicKeys.importKey(publicKey);\n }\n\n async importPrivateKey(privateKey: any): Promise {\n await keyring.privateKeys.importKey(privateKey);\n }\n\n getPublicKeys(): Array {\n return keyring.publicKeys.keys;\n }\n\n getTrustedKeys(): Array {\n return keyring.publicKeys.keys;\n }\n\n getTrustedActiveKeys(): Array {\n return keyring.publicKeys.keys;\n }\n\n getEncryptKeys(): Array {\n return [];\n }\n\n getPrivateKeys(): Array {\n return keyring.privateKeys.keys;\n }\n\n getPrivateKey(): any {\n return keyring.privateKeys && keyring.privateKeys.keys[0];\n }\n\n async isValidKey(key): Promise {\n // There is supposed to be an openpgp.readKey() method but I can't find it?\n const testKey = await openpgp.key.readArmored(key);\n return !testKey.err;\n }\n\n async isEncryptedPrivateKey(privateKey: any): Promise {\n const imported = await openpgp.key.readArmored(privateKey);\n for (const key of imported.keys) {\n if (key.isDecrypted()) {\n return false;\n }\n }\n return true;\n }\n\n getFingerprint(): string {\n // TODO Handle multiple keys\n return (\n keyring.privateKeys &&\n keyring.privateKeys.keys[0] &&\n keyring.privateKeys.keys[0].keyPacket &&\n keyring.privateKeys.keys[0].keyPacket.fingerprint\n );\n }\n\n getKeyId(key: any): string {\n return key.getKeyId().toHex();\n }\n\n getPrivateKeyId(): string {\n // TODO is there a library that comes with angular for doing this?\n return (\n keyring.privateKeys &&\n keyring.privateKeys.keys[0] &&\n keyring.privateKeys.keys[0].getKeyId().toHex()\n );\n }\n\n getKeysForId(keyId: string): Array {\n return keyring.getKeysForId(keyId);\n }\n\n getPublicKeyForId(keyId): any {\n return keyring.publicKeys.getForId(keyId);\n }\n\n getPrivateKeyForId(keyId): any {\n return keyring.privateKeys.getForId(keyId);\n }\n\n getPublicKeyForSubkeyId(subkeyId): any {\n return keyring.publicKeys.getForId(subkeyId, true);\n }\n\n getPublicKeysForAddress(address): Array {\n return keyring.publicKeys.getForAddress(address);\n }\n\n removeKeysForId(keyId): Array {\n return keyring.removeKeysForId(keyId);\n }\n\n removePublicKeyForId(keyId): any {\n return keyring.publicKeys.removeForId(keyId);\n }\n\n removePublicKey(publicKey: any): any {\n const keyId = publicKey.getKeyId().toHex();\n return keyring.publicKeys.removeForId(keyId);\n }\n\n clearKeysInKeyring(): void {\n keyring.clear();\n }\n\n async sign(plainText): Promise {\n const privateKey = this.getPrivateKey();\n if (!privateKey.isDecrypted()) {\n const password = window.prompt('password');\n await privateKey.decrypt(password);\n }\n const opts = {\n message: openpgp.message.fromText(plainText),\n privateKeys: [privateKey],\n detached: true,\n };\n const signatureObject = await openpgp.sign(opts);\n return signatureObject.signature;\n }\n}\n\nexport { MutablePgpKeyStore, MutableKeyStore };\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/NetworkStatusComponent.html":{"url":"components/NetworkStatusComponent.html","title":"component - NetworkStatusComponent","body":"\n \n\n\n\n\n\n Components\n NetworkStatusComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/shared/network-status/network-status.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-network-status\n \n\n \n styleUrls\n ./network-status.component.scss\n \n\n\n\n \n templateUrl\n ./network-status.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n noInternetConnection\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n handleNetworkChange\n \n \n ngOnInit\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(cdr: ChangeDetectorRef)\n \n \n \n \n Defined in src/app/shared/network-status/network-status.component.ts:10\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n cdr\n \n \n ChangeDetectorRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n handleNetworkChange\n \n \n \n \n \n \n \nhandleNetworkChange()\n \n \n\n\n \n \n Defined in src/app/shared/network-status/network-status.component.ts:18\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/shared/network-status/network-status.component.ts:16\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n noInternetConnection\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : !navigator.onLine\n \n \n \n \n Defined in src/app/shared/network-status/network-status.component.ts:10\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, OnInit, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core';\n\n@Component({\n selector: 'app-network-status',\n templateUrl: './network-status.component.html',\n styleUrls: ['./network-status.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class NetworkStatusComponent implements OnInit {\n noInternetConnection: boolean = !navigator.onLine;\n\n constructor(private cdr: ChangeDetectorRef) {\n this.handleNetworkChange();\n }\n\n ngOnInit(): void {}\n\n handleNetworkChange(): void {\n setTimeout(() => {\n if (!navigator.onLine !== this.noInternetConnection) {\n this.noInternetConnection = !navigator.onLine;\n this.cdr.detectChanges();\n }\n this.handleNetworkChange();\n }, 5000);\n }\n}\n\n \n\n \n \n \n \n \n OFFLINE \n \n \n \n ONLINE \n \n \n \n\n\n \n\n \n \n ./network-status.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' OFFLINE ONLINE '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'NetworkStatusComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/OrganizationComponent.html":{"url":"components/OrganizationComponent.html","title":"component - OrganizationComponent","body":"\n \n\n\n\n\n\n Components\n OrganizationComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/pages/settings/organization/organization.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-organization\n \n\n \n styleUrls\n ./organization.component.scss\n \n\n\n\n \n templateUrl\n ./organization.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n matcher\n \n \n organizationForm\n \n \n submitted\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n onSubmit\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n organizationFormStub\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(formBuilder: FormBuilder)\n \n \n \n \n Defined in src/app/pages/settings/organization/organization.component.ts:14\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n formBuilder\n \n \n FormBuilder\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/pages/settings/organization/organization.component.ts:18\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n onSubmit\n \n \n \n \n \n \n \nonSubmit()\n \n \n\n\n \n \n Defined in src/app/pages/settings/organization/organization.component.ts:30\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n matcher\n \n \n \n \n \n \n Type : CustomErrorStateMatcher\n\n \n \n \n \n Default value : new CustomErrorStateMatcher()\n \n \n \n \n Defined in src/app/pages/settings/organization/organization.component.ts:14\n \n \n\n\n \n \n \n \n \n \n \n \n \n organizationForm\n \n \n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Defined in src/app/pages/settings/organization/organization.component.ts:12\n \n \n\n\n \n \n \n \n \n \n \n \n \n submitted\n \n \n \n \n \n \n Type : boolean\n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in src/app/pages/settings/organization/organization.component.ts:13\n \n \n\n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n organizationFormStub\n \n \n\n \n \n getorganizationFormStub()\n \n \n \n \n Defined in src/app/pages/settings/organization/organization.component.ts:26\n \n \n\n \n \n\n\n\n\n \n import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators } from '@angular/forms';\nimport { CustomErrorStateMatcher } from '@app/_helpers';\n\n@Component({\n selector: 'app-organization',\n templateUrl: './organization.component.html',\n styleUrls: ['./organization.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class OrganizationComponent implements OnInit {\n organizationForm: FormGroup;\n submitted: boolean = false;\n matcher: CustomErrorStateMatcher = new CustomErrorStateMatcher();\n\n constructor(private formBuilder: FormBuilder) {}\n\n ngOnInit(): void {\n this.organizationForm = this.formBuilder.group({\n disbursement: ['', Validators.required],\n transfer: '',\n countryCode: ['', Validators.required],\n });\n }\n\n get organizationFormStub(): any {\n return this.organizationForm.controls;\n }\n\n onSubmit(): void {\n this.submitted = true;\n if (this.organizationForm.invalid || !confirm('Set organization information?')) {\n return;\n }\n this.submitted = false;\n }\n}\n\n \n\n \n \n\n \n\n \n \n \n\n \n \n \n \n \n \n Home\n Settings\n Organization Settings\n \n \n \n \n \n DEFAULT ORGANISATION SETTINGS\n \n \n \n \n Default Disbursement *\n \n RCU\n \n Default Disbursement is required.\n \n \n \n Require Transfer Card *\n \n \n Default Country Code *\n \n KE Kenya\n US United States\n ETH Ethiopia\n GER Germany\n UG Uganda\n \n \n Country Code is required.\n \n \n Submit\n \n \n \n \n \n \n \n \n \n \n\n\n \n\n \n \n ./organization.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Home Settings Organization Settings DEFAULT ORGANISATION SETTINGS Default Disbursement * RCU Default Disbursement is required. Require Transfer Card * Default Country Code * KE Kenya US United States ETH Ethiopia GER Germany UG Uganda Country Code is required. Submit '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'OrganizationComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/PGPSigner.html":{"url":"classes/PGPSigner.html","title":"class - PGPSigner","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n PGPSigner\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_pgp/pgp-signer.ts\n \n\n\n\n \n Implements\n \n \n Signer\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n algo\n \n \n dgst\n \n \n engine\n \n \n keyStore\n \n \n loggingService\n \n \n onsign\n \n \n onverify\n \n \n signature\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n fingerprint\n \n \n Public\n prepare\n \n \n Public\n Async\n sign\n \n \n Public\n verify\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(keyStore: MutableKeyStore)\n \n \n \n \n Defined in src/app/_pgp/pgp-signer.ts:34\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n keyStore\n \n \n MutableKeyStore\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n algo\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : 'sha256'\n \n \n \n \n Defined in src/app/_pgp/pgp-signer.ts:28\n \n \n\n\n \n \n \n \n \n \n \n \n \n dgst\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/_pgp/pgp-signer.ts:29\n \n \n\n\n \n \n \n \n \n \n \n \n \n engine\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : 'pgp'\n \n \n \n \n Defined in src/app/_pgp/pgp-signer.ts:27\n \n \n\n\n \n \n \n \n \n \n \n \n \n keyStore\n \n \n \n \n \n \n Type : MutableKeyStore\n\n \n \n \n \n Defined in src/app/_pgp/pgp-signer.ts:31\n \n \n\n\n \n \n \n \n \n \n \n \n \n loggingService\n \n \n \n \n \n \n Type : LoggingService\n\n \n \n \n \n Defined in src/app/_pgp/pgp-signer.ts:34\n \n \n\n\n \n \n \n \n \n \n \n \n \n onsign\n \n \n \n \n \n \n Type : function\n\n \n \n \n \n Defined in src/app/_pgp/pgp-signer.ts:32\n \n \n\n\n \n \n \n \n \n \n \n \n \n onverify\n \n \n \n \n \n \n Type : function\n\n \n \n \n \n Defined in src/app/_pgp/pgp-signer.ts:33\n \n \n\n\n \n \n \n \n \n \n \n \n \n signature\n \n \n \n \n \n \n Type : Signature\n\n \n \n \n \n Defined in src/app/_pgp/pgp-signer.ts:30\n \n \n\n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Public\n fingerprint\n \n \n \n \n \n \n \n \n fingerprint()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-signer.ts:42\n \n \n\n\n \n \n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n Public\n prepare\n \n \n \n \n \n \n \n \n prepare(material: Signable)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-signer.ts:46\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n material\n \n Signable\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n Async\n sign\n \n \n \n \n \n \n \n \n sign(digest: string)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-signer.ts:83\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n digest\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n verify\n \n \n \n \n \n \n \n \n verify(digest: string, signature: Signature)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-signer.ts:51\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n digest\n \n string\n \n\n \n No\n \n\n\n \n \n signature\n \n Signature\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n import { MutableKeyStore } from '@app/_pgp/pgp-key-store';\nimport { LoggingService } from '@app/_services/logging.service';\n\nconst openpgp = require('openpgp');\n\ninterface Signable {\n digest(): string;\n}\n\ninterface Signature {\n engine: string;\n algo: string;\n data: string;\n digest: string;\n}\n\ninterface Signer {\n onsign(signature: Signature): void;\n onverify(flag: boolean): void;\n fingerprint(): string;\n prepare(material: Signable): boolean;\n verify(digest: string, signature: Signature): void;\n sign(digest: string): Promise;\n}\n\nclass PGPSigner implements Signer {\n engine = 'pgp';\n algo = 'sha256';\n dgst: string;\n signature: Signature;\n keyStore: MutableKeyStore;\n onsign: (signature: Signature) => void;\n onverify: (flag: boolean) => void;\n loggingService: LoggingService;\n\n constructor(keyStore: MutableKeyStore) {\n this.keyStore = keyStore;\n this.onsign = (signature: Signature) => {};\n this.onverify = (flag: boolean) => {};\n }\n\n public fingerprint(): string {\n return this.keyStore.getFingerprint();\n }\n\n public prepare(material: Signable): boolean {\n this.dgst = material.digest();\n return true;\n }\n\n public verify(digest: string, signature: Signature): void {\n openpgp.signature\n .readArmored(signature.data)\n .then((sig) => {\n const opts = {\n message: openpgp.cleartext.fromText(digest),\n publicKeys: this.keyStore.getTrustedKeys(),\n signature: sig,\n };\n openpgp.verify(opts).then((v) => {\n let i = 0;\n for (i = 0; i {\n this.loggingService.sendErrorLevelMessage(e.message, this, { error: e });\n this.onverify(false);\n });\n }\n\n public async sign(digest: string): Promise {\n const m = openpgp.cleartext.fromText(digest);\n const pk = this.keyStore.getPrivateKey();\n if (!pk.isDecrypted()) {\n const password = window.prompt('password');\n await pk.decrypt(password);\n }\n const opts = {\n message: m,\n privateKeys: [pk],\n detached: true,\n };\n openpgp\n .sign(opts)\n .then((s) => {\n this.signature = {\n engine: this.engine,\n algo: this.algo,\n data: s.signature,\n // TODO: fix for browser later\n digest,\n };\n this.onsign(this.signature);\n })\n .catch((e) => {\n this.loggingService.sendErrorLevelMessage(e.message, this, { error: e });\n this.onsign(undefined);\n });\n }\n}\n\nexport { Signable, Signature, Signer, PGPSigner };\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/PagesComponent.html":{"url":"components/PagesComponent.html","title":"component - PagesComponent","body":"\n \n\n\n\n\n\n Components\n PagesComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/pages/pages.component.ts\n\n\n\n\n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-pages\n \n\n \n styleUrls\n ./pages.component.scss\n \n\n\n\n \n templateUrl\n ./pages.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n url\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in src/app/pages/pages.component.ts:10\n \n \n\n \n \n\n\n\n\n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n url\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : 'https://dashboard.sarafu.network/'\n \n \n \n \n Defined in src/app/pages/pages.component.ts:10\n \n \n\n\n \n \n\n\n\n\n\n \n import { ChangeDetectionStrategy, Component } from '@angular/core';\n\n@Component({\n selector: 'app-pages',\n templateUrl: './pages.component.html',\n styleUrls: ['./pages.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class PagesComponent {\n url: string = 'https://dashboard.sarafu.network/';\n\n constructor() {}\n}\n\n \n\n \n \n\n \n\n \n \n \n\n \n \n \n \n \n \n Home\n \n \n \n \n \n Your browser does not support iframes. \n \n \n \n \n \n \n \n \n \n\n\n \n\n \n \n ./pages.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Home Your browser does not support iframes. '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'PagesComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/PagesModule.html":{"url":"modules/PagesModule.html","title":"module - PagesModule","body":"\n \n\n\n\n\n Modules\n PagesModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_PagesModule\n\n\n\ncluster_PagesModule_imports\n\n\n\ncluster_PagesModule_declarations\n\n\n\n\nPagesComponent\n\nPagesComponent\n\n\n\nPagesModule\n\nPagesModule\n\nPagesModule -->\n\nPagesComponent->PagesModule\n\n\n\n\n\nPagesRoutingModule\n\nPagesRoutingModule\n\nPagesModule -->\n\nPagesRoutingModule->PagesModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nPagesModule -->\n\nSharedModule->PagesModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/pages/pages.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n PagesComponent\n \n \n \n \n Imports\n \n \n PagesRoutingModule\n \n \n SharedModule\n \n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { PagesRoutingModule } from '@pages/pages-routing.module';\nimport { PagesComponent } from '@pages/pages.component';\nimport { SharedModule } from '@app/shared/shared.module';\nimport { ChartsModule } from 'ng2-charts';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatSelectModule } from '@angular/material/select';\nimport { MatInputModule } from '@angular/material/input';\nimport { MatCardModule } from '@angular/material/card';\n\n@NgModule({\n declarations: [PagesComponent],\n imports: [\n CommonModule,\n PagesRoutingModule,\n SharedModule,\n ChartsModule,\n MatButtonModule,\n MatFormFieldModule,\n MatSelectModule,\n MatInputModule,\n MatCardModule,\n ],\n})\nexport class PagesModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/PagesRoutingModule.html":{"url":"modules/PagesRoutingModule.html","title":"module - PagesRoutingModule","body":"\n \n\n\n\n\n Modules\n PagesRoutingModule\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/pages/pages-routing.module.ts\n \n\n\n\n\n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { PagesComponent } from './pages.component';\n\nconst routes: Routes = [\n { path: 'home', component: PagesComponent },\n {\n path: 'tx',\n loadChildren: () =>\n \"import('@pages/transactions/transactions.module').then((m) => m.TransactionsModule)\",\n },\n {\n path: 'settings',\n loadChildren: () => \"import('@pages/settings/settings.module').then((m) => m.SettingsModule)\",\n },\n {\n path: 'accounts',\n loadChildren: () => \"import('@pages/accounts/accounts.module').then((m) => m.AccountsModule)\",\n },\n {\n path: 'tokens',\n loadChildren: () => \"import('@pages/tokens/tokens.module').then((m) => m.TokensModule)\",\n },\n {\n path: 'admin',\n loadChildren: () => \"import('@pages/admin/admin.module').then((m) => m.AdminModule)\",\n },\n { path: '**', redirectTo: 'home', pathMatch: 'full' },\n];\n\n@NgModule({\n imports: [RouterModule.forChild(routes)],\n exports: [RouterModule],\n})\nexport class PagesRoutingModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"directives/PasswordToggleDirective.html":{"url":"directives/PasswordToggleDirective.html","title":"directive - PasswordToggleDirective","body":"\n \n\n\n\n\n\n\n\n Directives\n PasswordToggleDirective\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/auth/_directives/password-toggle.directive.ts\n \n\n\n\n\n \n Metadata\n \n \n\n \n Selector\n [appPasswordToggle]\n \n\n \n \n \n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n togglePasswordVisibility\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n iconId\n \n \n id\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(elementRef: ElementRef, renderer: Renderer2)\n \n \n \n \n Defined in src/app/auth/_directives/password-toggle.directive.ts:11\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n elementRef\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n renderer\n \n \n Renderer2\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n iconId\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/auth/_directives/password-toggle.directive.ts:11\n \n \n \n \n \n \n \n \n \n id\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/auth/_directives/password-toggle.directive.ts:8\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n togglePasswordVisibility\n \n \n \n \n \n \n \ntogglePasswordVisibility()\n \n \n\n\n \n \n Defined in src/app/auth/_directives/password-toggle.directive.ts:19\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n\n\n \n\n\n \n import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\n\n@Directive({\n selector: '[appPasswordToggle]',\n})\nexport class PasswordToggleDirective {\n @Input()\n id: string;\n\n @Input()\n iconId: string;\n\n constructor(private elementRef: ElementRef, private renderer: Renderer2) {\n this.renderer.listen(this.elementRef.nativeElement, 'click', () => {\n this.togglePasswordVisibility();\n });\n }\n\n togglePasswordVisibility(): void {\n const password: HTMLElement = document.getElementById(this.id);\n const icon: HTMLElement = document.getElementById(this.iconId);\n // @ts-ignore\n if (password.type === 'password') {\n // @ts-ignore\n password.type = 'text';\n icon.classList.remove('fa-eye');\n icon.classList.add('fa-eye-slash');\n } else {\n // @ts-ignore\n password.type = 'password';\n icon.classList.remove('fa-eye-slash');\n icon.classList.add('fa-eye');\n }\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/RegistryService.html":{"url":"injectables/RegistryService.html","title":"injectable - RegistryService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n RegistryService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_services/registry.service.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n fileGetter\n \n \n registry\n \n \n web3\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n getRegistry\n \n \n getWeb3\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in src/app/_services/registry.service.ts:19\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n getRegistry\n \n \n \n \n \n \n \ngetRegistry()\n \n \n\n\n \n \n Defined in src/app/_services/registry.service.ts:26\n \n \n\n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n getWeb3\n \n \n \n \n \n \n \ngetWeb3()\n \n \n\n\n \n \n Defined in src/app/_services/registry.service.ts:30\n \n \n\n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n fileGetter\n \n \n \n \n \n \n Type : FileGetter\n\n \n \n \n \n Default value : new HttpGetter()\n \n \n \n \n Defined in src/app/_services/registry.service.ts:12\n \n \n\n\n \n \n \n \n \n \n \n \n \n registry\n \n \n \n \n \n \n Type : CICRegistry\n\n \n \n \n \n Default value : new CICRegistry(\n this.web3,\n environment.registryAddress,\n 'CICRegistry',\n this.fileGetter,\n ['../../assets/js/block-sync/data']\n )\n \n \n \n \n Defined in src/app/_services/registry.service.ts:13\n \n \n\n\n \n \n \n \n \n \n \n \n \n web3\n \n \n \n \n \n \n Type : Web3\n\n \n \n \n \n Default value : new Web3(environment.web3Provider)\n \n \n \n \n Defined in src/app/_services/registry.service.ts:11\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport Web3 from 'web3';\nimport { environment } from '@src/environments/environment';\nimport { CICRegistry, FileGetter } from 'cic-client';\nimport { HttpGetter } from '@app/_helpers';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class RegistryService {\n web3: Web3 = new Web3(environment.web3Provider);\n fileGetter: FileGetter = new HttpGetter();\n registry: CICRegistry = new CICRegistry(\n this.web3,\n environment.registryAddress,\n 'CICRegistry',\n this.fileGetter,\n ['../../assets/js/block-sync/data']\n );\n\n constructor() {\n this.registry.declaratorHelper.addTrust(environment.trustedDeclaratorAddress);\n this.registry.load();\n }\n\n getRegistry(): any {\n return this.registry;\n }\n\n getWeb3(): any {\n return this.web3;\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"guards/RoleGuard.html":{"url":"guards/RoleGuard.html","title":"guard - RoleGuard","body":"\n \n\n\n\n\n\n\n\n\n\n\n Guards\n RoleGuard\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_guards/role.guard.ts\n \n\n \n Description\n \n \n Role guard implementation.\nDictates access to routes depending on the user's role.\n\n \n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n canActivate\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(router: Router)\n \n \n \n \n Defined in src/app/_guards/role.guard.ts:21\n \n \n\n \n \n Instantiates the role guard class.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \nA service that provides navigation among views and URL manipulation capabilities.\n\n\n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n canActivate\n \n \n \n \n \n \n \ncanActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot)\n \n \n\n\n \n \n Defined in src/app/_guards/role.guard.ts:38\n \n \n\n\n \n \n Returns whether navigation to a specific route is acceptable.\nChecks if the user has the required role to access the route.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n route\n \n ActivatedRouteSnapshot\n \n\n \n No\n \n\n\n \n \nContains the information about a route associated with a component loaded in an outlet at a particular moment in time.\nActivatedRouteSnapshot can also be used to traverse the router state tree.\n\n\n \n \n \n state\n \n RouterStateSnapshot\n \n\n \n No\n \n\n\n \n \nRepresents the state of the router at a moment in time.\n\n\n \n \n \n \n \n \n \n \n Returns : Observable | Promise | boolean | UrlTree\n\n \n \n true - If the user's role matches with accepted roles.\n\n \n \n \n \n \n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport {\n ActivatedRouteSnapshot,\n CanActivate,\n Router,\n RouterStateSnapshot,\n UrlTree,\n} from '@angular/router';\n\n// Third party imports\nimport { Observable } from 'rxjs';\n\n/**\n * Role guard implementation.\n * Dictates access to routes depending on the user's role.\n */\n@Injectable({\n providedIn: 'root',\n})\nexport class RoleGuard implements CanActivate {\n /**\n * Instantiates the role guard class.\n *\n * @param router - A service that provides navigation among views and URL manipulation capabilities.\n */\n constructor(private router: Router) {}\n\n /**\n * Returns whether navigation to a specific route is acceptable.\n * Checks if the user has the required role to access the route.\n *\n * @param route - Contains the information about a route associated with a component loaded in an outlet at a particular moment in time.\n * ActivatedRouteSnapshot can also be used to traverse the router state tree.\n * @param state - Represents the state of the router at a moment in time.\n * @returns true - If the user's role matches with accepted roles.\n */\n canActivate(\n route: ActivatedRouteSnapshot,\n state: RouterStateSnapshot\n ): Observable | Promise | boolean | UrlTree {\n const currentUser = JSON.parse(localStorage.getItem(atob('CICADA_USER')));\n if (currentUser) {\n if (route.data.roles && route.data.roles.indexOf(currentUser.role) === -1) {\n this.router.navigate(['/']);\n return false;\n }\n return true;\n }\n\n this.router.navigate(['/auth'], { queryParams: { returnUrl: state.url } });\n return false;\n }\n}\n\n \n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"directives/RouterLinkDirectiveStub.html":{"url":"directives/RouterLinkDirectiveStub.html","title":"directive - RouterLinkDirectiveStub","body":"\n \n\n\n\n\n\n\n\n Directives\n RouterLinkDirectiveStub\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/testing/router-link-directive-stub.ts\n \n\n\n\n\n \n Metadata\n \n \n\n \n Selector\n [appRouterLink]\n \n\n \n \n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n navigatedTo\n \n \n \n \n\n\n \n \n Inputs\n \n \n \n \n \n \n routerLink\n \n \n \n \n\n\n\n \n \n HostListeners\n \n \n \n \n \n \n click\n \n \n \n \n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n routerLink\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/testing/router-link-directive-stub.ts:9\n \n \n \n \n\n\n\n \n HostListeners \n \n \n \n \n \n \n click\n \n \n \n \n \n \n \nclick()\n \n \n\n\n \n \n Defined in src/testing/router-link-directive-stub.ts:13\n \n \n\n\n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n navigatedTo\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Default value : null\n \n \n \n \n Defined in src/testing/router-link-directive-stub.ts:10\n \n \n\n\n \n \n\n\n\n \n\n\n \n import {Directive, HostListener, Input} from '@angular/core';\n\n@Directive({\n selector: '[appRouterLink]'\n})\n// tslint:disable-next-line:directive-class-suffix\nexport class RouterLinkDirectiveStub {\n // tslint:disable-next-line:no-input-rename\n @Input('routerLink') linkParams: any;\n navigatedTo: any = null;\n\n @HostListener('click')\n onClick(): void {\n this.navigatedTo = this.linkParams;\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"pipes/SafePipe.html":{"url":"pipes/SafePipe.html","title":"pipe - SafePipe","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n Pipes\n SafePipe\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/shared/_pipes/safe.pipe.ts\n \n\n\n\n \n Metadata\n \n \n \n Name\n safe\n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n transform\n \n \n \n \n \n \n \ntransform(url: string, ...args: unknown[])\n \n \n\n\n \n \n Defined in src/app/shared/_pipes/safe.pipe.ts:10\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n url\n \n string\n \n\n \n No\n \n\n\n \n \n args\n \n unknown[]\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : unknown\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n \n import { Pipe, PipeTransform } from '@angular/core';\nimport { DomSanitizer } from '@angular/platform-browser';\n\n@Pipe({\n name: 'safe',\n})\nexport class SafePipe implements PipeTransform {\n constructor(private sanitizer: DomSanitizer) {}\n\n transform(url: string, ...args: unknown[]): unknown {\n return this.sanitizer.bypassSecurityTrustResourceUrl(url);\n }\n}\n\n \n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/Settings.html":{"url":"classes/Settings.html","title":"class - Settings","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n Settings\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/settings.ts\n \n\n \n Description\n \n \n Settings class \n\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n registry\n \n \n scanFilter\n \n \n txHelper\n \n \n w3\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(scanFilter: any)\n \n \n \n \n Defined in src/app/_models/settings.ts:9\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n scanFilter\n \n \n any\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n registry\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/app/_models/settings.ts:8\n \n \n\n\n \n \n \n \n \n \n \n \n \n scanFilter\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/app/_models/settings.ts:7\n \n \n\n\n \n \n \n \n \n \n \n \n \n txHelper\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/app/_models/settings.ts:9\n \n \n\n\n \n \n \n \n \n \n \n \n \n w3\n \n \n \n \n \n \n Type : W3\n\n \n \n \n \n Default value : {\n engine: undefined,\n provider: undefined,\n }\n \n \n \n \n Defined in src/app/_models/settings.ts:3\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n \n class Settings {\n w3: W3 = {\n engine: undefined,\n provider: undefined,\n };\n scanFilter: any;\n registry: any;\n txHelper: any;\n\n constructor(scanFilter: any) {\n this.scanFilter = scanFilter;\n }\n}\n\n/** Web3 object interface */\ninterface W3 {\n engine: any;\n provider: any;\n}\n\n/** @exports */\nexport { Settings, W3 };\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/SettingsComponent.html":{"url":"components/SettingsComponent.html","title":"component - SettingsComponent","body":"\n \n\n\n\n\n\n Components\n SettingsComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/pages/settings/settings.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-settings\n \n\n \n styleUrls\n ./settings.component.scss\n \n\n\n\n \n templateUrl\n ./settings.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n dataSource\n \n \n date\n \n \n displayedColumns\n \n \n paginator\n \n \n sort\n \n \n trustedUsers\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n doFilter\n \n \n downloadCsv\n \n \n logout\n \n \n ngOnInit\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(authService: AuthService)\n \n \n \n \n Defined in src/app/pages/settings/settings.component.ts:22\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n authService\n \n \n AuthService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n doFilter\n \n \n \n \n \n \n \ndoFilter(value: string)\n \n \n\n\n \n \n Defined in src/app/pages/settings/settings.component.ts:35\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n downloadCsv\n \n \n \n \n \n \n \ndownloadCsv()\n \n \n\n\n \n \n Defined in src/app/pages/settings/settings.component.ts:39\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n logout\n \n \n \n \n \n \n \nlogout()\n \n \n\n\n \n \n Defined in src/app/pages/settings/settings.component.ts:43\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/pages/settings/settings.component.ts:26\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : MatTableDataSource\n\n \n \n \n \n Defined in src/app/pages/settings/settings.component.ts:17\n \n \n\n\n \n \n \n \n \n \n \n \n \n date\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/pages/settings/settings.component.ts:16\n \n \n\n\n \n \n \n \n \n \n \n \n \n displayedColumns\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : ['name', 'email', 'userId']\n \n \n \n \n Defined in src/app/pages/settings/settings.component.ts:18\n \n \n\n\n \n \n \n \n \n \n \n \n \n paginator\n \n \n \n \n \n \n Type : MatPaginator\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatPaginator)\n \n \n \n \n \n Defined in src/app/pages/settings/settings.component.ts:21\n \n \n\n\n \n \n \n \n \n \n \n \n \n sort\n \n \n \n \n \n \n Type : MatSort\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatSort)\n \n \n \n \n \n Defined in src/app/pages/settings/settings.component.ts:22\n \n \n\n\n \n \n \n \n \n \n \n \n \n trustedUsers\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Defined in src/app/pages/settings/settings.component.ts:19\n \n \n\n\n \n \n\n\n\n\n\n \n import { ChangeDetectionStrategy, Component, OnInit, ViewChild } from '@angular/core';\nimport { MatTableDataSource } from '@angular/material/table';\nimport { MatPaginator } from '@angular/material/paginator';\nimport { MatSort } from '@angular/material/sort';\nimport { AuthService } from '@app/_services';\nimport { Staff } from '@app/_models/staff';\nimport { exportCsv } from '@app/_helpers';\n\n@Component({\n selector: 'app-settings',\n templateUrl: './settings.component.html',\n styleUrls: ['./settings.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class SettingsComponent implements OnInit {\n date: string;\n dataSource: MatTableDataSource;\n displayedColumns: Array = ['name', 'email', 'userId'];\n trustedUsers: Array;\n\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n\n constructor(private authService: AuthService) {}\n\n ngOnInit(): void {\n const d = new Date();\n this.date = `${d.getDate()}/${d.getMonth()}/${d.getFullYear()}`;\n this.trustedUsers = this.authService.getTrustedUsers();\n this.dataSource = new MatTableDataSource(this.trustedUsers);\n this.dataSource.paginator = this.paginator;\n this.dataSource.sort = this.sort;\n }\n\n doFilter(value: string): void {\n this.dataSource.filter = value.trim().toLocaleLowerCase();\n }\n\n downloadCsv(): void {\n exportCsv(this.trustedUsers, 'users');\n }\n\n logout(): void {\n this.authService.logout();\n }\n}\n\n \n\n \n \n\n \n\n \n \n \n\n \n \n \n \n \n \n Home\n Settings\n \n \n \n \n \n \n SETTINGS\n \n \n Kobo Toolbox Credentials\n Username: admin_reserve \n Password: ******** \n \n \n \n Organization Settings\n Update your organization settings\n \n \n \n \n \n \n ACCOUNT MANAGEMENT\n \n \n Change Password\n Change your account password\n \n \n \n Two-step authentication\n Secure your account with two step verification\n \n \n \n LOGOUT ADMIN \n \n \n \n \n \n \n \n TRUSTED USERS\n EXPORT \n \n \n \n \n Filter \n \n search\n \n \n\n \n NAME \n {{user.name}} \n \n\n \n EMAIL \n {{user.email}} \n \n\n \n USER ID \n {{user.userid}} \n \n\n \n \n \n\n \n\n \n \n \n \n \n \n \n \n \n \n\n\n \n\n \n \n ./settings.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Home Settings SETTINGS Kobo Toolbox Credentials Username: admin_reserve Password: ******** Organization Settings Update your organization settings ACCOUNT MANAGEMENT Change Password Change your account password Two-step authentication Secure your account with two step verification LOGOUT ADMIN TRUSTED USERS EXPORT Filter search NAME {{user.name}} EMAIL {{user.email}} USER ID {{user.userid}} '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'SettingsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/SettingsModule.html":{"url":"modules/SettingsModule.html","title":"module - SettingsModule","body":"\n \n\n\n\n\n Modules\n SettingsModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_SettingsModule\n\n\n\ncluster_SettingsModule_declarations\n\n\n\ncluster_SettingsModule_imports\n\n\n\n\nOrganizationComponent\n\nOrganizationComponent\n\n\n\nSettingsModule\n\nSettingsModule\n\nSettingsModule -->\n\nOrganizationComponent->SettingsModule\n\n\n\n\n\nSettingsComponent\n\nSettingsComponent\n\nSettingsModule -->\n\nSettingsComponent->SettingsModule\n\n\n\n\n\nSettingsRoutingModule\n\nSettingsRoutingModule\n\nSettingsModule -->\n\nSettingsRoutingModule->SettingsModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nSettingsModule -->\n\nSharedModule->SettingsModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/pages/settings/settings.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n OrganizationComponent\n \n \n SettingsComponent\n \n \n \n \n Imports\n \n \n SettingsRoutingModule\n \n \n SharedModule\n \n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { SettingsRoutingModule } from '@pages/settings/settings-routing.module';\nimport { SettingsComponent } from '@pages/settings/settings.component';\nimport { SharedModule } from '@app/shared/shared.module';\nimport { OrganizationComponent } from '@pages/settings/organization/organization.component';\nimport { MatTableModule } from '@angular/material/table';\nimport { MatSortModule } from '@angular/material/sort';\nimport { MatPaginatorModule } from '@angular/material/paginator';\nimport { MatInputModule } from '@angular/material/input';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatIconModule } from '@angular/material/icon';\nimport { MatCardModule } from '@angular/material/card';\nimport { MatRadioModule } from '@angular/material/radio';\nimport { MatCheckboxModule } from '@angular/material/checkbox';\nimport { MatSelectModule } from '@angular/material/select';\nimport { MatMenuModule } from '@angular/material/menu';\nimport { ReactiveFormsModule } from '@angular/forms';\n\n@NgModule({\n declarations: [SettingsComponent, OrganizationComponent],\n imports: [\n CommonModule,\n SettingsRoutingModule,\n SharedModule,\n MatTableModule,\n MatSortModule,\n MatPaginatorModule,\n MatInputModule,\n MatFormFieldModule,\n MatButtonModule,\n MatIconModule,\n MatCardModule,\n MatRadioModule,\n MatCheckboxModule,\n MatSelectModule,\n MatMenuModule,\n ReactiveFormsModule,\n ],\n})\nexport class SettingsModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/SettingsRoutingModule.html":{"url":"modules/SettingsRoutingModule.html","title":"module - SettingsRoutingModule","body":"\n \n\n\n\n\n Modules\n SettingsRoutingModule\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/pages/settings/settings-routing.module.ts\n \n\n\n\n\n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { SettingsComponent } from '@pages/settings/settings.component';\nimport { OrganizationComponent } from '@pages/settings/organization/organization.component';\n\nconst routes: Routes = [\n { path: '', component: SettingsComponent },\n { path: 'organization', component: OrganizationComponent },\n { path: '**', redirectTo: '', pathMatch: 'full' },\n];\n\n@NgModule({\n imports: [RouterModule.forChild(routes)],\n exports: [RouterModule],\n})\nexport class SettingsRoutingModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/SharedModule.html":{"url":"modules/SharedModule.html","title":"module - SharedModule","body":"\n \n\n\n\n\n Modules\n SharedModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_SharedModule\n\n\n\ncluster_SharedModule_exports\n\n\n\ncluster_SharedModule_declarations\n\n\n\n\nErrorDialogComponent\n\nErrorDialogComponent\n\n\n\nSharedModule\n\nSharedModule\n\nSharedModule -->\n\nErrorDialogComponent->SharedModule\n\n\n\n\n\nFooterComponent\n\nFooterComponent\n\nSharedModule -->\n\nFooterComponent->SharedModule\n\n\n\n\n\nMenuSelectionDirective\n\nMenuSelectionDirective\n\nSharedModule -->\n\nMenuSelectionDirective->SharedModule\n\n\n\n\n\nMenuToggleDirective\n\nMenuToggleDirective\n\nSharedModule -->\n\nMenuToggleDirective->SharedModule\n\n\n\n\n\nNetworkStatusComponent\n\nNetworkStatusComponent\n\nSharedModule -->\n\nNetworkStatusComponent->SharedModule\n\n\n\n\n\nSafePipe\n\nSafePipe\n\nSharedModule -->\n\nSafePipe->SharedModule\n\n\n\n\n\nSidebarComponent\n\nSidebarComponent\n\nSharedModule -->\n\nSidebarComponent->SharedModule\n\n\n\n\n\nTokenRatioPipe\n\nTokenRatioPipe\n\nSharedModule -->\n\nTokenRatioPipe->SharedModule\n\n\n\n\n\nTopbarComponent\n\nTopbarComponent\n\nSharedModule -->\n\nTopbarComponent->SharedModule\n\n\n\n\n\nFooterComponent \n\nFooterComponent \n\nFooterComponent -->\n\nSharedModule->FooterComponent \n\n\n\n\n\nMenuSelectionDirective \n\nMenuSelectionDirective \n\nMenuSelectionDirective -->\n\nSharedModule->MenuSelectionDirective \n\n\n\n\n\nNetworkStatusComponent \n\nNetworkStatusComponent \n\nNetworkStatusComponent -->\n\nSharedModule->NetworkStatusComponent \n\n\n\n\n\nSafePipe \n\nSafePipe \n\nSafePipe -->\n\nSharedModule->SafePipe \n\n\n\n\n\nSidebarComponent \n\nSidebarComponent \n\nSidebarComponent -->\n\nSharedModule->SidebarComponent \n\n\n\n\n\nTokenRatioPipe \n\nTokenRatioPipe \n\nTokenRatioPipe -->\n\nSharedModule->TokenRatioPipe \n\n\n\n\n\nTopbarComponent \n\nTopbarComponent \n\nTopbarComponent -->\n\nSharedModule->TopbarComponent \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/shared/shared.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n ErrorDialogComponent\n \n \n FooterComponent\n \n \n MenuSelectionDirective\n \n \n MenuToggleDirective\n \n \n NetworkStatusComponent\n \n \n SafePipe\n \n \n SidebarComponent\n \n \n TokenRatioPipe\n \n \n TopbarComponent\n \n \n \n \n Exports\n \n \n FooterComponent\n \n \n MenuSelectionDirective\n \n \n NetworkStatusComponent\n \n \n SafePipe\n \n \n SidebarComponent\n \n \n TokenRatioPipe\n \n \n TopbarComponent\n \n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { TopbarComponent } from '@app/shared/topbar/topbar.component';\nimport { FooterComponent } from '@app/shared/footer/footer.component';\nimport { SidebarComponent } from '@app/shared/sidebar/sidebar.component';\nimport { MenuSelectionDirective } from '@app/shared/_directives/menu-selection.directive';\nimport { MenuToggleDirective } from '@app/shared/_directives/menu-toggle.directive';\nimport { RouterModule } from '@angular/router';\nimport { MatIconModule } from '@angular/material/icon';\nimport { TokenRatioPipe } from '@app/shared/_pipes/token-ratio.pipe';\nimport { ErrorDialogComponent } from '@app/shared/error-dialog/error-dialog.component';\nimport { MatDialogModule } from '@angular/material/dialog';\nimport { SafePipe } from '@app/shared/_pipes/safe.pipe';\nimport { NetworkStatusComponent } from './network-status/network-status.component';\n\n@NgModule({\n declarations: [\n TopbarComponent,\n FooterComponent,\n SidebarComponent,\n MenuSelectionDirective,\n MenuToggleDirective,\n TokenRatioPipe,\n ErrorDialogComponent,\n SafePipe,\n NetworkStatusComponent,\n ],\n exports: [\n TopbarComponent,\n FooterComponent,\n SidebarComponent,\n MenuSelectionDirective,\n TokenRatioPipe,\n SafePipe,\n NetworkStatusComponent,\n ],\n imports: [CommonModule, RouterModule, MatIconModule, MatDialogModule],\n})\nexport class SharedModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/SidebarComponent.html":{"url":"components/SidebarComponent.html","title":"component - SidebarComponent","body":"\n \n\n\n\n\n\n Components\n SidebarComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/shared/sidebar/sidebar.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-sidebar\n \n\n \n styleUrls\n ./sidebar.component.scss\n \n\n\n\n \n templateUrl\n ./sidebar.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in src/app/shared/sidebar/sidebar.component.ts:9\n \n \n\n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/shared/sidebar/sidebar.component.ts:12\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n\n\n\n\n \n import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'app-sidebar',\n templateUrl: './sidebar.component.html',\n styleUrls: ['./sidebar.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class SidebarComponent implements OnInit {\n constructor() {}\n\n ngOnInit(): void {}\n}\n\n \n\n \n \n\n \n\n \n \n \n \n CICADA\n \n\n \n \n \n \n Dashboard \n \n \n \n \n \n Accounts \n \n \n \n \n \n Transactions \n \n \n \n \n \n Tokens \n \n \n \n \n \n Settings \n \n \n \n \n \n Admin \n \n \n \n \n\n\n\n \n\n \n \n ./sidebar.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' CICADA Dashboard Accounts Transactions Tokens Settings Admin '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'SidebarComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/SidebarStubComponent.html":{"url":"components/SidebarStubComponent.html","title":"component - SidebarStubComponent","body":"\n \n\n\n\n\n\n Components\n SidebarStubComponent\n\n\n\n \n Info\n \n \n Source\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/testing/shared-module-stub.ts\n\n\n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n app-sidebar\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n import {Component} from '@angular/core';\n\n@Component({selector: 'app-sidebar', template: ''})\nexport class SidebarStubComponent {}\n\n@Component({selector: 'app-topbar', template: ''})\nexport class TopbarStubComponent {}\n\n@Component({selector: 'app-footer', template: ''})\nexport class FooterStubComponent {}\n\n \n\n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'SidebarStubComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Signable.html":{"url":"interfaces/Signable.html","title":"interface - Signable","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Signable\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_pgp/pgp-signer.ts\n \n\n\n\n \n Index\n \n \n \n \n Methods\n \n \n \n \n \n \n digest\n \n \n \n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n digest\n \n \n \n \n \n \n \ndigest()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-signer.ts:7\n \n \n\n\n \n \n\n \n Returns : string\n\n \n \n \n \n \n\n\n \n\n\n \n import { MutableKeyStore } from '@app/_pgp/pgp-key-store';\nimport { LoggingService } from '@app/_services/logging.service';\n\nconst openpgp = require('openpgp');\n\ninterface Signable {\n digest(): string;\n}\n\ninterface Signature {\n engine: string;\n algo: string;\n data: string;\n digest: string;\n}\n\ninterface Signer {\n onsign(signature: Signature): void;\n onverify(flag: boolean): void;\n fingerprint(): string;\n prepare(material: Signable): boolean;\n verify(digest: string, signature: Signature): void;\n sign(digest: string): Promise;\n}\n\nclass PGPSigner implements Signer {\n engine = 'pgp';\n algo = 'sha256';\n dgst: string;\n signature: Signature;\n keyStore: MutableKeyStore;\n onsign: (signature: Signature) => void;\n onverify: (flag: boolean) => void;\n loggingService: LoggingService;\n\n constructor(keyStore: MutableKeyStore) {\n this.keyStore = keyStore;\n this.onsign = (signature: Signature) => {};\n this.onverify = (flag: boolean) => {};\n }\n\n public fingerprint(): string {\n return this.keyStore.getFingerprint();\n }\n\n public prepare(material: Signable): boolean {\n this.dgst = material.digest();\n return true;\n }\n\n public verify(digest: string, signature: Signature): void {\n openpgp.signature\n .readArmored(signature.data)\n .then((sig) => {\n const opts = {\n message: openpgp.cleartext.fromText(digest),\n publicKeys: this.keyStore.getTrustedKeys(),\n signature: sig,\n };\n openpgp.verify(opts).then((v) => {\n let i = 0;\n for (i = 0; i {\n this.loggingService.sendErrorLevelMessage(e.message, this, { error: e });\n this.onverify(false);\n });\n }\n\n public async sign(digest: string): Promise {\n const m = openpgp.cleartext.fromText(digest);\n const pk = this.keyStore.getPrivateKey();\n if (!pk.isDecrypted()) {\n const password = window.prompt('password');\n await pk.decrypt(password);\n }\n const opts = {\n message: m,\n privateKeys: [pk],\n detached: true,\n };\n openpgp\n .sign(opts)\n .then((s) => {\n this.signature = {\n engine: this.engine,\n algo: this.algo,\n data: s.signature,\n // TODO: fix for browser later\n digest,\n };\n this.onsign(this.signature);\n })\n .catch((e) => {\n this.loggingService.sendErrorLevelMessage(e.message, this, { error: e });\n this.onsign(undefined);\n });\n }\n}\n\nexport { Signable, Signature, Signer, PGPSigner };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Signature.html":{"url":"interfaces/Signature.html","title":"interface - Signature","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Signature\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/account.ts\n \n\n \n Description\n \n \n Meta signature interface \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n algo\n \n \n data\n \n \n digest\n \n \n engine\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n algo\n \n \n \n \n algo: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n data\n \n \n \n \n data: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n digest\n \n \n \n \n digest: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n engine\n \n \n \n \n engine: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n interface AccountDetails {\n date_registered: number;\n gender: string;\n age?: string;\n type?: string;\n balance?: number;\n identities: {\n evm: {\n 'bloxberg:8996': string[];\n 'oldchain:1': string[];\n };\n latitude: number;\n longitude: number;\n };\n location: {\n area?: string;\n area_name: string;\n area_type?: string;\n };\n products: string[];\n category?: string;\n vcard: {\n email: [\n {\n value: string;\n }\n ];\n fn: [\n {\n value: string;\n }\n ];\n n: [\n {\n value: string[];\n }\n ];\n tel: [\n {\n meta: {\n TYP: string[];\n };\n value: string;\n }\n ];\n version: [\n {\n value: string;\n }\n ];\n };\n}\n\n/** Meta signature interface */\ninterface Signature {\n algo: string;\n data: string;\n digest: string;\n engine: string;\n}\n\n/** Meta object interface */\ninterface Meta {\n data: AccountDetails;\n id: string;\n signature: Signature;\n}\n\n/** Meta response interface */\ninterface MetaResponse {\n id: string;\n m: Meta;\n}\n\n/** Default account data object */\nconst defaultAccount: AccountDetails = {\n date_registered: Date.now(),\n gender: 'other',\n identities: {\n evm: {\n 'bloxberg:8996': [''],\n 'oldchain:1': [''],\n },\n latitude: 0,\n longitude: 0,\n },\n location: {\n area_name: 'Kilifi',\n },\n products: [],\n vcard: {\n email: [\n {\n value: '',\n },\n ],\n fn: [\n {\n value: 'Sarafu Contract',\n },\n ],\n n: [\n {\n value: ['Sarafu', 'Contract'],\n },\n ],\n tel: [\n {\n meta: {\n TYP: [],\n },\n value: '',\n },\n ],\n version: [\n {\n value: '3.0',\n },\n ],\n },\n};\n\n/** @exports */\nexport { AccountDetails, Meta, MetaResponse, Signature, defaultAccount };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Signature-1.html":{"url":"interfaces/Signature-1.html","title":"interface - Signature-1","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Signature\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_pgp/pgp-signer.ts\n \n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n algo\n \n \n data\n \n \n digest\n \n \n engine\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n algo\n \n \n \n \n algo: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n data\n \n \n \n \n data: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n digest\n \n \n \n \n digest: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n engine\n \n \n \n \n engine: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { MutableKeyStore } from '@app/_pgp/pgp-key-store';\nimport { LoggingService } from '@app/_services/logging.service';\n\nconst openpgp = require('openpgp');\n\ninterface Signable {\n digest(): string;\n}\n\ninterface Signature {\n engine: string;\n algo: string;\n data: string;\n digest: string;\n}\n\ninterface Signer {\n onsign(signature: Signature): void;\n onverify(flag: boolean): void;\n fingerprint(): string;\n prepare(material: Signable): boolean;\n verify(digest: string, signature: Signature): void;\n sign(digest: string): Promise;\n}\n\nclass PGPSigner implements Signer {\n engine = 'pgp';\n algo = 'sha256';\n dgst: string;\n signature: Signature;\n keyStore: MutableKeyStore;\n onsign: (signature: Signature) => void;\n onverify: (flag: boolean) => void;\n loggingService: LoggingService;\n\n constructor(keyStore: MutableKeyStore) {\n this.keyStore = keyStore;\n this.onsign = (signature: Signature) => {};\n this.onverify = (flag: boolean) => {};\n }\n\n public fingerprint(): string {\n return this.keyStore.getFingerprint();\n }\n\n public prepare(material: Signable): boolean {\n this.dgst = material.digest();\n return true;\n }\n\n public verify(digest: string, signature: Signature): void {\n openpgp.signature\n .readArmored(signature.data)\n .then((sig) => {\n const opts = {\n message: openpgp.cleartext.fromText(digest),\n publicKeys: this.keyStore.getTrustedKeys(),\n signature: sig,\n };\n openpgp.verify(opts).then((v) => {\n let i = 0;\n for (i = 0; i {\n this.loggingService.sendErrorLevelMessage(e.message, this, { error: e });\n this.onverify(false);\n });\n }\n\n public async sign(digest: string): Promise {\n const m = openpgp.cleartext.fromText(digest);\n const pk = this.keyStore.getPrivateKey();\n if (!pk.isDecrypted()) {\n const password = window.prompt('password');\n await pk.decrypt(password);\n }\n const opts = {\n message: m,\n privateKeys: [pk],\n detached: true,\n };\n openpgp\n .sign(opts)\n .then((s) => {\n this.signature = {\n engine: this.engine,\n algo: this.algo,\n data: s.signature,\n // TODO: fix for browser later\n digest,\n };\n this.onsign(this.signature);\n })\n .catch((e) => {\n this.loggingService.sendErrorLevelMessage(e.message, this, { error: e });\n this.onsign(undefined);\n });\n }\n}\n\nexport { Signable, Signature, Signer, PGPSigner };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Signer.html":{"url":"interfaces/Signer.html","title":"interface - Signer","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Signer\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_pgp/pgp-signer.ts\n \n\n\n\n \n Index\n \n \n \n \n Methods\n \n \n \n \n \n \n fingerprint\n \n \n onsign\n \n \n onverify\n \n \n prepare\n \n \n sign\n \n \n verify\n \n \n \n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n fingerprint\n \n \n \n \n \n \n \nfingerprint()\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-signer.ts:20\n \n \n\n\n \n \n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n onsign\n \n \n \n \n \n \n \nonsign(signature: Signature)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-signer.ts:18\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n signature\n \n Signature\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n onverify\n \n \n \n \n \n \n \nonverify(flag: boolean)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-signer.ts:19\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n flag\n \n boolean\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n prepare\n \n \n \n \n \n \n \nprepare(material: Signable)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-signer.ts:21\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n material\n \n Signable\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n sign\n \n \n \n \n \n \n \nsign(digest: string)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-signer.ts:23\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n digest\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n verify\n \n \n \n \n \n \n \nverify(digest: string, signature: Signature)\n \n \n\n\n \n \n Defined in src/app/_pgp/pgp-signer.ts:22\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n digest\n \n string\n \n\n \n No\n \n\n\n \n \n signature\n \n Signature\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n \n import { MutableKeyStore } from '@app/_pgp/pgp-key-store';\nimport { LoggingService } from '@app/_services/logging.service';\n\nconst openpgp = require('openpgp');\n\ninterface Signable {\n digest(): string;\n}\n\ninterface Signature {\n engine: string;\n algo: string;\n data: string;\n digest: string;\n}\n\ninterface Signer {\n onsign(signature: Signature): void;\n onverify(flag: boolean): void;\n fingerprint(): string;\n prepare(material: Signable): boolean;\n verify(digest: string, signature: Signature): void;\n sign(digest: string): Promise;\n}\n\nclass PGPSigner implements Signer {\n engine = 'pgp';\n algo = 'sha256';\n dgst: string;\n signature: Signature;\n keyStore: MutableKeyStore;\n onsign: (signature: Signature) => void;\n onverify: (flag: boolean) => void;\n loggingService: LoggingService;\n\n constructor(keyStore: MutableKeyStore) {\n this.keyStore = keyStore;\n this.onsign = (signature: Signature) => {};\n this.onverify = (flag: boolean) => {};\n }\n\n public fingerprint(): string {\n return this.keyStore.getFingerprint();\n }\n\n public prepare(material: Signable): boolean {\n this.dgst = material.digest();\n return true;\n }\n\n public verify(digest: string, signature: Signature): void {\n openpgp.signature\n .readArmored(signature.data)\n .then((sig) => {\n const opts = {\n message: openpgp.cleartext.fromText(digest),\n publicKeys: this.keyStore.getTrustedKeys(),\n signature: sig,\n };\n openpgp.verify(opts).then((v) => {\n let i = 0;\n for (i = 0; i {\n this.loggingService.sendErrorLevelMessage(e.message, this, { error: e });\n this.onverify(false);\n });\n }\n\n public async sign(digest: string): Promise {\n const m = openpgp.cleartext.fromText(digest);\n const pk = this.keyStore.getPrivateKey();\n if (!pk.isDecrypted()) {\n const password = window.prompt('password');\n await pk.decrypt(password);\n }\n const opts = {\n message: m,\n privateKeys: [pk],\n detached: true,\n };\n openpgp\n .sign(opts)\n .then((s) => {\n this.signature = {\n engine: this.engine,\n algo: this.algo,\n data: s.signature,\n // TODO: fix for browser later\n digest,\n };\n this.onsign(this.signature);\n })\n .catch((e) => {\n this.loggingService.sendErrorLevelMessage(e.message, this, { error: e });\n this.onsign(undefined);\n });\n }\n}\n\nexport { Signable, Signature, Signer, PGPSigner };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Staff.html":{"url":"interfaces/Staff.html","title":"interface - Staff","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Staff\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/staff.ts\n \n\n \n Description\n \n \n Staff object interface \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n comment\n \n \n email\n \n \n name\n \n \n tag\n \n \n userid\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n comment\n \n \n \n \n comment: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n email\n \n \n \n \n email: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n tag\n \n \n \n \n tag: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n userid\n \n \n \n \n userid: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n interface Staff {\n comment: string;\n email: string;\n name: string;\n tag: number;\n userid: string;\n}\n\n/** @exports */\nexport { Staff };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Token.html":{"url":"interfaces/Token.html","title":"interface - Token","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Token\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/token.ts\n \n\n \n Description\n \n \n Token object interface \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n address\n \n \n decimals\n \n \n name\n \n \n Optional\n owner\n \n \n Optional\n reserveRatio\n \n \n reserves\n \n \n supply\n \n \n symbol\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n address\n \n \n \n \n address: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n decimals\n \n \n \n \n decimals: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n owner\n \n \n \n \n owner: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n reserveRatio\n \n \n \n \n reserveRatio: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n reserves\n \n \n \n \n reserves: literal type\n\n \n \n\n\n \n \n Type : literal type\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n supply\n \n \n \n \n supply: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n symbol\n \n \n \n \n symbol: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n interface Token {\n name: string;\n symbol: string;\n address: string;\n supply: string;\n decimals: string;\n reserves: {\n '0xa686005CE37Dce7738436256982C3903f2E4ea8E'?: {\n weight: string;\n balance: string;\n };\n };\n reserveRatio?: string;\n owner?: string;\n}\n\n/** @exports */\nexport { Token };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/TokenDetailsComponent.html":{"url":"components/TokenDetailsComponent.html","title":"component - TokenDetailsComponent","body":"\n \n\n\n\n\n\n Components\n TokenDetailsComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/pages/tokens/token-details/token-details.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-token-details\n \n\n \n styleUrls\n ./token-details.component.scss\n \n\n\n\n \n templateUrl\n ./token-details.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n token\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(route: ActivatedRoute, tokenService: TokenService)\n \n \n \n \n Defined in src/app/pages/tokens/token-details/token-details.component.ts:14\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n route\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n tokenService\n \n \n TokenService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/pages/tokens/token-details/token-details.component.ts:27\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n token\n \n \n \n \n \n \n Type : Token\n\n \n \n \n \n Defined in src/app/pages/tokens/token-details/token-details.component.ts:14\n \n \n\n\n \n \n\n\n\n\n\n \n import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';\nimport { ActivatedRoute, Params } from '@angular/router';\nimport { TokenService } from '@app/_services';\nimport { first } from 'rxjs/operators';\nimport { Token } from '../../../_models';\n\n@Component({\n selector: 'app-token-details',\n templateUrl: './token-details.component.html',\n styleUrls: ['./token-details.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TokenDetailsComponent implements OnInit {\n token: Token;\n\n constructor(private route: ActivatedRoute, private tokenService: TokenService) {\n this.route.paramMap.subscribe((params: Params) => {\n this.tokenService\n .getTokenBySymbol(params.get('id'))\n .pipe(first())\n .subscribe((res) => {\n this.token = res;\n });\n });\n }\n\n ngOnInit(): void {}\n}\n\n \n\n \n \n\n \n\n \n \n \n\n \n \n \n \n \n \n Home\n Tokens\n {{token.name}}\n \n \n \n \n \n Token\n \n \n \n Name: {{token.name}}\n \n \n Symbol: {{token.symbol}}\n \n \n Address: {{token.address}}\n \n \n Details: A community inclusive currency for trading among lower to middle income societies.\n \n \n Supply: {{token.supply | tokenRatio}}\n \n \n Reserve\n \n Weight: {{token.reserveRatio}}\n \n \n Owner: {{token.owner}}\n \n \n \n \n \n \n \n \n \n \n \n\n\n\n \n\n \n \n ./token-details.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Home Tokens {{token.name}} Token Name: {{token.name}} Symbol: {{token.symbol}} Address: {{token.address}} Details: A community inclusive currency for trading among lower to middle income societies. Supply: {{token.supply | tokenRatio}} Reserve Weight: {{token.reserveRatio}} Owner: {{token.owner}} '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'TokenDetailsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"pipes/TokenRatioPipe.html":{"url":"pipes/TokenRatioPipe.html","title":"pipe - TokenRatioPipe","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n Pipes\n TokenRatioPipe\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/shared/_pipes/token-ratio.pipe.ts\n \n\n\n\n \n Metadata\n \n \n \n Name\n tokenRatio\n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n transform\n \n \n \n \n \n \n \ntransform(value: any, ...args: any[])\n \n \n\n\n \n \n Defined in src/app/shared/_pipes/token-ratio.pipe.ts:5\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n any\n \n\n \n No\n \n\n\n \n \n args\n \n any[]\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n \n import { Pipe, PipeTransform } from '@angular/core';\n\n@Pipe({ name: 'tokenRatio' })\nexport class TokenRatioPipe implements PipeTransform {\n transform(value: any, ...args): any {\n return Number(value) / Math.pow(10, 6);\n }\n}\n\n \n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/TokenRegistry.html":{"url":"classes/TokenRegistry.html","title":"class - TokenRegistry","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n TokenRegistry\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_eth/token-registry.ts\n \n\n \n Description\n \n \n Provides an instance of the token registry contract.\nAllows querying of tokens that have been registered as valid tokens in the network.\n\n \n\n\n\n \n Example\n \n \n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n contract\n \n \n contractAddress\n \n \n signerAddress\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n Async\n addressOf\n \n \n Public\n Async\n entry\n \n \n Public\n Async\n totalTokens\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(contractAddress: string, signerAddress?: string)\n \n \n \n \n Defined in src/app/_eth/token-registry.ts:25\n \n \n\n \n \n Create a connection to the deployed token registry contract.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n contractAddress\n \n \n string\n \n \n \n No\n \n \n \n \nThe deployed token registry contract's address.\n\n\n \n \n \n signerAddress\n \n \n string\n \n \n \n Yes\n \n \n \n \nThe account address of the account that deployed the token registry contract.\n\n\n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n contract\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/app/_eth/token-registry.ts:21\n \n \n\n \n \n The instance of the token registry contract. \n\n \n \n\n \n \n \n \n \n \n \n \n \n contractAddress\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/_eth/token-registry.ts:23\n \n \n\n \n \n The deployed token registry contract's address. \n\n \n \n\n \n \n \n \n \n \n \n \n \n signerAddress\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/_eth/token-registry.ts:25\n \n \n\n \n \n The account address of the account that deployed the token registry contract. \n\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Public\n Async\n addressOf\n \n \n \n \n \n \n \n \n addressOf(identifier: string)\n \n \n\n\n \n \n Defined in src/app/_eth/token-registry.ts:56\n \n \n\n\n \n \n Returns the address of the token with a given identifier.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n identifier\n \n string\n \n\n \n No\n \n\n\n \n \nThe name or identifier of the token to be fetched from the token registry.\n\n\n \n \n \n \n \n \n Example :\n \n Prints the address of the token with the identifier 'sarafu':\n```typescript\n\nconsole.log(await addressOf('sarafu'));\n```\n\n \n \n \n Returns : Promise\n\n \n \n The address of the token assigned the specified identifier in the token registry.\n\n \n \n \n \n \n \n \n \n \n \n \n \n Public\n Async\n entry\n \n \n \n \n \n \n \n \n entry(serial: number)\n \n \n\n\n \n \n Defined in src/app/_eth/token-registry.ts:74\n \n \n\n\n \n \n Returns the address of a token with the given serial in the token registry.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n serial\n \n number\n \n\n \n No\n \n\n\n \n \nThe serial number of the token to be fetched.\n\n\n \n \n \n \n \n \n Example :\n \n Prints the address of the token with the serial '2':\n```typescript\n\nconsole.log(await entry(2));\n```\n\n \n \n \n Returns : Promise\n\n \n \n The address of the token with the specified serial number.\n\n \n \n \n \n \n \n \n \n \n \n \n \n Public\n Async\n totalTokens\n \n \n \n \n \n \n \n \n totalTokens()\n \n \n\n\n \n \n Defined in src/app/_eth/token-registry.ts:90\n \n \n\n\n \n \n Returns the total number of tokens that have been registered in the network.\n\n\n \n Example :\n \n Prints the total number of registered tokens:\n```typescript\n\nconsole.log(await totalTokens());\n```\n\n \n \n \n Returns : Promise\n\n \n \n The total number of registered tokens.\n\n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n import Web3 from 'web3';\n\n// Application imports\nimport { environment } from '@src/environments/environment';\n\n/** Fetch the token registry contract's ABI. */\nconst abi: Array = require('@src/assets/js/block-sync/data/TokenUniqueSymbolIndex.json');\n/** Establish a connection to the blockchain network. */\nconst web3: Web3 = new Web3(environment.web3Provider);\n\n/**\n * Provides an instance of the token registry contract.\n * Allows querying of tokens that have been registered as valid tokens in the network.\n *\n * @remarks\n * This is our interface to the token registry contract.\n */\nexport class TokenRegistry {\n /** The instance of the token registry contract. */\n contract: any;\n /** The deployed token registry contract's address. */\n contractAddress: string;\n /** The account address of the account that deployed the token registry contract. */\n signerAddress: string;\n\n /**\n * Create a connection to the deployed token registry contract.\n *\n * @param contractAddress - The deployed token registry contract's address.\n * @param signerAddress - The account address of the account that deployed the token registry contract.\n */\n constructor(contractAddress: string, signerAddress?: string) {\n this.contractAddress = contractAddress;\n this.contract = new web3.eth.Contract(abi, this.contractAddress);\n if (signerAddress) {\n this.signerAddress = signerAddress;\n } else {\n this.signerAddress = web3.eth.accounts[0];\n }\n }\n\n /**\n * Returns the address of the token with a given identifier.\n *\n * @async\n * @example\n * Prints the address of the token with the identifier 'sarafu':\n * ```typescript\n * console.log(await addressOf('sarafu'));\n * ```\n *\n * @param identifier - The name or identifier of the token to be fetched from the token registry.\n * @returns The address of the token assigned the specified identifier in the token registry.\n */\n public async addressOf(identifier: string): Promise {\n const id: string = web3.eth.abi.encodeParameter('bytes32', web3.utils.toHex(identifier));\n return await this.contract.methods.addressOf(id).call();\n }\n\n /**\n * Returns the address of a token with the given serial in the token registry.\n *\n * @async\n * @example\n * Prints the address of the token with the serial '2':\n * ```typescript\n * console.log(await entry(2));\n * ```\n *\n * @param serial - The serial number of the token to be fetched.\n * @return The address of the token with the specified serial number.\n */\n public async entry(serial: number): Promise {\n return await this.contract.methods.entry(serial).call();\n }\n\n /**\n * Returns the total number of tokens that have been registered in the network.\n *\n * @async\n * @example\n * Prints the total number of registered tokens:\n * ```typescript\n * console.log(await totalTokens());\n * ```\n *\n * @returns The total number of registered tokens.\n */\n public async totalTokens(): Promise {\n return await this.contract.methods.entryCount().call();\n }\n}\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/TokenService.html":{"url":"injectables/TokenService.html","title":"injectable - TokenService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n TokenService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_services/token.service.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n LoadEvent\n \n \n registry\n \n \n tokenRegistry\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Async\n getTokenBalance\n \n \n getTokenBySymbol\n \n \n Async\n getTokens\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(httpClient: HttpClient, registryService: RegistryService)\n \n \n \n \n Defined in src/app/_services/token.service.ts:15\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n httpClient\n \n \n HttpClient\n \n \n \n No\n \n \n \n \n registryService\n \n \n RegistryService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Async\n getTokenBalance\n \n \n \n \n \n \n \n \n getTokenBalance(address: string)\n \n \n\n\n \n \n Defined in src/app/_services/token.service.ts:37\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n address\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getTokenBySymbol\n \n \n \n \n \n \n \ngetTokenBySymbol(symbol: string)\n \n \n\n\n \n \n Defined in src/app/_services/token.service.ts:33\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n symbol\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Async\n getTokens\n \n \n \n \n \n \n \n \n getTokens()\n \n \n\n\n \n \n Defined in src/app/_services/token.service.ts:28\n \n \n\n\n \n \n\n \n Returns : Promise>>\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n LoadEvent\n \n \n \n \n \n \n Type : EventEmitter\n\n \n \n \n \n Default value : new EventEmitter()\n \n \n \n \n Defined in src/app/_services/token.service.ts:15\n \n \n\n\n \n \n \n \n \n \n \n \n \n registry\n \n \n \n \n \n \n Type : CICRegistry\n\n \n \n \n \n Defined in src/app/_services/token.service.ts:13\n \n \n\n\n \n \n \n \n \n \n \n \n \n tokenRegistry\n \n \n \n \n \n \n Type : TokenRegistry\n\n \n \n \n \n Defined in src/app/_services/token.service.ts:14\n \n \n\n\n \n \n\n\n \n\n\n \n import { EventEmitter, Injectable } from '@angular/core';\nimport { environment } from '@src/environments/environment';\nimport { BehaviorSubject, Observable } from 'rxjs';\nimport { CICRegistry } from 'cic-client';\nimport { TokenRegistry } from '@app/_eth';\nimport { HttpClient } from '@angular/common/http';\nimport { RegistryService } from '@app/_services/registry.service';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class TokenService {\n registry: CICRegistry;\n tokenRegistry: TokenRegistry;\n LoadEvent: EventEmitter = new EventEmitter();\n\n constructor(private httpClient: HttpClient, private registryService: RegistryService) {\n this.registry = registryService.getRegistry();\n this.registry.load();\n this.registry.onload = async (address: string): Promise => {\n this.tokenRegistry = new TokenRegistry(\n await this.registry.getContractAddressByName('TokenRegistry')\n );\n this.LoadEvent.next(Date.now());\n };\n }\n\n async getTokens(): Promise>> {\n const count: number = await this.tokenRegistry.totalTokens();\n return Array.from({ length: count }, async (v, i) => await this.tokenRegistry.entry(i));\n }\n\n getTokenBySymbol(symbol: string): Observable {\n return this.httpClient.get(`${environment.cicCacheUrl}/tokens/${symbol}`);\n }\n\n async getTokenBalance(address: string): Promise {\n const sarafuToken = await this.registry.addToken(await this.tokenRegistry.entry(0));\n return await sarafuToken.methods.balanceOf(address).call();\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/TokenServiceStub.html":{"url":"classes/TokenServiceStub.html","title":"class - TokenServiceStub","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n TokenServiceStub\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/testing/token-service-stub.ts\n \n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getBySymbol\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n getBySymbol\n \n \n \n \n \n \n \ngetBySymbol(symbol: string)\n \n \n\n\n \n \n Defined in src/testing/token-service-stub.ts:2\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n symbol\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n export class TokenServiceStub {\n getBySymbol(symbol: string): any {\n return {\n name: 'Reserve',\n symbol: 'RSV'\n };\n }\n}\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/TokensComponent.html":{"url":"components/TokensComponent.html","title":"component - TokensComponent","body":"\n \n\n\n\n\n\n Components\n TokensComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/pages/tokens/tokens.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-tokens\n \n\n \n styleUrls\n ./tokens.component.scss\n \n\n\n\n \n templateUrl\n ./tokens.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n columnsToDisplay\n \n \n dataSource\n \n \n paginator\n \n \n sort\n \n \n tokens\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n doFilter\n \n \n downloadCsv\n \n \n Async\n ngOnInit\n \n \n Async\n viewToken\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(tokenService: TokenService, loggingService: LoggingService, router: Router)\n \n \n \n \n Defined in src/app/pages/tokens/tokens.component.ts:22\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n tokenService\n \n \n TokenService\n \n \n \n No\n \n \n \n \n loggingService\n \n \n LoggingService\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n doFilter\n \n \n \n \n \n \n \ndoFilter(value: string)\n \n \n\n\n \n \n Defined in src/app/pages/tokens/tokens.component.ts:41\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n downloadCsv\n \n \n \n \n \n \n \ndownloadCsv()\n \n \n\n\n \n \n Defined in src/app/pages/tokens/tokens.component.ts:49\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n ngOnInit\n \n \n \n \n \n \n \n \n ngOnInit()\n \n \n\n\n \n \n Defined in src/app/pages/tokens/tokens.component.ts:30\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n viewToken\n \n \n \n \n \n \n \n \n viewToken(token)\n \n \n\n\n \n \n Defined in src/app/pages/tokens/tokens.component.ts:45\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n token\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n columnsToDisplay\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : ['name', 'symbol', 'address', 'supply']\n \n \n \n \n Defined in src/app/pages/tokens/tokens.component.ts:19\n \n \n\n\n \n \n \n \n \n \n \n \n \n dataSource\n \n \n \n \n \n \n Type : MatTableDataSource\n\n \n \n \n \n Defined in src/app/pages/tokens/tokens.component.ts:18\n \n \n\n\n \n \n \n \n \n \n \n \n \n paginator\n \n \n \n \n \n \n Type : MatPaginator\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatPaginator)\n \n \n \n \n \n Defined in src/app/pages/tokens/tokens.component.ts:20\n \n \n\n\n \n \n \n \n \n \n \n \n \n sort\n \n \n \n \n \n \n Type : MatSort\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatSort)\n \n \n \n \n \n Defined in src/app/pages/tokens/tokens.component.ts:21\n \n \n\n\n \n \n \n \n \n \n \n \n \n tokens\n \n \n \n \n \n \n Type : Array>\n\n \n \n \n \n Defined in src/app/pages/tokens/tokens.component.ts:22\n \n \n\n\n \n \n\n\n\n\n\n \n import { ChangeDetectionStrategy, Component, OnInit, ViewChild } from '@angular/core';\nimport { MatPaginator } from '@angular/material/paginator';\nimport { MatSort } from '@angular/material/sort';\nimport { LoggingService, TokenService } from '@app/_services';\nimport { MatTableDataSource } from '@angular/material/table';\nimport { Router } from '@angular/router';\nimport { exportCsv } from '@app/_helpers';\nimport { TokenRegistry } from '../../_eth';\nimport { Token } from '../../_models';\n\n@Component({\n selector: 'app-tokens',\n templateUrl: './tokens.component.html',\n styleUrls: ['./tokens.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TokensComponent implements OnInit {\n dataSource: MatTableDataSource;\n columnsToDisplay: Array = ['name', 'symbol', 'address', 'supply'];\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n tokens: Array>;\n\n constructor(\n private tokenService: TokenService,\n private loggingService: LoggingService,\n private router: Router\n ) {}\n\n async ngOnInit(): Promise {\n this.tokenService.LoadEvent.subscribe(async () => {\n this.tokens = await this.tokenService.getTokens();\n });\n this.tokens = await this.tokenService.getTokens();\n this.loggingService.sendInfoLevelMessage(this.tokens);\n this.dataSource = new MatTableDataSource(this.tokens);\n this.dataSource.paginator = this.paginator;\n this.dataSource.sort = this.sort;\n }\n\n doFilter(value: string): void {\n this.dataSource.filter = value.trim().toLocaleLowerCase();\n }\n\n async viewToken(token): Promise {\n await this.router.navigateByUrl(`/tokens/${token.symbol}`);\n }\n\n downloadCsv(): void {\n exportCsv(this.tokens, 'tokens');\n }\n}\n\n \n\n \n \n\n \n\n \n \n \n\n \n \n \n \n \n \n Home\n Tokens\n \n \n \n \n \n Tokens\n EXPORT \n \n \n \n \n Filter \n \n search\n \n\n \n \n Name \n {{token.name}} \n \n\n \n Symbol \n {{token.symbol}} \n \n\n \n Address \n {{token.address}} \n \n\n \n Supply \n {{token.supply | tokenRatio}} \n \n\n \n \n \n\n \n \n \n \n \n \n \n \n \n\n\n\n \n\n \n \n ./tokens.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Home Tokens Tokens EXPORT Filter search Name {{token.name}} Symbol {{token.symbol}} Address {{token.address}} Supply {{token.supply | tokenRatio}} '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'TokensComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/TokensModule.html":{"url":"modules/TokensModule.html","title":"module - TokensModule","body":"\n \n\n\n\n\n Modules\n TokensModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_TokensModule\n\n\n\ncluster_TokensModule_imports\n\n\n\ncluster_TokensModule_declarations\n\n\n\n\nTokenDetailsComponent\n\nTokenDetailsComponent\n\n\n\nTokensModule\n\nTokensModule\n\nTokensModule -->\n\nTokenDetailsComponent->TokensModule\n\n\n\n\n\nTokensComponent\n\nTokensComponent\n\nTokensModule -->\n\nTokensComponent->TokensModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nTokensModule -->\n\nSharedModule->TokensModule\n\n\n\n\n\nTokensRoutingModule\n\nTokensRoutingModule\n\nTokensModule -->\n\nTokensRoutingModule->TokensModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/pages/tokens/tokens.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n TokenDetailsComponent\n \n \n TokensComponent\n \n \n \n \n Imports\n \n \n SharedModule\n \n \n TokensRoutingModule\n \n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { TokensRoutingModule } from '@pages/tokens/tokens-routing.module';\nimport { TokensComponent } from '@pages/tokens/tokens.component';\nimport { TokenDetailsComponent } from '@pages/tokens/token-details/token-details.component';\nimport { SharedModule } from '@app/shared/shared.module';\nimport { MatTableModule } from '@angular/material/table';\nimport { MatPaginatorModule } from '@angular/material/paginator';\nimport { MatSortModule } from '@angular/material/sort';\nimport { MatPseudoCheckboxModule, MatRippleModule } from '@angular/material/core';\nimport { MatCheckboxModule } from '@angular/material/checkbox';\nimport { MatInputModule } from '@angular/material/input';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatIconModule } from '@angular/material/icon';\nimport { MatSidenavModule } from '@angular/material/sidenav';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatToolbarModule } from '@angular/material/toolbar';\nimport { MatCardModule } from '@angular/material/card';\n\n@NgModule({\n declarations: [TokensComponent, TokenDetailsComponent],\n imports: [\n CommonModule,\n TokensRoutingModule,\n SharedModule,\n MatTableModule,\n MatPaginatorModule,\n MatSortModule,\n MatPseudoCheckboxModule,\n MatCheckboxModule,\n MatInputModule,\n MatFormFieldModule,\n MatIconModule,\n MatSidenavModule,\n MatButtonModule,\n MatToolbarModule,\n MatCardModule,\n MatRippleModule,\n ],\n})\nexport class TokensModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/TokensRoutingModule.html":{"url":"modules/TokensRoutingModule.html","title":"module - TokensRoutingModule","body":"\n \n\n\n\n\n Modules\n TokensRoutingModule\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/pages/tokens/tokens-routing.module.ts\n \n\n\n\n\n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { TokensComponent } from '@pages/tokens/tokens.component';\nimport { TokenDetailsComponent } from '@pages/tokens/token-details/token-details.component';\n\nconst routes: Routes = [\n { path: '', component: TokensComponent },\n { path: ':id', component: TokenDetailsComponent },\n];\n\n@NgModule({\n imports: [RouterModule.forChild(routes)],\n exports: [RouterModule],\n})\nexport class TokensRoutingModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/TopbarComponent.html":{"url":"components/TopbarComponent.html","title":"component - TopbarComponent","body":"\n \n\n\n\n\n\n Components\n TopbarComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/shared/topbar/topbar.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-topbar\n \n\n \n styleUrls\n ./topbar.component.scss\n \n\n\n\n \n templateUrl\n ./topbar.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in src/app/shared/topbar/topbar.component.ts:9\n \n \n\n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/shared/topbar/topbar.component.ts:12\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n\n\n\n\n \n import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'app-topbar',\n templateUrl: './topbar.component.html',\n styleUrls: ['./topbar.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TopbarComponent implements OnInit {\n constructor() {}\n\n ngOnInit(): void {}\n}\n\n \n\n \n \n\n \n \n \n \n \n \n \n\n\n\n \n\n \n \n ./topbar.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'TopbarComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/TopbarStubComponent.html":{"url":"components/TopbarStubComponent.html","title":"component - TopbarStubComponent","body":"\n \n\n\n\n\n\n Components\n TopbarStubComponent\n\n\n\n \n Info\n \n \n Source\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/testing/shared-module-stub.ts\n\n\n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n app-topbar\n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n import {Component} from '@angular/core';\n\n@Component({selector: 'app-sidebar', template: ''})\nexport class SidebarStubComponent {}\n\n@Component({selector: 'app-topbar', template: ''})\nexport class TopbarStubComponent {}\n\n@Component({selector: 'app-footer', template: ''})\nexport class FooterStubComponent {}\n\n \n\n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'TopbarStubComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Transaction.html":{"url":"interfaces/Transaction.html","title":"interface - Transaction","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Transaction\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/transaction.ts\n \n\n \n Description\n \n \n Transaction object interface \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n from\n \n \n recipient\n \n \n sender\n \n \n to\n \n \n token\n \n \n tx\n \n \n Optional\n type\n \n \n value\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n from\n \n \n \n \n from: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n recipient\n \n \n \n \n recipient: AccountDetails\n\n \n \n\n\n \n \n Type : AccountDetails\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n sender\n \n \n \n \n sender: AccountDetails\n\n \n \n\n\n \n \n Type : AccountDetails\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n to\n \n \n \n \n to: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n token\n \n \n \n \n token: TxToken\n\n \n \n\n\n \n \n Type : TxToken\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n tx\n \n \n \n \n tx: Tx\n\n \n \n\n\n \n \n Type : Tx\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n type\n \n \n \n \n type: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n value\n \n \n \n \n value: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { AccountDetails } from '@app/_models/account';\n\n/** BlocksBloom object interface */\ninterface BlocksBloom {\n low: number;\n blockFilter: string;\n blocktxFilter: string;\n alg: string;\n filterRounds: number;\n}\n\n/** Conversion object interface */\ninterface Conversion {\n destinationToken: TxToken;\n fromValue: number;\n sourceToken: TxToken;\n toValue: number;\n trader: string;\n user: AccountDetails;\n tx: Tx;\n}\n\n/** Transaction object interface */\ninterface Transaction {\n from: string;\n sender: AccountDetails;\n to: string;\n recipient: AccountDetails;\n token: TxToken;\n tx: Tx;\n value: number;\n type?: string;\n}\n\n/** Transaction data interface */\ninterface Tx {\n block: number;\n success: boolean;\n timestamp: number;\n txHash: string;\n txIndex: number;\n}\n\n/** Transaction token object interface */\ninterface TxToken {\n address: string;\n name: string;\n symbol: string;\n}\n\n/** @exports */\nexport { BlocksBloom, Conversion, Transaction, Tx, TxToken };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/TransactionDetailsComponent.html":{"url":"components/TransactionDetailsComponent.html","title":"component - TransactionDetailsComponent","body":"\n \n\n\n\n\n\n Components\n TransactionDetailsComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/pages/transactions/transaction-details/transaction-details.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-transaction-details\n \n\n \n styleUrls\n ./transaction-details.component.scss\n \n\n\n\n \n templateUrl\n ./transaction-details.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n recipientBloxbergLink\n \n \n senderBloxbergLink\n \n \n traderBloxbergLink\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n copyAddress\n \n \n ngOnInit\n \n \n Async\n reverseTransaction\n \n \n Async\n viewRecipient\n \n \n Async\n viewSender\n \n \n Async\n viewTrader\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n transaction\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(router: Router, transactionService: TransactionService, snackBar: MatSnackBar)\n \n \n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:18\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n transactionService\n \n \n TransactionService\n \n \n \n No\n \n \n \n \n snackBar\n \n \n MatSnackBar\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n transaction\n \n \n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:15\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n copyAddress\n \n \n \n \n \n \n \ncopyAddress(address: string)\n \n \n\n\n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:59\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n address\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:26\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n reverseTransaction\n \n \n \n \n \n \n \n \n reverseTransaction()\n \n \n\n\n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:50\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n viewRecipient\n \n \n \n \n \n \n \n \n viewRecipient()\n \n \n\n\n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:42\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n viewSender\n \n \n \n \n \n \n \n \n viewSender()\n \n \n\n\n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:38\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n viewTrader\n \n \n \n \n \n \n \n \n viewTrader()\n \n \n\n\n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:46\n \n \n\n\n \n \n\n \n Returns : Promise\n\n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n recipientBloxbergLink\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:17\n \n \n\n\n \n \n \n \n \n \n \n \n \n senderBloxbergLink\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:16\n \n \n\n\n \n \n \n \n \n \n \n \n \n traderBloxbergLink\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Defined in src/app/pages/transactions/transaction-details/transaction-details.component.ts:18\n \n \n\n\n \n \n\n\n\n\n\n \n import { ChangeDetectionStrategy, Component, Input, OnInit } from '@angular/core';\nimport { Router } from '@angular/router';\nimport { TransactionService } from '@app/_services';\nimport { copyToClipboard } from '@app/_helpers';\nimport { MatSnackBar } from '@angular/material/snack-bar';\nimport { strip0x } from '@src/assets/js/ethtx/dist/hex';\n\n@Component({\n selector: 'app-transaction-details',\n templateUrl: './transaction-details.component.html',\n styleUrls: ['./transaction-details.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TransactionDetailsComponent implements OnInit {\n @Input() transaction;\n senderBloxbergLink: string;\n recipientBloxbergLink: string;\n traderBloxbergLink: string;\n\n constructor(\n private router: Router,\n private transactionService: TransactionService,\n private snackBar: MatSnackBar\n ) {}\n\n ngOnInit(): void {\n if (this.transaction?.type === 'conversion') {\n this.traderBloxbergLink =\n 'https://blockexplorer.bloxberg.org/address/' + this.transaction?.trader + '/transactions';\n } else {\n this.senderBloxbergLink =\n 'https://blockexplorer.bloxberg.org/address/' + this.transaction?.from + '/transactions';\n this.recipientBloxbergLink =\n 'https://blockexplorer.bloxberg.org/address/' + this.transaction?.to + '/transactions';\n }\n }\n\n async viewSender(): Promise {\n await this.router.navigateByUrl(`/accounts/${strip0x(this.transaction.from)}`);\n }\n\n async viewRecipient(): Promise {\n await this.router.navigateByUrl(`/accounts/${strip0x(this.transaction.to)}`);\n }\n\n async viewTrader(): Promise {\n await this.router.navigateByUrl(`/accounts/${strip0x(this.transaction.trader)}`);\n }\n\n async reverseTransaction(): Promise {\n await this.transactionService.transferRequest(\n this.transaction.token.address,\n this.transaction.to,\n this.transaction.from,\n this.transaction.value\n );\n }\n\n copyAddress(address: string): void {\n if (copyToClipboard(address)) {\n this.snackBar.open(address + ' copied successfully!', 'Close', { duration: 3000 });\n }\n }\n}\n\n \n\n \n \n \n \n \n TRANSACTION DETAILS\n CLOSE \n \n \n \n \n \n Exchange: \n \n \n Sender: {{transaction.sender?.vcard.fn[0].value}}\n \n Sender Address:\n {{transaction.from}} \n \n \n View Sender\n \n \n Recipient: {{transaction.recipient?.vcard.fn[0].value}}\n \n Recipient Address:\n {{transaction.to}} \n \n \n View Recipient\n \n \n Amount: SRF {{transaction.value | tokenRatio}}\n \n \n Token: \n \n \n \n Address:\n {{transaction.token._address}}\n \n \n \n \n Name: Sarafu Token\n \n \n Symbol: SRF\n \n \n \n \n Transaction: \n \n \n Block: {{transaction.tx.block}}\n \n \n Index: {{transaction.tx.txIndex}}\n \n \n Hash: {{transaction.tx.txHash}}\n \n \n Success: {{transaction.tx.success}}\n \n \n Timestamp: {{transaction.tx.timestamp | date}}\n \n \n \n Resend SMS\n \n \n Reverse Transaction\n \n \n \n \n \n Exchange: \n \n \n Trader: {{transaction.sender?.vcard.fn[0].value}}\n \n \n \n Trader Address:\n {{transaction.trader}} \n \n \n \n \n View Trader\n \n \n \n Source Token: \n \n \n \n Address:\n {{transaction.sourceToken.address}}\n \n \n \n \n Name: {{transaction.sourceToken.name}}\n \n \n Symbol: {{transaction.sourceToken.symbol}}\n \n \n Amount: {{transaction.sourceToken.symbol + ' ' + transaction.fromValue}}\n \n \n \n \n Destination Token: \n \n \n \n Address:\n {{transaction.destinationToken.address}}\n \n \n \n \n Name: {{transaction.destinationToken.name}}\n \n \n Symbol: {{transaction.destinationToken.symbol}}\n \n \n Amount: {{transaction.destinationToken.symbol + ' ' + transaction.toValue}}\n \n \n \n \n Resend SMS\n \n \n Reverse Transaction\n \n \n \n \n\n\n \n\n \n \n ./transaction-details.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' TRANSACTION DETAILS CLOSE Exchange: Sender: {{transaction.sender?.vcard.fn[0].value}} Sender Address: {{transaction.from}} View Sender Recipient: {{transaction.recipient?.vcard.fn[0].value}} Recipient Address: {{transaction.to}} View Recipient Amount: SRF {{transaction.value | tokenRatio}} Token: Address: {{transaction.token._address}} Name: Sarafu Token Symbol: SRF Transaction: Block: {{transaction.tx.block}} Index: {{transaction.tx.txIndex}} Hash: {{transaction.tx.txHash}} Success: {{transaction.tx.success}} Timestamp: {{transaction.tx.timestamp | date}} Resend SMS Reverse Transaction Exchange: Trader: {{transaction.sender?.vcard.fn[0].value}} Trader Address: {{transaction.trader}} View Trader Source Token: Address: {{transaction.sourceToken.address}} Name: {{transaction.sourceToken.name}} Symbol: {{transaction.sourceToken.symbol}} Amount: {{transaction.sourceToken.symbol + \\' \\' + transaction.fromValue}} Destination Token: Address: {{transaction.destinationToken.address}} Name: {{transaction.destinationToken.name}} Symbol: {{transaction.destinationToken.symbol}} Amount: {{transaction.destinationToken.symbol + \\' \\' + transaction.toValue}} Resend SMS Reverse Transaction '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'TransactionDetailsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/TransactionService.html":{"url":"injectables/TransactionService.html","title":"injectable - TransactionService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n TransactionService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_services/transaction.service.ts\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n registry\n \n \n Private\n transactionList\n \n \n transactions\n \n \n transactionsSubject\n \n \n userInfo\n \n \n web3\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n addTransaction\n \n \n getAccountInfo\n \n \n getAddressTransactions\n \n \n getAllTransactions\n \n \n resetTransactionsList\n \n \n Async\n setConversion\n \n \n Async\n setTransaction\n \n \n Async\n transferRequest\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(httpClient: HttpClient, authService: AuthService, userService: UserService, loggingService: LoggingService, registryService: RegistryService)\n \n \n \n \n Defined in src/app/_services/transaction.service.ts:31\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n httpClient\n \n \n HttpClient\n \n \n \n No\n \n \n \n \n authService\n \n \n AuthService\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n loggingService\n \n \n LoggingService\n \n \n \n No\n \n \n \n \n registryService\n \n \n RegistryService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n addTransaction\n \n \n \n \n \n \n \naddTransaction(transaction, cacheSize: number)\n \n \n\n\n \n \n Defined in src/app/_services/transaction.service.ts:111\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n transaction\n \n \n\n \n No\n \n\n\n \n \n cacheSize\n \n number\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getAccountInfo\n \n \n \n \n \n \n \ngetAccountInfo(account: string)\n \n \n\n\n \n \n Defined in src/app/_services/transaction.service.ts:124\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n account\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getAddressTransactions\n \n \n \n \n \n \n \ngetAddressTransactions(address: string, offset: number, limit: number)\n \n \n\n\n \n \n Defined in src/app/_services/transaction.service.ts:49\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n address\n \n string\n \n\n \n No\n \n\n\n \n \n offset\n \n number\n \n\n \n No\n \n\n\n \n \n limit\n \n number\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getAllTransactions\n \n \n \n \n \n \n \ngetAllTransactions(offset: number, limit: number)\n \n \n\n\n \n \n Defined in src/app/_services/transaction.service.ts:45\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n offset\n \n number\n \n\n \n No\n \n\n\n \n \n limit\n \n number\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n resetTransactionsList\n \n \n \n \n \n \n \nresetTransactionsList()\n \n \n\n\n \n \n Defined in src/app/_services/transaction.service.ts:119\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Async\n setConversion\n \n \n \n \n \n \n \n \n setConversion(conversion, cacheSize)\n \n \n\n\n \n \n Defined in src/app/_services/transaction.service.ts:87\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n conversion\n\n \n No\n \n\n\n \n \n cacheSize\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Async\n setTransaction\n \n \n \n \n \n \n \n \n setTransaction(transaction, cacheSize: number)\n \n \n\n\n \n \n Defined in src/app/_services/transaction.service.ts:53\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n transaction\n \n \n\n \n No\n \n\n\n \n \n cacheSize\n \n number\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Async\n transferRequest\n \n \n \n \n \n \n \n \n transferRequest(tokenAddress: string, senderAddress: string, recipientAddress: string, value: number)\n \n \n\n\n \n \n Defined in src/app/_services/transaction.service.ts:130\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n tokenAddress\n \n string\n \n\n \n No\n \n\n\n \n \n senderAddress\n \n string\n \n\n \n No\n \n\n\n \n \n recipientAddress\n \n string\n \n\n \n No\n \n\n\n \n \n value\n \n number\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n registry\n \n \n \n \n \n \n Type : CICRegistry\n\n \n \n \n \n Defined in src/app/_services/transaction.service.ts:31\n \n \n\n\n \n \n \n \n \n \n \n \n \n Private\n transactionList\n \n \n \n \n \n \n Default value : new BehaviorSubject(this.transactions)\n \n \n \n \n Defined in src/app/_services/transaction.service.ts:27\n \n \n\n\n \n \n \n \n \n \n \n \n \n transactions\n \n \n \n \n \n \n Type : any[]\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in src/app/_services/transaction.service.ts:26\n \n \n\n\n \n \n \n \n \n \n \n \n \n transactionsSubject\n \n \n \n \n \n \n Default value : this.transactionList.asObservable()\n \n \n \n \n Defined in src/app/_services/transaction.service.ts:28\n \n \n\n\n \n \n \n \n \n \n \n \n \n userInfo\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/app/_services/transaction.service.ts:29\n \n \n\n\n \n \n \n \n \n \n \n \n \n web3\n \n \n \n \n \n \n Type : Web3\n\n \n \n \n \n Defined in src/app/_services/transaction.service.ts:30\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { first } from 'rxjs/operators';\nimport { BehaviorSubject, Observable } from 'rxjs';\nimport { environment } from '@src/environments/environment';\nimport { Envelope, User } from 'cic-client-meta';\nimport { UserService } from '@app/_services/user.service';\nimport { Keccak } from 'sha3';\nimport { utils } from 'ethers';\nimport { add0x, fromHex, strip0x, toHex } from '@src/assets/js/ethtx/dist/hex';\nimport { Tx } from '@src/assets/js/ethtx/dist';\nimport { toValue } from '@src/assets/js/ethtx/dist/tx';\nimport * as secp256k1 from 'secp256k1';\nimport { AuthService } from '@app/_services/auth.service';\nimport { defaultAccount } from '@app/_models';\nimport { LoggingService } from '@app/_services/logging.service';\nimport { HttpClient } from '@angular/common/http';\nimport { CICRegistry } from 'cic-client';\nimport { RegistryService } from '@app/_services/registry.service';\nimport Web3 from 'web3';\nconst vCard = require('vcard-parser');\n\n@Injectable({\n providedIn: 'root',\n})\nexport class TransactionService {\n transactions: any[] = [];\n private transactionList = new BehaviorSubject(this.transactions);\n transactionsSubject = this.transactionList.asObservable();\n userInfo: any;\n web3: Web3;\n registry: CICRegistry;\n\n constructor(\n private httpClient: HttpClient,\n private authService: AuthService,\n private userService: UserService,\n private loggingService: LoggingService,\n private registryService: RegistryService\n ) {\n this.web3 = this.registryService.getWeb3();\n this.registry = registryService.getRegistry();\n this.registry.load();\n }\n\n getAllTransactions(offset: number, limit: number): Observable {\n return this.httpClient.get(`${environment.cicCacheUrl}/tx/${offset}/${limit}`);\n }\n\n getAddressTransactions(address: string, offset: number, limit: number): Observable {\n return this.httpClient.get(`${environment.cicCacheUrl}/tx/${address}/${offset}/${limit}`);\n }\n\n async setTransaction(transaction, cacheSize: number): Promise {\n if (this.transactions.find((cachedTx) => cachedTx.tx.txHash === transaction.tx.txHash)) {\n return;\n }\n transaction.value = Number(transaction.value);\n transaction.type = 'transaction';\n try {\n this.userService\n .getAccountDetailsFromMeta(await User.toKey(transaction.from))\n .pipe(first())\n .subscribe(\n (res) => {\n transaction.sender = this.getAccountInfo(res.body);\n },\n (error) => {\n transaction.sender = defaultAccount;\n }\n );\n this.userService\n .getAccountDetailsFromMeta(await User.toKey(transaction.to))\n .pipe(first())\n .subscribe(\n (res) => {\n transaction.recipient = this.getAccountInfo(res.body);\n },\n (error) => {\n transaction.recipient = defaultAccount;\n }\n );\n } finally {\n this.addTransaction(transaction, cacheSize);\n }\n }\n\n async setConversion(conversion, cacheSize): Promise {\n if (this.transactions.find((cachedTx) => cachedTx.tx.txHash === conversion.tx.txHash)) {\n return;\n }\n conversion.type = 'conversion';\n conversion.fromValue = Number(conversion.fromValue);\n conversion.toValue = Number(conversion.toValue);\n try {\n this.userService\n .getAccountDetailsFromMeta(await User.toKey(conversion.trader))\n .pipe(first())\n .subscribe(\n (res) => {\n conversion.sender = conversion.recipient = this.getAccountInfo(res.body);\n },\n (error) => {\n conversion.sender = conversion.recipient = defaultAccount;\n }\n );\n } finally {\n this.addTransaction(conversion, cacheSize);\n }\n }\n\n addTransaction(transaction, cacheSize: number): void {\n this.transactions.unshift(transaction);\n if (this.transactions.length > cacheSize) {\n this.transactions.length = cacheSize;\n }\n this.transactionList.next(this.transactions);\n }\n\n resetTransactionsList(): void {\n this.transactions = [];\n this.transactionList.next(this.transactions);\n }\n\n getAccountInfo(account: string): any {\n const accountInfo = Envelope.fromJSON(JSON.stringify(account)).unwrap().m.data;\n accountInfo.vcard = vCard.parse(atob(accountInfo.vcard));\n return accountInfo;\n }\n\n async transferRequest(\n tokenAddress: string,\n senderAddress: string,\n recipientAddress: string,\n value: number\n ): Promise {\n const transferAuthAddress = await this.registry.getContractAddressByName(\n 'TransferAuthorization'\n );\n const hashFunction = new Keccak(256);\n hashFunction.update('createRequest(address,address,address,uint256)');\n const hash = hashFunction.digest();\n const methodSignature = hash.toString('hex').substring(0, 8);\n const abiCoder = new utils.AbiCoder();\n const abi = await abiCoder.encode(\n ['address', 'address', 'address', 'uint256'],\n [senderAddress, recipientAddress, tokenAddress, value]\n );\n const data = fromHex(methodSignature + strip0x(abi));\n const tx = new Tx(environment.bloxbergChainId);\n tx.nonce = await this.web3.eth.getTransactionCount(senderAddress);\n tx.gasPrice = Number(await this.web3.eth.getGasPrice());\n tx.gasLimit = 8000000;\n tx.to = fromHex(strip0x(transferAuthAddress));\n tx.value = toValue(value);\n tx.data = data;\n const txMsg = tx.message();\n const privateKey = this.authService.mutableKeyStore.getPrivateKey();\n if (!privateKey.isDecrypted()) {\n const password = window.prompt('password');\n await privateKey.decrypt(password);\n }\n const signatureObject = secp256k1.ecdsaSign(txMsg, privateKey.keyPacket.privateParams.d);\n const r = signatureObject.signature.slice(0, 32);\n const s = signatureObject.signature.slice(32);\n const v = signatureObject.recid;\n tx.setSignature(r, s, v);\n const txWire = add0x(toHex(tx.serializeRLP()));\n const result = await this.web3.eth.sendSignedTransaction(txWire);\n this.loggingService.sendInfoLevelMessage(`Result: ${result}`);\n const transaction = await this.web3.eth.getTransaction(result.transactionHash);\n this.loggingService.sendInfoLevelMessage(`Transaction: ${transaction}`);\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/TransactionServiceStub.html":{"url":"classes/TransactionServiceStub.html","title":"class - TransactionServiceStub","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n TransactionServiceStub\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/testing/transaction-service-stub.ts\n \n\n\n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n getAllTransactions\n \n \n setConversion\n \n \n setTransaction\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n getAllTransactions\n \n \n \n \n \n \n \ngetAllTransactions(offset: number, limit: number)\n \n \n\n\n \n \n Defined in src/testing/transaction-service-stub.ts:8\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n offset\n \n number\n \n\n \n No\n \n\n\n \n \n limit\n \n number\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n setConversion\n \n \n \n \n \n \n \nsetConversion(conversion: any)\n \n \n\n\n \n \n Defined in src/testing/transaction-service-stub.ts:6\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n conversion\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n setTransaction\n \n \n \n \n \n \n \nsetTransaction(transaction: any, cacheSize: number)\n \n \n\n\n \n \n Defined in src/testing/transaction-service-stub.ts:4\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n transaction\n \n any\n \n\n \n No\n \n\n\n \n \n cacheSize\n \n number\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n import {Observable, of} from 'rxjs';\n\nexport class TransactionServiceStub {\n setTransaction(transaction: any, cacheSize: number): void {}\n\n setConversion(conversion: any): void {}\n\n getAllTransactions(offset: number, limit: number): Observable {\n return of('Hello World');\n }\n}\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/TransactionsComponent.html":{"url":"components/TransactionsComponent.html","title":"component - TransactionsComponent","body":"\n \n\n\n\n\n\n Components\n TransactionsComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n src/app/pages/transactions/transactions.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n AfterViewInit\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n app-transactions\n \n\n \n styleUrls\n ./transactions.component.scss\n \n\n\n\n \n templateUrl\n ./transactions.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n defaultPageSize\n \n \n pageSizeOptions\n \n \n paginator\n \n \n sort\n \n \n transaction\n \n \n transactionDataSource\n \n \n transactionDisplayedColumns\n \n \n transactions\n \n \n transactionsType\n \n \n transactionsTypes\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n doFilter\n \n \n downloadCsv\n \n \n filterTransactions\n \n \n ngAfterViewInit\n \n \n ngOnInit\n \n \n viewTransaction\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(blockSyncService: BlockSyncService, transactionService: TransactionService, userService: UserService)\n \n \n \n \n Defined in src/app/pages/transactions/transactions.component.ts:33\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n blockSyncService\n \n \n BlockSyncService\n \n \n \n No\n \n \n \n \n transactionService\n \n \n TransactionService\n \n \n \n No\n \n \n \n \n userService\n \n \n UserService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n doFilter\n \n \n \n \n \n \n \ndoFilter(value: string, dataSource)\n \n \n\n\n \n \n Defined in src/app/pages/transactions/transactions.component.ts:60\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n string\n \n\n \n No\n \n\n\n \n \n dataSource\n \n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n downloadCsv\n \n \n \n \n \n \n \ndownloadCsv()\n \n \n\n\n \n \n Defined in src/app/pages/transactions/transactions.component.ts:82\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n filterTransactions\n \n \n \n \n \n \n \nfilterTransactions()\n \n \n\n\n \n \n Defined in src/app/pages/transactions/transactions.component.ts:64\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngAfterViewInit\n \n \n \n \n \n \n \nngAfterViewInit()\n \n \n\n\n \n \n Defined in src/app/pages/transactions/transactions.component.ts:77\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in src/app/pages/transactions/transactions.component.ts:43\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n viewTransaction\n \n \n \n \n \n \n \nviewTransaction(transaction)\n \n \n\n\n \n \n Defined in src/app/pages/transactions/transactions.component.ts:56\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n transaction\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n defaultPageSize\n \n \n \n \n \n \n Type : number\n\n \n \n \n \n Default value : 10\n \n \n \n \n Defined in src/app/pages/transactions/transactions.component.ts:25\n \n \n\n\n \n \n \n \n \n \n \n \n \n pageSizeOptions\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : [10, 20, 50, 100]\n \n \n \n \n Defined in src/app/pages/transactions/transactions.component.ts:26\n \n \n\n\n \n \n \n \n \n \n \n \n \n paginator\n \n \n \n \n \n \n Type : MatPaginator\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatPaginator)\n \n \n \n \n \n Defined in src/app/pages/transactions/transactions.component.ts:32\n \n \n\n\n \n \n \n \n \n \n \n \n \n sort\n \n \n \n \n \n \n Type : MatSort\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(MatSort)\n \n \n \n \n \n Defined in src/app/pages/transactions/transactions.component.ts:33\n \n \n\n\n \n \n \n \n \n \n \n \n \n transaction\n \n \n \n \n \n \n Type : Transaction\n\n \n \n \n \n Defined in src/app/pages/transactions/transactions.component.ts:28\n \n \n\n\n \n \n \n \n \n \n \n \n \n transactionDataSource\n \n \n \n \n \n \n Type : MatTableDataSource\n\n \n \n \n \n Defined in src/app/pages/transactions/transactions.component.ts:23\n \n \n\n\n \n \n \n \n \n \n \n \n \n transactionDisplayedColumns\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : ['sender', 'recipient', 'value', 'created', 'type']\n \n \n \n \n Defined in src/app/pages/transactions/transactions.component.ts:24\n \n \n\n\n \n \n \n \n \n \n \n \n \n transactions\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Defined in src/app/pages/transactions/transactions.component.ts:27\n \n \n\n\n \n \n \n \n \n \n \n \n \n transactionsType\n \n \n \n \n \n \n Type : string\n\n \n \n \n \n Default value : 'all'\n \n \n \n \n Defined in src/app/pages/transactions/transactions.component.ts:29\n \n \n\n\n \n \n \n \n \n \n \n \n \n transactionsTypes\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Defined in src/app/pages/transactions/transactions.component.ts:30\n \n \n\n\n \n \n\n\n\n\n\n \n import {\n AfterViewInit,\n ChangeDetectionStrategy,\n Component,\n OnInit,\n ViewChild,\n} from '@angular/core';\nimport { BlockSyncService, TransactionService, UserService } from '@app/_services';\nimport { MatTableDataSource } from '@angular/material/table';\nimport { MatPaginator } from '@angular/material/paginator';\nimport { MatSort } from '@angular/material/sort';\nimport { exportCsv } from '@app/_helpers';\nimport { first } from 'rxjs/operators';\nimport { Transaction } from '@app/_models';\n\n@Component({\n selector: 'app-transactions',\n templateUrl: './transactions.component.html',\n styleUrls: ['./transactions.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class TransactionsComponent implements OnInit, AfterViewInit {\n transactionDataSource: MatTableDataSource;\n transactionDisplayedColumns: Array = ['sender', 'recipient', 'value', 'created', 'type'];\n defaultPageSize: number = 10;\n pageSizeOptions: Array = [10, 20, 50, 100];\n transactions: Array;\n transaction: Transaction;\n transactionsType: string = 'all';\n transactionsTypes: Array;\n\n @ViewChild(MatPaginator) paginator: MatPaginator;\n @ViewChild(MatSort) sort: MatSort;\n\n constructor(\n private blockSyncService: BlockSyncService,\n private transactionService: TransactionService,\n private userService: UserService\n ) {\n this.blockSyncService.blockSync();\n }\n\n ngOnInit(): void {\n this.transactionService.transactionsSubject.subscribe((transactions) => {\n this.transactionDataSource = new MatTableDataSource(transactions);\n this.transactionDataSource.paginator = this.paginator;\n this.transactionDataSource.sort = this.sort;\n this.transactions = transactions;\n });\n this.userService\n .getTransactionTypes()\n .pipe(first())\n .subscribe((res) => (this.transactionsTypes = res));\n }\n\n viewTransaction(transaction): void {\n this.transaction = transaction;\n }\n\n doFilter(value: string, dataSource): void {\n dataSource.filter = value.trim().toLocaleLowerCase();\n }\n\n filterTransactions(): void {\n if (this.transactionsType === 'all') {\n this.transactionService.transactionsSubject.subscribe((transactions) => {\n this.transactionDataSource.data = transactions;\n this.transactions = transactions;\n });\n } else {\n this.transactionDataSource.data = this.transactions.filter(\n (transaction) => transaction.type === this.transactionsType\n );\n }\n }\n\n ngAfterViewInit(): void {\n this.transactionDataSource.paginator = this.paginator;\n this.transactionDataSource.sort = this.sort;\n }\n\n downloadCsv(): void {\n exportCsv(this.transactions, 'transactions');\n }\n}\n\n \n\n \n \n\n \n\n \n \n \n\n \n \n \n \n \n \n Home\n Transactions\n \n \n \n \n Transfers\n \n \n\n \n\n \n \n TRANSFER TYPE \n \n ALL TRANSFERS\n \n {{transactionType | uppercase}}\n \n \n \n EXPORT \n \n\n \n Filter \n \n search\n \n\n \n\n \n Sender \n {{transaction?.sender?.vcard.fn[0].value}} \n \n\n \n Recipient \n {{transaction?.recipient?.vcard.fn[0].value}} \n \n\n \n Value \n \n {{transaction?.value | tokenRatio}}\n {{transaction?.toValue | tokenRatio}}\n \n \n\n \n Created \n {{transaction?.tx.timestamp | date}} \n \n\n \n TYPE \n \n {{transaction?.type}} \n \n \n\n \n \n \n\n \n\n \n \n \n \n \n \n \n \n\n\n\n\n \n\n \n \n ./transactions.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Home Transactions Transfers TRANSFER TYPE ALL TRANSFERS {{transactionType | uppercase}} EXPORT Filter search Sender {{transaction?.sender?.vcard.fn[0].value}} Recipient {{transaction?.recipient?.vcard.fn[0].value}} Value {{transaction?.value | tokenRatio}} {{transaction?.toValue | tokenRatio}} Created {{transaction?.tx.timestamp | date}} TYPE {{transaction?.type}} '\n var COMPONENTS = [{'name': 'AccountDetailsComponent', 'selector': 'app-account-details'},{'name': 'AccountsComponent', 'selector': 'app-accounts'},{'name': 'AccountSearchComponent', 'selector': 'app-account-search'},{'name': 'AdminComponent', 'selector': 'app-admin'},{'name': 'AppComponent', 'selector': 'app-root'},{'name': 'AuthComponent', 'selector': 'app-auth'},{'name': 'CreateAccountComponent', 'selector': 'app-create-account'},{'name': 'ErrorDialogComponent', 'selector': 'app-error-dialog'},{'name': 'FooterComponent', 'selector': 'app-footer'},{'name': 'FooterStubComponent', 'selector': 'app-footer'},{'name': 'NetworkStatusComponent', 'selector': 'app-network-status'},{'name': 'OrganizationComponent', 'selector': 'app-organization'},{'name': 'PagesComponent', 'selector': 'app-pages'},{'name': 'SettingsComponent', 'selector': 'app-settings'},{'name': 'SidebarComponent', 'selector': 'app-sidebar'},{'name': 'SidebarStubComponent', 'selector': 'app-sidebar'},{'name': 'TokenDetailsComponent', 'selector': 'app-token-details'},{'name': 'TokensComponent', 'selector': 'app-tokens'},{'name': 'TopbarComponent', 'selector': 'app-topbar'},{'name': 'TopbarStubComponent', 'selector': 'app-topbar'},{'name': 'TransactionDetailsComponent', 'selector': 'app-transaction-details'},{'name': 'TransactionsComponent', 'selector': 'app-transactions'}];\n var DIRECTIVES = [{'name': 'MenuSelectionDirective', 'selector': '[appMenuSelection]'},{'name': 'MenuToggleDirective', 'selector': '[appMenuToggle]'},{'name': 'PasswordToggleDirective', 'selector': '[appPasswordToggle]'},{'name': 'RouterLinkDirectiveStub', 'selector': '[appRouterLink]'}];\n var ACTUAL_COMPONENT = {'name': 'TransactionsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/TransactionsModule.html":{"url":"modules/TransactionsModule.html","title":"module - TransactionsModule","body":"\n \n\n\n\n\n Modules\n TransactionsModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_TransactionsModule\n\n\n\ncluster_TransactionsModule_imports\n\n\n\ncluster_TransactionsModule_exports\n\n\n\ncluster_TransactionsModule_declarations\n\n\n\n\nTransactionDetailsComponent\n\nTransactionDetailsComponent\n\n\n\nTransactionsModule\n\nTransactionsModule\n\nTransactionsModule -->\n\nTransactionDetailsComponent->TransactionsModule\n\n\n\n\n\nTransactionsComponent\n\nTransactionsComponent\n\nTransactionsModule -->\n\nTransactionsComponent->TransactionsModule\n\n\n\n\n\nTransactionDetailsComponent \n\nTransactionDetailsComponent \n\nTransactionDetailsComponent -->\n\nTransactionsModule->TransactionDetailsComponent \n\n\n\n\n\nSharedModule\n\nSharedModule\n\nTransactionsModule -->\n\nSharedModule->TransactionsModule\n\n\n\n\n\nTransactionsRoutingModule\n\nTransactionsRoutingModule\n\nTransactionsModule -->\n\nTransactionsRoutingModule->TransactionsModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/pages/transactions/transactions.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n TransactionDetailsComponent\n \n \n TransactionsComponent\n \n \n \n \n Imports\n \n \n SharedModule\n \n \n TransactionsRoutingModule\n \n \n \n \n Exports\n \n \n TransactionDetailsComponent\n \n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { TransactionsRoutingModule } from '@pages/transactions/transactions-routing.module';\nimport { TransactionsComponent } from '@pages/transactions/transactions.component';\nimport { TransactionDetailsComponent } from '@pages/transactions/transaction-details/transaction-details.component';\nimport { DataTablesModule } from 'angular-datatables';\nimport { SharedModule } from '@app/shared/shared.module';\nimport { MatTableModule } from '@angular/material/table';\nimport { MatCheckboxModule } from '@angular/material/checkbox';\nimport { MatPaginatorModule } from '@angular/material/paginator';\nimport { MatSortModule } from '@angular/material/sort';\nimport { MatFormFieldModule } from '@angular/material/form-field';\nimport { MatInputModule } from '@angular/material/input';\nimport { MatButtonModule } from '@angular/material/button';\nimport { MatIconModule } from '@angular/material/icon';\nimport { MatSelectModule } from '@angular/material/select';\nimport { MatCardModule } from '@angular/material/card';\nimport { MatRippleModule } from '@angular/material/core';\nimport { MatSnackBarModule } from '@angular/material/snack-bar';\n\n@NgModule({\n declarations: [TransactionsComponent, TransactionDetailsComponent],\n exports: [TransactionDetailsComponent],\n imports: [\n CommonModule,\n TransactionsRoutingModule,\n DataTablesModule,\n SharedModule,\n MatTableModule,\n MatCheckboxModule,\n MatPaginatorModule,\n MatSortModule,\n MatFormFieldModule,\n MatInputModule,\n MatButtonModule,\n MatIconModule,\n MatSelectModule,\n MatCardModule,\n MatRippleModule,\n MatSnackBarModule,\n ],\n})\nexport class TransactionsModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/TransactionsRoutingModule.html":{"url":"modules/TransactionsRoutingModule.html","title":"module - TransactionsRoutingModule","body":"\n \n\n\n\n\n Modules\n TransactionsRoutingModule\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n src/app/pages/transactions/transactions-routing.module.ts\n \n\n\n\n\n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { Routes, RouterModule } from '@angular/router';\n\nimport { TransactionsComponent } from '@pages/transactions/transactions.component';\n\nconst routes: Routes = [{ path: '', component: TransactionsComponent }];\n\n@NgModule({\n imports: [RouterModule.forChild(routes)],\n exports: [RouterModule],\n})\nexport class TransactionsRoutingModule {}\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Tx.html":{"url":"interfaces/Tx.html","title":"interface - Tx","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Tx\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/transaction.ts\n \n\n \n Description\n \n \n Transaction data interface \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n block\n \n \n success\n \n \n timestamp\n \n \n txHash\n \n \n txIndex\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n block\n \n \n \n \n block: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n success\n \n \n \n \n success: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n timestamp\n \n \n \n \n timestamp: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n txHash\n \n \n \n \n txHash: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n txIndex\n \n \n \n \n txIndex: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { AccountDetails } from '@app/_models/account';\n\n/** BlocksBloom object interface */\ninterface BlocksBloom {\n low: number;\n blockFilter: string;\n blocktxFilter: string;\n alg: string;\n filterRounds: number;\n}\n\n/** Conversion object interface */\ninterface Conversion {\n destinationToken: TxToken;\n fromValue: number;\n sourceToken: TxToken;\n toValue: number;\n trader: string;\n user: AccountDetails;\n tx: Tx;\n}\n\n/** Transaction object interface */\ninterface Transaction {\n from: string;\n sender: AccountDetails;\n to: string;\n recipient: AccountDetails;\n token: TxToken;\n tx: Tx;\n value: number;\n type?: string;\n}\n\n/** Transaction data interface */\ninterface Tx {\n block: number;\n success: boolean;\n timestamp: number;\n txHash: string;\n txIndex: number;\n}\n\n/** Transaction token object interface */\ninterface TxToken {\n address: string;\n name: string;\n symbol: string;\n}\n\n/** @exports */\nexport { BlocksBloom, Conversion, Transaction, Tx, TxToken };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/TxToken.html":{"url":"interfaces/TxToken.html","title":"interface - TxToken","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n TxToken\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/transaction.ts\n \n\n \n Description\n \n \n Transaction token object interface \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n address\n \n \n name\n \n \n symbol\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n address\n \n \n \n \n address: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n name\n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n symbol\n \n \n \n \n symbol: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { AccountDetails } from '@app/_models/account';\n\n/** BlocksBloom object interface */\ninterface BlocksBloom {\n low: number;\n blockFilter: string;\n blocktxFilter: string;\n alg: string;\n filterRounds: number;\n}\n\n/** Conversion object interface */\ninterface Conversion {\n destinationToken: TxToken;\n fromValue: number;\n sourceToken: TxToken;\n toValue: number;\n trader: string;\n user: AccountDetails;\n tx: Tx;\n}\n\n/** Transaction object interface */\ninterface Transaction {\n from: string;\n sender: AccountDetails;\n to: string;\n recipient: AccountDetails;\n token: TxToken;\n tx: Tx;\n value: number;\n type?: string;\n}\n\n/** Transaction data interface */\ninterface Tx {\n block: number;\n success: boolean;\n timestamp: number;\n txHash: string;\n txIndex: number;\n}\n\n/** Transaction token object interface */\ninterface TxToken {\n address: string;\n name: string;\n symbol: string;\n}\n\n/** @exports */\nexport { BlocksBloom, Conversion, Transaction, Tx, TxToken };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/UserServiceStub.html":{"url":"classes/UserServiceStub.html","title":"class - UserServiceStub","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n UserServiceStub\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/testing/user-service-stub.ts\n \n\n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n actions\n \n \n users\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n approveAction\n \n \n getActionById\n \n \n getUser\n \n \n getUserById\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n actions\n \n \n \n \n \n \n Type : []\n\n \n \n \n \n Default value : [\n { id: 1, user: 'Tom', role: 'enroller', action: 'Disburse RSV 100', approval: false },\n { id: 2, user: 'Christine', role: 'admin', action: 'Change user phone number', approval: true },\n { id: 3, user: 'Will', role: 'superadmin', action: 'Reclaim RSV 1000', approval: true },\n { id: 4, user: 'Vivian', role: 'enroller', action: 'Complete user profile', approval: true },\n { id: 5, user: 'Jack', role: 'enroller', action: 'Reclaim RSV 200', approval: false },\n { id: 6, user: 'Patience', role: 'enroller', action: 'Change user information', approval: false }\n ]\n \n \n \n \n Defined in src/testing/user-service-stub.ts:12\n \n \n\n\n \n \n \n \n \n \n \n \n \n users\n \n \n \n \n \n \n Type : []\n\n \n \n \n \n Default value : [\n {id: 1, name: 'John Doe', phone: '+25412345678', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'user', created: '08/16/2020', balance: '12987', failedPinAttempts: 1, status: 'approved', bio: 'Bodaboda', gender: 'male'},\n {id: 2, name: 'Jane Buck', phone: '+25412341234', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'vendor', created: '04/02/2020', balance: '56281', failedPinAttempts: 0, status: 'approved', bio: 'Groceries', gender: 'female'},\n {id: 3, name: 'Mc Donald', phone: '+25498765432', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'group', created: '11/16/2020', balance: '450', failedPinAttempts: 2, status: 'unapproved', bio: 'Food', gender: 'male'},\n {id: 4, name: 'Hera Cles', phone: '+25498769876', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'user', created: '05/28/2020', balance: '5621', failedPinAttempts: 3, status: 'approved', bio: 'Shop', gender: 'female'},\n {id: 5, name: 'Silver Fia', phone: '+25462518374', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'token agent', created: '10/10/2020', balance: '817', failedPinAttempts: 0, status: 'unapproved', bio: 'Electronics', gender: 'male'},\n ]\n \n \n \n \n Defined in src/testing/user-service-stub.ts:4\n \n \n\n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n approveAction\n \n \n \n \n \n \n \napproveAction(id: number)\n \n \n\n\n \n \n Defined in src/testing/user-service-stub.ts:71\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n id\n \n number\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getActionById\n \n \n \n \n \n \n \ngetActionById(id: string)\n \n \n\n\n \n \n Defined in src/testing/user-service-stub.ts:61\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n id\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getUser\n \n \n \n \n \n \n \ngetUser(userKey: string)\n \n \n\n\n \n \n Defined in src/testing/user-service-stub.ts:37\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n userKey\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getUserById\n \n \n \n \n \n \n \ngetUserById(id: string)\n \n \n\n\n \n \n Defined in src/testing/user-service-stub.ts:21\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n id\n \n string\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n import {Observable, of} from 'rxjs';\n\nexport class UserServiceStub {\n users = [\n {id: 1, name: 'John Doe', phone: '+25412345678', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'user', created: '08/16/2020', balance: '12987', failedPinAttempts: 1, status: 'approved', bio: 'Bodaboda', gender: 'male'},\n {id: 2, name: 'Jane Buck', phone: '+25412341234', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'vendor', created: '04/02/2020', balance: '56281', failedPinAttempts: 0, status: 'approved', bio: 'Groceries', gender: 'female'},\n {id: 3, name: 'Mc Donald', phone: '+25498765432', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'group', created: '11/16/2020', balance: '450', failedPinAttempts: 2, status: 'unapproved', bio: 'Food', gender: 'male'},\n {id: 4, name: 'Hera Cles', phone: '+25498769876', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'user', created: '05/28/2020', balance: '5621', failedPinAttempts: 3, status: 'approved', bio: 'Shop', gender: 'female'},\n {id: 5, name: 'Silver Fia', phone: '+25462518374', address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865', type: 'token agent', created: '10/10/2020', balance: '817', failedPinAttempts: 0, status: 'unapproved', bio: 'Electronics', gender: 'male'},\n ];\n\n actions = [\n { id: 1, user: 'Tom', role: 'enroller', action: 'Disburse RSV 100', approval: false },\n { id: 2, user: 'Christine', role: 'admin', action: 'Change user phone number', approval: true },\n { id: 3, user: 'Will', role: 'superadmin', action: 'Reclaim RSV 1000', approval: true },\n { id: 4, user: 'Vivian', role: 'enroller', action: 'Complete user profile', approval: true },\n { id: 5, user: 'Jack', role: 'enroller', action: 'Reclaim RSV 200', approval: false },\n { id: 6, user: 'Patience', role: 'enroller', action: 'Change user information', approval: false }\n ];\n\n getUserById(id: string): any {\n return {\n id: 1,\n name: 'John Doe',\n phone: '+25412345678',\n address: '0xc86ff893ac40d3950b4d5f94a9b837258b0a9865',\n type: 'user',\n created: '08/16/2020',\n balance: '12987',\n failedPinAttempts: 1,\n status: 'approved',\n bio: 'Bodaboda',\n gender: 'male'\n };\n }\n\n getUser(userKey: string): Observable {\n console.log('Here');\n return of({\n dateRegistered: 1595537208,\n key: {\n ethereum: [\n '0x51d3c8e2e421604e2b644117a362d589c5434739',\n '0x9D7c284907acbd4a0cE2dDD0AA69147A921a573D'\n ]\n },\n location: {\n external: {},\n latitude: '22.430670',\n longitude: '151.002995'\n },\n selling: [\n 'environment',\n 'health',\n 'transport'\n ],\n vcard: 'QkVHSU46VkNBUkQNClZFUlNJT046My4wDQpFTUFJTDphYXJuZXNlbkBob3RtYWlsLmNvbQ0KRk46S3VydMKgS3JhbmpjDQpOOktyYW5qYztLdXJ0Ozs7DQpURUw7VFlQPUNFTEw6NjkyNTAzMzQ5ODE5Ng0KRU5EOlZDQVJEDQo='\n });\n }\n\n getActionById(id: string): any {\n return {\n id: 1,\n user: 'Tom',\n role: 'enroller',\n action: 'Disburse RSV 100',\n approval: false\n };\n }\n\n approveAction(id: number): any {\n return {\n id: 1,\n user: 'Tom',\n role: 'enroller',\n action: 'Disburse RSV 100',\n approval: true\n };\n }\n}\n\n \n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/W3.html":{"url":"interfaces/W3.html","title":"interface - W3","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n W3\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n src/app/_models/settings.ts\n \n\n \n Description\n \n \n Web3 object interface \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n engine\n \n \n provider\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n engine\n \n \n \n \n engine: any\n\n \n \n\n\n \n \n Type : any\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n provider\n \n \n \n \n provider: any\n\n \n \n\n\n \n \n Type : any\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n class Settings {\n w3: W3 = {\n engine: undefined,\n provider: undefined,\n };\n scanFilter: any;\n registry: any;\n txHelper: any;\n\n constructor(scanFilter: any) {\n this.scanFilter = scanFilter;\n }\n}\n\n/** Web3 object interface */\ninterface W3 {\n engine: any;\n provider: any;\n}\n\n/** @exports */\nexport { Settings, W3 };\n\n \n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"coverage.html":{"url":"coverage.html","title":"coverage - coverage","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n Documentation coverage\n\n\n\n \n\n\n\n \n \n File\n Type\n Identifier\n Statements\n \n \n \n \n \n \n src/app/_eth/accountIndex.ts\n \n class\n AccountIndex\n \n 100 %\n (9/9)\n \n \n \n \n \n src/app/_eth/accountIndex.ts\n \n variable\n abi\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_eth/accountIndex.ts\n \n variable\n web3\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_eth/token-registry.ts\n \n class\n TokenRegistry\n \n 100 %\n (8/8)\n \n \n \n \n \n src/app/_eth/token-registry.ts\n \n variable\n abi\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_eth/token-registry.ts\n \n variable\n web3\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_guards/auth.guard.ts\n \n guard\n AuthGuard\n \n 100 %\n (3/3)\n \n \n \n \n \n src/app/_guards/role.guard.ts\n \n guard\n RoleGuard\n \n 100 %\n (3/3)\n \n \n \n \n \n src/app/_helpers/array-sum.ts\n \n function\n arraySum\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/clipboard-copy.ts\n \n function\n copyToClipboard\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/custom-error-state-matcher.ts\n \n class\n CustomErrorStateMatcher\n \n 100 %\n (2/2)\n \n \n \n \n \n src/app/_helpers/custom.validator.ts\n \n class\n CustomValidator\n \n 100 %\n (3/3)\n \n \n \n \n \n src/app/_helpers/export-csv.ts\n \n function\n exportCsv\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/global-error-handler.ts\n \n class\n HttpError\n \n 100 %\n (3/3)\n \n \n \n \n \n src/app/_helpers/global-error-handler.ts\n \n injectable\n GlobalErrorHandler\n \n 100 %\n (6/6)\n \n \n \n \n \n src/app/_helpers/http-getter.ts\n \n function\n HttpGetter\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n interceptor\n MockBackendInterceptor\n \n 100 %\n (2/2)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n accountTypes\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n actions\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n areaNames\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n areaTypes\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n categories\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n genders\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n MockBackendProvider\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n tokens\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n transactionTypes\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/read-csv.ts\n \n function\n parseData\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/read-csv.ts\n \n function\n readCsv\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/read-csv.ts\n \n variable\n objCsv\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/schema-validation.ts\n \n function\n personValidation\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_helpers/schema-validation.ts\n \n function\n vcardValidation\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_interceptors/error.interceptor.ts\n \n interceptor\n ErrorInterceptor\n \n 100 %\n (3/3)\n \n \n \n \n \n src/app/_interceptors/http-config.interceptor.ts\n \n interceptor\n HttpConfigInterceptor\n \n 100 %\n (3/3)\n \n \n \n \n \n src/app/_interceptors/logging.interceptor.ts\n \n interceptor\n LoggingInterceptor\n \n 100 %\n (3/3)\n \n \n \n \n \n src/app/_models/account.ts\n \n interface\n AccountDetails\n \n 9 %\n (1/11)\n \n \n \n \n \n src/app/_models/account.ts\n \n interface\n Meta\n \n 25 %\n (1/4)\n \n \n \n \n \n src/app/_models/account.ts\n \n interface\n MetaResponse\n \n 33 %\n (1/3)\n \n \n \n \n \n src/app/_models/account.ts\n \n interface\n Signature\n \n 20 %\n (1/5)\n \n \n \n \n \n src/app/_models/account.ts\n \n variable\n defaultAccount\n \n 100 %\n (1/1)\n \n \n \n \n \n src/app/_models/mappings.ts\n \n interface\n Action\n \n 16 %\n (1/6)\n \n \n \n \n \n src/app/_models/mappings.ts\n \n interface\n AreaName\n \n 33 %\n (1/3)\n \n \n \n \n \n src/app/_models/mappings.ts\n \n interface\n AreaType\n \n 33 %\n (1/3)\n \n \n \n \n \n src/app/_models/mappings.ts\n \n interface\n Category\n \n 33 %\n (1/3)\n \n \n \n \n \n src/app/_models/settings.ts\n \n class\n Settings\n \n 16 %\n (1/6)\n \n \n \n \n \n src/app/_models/settings.ts\n \n interface\n W3\n \n 33 %\n (1/3)\n \n \n \n \n \n src/app/_models/staff.ts\n \n interface\n Staff\n \n 16 %\n (1/6)\n \n \n \n \n \n src/app/_models/token.ts\n \n interface\n Token\n \n 11 %\n (1/9)\n \n \n \n \n \n src/app/_models/transaction.ts\n \n interface\n BlocksBloom\n \n 16 %\n (1/6)\n \n \n \n \n \n src/app/_models/transaction.ts\n \n interface\n Conversion\n \n 12 %\n (1/8)\n \n \n \n \n \n src/app/_models/transaction.ts\n \n interface\n Transaction\n \n 11 %\n (1/9)\n \n \n \n \n \n src/app/_models/transaction.ts\n \n interface\n Tx\n \n 16 %\n (1/6)\n \n \n \n \n \n src/app/_models/transaction.ts\n \n interface\n TxToken\n \n 25 %\n (1/4)\n \n \n \n \n \n src/app/_pgp/pgp-key-store.ts\n \n class\n MutablePgpKeyStore\n \n 0 %\n (0/26)\n \n \n \n \n \n src/app/_pgp/pgp-key-store.ts\n \n interface\n MutableKeyStore\n \n 0 %\n (0/26)\n \n \n \n \n \n src/app/_pgp/pgp-key-store.ts\n \n variable\n keyring\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_pgp/pgp-signer.ts\n \n class\n PGPSigner\n \n 0 %\n (0/14)\n \n \n \n \n \n src/app/_pgp/pgp-signer.ts\n \n interface\n Signable\n \n 0 %\n (0/2)\n \n \n \n \n \n src/app/_pgp/pgp-signer.ts\n \n interface\n Signature\n \n 0 %\n (0/5)\n \n \n \n \n \n src/app/_pgp/pgp-signer.ts\n \n interface\n Signer\n \n 0 %\n (0/7)\n \n \n \n \n \n src/app/_pgp/pgp-signer.ts\n \n variable\n openpgp\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_services/auth.service.ts\n \n injectable\n AuthService\n \n 0 %\n (0/18)\n \n \n \n \n \n src/app/_services/block-sync.service.ts\n \n injectable\n BlockSyncService\n \n 0 %\n (0/10)\n \n \n \n \n \n src/app/_services/error-dialog.service.ts\n \n injectable\n ErrorDialogService\n \n 0 %\n (0/5)\n \n \n \n \n \n src/app/_services/location.service.ts\n \n injectable\n LocationService\n \n 0 %\n (0/6)\n \n \n \n \n \n src/app/_services/logging.service.ts\n \n injectable\n LoggingService\n \n 0 %\n (0/11)\n \n \n \n \n \n src/app/_services/registry.service.ts\n \n injectable\n RegistryService\n \n 0 %\n (0/7)\n \n \n \n \n \n src/app/_services/token.service.ts\n \n injectable\n TokenService\n \n 0 %\n (0/8)\n \n \n \n \n \n src/app/_services/transaction.service.ts\n \n injectable\n TransactionService\n \n 0 %\n (0/16)\n \n \n \n \n \n src/app/_services/transaction.service.ts\n \n variable\n vCard\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_services/user.service.ts\n \n injectable\n UserService\n \n 0 %\n (0/33)\n \n \n \n \n \n src/app/_services/user.service.ts\n \n variable\n vCard\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/app.component.ts\n \n component\n AppComponent\n \n 0 %\n (0/10)\n \n \n \n \n \n src/app/auth/_directives/password-toggle.directive.ts\n \n directive\n PasswordToggleDirective\n \n 0 %\n (0/5)\n \n \n \n \n \n src/app/auth/auth.component.ts\n \n component\n AuthComponent\n \n 0 %\n (0/11)\n \n \n \n \n \n src/app/pages/accounts/account-details/account-details.component.ts\n \n component\n AccountDetailsComponent\n \n 0 %\n (0/43)\n \n \n \n \n \n src/app/pages/accounts/account-search/account-search.component.ts\n \n component\n AccountSearchComponent\n \n 0 %\n (0/16)\n \n \n \n \n \n src/app/pages/accounts/accounts.component.ts\n \n component\n AccountsComponent\n \n 0 %\n (0/17)\n \n \n \n \n \n src/app/pages/accounts/create-account/create-account.component.ts\n \n component\n CreateAccountComponent\n \n 0 %\n (0/11)\n \n \n \n \n \n src/app/pages/admin/admin.component.ts\n \n component\n AdminComponent\n \n 0 %\n (0/15)\n \n \n \n \n \n src/app/pages/pages.component.ts\n \n component\n PagesComponent\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/pages/settings/organization/organization.component.ts\n \n component\n OrganizationComponent\n \n 0 %\n (0/7)\n \n \n \n \n \n src/app/pages/settings/settings.component.ts\n \n component\n SettingsComponent\n \n 0 %\n (0/12)\n \n \n \n \n \n src/app/pages/tokens/token-details/token-details.component.ts\n \n component\n TokenDetailsComponent\n \n 0 %\n (0/4)\n \n \n \n \n \n src/app/pages/tokens/tokens.component.ts\n \n component\n TokensComponent\n \n 0 %\n (0/11)\n \n \n \n \n \n src/app/pages/transactions/transaction-details/transaction-details.component.ts\n \n component\n TransactionDetailsComponent\n \n 0 %\n (0/12)\n \n \n \n \n \n src/app/pages/transactions/transactions.component.ts\n \n component\n TransactionsComponent\n \n 0 %\n (0/18)\n \n \n \n \n \n src/app/shared/_directives/menu-selection.directive.ts\n \n directive\n MenuSelectionDirective\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/shared/_directives/menu-toggle.directive.ts\n \n directive\n MenuToggleDirective\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/shared/_pipes/safe.pipe.ts\n \n pipe\n SafePipe\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/shared/_pipes/token-ratio.pipe.ts\n \n pipe\n TokenRatioPipe\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/shared/error-dialog/error-dialog.component.ts\n \n component\n ErrorDialogComponent\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/shared/footer/footer.component.ts\n \n component\n FooterComponent\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/shared/network-status/network-status.component.ts\n \n component\n NetworkStatusComponent\n \n 0 %\n (0/5)\n \n \n \n \n \n src/app/shared/sidebar/sidebar.component.ts\n \n component\n SidebarComponent\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/shared/topbar/topbar.component.ts\n \n component\n TopbarComponent\n \n 0 %\n (0/3)\n \n \n \n \n \n src/environments/environment.dev.ts\n \n variable\n environment\n \n 0 %\n (0/1)\n \n \n \n \n \n src/environments/environment.prod.ts\n \n variable\n environment\n \n 0 %\n (0/1)\n \n \n \n \n \n src/environments/environment.ts\n \n variable\n environment\n \n 0 %\n (0/1)\n \n \n \n \n \n src/testing/activated-route-stub.ts\n \n class\n ActivatedRouteStub\n \n 60 %\n (3/5)\n \n \n \n \n \n src/testing/router-link-directive-stub.ts\n \n directive\n RouterLinkDirectiveStub\n \n 0 %\n (0/4)\n \n \n \n \n \n src/testing/shared-module-stub.ts\n \n component\n FooterStubComponent\n \n 0 %\n (0/1)\n \n \n \n \n \n src/testing/shared-module-stub.ts\n \n component\n SidebarStubComponent\n \n 0 %\n (0/1)\n \n \n \n \n \n src/testing/shared-module-stub.ts\n \n component\n TopbarStubComponent\n \n 0 %\n (0/1)\n \n \n \n \n \n src/testing/token-service-stub.ts\n \n class\n TokenServiceStub\n \n 0 %\n (0/2)\n \n \n \n \n \n src/testing/transaction-service-stub.ts\n \n class\n TransactionServiceStub\n \n 0 %\n (0/4)\n \n \n \n \n \n src/testing/user-service-stub.ts\n \n class\n UserServiceStub\n \n 0 %\n (0/7)\n \n \n \n\n\n\n\n\n new Tablesort(document.getElementById('coverage-table'));\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"dependencies.html":{"url":"dependencies.html","title":"package-dependencies - dependencies","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n Dependencies\n \n \n \n @angular/animations : ~10.2.0\n \n @angular/cdk : ~10.2.7\n \n @angular/common : ~10.2.0\n \n @angular/compiler : ~10.2.0\n \n @angular/core : ~10.2.0\n \n @angular/forms : ~10.2.0\n \n @angular/material : ~10.2.7\n \n @angular/platform-browser : ~10.2.0\n \n @angular/platform-browser-dynamic : ~10.2.0\n \n @angular/router : ~10.2.0\n \n @angular/service-worker : ~10.2.0\n \n @popperjs/core : ^2.5.4\n \n angular-datatables : ^9.0.2\n \n block-syncer : ^0.2.4\n \n bootstrap : ^4.5.3\n \n chart.js : ^2.9.4\n \n cic-client : 0.1.4\n \n cic-client-meta : 0.0.7-alpha.6\n \n cic-schemas-data-validator : ^1.0.0-alpha.3\n \n datatables.net : ^1.10.22\n \n datatables.net-dt : ^1.10.22\n \n ethers : ^5.0.31\n \n http-server : ^0.12.3\n \n jquery : ^3.5.1\n \n mocha : ^8.2.1\n \n moolb : ^0.1.0\n \n ng2-charts : ^2.4.2\n \n ngx-logger : ^4.2.1\n \n openpgp : ^4.10.10\n \n popper.js : ^1.16.1\n \n rxjs : ~6.6.0\n \n sha3 : ^2.1.4\n \n tslib : ^2.0.0\n \n vcard-parser : ^1.0.0\n \n vcards-js : ^2.10.0\n \n web3 : ^1.3.0\n \n zone.js : ~0.10.2\n \n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/functions.html":{"url":"miscellaneous/functions.html","title":"miscellaneous-functions - functions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n Miscellaneous\n Functions\n\n\n\n Index\n \n \n \n \n \n \n arraySum   (src/.../array-sum.ts)\n \n \n copyToClipboard   (src/.../clipboard-copy.ts)\n \n \n exportCsv   (src/.../export-csv.ts)\n \n \n HttpGetter   (src/.../http-getter.ts)\n \n \n parseData   (src/.../read-csv.ts)\n \n \n personValidation   (src/.../schema-validation.ts)\n \n \n readCsv   (src/.../read-csv.ts)\n \n \n vcardValidation   (src/.../schema-validation.ts)\n \n \n \n \n \n \n\n\n src/app/_helpers/array-sum.ts\n \n \n \n \n \n \n \n \n arraySum\n \n \n \n \n \n \n \narraySum(arr)\n \n \n\n\n\n\n \n \n Returns the sum of all values in an array.\n\n\n \n Parameters :\n \n \n \n Name\n Optional\n Description\n \n \n \n \n arr\n\n \n No\n \n\n\n \n \nAn array of numbers.\n\n\n \n \n \n \n \n \n Example :\n \n Prints 6 for the array [1, 2, 3]:\n```typescript\n\nconsole.log(arraySum([1, 2, 3]));\n```\n\n \n \n \n Returns : number\n\n \n \n The sum of all values in the array.\n\n \n \n \n \n \n src/app/_helpers/clipboard-copy.ts\n \n \n \n \n \n \n \n \n copyToClipboard\n \n \n \n \n \n \n \ncopyToClipboard(text: any)\n \n \n\n\n\n\n \n \n Copies set text to clipboard.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n text\n \n any\n \n\n \n No\n \n\n\n \n \nThe text to be copied to the clipboard.\n\n\n \n \n \n \n \n \n Example :\n \n copies 'Hello World!' to the clipboard and prints "true":\n```typescript\n\nconsole.log(copyToClipboard('Hello World!'));\n```\n\n \n \n \n Returns : boolean\n\n \n \n true - If the copy operation is successful.\n\n \n \n \n \n \n src/app/_helpers/export-csv.ts\n \n \n \n \n \n \n \n \n exportCsv\n \n \n \n \n \n \n \nexportCsv(arrayData, filename, delimiter)\n \n \n\n\n\n\n \n \n Exports data to a CSV format and provides a download file.\n\n\n \n Parameters :\n \n \n \n Name\n Optional\n Description\n \n \n \n \n arrayData\n\n \n No\n \n\n\n \n \nAn array of data to be converted to CSV format.\n\n\n \n \n \n filename\n\n \n No\n \n\n\n \n \nThe name of the file to be downloaded.\n\n\n \n \n \n delimiter\n\n \n No\n \n\n\n \n \nThe delimiter to be used when converting to CSV format.\nDefaults to commas.\n\n\n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n src/app/_helpers/http-getter.ts\n \n \n \n \n \n \n \n \n HttpGetter\n \n \n \n \n \n \n \nHttpGetter()\n \n \n\n\n\n\n \n \n Provides an avenue of fetching resources via HTTP calls. \n\n\n \n Returns : void\n\n \n \n \n \n \n src/app/_helpers/read-csv.ts\n \n \n \n \n \n \n \n \n parseData\n \n \n \n \n \n \n \nparseData(data: any)\n \n \n\n\n\n\n \n \n Parses data to CSV format.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n data\n \n any\n \n\n \n No\n \n\n\n \n \nThe data to be parsed.\n\n\n \n \n \n \n \n \n \n \n Returns : Array\n\n \n \n An array of the parsed data.\n\n \n \n \n \n \n \n \n \n \n \n \n \n readCsv\n \n \n \n \n \n \n \nreadCsv(input: any)\n \n \n\n\n\n\n \n \n Reads a csv file and converts it to an array.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n input\n \n any\n \n\n \n No\n \n\n\n \n \nThe file to be read.\n\n\n \n \n \n \n \n \n \n \n Returns : Array | void\n\n \n \n An array of the read data.\n\n \n \n \n \n \n src/app/_helpers/schema-validation.ts\n \n \n \n \n \n \n \n \n personValidation\n \n \n \n \n \n \n \npersonValidation(person: any)\n \n \n\n\n\n\n \n \n Validates a person object against the defined Person schema.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n person\n \n any\n \n\n \n No\n \n\n\n \n \nA person object to be validated.\n\n\n \n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n vcardValidation\n \n \n \n \n \n \n \nvcardValidation(vcard: any)\n \n \n\n\n\n\n \n \n Validates a vcard object against the defined Vcard schema.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n vcard\n \n any\n \n\n \n No\n \n\n\n \n \nA vcard object to be validated.\n\n\n \n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"index.html":{"url":"index.html","title":"getting-started - index","body":"\n \n\nCICADA\nAn angular admin web client for managing users and transactions in the CIC network.\nThis project was generated with Angular CLI version 10.2.0.\nAngular CLI\nRun npm install -g @angular/cli to install the angular CLI.\nDevelopment server\nRun npm run start:dev for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.\nCode scaffolding\nRun ng generate component component-name to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module.\nLazy-loading feature modules\nRun ng generate module module-name --route module-name --module app.module to generate a new module on route /module-name in the app module. \nBuild\nset you environment variables - set these via environment variables as found in set-env.ts\n// TODO create a .env file so people don't have to set these one-by-one\nRun npm run build:dev to build the project. The build artifacts will be stored in the dist/ directory. Use the build:prod script for a production build.\nRunning unit tests\nRun npm run test:dev to execute the unit tests via Karma.\nRunning end-to-end tests\nRun ng e2e to execute the end-to-end tests via Protractor.\nEnvironment variables\nEnvironment variables are contained in the .env file. See .env.example for a template.\nDefault environment variables are set in the set-env.ts file.\nOnce loaded they will be populated in the directory src/environments/.\nIt contains environment variables for development on environment.ts and production on environment.prod.ts.\nFurther help\nTo get more help on the Angular CLI use ng help or go check out the Angular CLI Overview and Command Reference page.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"license.html":{"url":"license.html","title":"getting-started - license","body":"\n \n\n GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. https://fsf.org/\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n Preamble The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n The precise terms and conditions for copying, distribution and\nmodification follow.\n TERMS AND CONDITIONS\nDefinitions.\n\"This License\" refers to version 3 of the GNU General Public License.\n\"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\nTo \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\nA \"covered work\" means either the unmodified Program or a work based\non the Program.\nTo \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\nTo \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\nAn interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\nSource Code.\nThe \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\nA \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\nThe \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\nThe \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\nThe Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\nThe Corresponding Source for a work in source code form is that\nsame work.\n\nBasic Permissions.\nAll rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\nYou may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\nConveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\nProtecting Users' Legal Rights From Anti-Circumvention Law.\nNo covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\nWhen you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\nConveying Verbatim Copies.\nYou may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\nYou may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\nConveying Modified Source Versions.\nYou may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\na) The work must carry prominent notices stating that you modified\nit, and giving a relevant date.\nb) The work must carry prominent notices stating that it is\nreleased under this License and any conditions added under section\n\nThis requirement modifies the requirement in section 4 to\n\"keep intact all notices\".\n\nc) You must license the entire work, as a whole, under this\nLicense to anyone who comes into possession of a copy. This\nLicense will therefore apply, along with any applicable section 7\nadditional terms, to the whole of the work, and all its parts,\nregardless of how they are packaged. This License gives no\npermission to license the work in any other way, but it does not\ninvalidate such permission if you have separately received it.\nd) If the work has interactive user interfaces, each must display\nAppropriate Legal Notices; however, if the Program has interactive\ninterfaces that do not display Appropriate Legal Notices, your\nwork need not make them do so.\nA compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\nConveying Non-Source Forms.\nYou may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\na) Convey the object code in, or embodied in, a physical product\n(including a physical distribution medium), accompanied by the\nCorresponding Source fixed on a durable physical medium\ncustomarily used for software interchange.\nb) Convey the object code in, or embodied in, a physical product\n(including a physical distribution medium), accompanied by a\nwritten offer, valid for at least three years and valid for as\nlong as you offer spare parts or customer support for that product\nmodel, to give anyone who possesses the object code either (1) a\ncopy of the Corresponding Source for all the software in the\nproduct that is covered by this License, on a durable physical\nmedium customarily used for software interchange, for a price no\nmore than your reasonable cost of physically performing this\nconveying of source, or (2) access to copy the\nCorresponding Source from a network server at no charge.\nc) Convey individual copies of the object code with a copy of the\nwritten offer to provide the Corresponding Source. This\nalternative is allowed only occasionally and noncommercially, and\nonly if you received the object code with such an offer, in accord\nwith subsection 6b.\nd) Convey the object code by offering access from a designated\nplace (gratis or for a charge), and offer equivalent access to the\nCorresponding Source in the same way through the same place at no\nfurther charge. You need not require recipients to copy the\nCorresponding Source along with the object code. If the place to\ncopy the object code is a network server, the Corresponding Source\nmay be on a different server (operated by you or a third party)\nthat supports equivalent copying facilities, provided you maintain\nclear directions next to the object code saying where to find the\nCorresponding Source. Regardless of what server hosts the\nCorresponding Source, you remain obligated to ensure that it is\navailable for as long as needed to satisfy these requirements.\ne) Convey the object code using peer-to-peer transmission, provided\nyou inform other peers where the object code and Corresponding\nSource of the work are being offered to the general public at no\ncharge under subsection 6d.\nA separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\nA \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\nIf you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\nThe requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\nCorresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\nAdditional Terms.\n\"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\nWhen you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\nNotwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\na) Disclaiming warranty or limiting liability differently from the\nterms of sections 15 and 16 of this License; or\nb) Requiring preservation of specified reasonable legal notices or\nauthor attributions in that material or in the Appropriate Legal\nNotices displayed by works containing it; or\nc) Prohibiting misrepresentation of the origin of that material, or\nrequiring that modified versions of such material be marked in\nreasonable ways as different from the original version; or\nd) Limiting the use for publicity purposes of names of licensors or\nauthors of the material; or\ne) Declining to grant rights under trademark law for use of some\ntrade names, trademarks, or service marks; or\nf) Requiring indemnification of licensors and authors of that\nmaterial by anyone who conveys the material (or modified versions of\nit) with contractual assumptions of liability to the recipient, for\nany liability that these contractual assumptions directly impose on\nthose licensors and authors.\nAll other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\nIf you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\nAdditional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\nTermination.\nYou may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\nHowever, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\nMoreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\nTermination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\nAcceptance Not Required for Having Copies.\nYou are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\nAutomatic Licensing of Downstream Recipients.\nEach time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\nAn \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\nYou may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\nPatents.\nA \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\nA contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\nEach contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\nIn the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\nIf you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\nIf, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\nA patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\nNothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\nNo Surrender of Others' Freedom.\nIf conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\nUse with the GNU Affero General Public License.\nNotwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\nRevised Versions of this License.\nThe Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\nEach version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\nIf the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\nLater license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\nDisclaimer of Warranty.\nTHERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\nLimitation of Liability.\nIN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\nInterpretation of Sections 15 and 16.\nIf the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New ProgramsIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\nTo do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\nCIC Staff Client\nCopyright (C) 2021 Grassroots Economics\nThis program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\nYou should have received a copy of the GNU General Public License\nalong with this program. If not, see https://www.gnu.org/licenses/.\n\n\nAlso add information on how to contact you by electronic and paper mail.\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n Copyright (C) 2021 Grassroots Economics\nThis program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\nThis is free software, and you are welcome to redistribute it\nunder certain conditions; type `show c' for details.The hypothetical commands show w' andshow c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\nhttps://www.gnu.org/licenses/.\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\nhttps://www.gnu.org/licenses/why-not-lgpl.html.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules.html":{"url":"modules.html","title":"modules - modules","body":"\n \n\n\n\n\n Modules\n\n\n \n \n \n \n AccountsModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n AccountsRoutingModule\n \n \n \n No graph available.\n \n \n Browse\n \n \n \n \n \n \n \n AdminModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n AdminRoutingModule\n \n \n \n No graph available.\n \n \n Browse\n \n \n \n \n \n \n \n AppModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n AppRoutingModule\n \n \n \n No graph available.\n \n \n Browse\n \n \n \n \n \n \n \n AuthModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n AuthRoutingModule\n \n \n \n No graph available.\n \n \n Browse\n \n \n \n \n \n \n \n PagesModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n PagesRoutingModule\n \n \n \n No graph available.\n \n \n Browse\n \n \n \n \n \n \n \n SettingsModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n SettingsRoutingModule\n \n \n \n No graph available.\n \n \n Browse\n \n \n \n \n \n \n \n SharedModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n TokensModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n TokensRoutingModule\n \n \n \n No graph available.\n \n \n Browse\n \n \n \n \n \n \n \n TransactionsModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n TransactionsRoutingModule\n \n \n \n No graph available.\n \n \n Browse\n \n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"overview.html":{"url":"overview.html","title":"overview - overview","body":"\n \n\n\n\n Overview\n\n \n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AccountsModule\n\n\n\ncluster_AccountsModule_declarations\n\n\n\ncluster_AccountsModule_imports\n\n\n\ncluster_AdminModule\n\n\n\ncluster_AdminModule_declarations\n\n\n\ncluster_AdminModule_imports\n\n\n\ncluster_AppModule\n\n\n\ncluster_AppModule_declarations\n\n\n\ncluster_AppModule_imports\n\n\n\ncluster_AppModule_bootstrap\n\n\n\ncluster_AppModule_providers\n\n\n\ncluster_AuthModule\n\n\n\ncluster_AuthModule_declarations\n\n\n\ncluster_AuthModule_imports\n\n\n\ncluster_PagesModule\n\n\n\ncluster_PagesModule_declarations\n\n\n\ncluster_PagesModule_imports\n\n\n\ncluster_SettingsModule\n\n\n\ncluster_SettingsModule_declarations\n\n\n\ncluster_SettingsModule_imports\n\n\n\ncluster_SharedModule\n\n\n\ncluster_SharedModule_declarations\n\n\n\ncluster_SharedModule_exports\n\n\n\ncluster_TokensModule\n\n\n\ncluster_TokensModule_declarations\n\n\n\ncluster_TokensModule_imports\n\n\n\ncluster_TransactionsModule\n\n\n\ncluster_TransactionsModule_declarations\n\n\n\ncluster_TransactionsModule_imports\n\n\n\ncluster_TransactionsModule_exports\n\n\n\n\nAccountDetailsComponent\n\nAccountDetailsComponent\n\n\n\nAccountsModule\n\nAccountsModule\n\nAccountsModule -->\n\nAccountDetailsComponent->AccountsModule\n\n\n\n\n\nAccountSearchComponent\n\nAccountSearchComponent\n\nAccountsModule -->\n\nAccountSearchComponent->AccountsModule\n\n\n\n\n\nAccountsComponent\n\nAccountsComponent\n\nAccountsModule -->\n\nAccountsComponent->AccountsModule\n\n\n\n\n\nCreateAccountComponent\n\nCreateAccountComponent\n\nAccountsModule -->\n\nCreateAccountComponent->AccountsModule\n\n\n\n\n\nAccountsRoutingModule\n\nAccountsRoutingModule\n\nAccountsModule -->\n\nAccountsRoutingModule->AccountsModule\n\n\n\n\n\nSharedModule\n\nSharedModule\n\nAccountsModule -->\n\nSharedModule->AccountsModule\n\n\n\n\n\nTransactionsModule\n\nTransactionsModule\n\nTransactionsModule -->\n\nSharedModule->TransactionsModule\n\n\n\n\n\nAdminModule\n\nAdminModule\n\nAdminModule -->\n\nSharedModule->AdminModule\n\n\n\n\n\nAppModule\n\nAppModule\n\nAppModule -->\n\nSharedModule->AppModule\n\n\n\n\n\nPagesModule\n\nPagesModule\n\nPagesModule -->\n\nSharedModule->PagesModule\n\n\n\n\n\nSettingsModule\n\nSettingsModule\n\nSettingsModule -->\n\nSharedModule->SettingsModule\n\n\n\n\n\nFooterComponent \n\nFooterComponent \n\nFooterComponent -->\n\nSharedModule->FooterComponent \n\n\n\n\n\nMenuSelectionDirective \n\nMenuSelectionDirective \n\nMenuSelectionDirective -->\n\nSharedModule->MenuSelectionDirective \n\n\n\n\n\nNetworkStatusComponent \n\nNetworkStatusComponent \n\nNetworkStatusComponent -->\n\nSharedModule->NetworkStatusComponent \n\n\n\n\n\nSafePipe \n\nSafePipe \n\nSafePipe -->\n\nSharedModule->SafePipe \n\n\n\n\n\nSidebarComponent \n\nSidebarComponent \n\nSidebarComponent -->\n\nSharedModule->SidebarComponent \n\n\n\n\n\nTokenRatioPipe \n\nTokenRatioPipe \n\nTokenRatioPipe -->\n\nSharedModule->TokenRatioPipe \n\n\n\n\n\nTopbarComponent \n\nTopbarComponent \n\nTopbarComponent -->\n\nSharedModule->TopbarComponent \n\n\n\n\n\nTokensModule\n\nTokensModule\n\nTokensModule -->\n\nSharedModule->TokensModule\n\n\n\nAccountsModule -->\n\nTransactionsModule->AccountsModule\n\n\n\n\n\nTransactionDetailsComponent \n\nTransactionDetailsComponent \n\nTransactionDetailsComponent -->\n\nTransactionsModule->TransactionDetailsComponent \n\n\n\n\n\nAdminComponent\n\nAdminComponent\n\nAdminModule -->\n\nAdminComponent->AdminModule\n\n\n\n\n\nAdminRoutingModule\n\nAdminRoutingModule\n\nAdminModule -->\n\nAdminRoutingModule->AdminModule\n\n\n\n\n\nAppComponent\n\nAppComponent\n\nAppModule -->\n\nAppComponent->AppModule\n\n\n\n\n\nAppComponent \n\nAppComponent \n\nAppComponent -->\n\nAppModule->AppComponent \n\n\n\n\n\nAppRoutingModule\n\nAppRoutingModule\n\nAppModule -->\n\nAppRoutingModule->AppModule\n\n\n\n\n\nErrorInterceptor\n\nErrorInterceptor\n\nAppModule -->\n\nErrorInterceptor->AppModule\n\n\n\n\n\nGlobalErrorHandler\n\nGlobalErrorHandler\n\nAppModule -->\n\nGlobalErrorHandler->AppModule\n\n\n\n\n\nHttpConfigInterceptor\n\nHttpConfigInterceptor\n\nAppModule -->\n\nHttpConfigInterceptor->AppModule\n\n\n\n\n\nLoggingInterceptor\n\nLoggingInterceptor\n\nAppModule -->\n\nLoggingInterceptor->AppModule\n\n\n\n\n\nAuthComponent\n\nAuthComponent\n\n\n\nAuthModule\n\nAuthModule\n\nAuthModule -->\n\nAuthComponent->AuthModule\n\n\n\n\n\nPasswordToggleDirective\n\nPasswordToggleDirective\n\nAuthModule -->\n\nPasswordToggleDirective->AuthModule\n\n\n\n\n\nAuthRoutingModule\n\nAuthRoutingModule\n\nAuthModule -->\n\nAuthRoutingModule->AuthModule\n\n\n\n\n\nPagesComponent\n\nPagesComponent\n\nPagesModule -->\n\nPagesComponent->PagesModule\n\n\n\n\n\nPagesRoutingModule\n\nPagesRoutingModule\n\nPagesModule -->\n\nPagesRoutingModule->PagesModule\n\n\n\n\n\nOrganizationComponent\n\nOrganizationComponent\n\nSettingsModule -->\n\nOrganizationComponent->SettingsModule\n\n\n\n\n\nSettingsComponent\n\nSettingsComponent\n\nSettingsModule -->\n\nSettingsComponent->SettingsModule\n\n\n\n\n\nSettingsRoutingModule\n\nSettingsRoutingModule\n\nSettingsModule -->\n\nSettingsRoutingModule->SettingsModule\n\n\n\n\n\nErrorDialogComponent\n\nErrorDialogComponent\n\nSharedModule -->\n\nErrorDialogComponent->SharedModule\n\n\n\n\n\nFooterComponent\n\nFooterComponent\n\nSharedModule -->\n\nFooterComponent->SharedModule\n\n\n\n\n\nMenuSelectionDirective\n\nMenuSelectionDirective\n\nSharedModule -->\n\nMenuSelectionDirective->SharedModule\n\n\n\n\n\nMenuToggleDirective\n\nMenuToggleDirective\n\nSharedModule -->\n\nMenuToggleDirective->SharedModule\n\n\n\n\n\nNetworkStatusComponent\n\nNetworkStatusComponent\n\nSharedModule -->\n\nNetworkStatusComponent->SharedModule\n\n\n\n\n\nSafePipe\n\nSafePipe\n\nSharedModule -->\n\nSafePipe->SharedModule\n\n\n\n\n\nSidebarComponent\n\nSidebarComponent\n\nSharedModule -->\n\nSidebarComponent->SharedModule\n\n\n\n\n\nTokenRatioPipe\n\nTokenRatioPipe\n\nSharedModule -->\n\nTokenRatioPipe->SharedModule\n\n\n\n\n\nTopbarComponent\n\nTopbarComponent\n\nSharedModule -->\n\nTopbarComponent->SharedModule\n\n\n\n\n\nTokenDetailsComponent\n\nTokenDetailsComponent\n\nTokensModule -->\n\nTokenDetailsComponent->TokensModule\n\n\n\n\n\nTokensComponent\n\nTokensComponent\n\nTokensModule -->\n\nTokensComponent->TokensModule\n\n\n\n\n\nTokensRoutingModule\n\nTokensRoutingModule\n\nTokensModule -->\n\nTokensRoutingModule->TokensModule\n\n\n\n\n\nTransactionDetailsComponent\n\nTransactionDetailsComponent\n\nTransactionsModule -->\n\nTransactionDetailsComponent->TransactionsModule\n\n\n\n\n\nTransactionsComponent\n\nTransactionsComponent\n\nTransactionsModule -->\n\nTransactionsComponent->TransactionsModule\n\n\n\n\n\nTransactionsRoutingModule\n\nTransactionsRoutingModule\n\nTransactionsModule -->\n\nTransactionsRoutingModule->TransactionsModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n \n\n \n \n \n \n \n \n 17 Modules\n \n \n \n \n \n \n \n \n 22 Components\n \n \n \n \n \n \n \n 4 Directives\n \n \n \n \n \n \n \n 10 Injectables\n \n \n \n \n \n \n \n 2 Pipes\n \n \n \n \n \n \n \n 12 Classes\n \n \n \n \n \n \n \n 2 Guards\n \n \n \n \n \n \n \n 20 Interfaces\n \n \n \n \n \n \n \n \n 0 \n \n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"routes.html":{"url":"routes.html","title":"routes - routes","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Routes\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/variables.html":{"url":"miscellaneous/variables.html","title":"miscellaneous-variables - variables","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n Miscellaneous\n Variables\n\n\n\n Index\n \n \n \n \n \n \n abi   (src/.../accountIndex.ts)\n \n \n abi   (src/.../token-registry.ts)\n \n \n accountTypes   (src/.../mock-backend.ts)\n \n \n actions   (src/.../mock-backend.ts)\n \n \n areaNames   (src/.../mock-backend.ts)\n \n \n areaTypes   (src/.../mock-backend.ts)\n \n \n categories   (src/.../mock-backend.ts)\n \n \n defaultAccount   (src/.../account.ts)\n \n \n environment   (src/.../environment.dev.ts)\n \n \n environment   (src/.../environment.prod.ts)\n \n \n environment   (src/.../environment.ts)\n \n \n genders   (src/.../mock-backend.ts)\n \n \n keyring   (src/.../pgp-key-store.ts)\n \n \n MockBackendProvider   (src/.../mock-backend.ts)\n \n \n objCsv   (src/.../read-csv.ts)\n \n \n openpgp   (src/.../pgp-signer.ts)\n \n \n tokens   (src/.../mock-backend.ts)\n \n \n transactionTypes   (src/.../mock-backend.ts)\n \n \n vCard   (src/.../transaction.service.ts)\n \n \n vCard   (src/.../user.service.ts)\n \n \n web3   (src/.../accountIndex.ts)\n \n \n web3   (src/.../token-registry.ts)\n \n \n \n \n \n \n\n\n src/app/_eth/accountIndex.ts\n \n \n \n \n \n \n \n \n abi\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : require('@src/assets/js/block-sync/data/AccountRegistry.json')\n \n \n\n \n \n Fetch the account registry contract's ABI. \n\n \n \n\n \n \n \n \n \n \n \n \n \n web3\n \n \n \n \n \n \n Type : Web3\n\n \n \n \n \n Default value : new Web3(environment.web3Provider)\n \n \n\n \n \n Establish a connection to the blockchain network. \n\n \n \n\n \n \n\n src/app/_eth/token-registry.ts\n \n \n \n \n \n \n \n \n abi\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : require('@src/assets/js/block-sync/data/TokenUniqueSymbolIndex.json')\n \n \n\n \n \n Fetch the token registry contract's ABI. \n\n \n \n\n \n \n \n \n \n \n \n \n \n web3\n \n \n \n \n \n \n Type : Web3\n\n \n \n \n \n Default value : new Web3(environment.web3Provider)\n \n \n\n \n \n Establish a connection to the blockchain network. \n\n \n \n\n \n \n\n src/app/_helpers/mock-backend.ts\n \n \n \n \n \n \n \n \n accountTypes\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : ['user', 'cashier', 'vendor', 'tokenagent', 'group']\n \n \n\n \n \n A mock of the curated account types. \n\n \n \n\n \n \n \n \n \n \n \n \n \n actions\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : [\n { id: 1, user: 'Tom', role: 'enroller', action: 'Disburse RSV 100', approval: false },\n { id: 2, user: 'Christine', role: 'admin', action: 'Change user phone number', approval: true },\n { id: 3, user: 'Will', role: 'superadmin', action: 'Reclaim RSV 1000', approval: true },\n { id: 4, user: 'Vivian', role: 'enroller', action: 'Complete user profile', approval: true },\n { id: 5, user: 'Jack', role: 'enroller', action: 'Reclaim RSV 200', approval: false },\n { id: 6, user: 'Patience', role: 'enroller', action: 'Change user information', approval: false },\n]\n \n \n\n \n \n A mock of actions made by the admin staff. \n\n \n \n\n \n \n \n \n \n \n \n \n \n areaNames\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : [\n {\n name: 'Mukuru Nairobi',\n locations: [\n 'kayaba',\n 'kayba',\n 'kambi',\n 'mukuru',\n 'masai',\n 'hazina',\n 'south',\n 'tetra',\n 'tetrapak',\n 'ruben',\n 'rueben',\n 'kingston',\n 'korokocho',\n 'kingstone',\n 'kamongo',\n 'lungalunga',\n 'sinai',\n 'sigei',\n 'lungu',\n 'lunga lunga',\n 'owino road',\n 'seigei',\n ],\n },\n {\n name: 'Kinango Kwale',\n locations: [\n 'amani',\n 'bofu',\n 'chibuga',\n 'chikomani',\n 'chilongoni',\n 'chigojoni',\n 'chinguluni',\n 'chigato',\n 'chigale',\n 'chikole',\n 'chilongoni',\n 'chilumani',\n 'chigojoni',\n 'chikomani',\n 'chizini',\n 'chikomeni',\n 'chidzuvini',\n 'chidzivuni',\n 'chikuyu',\n 'chizingo',\n 'doti',\n 'dzugwe',\n 'dzivani',\n 'dzovuni',\n 'hanje',\n 'kasemeni',\n 'katundani',\n 'kibandaogo',\n 'kibandaongo',\n 'kwale',\n 'kinango',\n 'kidzuvini',\n 'kalalani',\n 'kafuduni',\n 'kaloleni',\n 'kilibole',\n 'lutsangani',\n 'peku',\n 'gona',\n 'guro',\n 'gandini',\n 'mkanyeni',\n 'myenzeni',\n 'miyenzeni',\n 'miatsiani',\n 'mienzeni',\n 'mnyenzeni',\n 'minyenzeni',\n 'miyani',\n 'mioleni',\n 'makuluni',\n 'mariakani',\n 'makobeni',\n 'madewani',\n 'mwangaraba',\n 'mwashanga',\n 'miloeni',\n 'mabesheni',\n 'mazeras',\n 'mazera',\n 'mlola',\n 'muugano',\n 'mulunguni',\n 'mabesheni',\n 'miatsani',\n 'miatsiani',\n 'mwache',\n 'mwangani',\n 'mwehavikonje',\n 'miguneni',\n 'nzora',\n 'nzovuni',\n 'vikinduni',\n 'vikolani',\n 'vitangani',\n 'viogato',\n 'vyogato',\n 'vistangani',\n 'yapha',\n 'yava',\n 'yowani',\n 'ziwani',\n 'majengo',\n 'matuga',\n 'vigungani',\n 'vidziweni',\n 'vinyunduni',\n 'ukunda',\n 'kokotoni',\n 'mikindani',\n ],\n },\n {\n name: 'Misc Nairobi',\n locations: [\n 'nairobi',\n 'west',\n 'lindi',\n 'kibera',\n 'kibira',\n 'kibra',\n 'makina',\n 'soweto',\n 'olympic',\n 'kangemi',\n 'ruiru',\n 'congo',\n 'kawangware',\n 'kwangware',\n 'donholm',\n 'dagoreti',\n 'dandora',\n 'kabete',\n 'sinai',\n 'donhom',\n 'donholm',\n 'huruma',\n 'kitengela',\n 'makadara',\n ',mlolongo',\n 'kenyatta',\n 'mlolongo',\n 'tassia',\n 'tasia',\n 'gatina',\n '56',\n 'industrial',\n 'kariobangi',\n 'kasarani',\n 'kayole',\n 'mathare',\n 'pipe',\n 'juja',\n 'uchumi',\n 'jogoo',\n 'umoja',\n 'thika',\n 'kikuyu',\n 'stadium',\n 'buru buru',\n 'ngong',\n 'starehe',\n 'mwiki',\n 'fuata',\n 'kware',\n 'kabiro',\n 'embakassi',\n 'embakasi',\n 'kmoja',\n 'east',\n 'githurai',\n 'landi',\n 'langata',\n 'limuru',\n 'mathere',\n 'dagoretti',\n 'kirembe',\n 'muugano',\n 'mwiki',\n 'toi market',\n ],\n },\n {\n name: 'Misc Mombasa',\n locations: [\n 'mombasa',\n 'likoni',\n 'bangla',\n 'bangladesh',\n 'kizingo',\n 'old town',\n 'makupa',\n 'mvita',\n 'ngombeni',\n 'ngómbeni',\n 'ombeni',\n 'magongo',\n 'miritini',\n 'changamwe',\n 'jomvu',\n 'ohuru',\n 'tudor',\n 'diani',\n ],\n },\n {\n name: 'Kisauni',\n locations: [\n 'bamburi',\n 'kisauni',\n 'mworoni',\n 'nyali',\n 'shanzu',\n 'bombolulu',\n 'mtopanga',\n 'mjambere',\n 'majaoni',\n 'manyani',\n 'magogoni',\n 'junda',\n 'mwakirunge',\n 'mshomoroni',\n ],\n },\n {\n name: 'Kilifi',\n locations: [\n 'kilfi',\n 'kilifi',\n 'mtwapa',\n 'takaungu',\n 'makongeni',\n 'mnarani',\n 'mnarani',\n 'office',\n 'g.e',\n 'ge',\n 'raibai',\n 'ribe',\n ],\n },\n {\n name: 'Kakuma',\n locations: ['kakuma'],\n },\n {\n name: 'Kitui',\n locations: ['kitui', 'mwingi'],\n },\n {\n name: 'Nyanza',\n locations: [\n 'busia',\n 'nyalgunga',\n 'mbita',\n 'siaya',\n 'kisumu',\n 'nyalenda',\n 'hawinga',\n 'rangala',\n 'uyoma',\n 'mumias',\n 'homabay',\n 'homaboy',\n 'migori',\n 'kusumu',\n ],\n },\n {\n name: 'Misc Rural Counties',\n locations: [\n 'makueni',\n 'meru',\n 'kisii',\n 'bomet',\n 'machakos',\n 'bungoma',\n 'eldoret',\n 'kakamega',\n 'kericho',\n 'kajiado',\n 'nandi',\n 'nyeri',\n 'wote',\n 'kiambu',\n 'mwea',\n 'nakuru',\n 'narok',\n ],\n },\n {\n name: 'other',\n locations: ['other', 'none', 'unknown'],\n },\n]\n \n \n\n \n \n A mock of curated area names. \n\n \n \n\n \n \n \n \n \n \n \n \n \n areaTypes\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : [\n {\n name: 'urban',\n area: ['urban', 'nairobi', 'mombasa'],\n },\n {\n name: 'rural',\n area: ['rural', 'kakuma', 'kwale', 'kinango', 'kitui', 'nyanza'],\n },\n {\n name: 'periurban',\n area: ['kilifi', 'periurban'],\n },\n {\n name: 'other',\n area: ['other'],\n },\n]\n \n \n\n \n \n A mock of curated area types. \n\n \n \n\n \n \n \n \n \n \n \n \n \n categories\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : [\n {\n name: 'system',\n products: ['system', 'office main', 'office main phone'],\n },\n {\n name: 'education',\n products: [\n 'book',\n 'coach',\n 'teacher',\n 'sch',\n 'school',\n 'pry',\n 'education',\n 'student',\n 'mwalimu',\n 'maalim',\n 'consultant',\n 'consult',\n 'college',\n 'university',\n 'lecturer',\n 'primary',\n 'secondary',\n 'daycare',\n 'babycare',\n 'baby care',\n 'elim',\n 'eimu',\n 'nursery',\n 'red cross',\n 'volunteer',\n 'instructor',\n 'journalist',\n 'lesson',\n 'academy',\n 'headmistress',\n 'headteacher',\n 'cyber',\n 'researcher',\n 'professor',\n 'demo',\n 'expert',\n 'tution',\n 'tuition',\n 'children',\n 'headmaster',\n 'educator',\n 'Marital counsellor',\n 'counsellor',\n 'trainer',\n 'vijana',\n 'youth',\n 'intern',\n 'redcross',\n 'KRCS',\n 'danish',\n 'science',\n 'data',\n 'facilitator',\n 'vitabu',\n 'kitabu',\n ],\n },\n {\n name: 'faith',\n products: [\n 'pastor',\n 'imam',\n 'madrasa',\n 'religous',\n 'religious',\n 'ustadh',\n 'ustadhi',\n 'Marital counsellor',\n 'counsellor',\n 'church',\n 'kanisa',\n 'mksiti',\n 'donor',\n ],\n },\n {\n name: 'government',\n products: [\n 'elder',\n 'chief',\n 'police',\n 'government',\n 'country',\n 'county',\n 'soldier',\n 'village admin',\n 'ward',\n 'leader',\n 'kra',\n 'mailman',\n 'immagration',\n 'immigration',\n ],\n },\n {\n name: 'environment',\n products: [\n 'conservation',\n 'toilet',\n 'choo',\n 'garbage',\n 'fagio',\n 'waste',\n 'tree',\n 'taka',\n 'scrap',\n 'cleaning',\n 'gardener',\n 'rubbish',\n 'usafi',\n 'mazingira',\n 'miti',\n 'trash',\n 'cleaner',\n 'plastic',\n 'collection',\n 'seedling',\n 'seedlings',\n 'recycling',\n ],\n },\n {\n name: 'farming',\n products: [\n 'farm',\n 'farmer',\n 'farming',\n 'mkulima',\n 'kulima',\n 'ukulima',\n 'wakulima',\n 'jembe',\n 'shamba',\n ],\n },\n {\n name: 'labour',\n products: [\n 'artist',\n 'agent',\n 'guard',\n 'askari',\n 'accountant',\n 'baker',\n 'beadwork',\n 'beauty',\n 'business',\n 'barber',\n 'casual',\n 'electrian',\n 'caretaker',\n 'car wash',\n 'capenter',\n 'construction',\n 'chef',\n 'catering',\n 'cobler',\n 'cobbler',\n 'carwash',\n 'dhobi',\n 'landlord',\n 'design',\n 'carpenter',\n 'fundi',\n 'hawking',\n 'hawker',\n 'househelp',\n 'hsehelp',\n 'house help',\n 'help',\n 'housegirl',\n 'kushona',\n 'juakali',\n 'jualikali',\n 'juacali',\n 'jua kali',\n 'shepherd',\n 'makuti',\n 'kujenga',\n 'kinyozi',\n 'kazi',\n 'knitting',\n 'kufua',\n 'fua',\n 'hustler',\n 'biashara',\n 'labour',\n 'labor',\n 'laundry',\n 'repair',\n 'hair',\n 'posho',\n 'mill',\n 'mtambo',\n 'uvuvi',\n 'engineer',\n 'manager',\n 'tailor',\n 'nguo',\n 'mason',\n 'mtumba',\n 'garage',\n 'mechanic',\n 'mjenzi',\n 'mfugaji',\n 'painter',\n 'receptionist',\n 'printing',\n 'programming',\n 'plumb',\n 'charging',\n 'salon',\n 'mpishi',\n 'msusi',\n 'mgema',\n 'footballer',\n 'photocopy',\n 'peddler',\n 'staff',\n 'sales',\n 'service',\n 'saloon',\n 'seremala',\n 'security',\n 'insurance',\n 'secretary',\n 'shoe',\n 'shepard',\n 'shephard',\n 'tout',\n 'tv',\n 'mvuvi',\n 'mawe',\n 'majani',\n 'maembe',\n 'freelance',\n 'mjengo',\n 'electronics',\n 'photographer',\n 'programmer',\n 'electrician',\n 'washing',\n 'bricks',\n 'welder',\n 'welding',\n 'working',\n 'worker',\n 'watchman',\n 'waiter',\n 'waitress',\n 'viatu',\n 'yoga',\n 'guitarist',\n 'house',\n 'artisan',\n 'musician',\n 'trade',\n 'makonge',\n 'ujenzi',\n 'vendor',\n 'watchlady',\n 'marketing',\n 'beautician',\n 'photo',\n 'metal work',\n 'supplier',\n 'law firm',\n 'brewer',\n ],\n },\n {\n name: 'food',\n products: [\n 'avocado',\n 'bhajia',\n 'bajia',\n 'mbonga',\n 'bofu',\n 'beans',\n 'biscuits',\n 'biringanya',\n 'banana',\n 'bananas',\n 'crisps',\n 'chakula',\n 'coconut',\n 'chapati',\n 'cereal',\n 'chipo',\n 'chapo',\n 'chai',\n 'chips',\n 'cassava',\n 'cake',\n 'cereals',\n 'cook',\n 'corn',\n 'coffee',\n 'chicken',\n 'dagaa',\n 'donut',\n 'dough',\n 'groundnuts',\n 'hotel',\n 'holel',\n 'hoteli',\n 'butcher',\n 'butchery',\n 'fruit',\n 'food',\n 'fruits',\n 'fish',\n 'githeri',\n 'grocery',\n 'grocer',\n 'pojo',\n 'papa',\n 'goats',\n 'mabenda',\n 'mbenda',\n 'poultry',\n 'soda',\n 'peanuts',\n 'potatoes',\n 'samosa',\n 'soko',\n 'samaki',\n 'tomato',\n 'tomatoes',\n 'mchele',\n 'matunda',\n 'mango',\n 'melon',\n 'mellon',\n 'nyanya',\n 'nyama',\n 'omena',\n 'umena',\n 'ndizi',\n 'njugu',\n 'kamba kamba',\n 'khaimati',\n 'kaimati',\n 'kunde',\n 'kuku',\n 'kahawa',\n 'keki',\n 'muguka',\n 'miraa',\n 'milk',\n 'choma',\n 'maziwa',\n 'mboga',\n 'mbog',\n 'busaa',\n 'chumvi',\n 'cabbages',\n 'mabuyu',\n 'machungwa',\n 'mbuzi',\n 'mnazi',\n 'mchicha',\n 'ngombe',\n 'ngano',\n 'nazi',\n 'oranges',\n 'peanuts',\n 'mkate',\n 'bread',\n 'mikate',\n 'vitungu',\n 'sausages',\n 'maize',\n 'mbata',\n 'mchuzi',\n 'mchuuzi',\n 'mandazi',\n 'mbaazi',\n 'mahindi',\n 'maandazi',\n 'mogoka',\n 'meat',\n 'mhogo',\n 'mihogo',\n 'muhogo',\n 'maharagwe',\n 'miwa',\n 'mahamri',\n 'mitumba',\n 'simsim',\n 'porridge',\n 'pilau',\n 'vegetable',\n 'egg',\n 'mayai',\n 'mifugo',\n 'unga',\n 'good',\n 'sima',\n 'sweet',\n 'sweats',\n 'sambusa',\n 'snacks',\n 'sugar',\n 'suger',\n 'ugoro',\n 'sukari',\n 'soup',\n 'spinach',\n 'smokie',\n 'smokies',\n 'sukuma',\n 'tea',\n 'uji',\n 'ugali',\n 'uchuzi',\n 'uchuuzi',\n 'viazi',\n 'yoghurt',\n 'yogurt',\n 'wine',\n 'marondo',\n 'maandzi',\n 'matoke',\n 'omeno',\n 'onions',\n 'nzugu',\n 'korosho',\n 'barafu',\n 'juice',\n ],\n },\n {\n name: 'water',\n products: ['maji', 'water'],\n },\n {\n name: 'health',\n products: [\n 'agrovet',\n 'dispensary',\n 'barakoa',\n 'chemist',\n 'Chemicals',\n 'chv',\n 'doctor',\n 'daktari',\n 'dawa',\n 'hospital',\n 'herbalist',\n 'mganga',\n 'sabuni',\n 'soap',\n 'nurse',\n 'heath',\n 'community health worker',\n 'clinic',\n 'clinical',\n 'mask',\n 'medicine',\n 'lab technician',\n 'pharmacy',\n 'cosmetics',\n 'veterinary',\n 'vet',\n 'sickly',\n 'emergency response',\n 'emergency',\n ],\n },\n {\n name: 'savings',\n products: ['chama', 'group', 'savings', 'loan', 'silc', 'vsla', 'credit', 'finance'],\n },\n {\n name: 'shop',\n products: [\n 'bag',\n 'bead',\n 'belt',\n 'bedding',\n 'jik',\n 'bed',\n 'cement',\n 'botique',\n 'boutique',\n 'lines',\n 'kibanda',\n 'kiosk',\n 'spareparts',\n 'candy',\n 'cloth',\n 'electricals',\n 'mutumba',\n 'cafe',\n 'leso',\n 'lesso',\n 'duka',\n 'spare parts',\n 'socks',\n 'malimali',\n 'mitungi',\n 'mali mali',\n 'hardware',\n 'detergent',\n 'detergents',\n 'dera',\n 'retail',\n 'kamba',\n 'pombe',\n 'pampers',\n 'pool',\n 'phone',\n 'simu',\n 'mangwe',\n 'mikeka',\n 'movie',\n 'shop',\n 'acces',\n 'mchanga',\n 'uto',\n 'airtime',\n 'matress',\n 'mattress',\n 'mattresses',\n 'mpsea',\n 'mpesa',\n 'shirt',\n 'wholesaler',\n 'perfume',\n 'playstation',\n 'tissue',\n 'vikapu',\n 'uniform',\n 'flowers',\n 'vitenge',\n 'utencils',\n 'utensils',\n 'station',\n 'jewel',\n 'pool table',\n 'club',\n 'pub',\n 'bar',\n 'furniture',\n 'm-pesa',\n 'vyombo',\n ],\n },\n {\n name: 'transport',\n products: [\n 'kebeba',\n 'beba',\n 'bebabeba',\n 'bike',\n 'bicycle',\n 'matatu',\n 'boda',\n 'bodaboda',\n 'cart',\n 'carrier',\n 'tour',\n 'travel',\n 'driver',\n 'dereva',\n 'tout',\n 'conductor',\n 'kubeba',\n 'tuktuk',\n 'taxi',\n 'piki',\n 'pikipiki',\n 'manamba',\n 'trasportion',\n 'mkokoteni',\n 'mover',\n 'motorist',\n 'motorbike',\n 'transport',\n 'transpoter',\n 'gari',\n 'magari',\n 'makanga',\n 'car',\n ],\n },\n {\n name: 'fuel/energy',\n products: [\n 'timber',\n 'timberyard',\n 'biogas',\n 'charcol',\n 'charcoal',\n 'kuni',\n 'mbao',\n 'fuel',\n 'makaa',\n 'mafuta',\n 'moto',\n 'solar',\n 'stima',\n 'fire',\n 'firewood',\n 'wood',\n 'oil',\n 'taa',\n 'gas',\n 'paraffin',\n 'parrafin',\n 'parafin',\n 'petrol',\n 'petro',\n 'kerosine',\n 'kerosene',\n 'diesel',\n ],\n },\n {\n name: 'other',\n products: ['other', 'none', 'unknown', 'none'],\n },\n]\n \n \n\n \n \n A mock of the user's business categories \n\n \n \n\n \n \n \n \n \n \n \n \n \n genders\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : ['male', 'female', 'other']\n \n \n\n \n \n A mock of curated genders \n\n \n \n\n \n \n \n \n \n \n \n \n \n MockBackendProvider\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n provide: HTTP_INTERCEPTORS,\n useClass: MockBackendInterceptor,\n multi: true,\n}\n \n \n\n \n \n Exports the MockBackendInterceptor as an Angular provider. \n\n \n \n\n \n \n \n \n \n \n \n \n \n tokens\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : [\n {\n name: 'Giftable Reserve',\n symbol: 'GRZ',\n address: '0xa686005CE37Dce7738436256982C3903f2E4ea8E',\n supply: '1000000001000000000000000000',\n decimals: '18',\n reserves: {},\n },\n {\n name: 'Demo Token',\n symbol: 'DEMO',\n address: '0xc80D6aFF8194114c52AEcD84c9f15fd5c8abb187',\n supply: '99999999999999998976',\n decimals: '18',\n reserves: {\n '0xa686005CE37Dce7738436256982C3903f2E4ea8E': {\n weight: '1000000',\n balance: '99999999999999998976',\n },\n },\n reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a',\n },\n {\n name: 'Foo Token',\n symbol: 'FOO',\n address: '0x9ceD86089f7aBB5A97B40eb0E7521e7aa308d354',\n supply: '1000000000000000001014',\n decimals: '18',\n reserves: {\n '0xa686005CE37Dce7738436256982C3903f2E4ea8E': {\n weight: '1000000',\n balance: '1000000000000000001014',\n },\n },\n reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a',\n },\n {\n name: 'testb',\n symbol: 'tstb',\n address: '0xC63cFA91A3BFf41cE31Ff436f67D3ACBC977DB95',\n supply: '99000',\n decimals: '18',\n reserves: {\n '0xa686005CE37Dce7738436256982C3903f2E4ea8E': { weight: '1000000', balance: '99000' },\n },\n reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a',\n },\n {\n name: 'testa',\n symbol: 'tsta',\n address: '0x8fA4101ef19D0a078239d035659e92b278bD083C',\n supply: '9981',\n decimals: '18',\n reserves: {\n '0xa686005CE37Dce7738436256982C3903f2E4ea8E': { weight: '1000000', balance: '9981' },\n },\n reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a',\n },\n {\n name: 'testc',\n symbol: 'tstc',\n address: '0x4A6fA6bc3BfE4C9661bC692D9798425350C9e3D4',\n supply: '100990',\n decimals: '18',\n reserves: {\n '0xa686005CE37Dce7738436256982C3903f2E4ea8E': { weight: '1000000', balance: '100990' },\n },\n reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a',\n },\n]\n \n \n\n \n \n A mock of the tokens in the system. \n\n \n \n\n \n \n \n \n \n \n \n \n \n transactionTypes\n \n \n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : [\n 'transactions',\n 'conversions',\n 'disbursements',\n 'rewards',\n 'reclamation',\n]\n \n \n\n \n \n A mock of curated transaction types. \n\n \n \n\n \n \n\n src/app/_models/account.ts\n \n \n \n \n \n \n \n \n defaultAccount\n \n \n \n \n \n \n Type : AccountDetails\n\n \n \n \n \n Default value : {\n date_registered: Date.now(),\n gender: 'other',\n identities: {\n evm: {\n 'bloxberg:8996': [''],\n 'oldchain:1': [''],\n },\n latitude: 0,\n longitude: 0,\n },\n location: {\n area_name: 'Kilifi',\n },\n products: [],\n vcard: {\n email: [\n {\n value: '',\n },\n ],\n fn: [\n {\n value: 'Sarafu Contract',\n },\n ],\n n: [\n {\n value: ['Sarafu', 'Contract'],\n },\n ],\n tel: [\n {\n meta: {\n TYP: [],\n },\n value: '',\n },\n ],\n version: [\n {\n value: '3.0',\n },\n ],\n },\n}\n \n \n\n \n \n Default account data object \n\n \n \n\n \n \n\n src/environments/environment.dev.ts\n \n \n \n \n \n \n \n \n environment\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n production: false,\n bloxbergChainId: 8996,\n logLevel: NgxLoggerLevel.ERROR,\n serverLogLevel: NgxLoggerLevel.OFF,\n loggingUrl: '',\n cicMetaUrl: 'https://meta.dev.grassrootseconomics.net',\n publicKeysUrl: 'https://dev.grassrootseconomics.net/.well-known/publickeys/',\n cicCacheUrl: 'https://cache.dev.grassrootseconomics.net',\n web3Provider: 'wss://bloxberg-ws.dev.grassrootseconomics.net',\n cicUssdUrl: 'https://ussd.dev.grassrootseconomics.net',\n registryAddress: '0xea6225212005e86a4490018ded4bf37f3e772161',\n trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C',\n}\n \n \n\n\n \n \n\n src/environments/environment.prod.ts\n \n \n \n \n \n \n \n \n environment\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n production: true,\n bloxbergChainId: 8996,\n logLevel: NgxLoggerLevel.ERROR,\n serverLogLevel: NgxLoggerLevel.OFF,\n loggingUrl: '',\n cicMetaUrl: 'https://meta.dev.grassrootseconomics.net',\n publicKeysUrl: 'https://dev.grassrootseconomics.net/.well-known/publickeys/',\n cicCacheUrl: 'https://cache.dev.grassrootseconomics.net',\n web3Provider: 'wss://bloxberg-ws.dev.grassrootseconomics.net',\n cicUssdUrl: 'https://ussd.dev.grassrootseconomics.net',\n registryAddress: '0xAf1B487491073C2d49136Db3FD87E293302CF839',\n trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C',\n}\n \n \n\n\n \n \n\n src/environments/environment.ts\n \n \n \n \n \n \n \n \n environment\n \n \n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n production: false,\n bloxbergChainId: 8996,\n logLevel: NgxLoggerLevel.ERROR,\n serverLogLevel: NgxLoggerLevel.OFF,\n loggingUrl: 'http://localhost:8000',\n cicMetaUrl: 'https://meta.dev.grassrootseconomics.net',\n publicKeysUrl: 'https://dev.grassrootseconomics.net/.well-known/publickeys/',\n cicCacheUrl: 'https://cache.dev.grassrootseconomics.net',\n web3Provider: 'wss://bloxberg-ws.dev.grassrootseconomics.net',\n cicUssdUrl: 'https://ussd.dev.grassrootseconomics.net',\n registryAddress: '0xea6225212005e86a4490018ded4bf37f3e772161',\n trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C',\n}\n \n \n\n\n \n \n\n src/app/_pgp/pgp-key-store.ts\n \n \n \n \n \n \n \n \n keyring\n \n \n \n \n \n \n Default value : new openpgp.Keyring()\n \n \n\n\n \n \n\n src/app/_helpers/read-csv.ts\n \n \n \n \n \n \n \n \n objCsv\n \n \n \n \n \n \n Type : literal type\n\n \n \n \n \n Default value : {\n size: 0,\n dataFile: [],\n}\n \n \n\n \n \n An object defining the properties of the data read. \n\n \n \n\n \n \n\n src/app/_pgp/pgp-signer.ts\n \n \n \n \n \n \n \n \n openpgp\n \n \n \n \n \n \n Default value : require('openpgp')\n \n \n\n\n \n \n\n src/app/_services/transaction.service.ts\n \n \n \n \n \n \n \n \n vCard\n \n \n \n \n \n \n Default value : require('vcard-parser')\n \n \n\n\n \n \n\n src/app/_services/user.service.ts\n \n \n \n \n \n \n \n \n vCard\n \n \n \n \n \n \n Default value : require('vcard-parser')\n \n \n\n\n \n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"}} } diff --git a/docs/compodoc/miscellaneous/variables.html b/docs/compodoc/miscellaneous/variables.html index 245275b..0664e08 100644 --- a/docs/compodoc/miscellaneous/variables.html +++ b/docs/compodoc/miscellaneous/variables.html @@ -1684,6 +1684,12 @@ + + +

              Default account data object

              +
              + + diff --git a/docs/compodoc/modules/AppModule.html b/docs/compodoc/modules/AppModule.html index 79adacb..857ab62 100644 --- a/docs/compodoc/modules/AppModule.html +++ b/docs/compodoc/modules/AppModule.html @@ -65,123 +65,123 @@ cluster_AppModule + +cluster_AppModule_providers + + cluster_AppModule_imports - + cluster_AppModule_declarations - + cluster_AppModule_bootstrap - - - -cluster_AppModule_providers - + AppComponent - -AppComponent + +AppComponent AppModule - -AppModule + +AppModule AppComponent->AppModule - - + + AppComponent - -AppComponent + +AppComponent AppModule->AppComponent - - + + AppRoutingModule - -AppRoutingModule + +AppRoutingModule AppRoutingModule->AppModule - - + + SharedModule - -SharedModule + +SharedModule SharedModule->AppModule - - + + ErrorInterceptor - -ErrorInterceptor + +ErrorInterceptor ErrorInterceptor->AppModule - - + + GlobalErrorHandler - -GlobalErrorHandler + +GlobalErrorHandler GlobalErrorHandler->AppModule - - + + HttpConfigInterceptor - -HttpConfigInterceptor + +HttpConfigInterceptor HttpConfigInterceptor->AppModule - - + + LoggingInterceptor - -LoggingInterceptor + +LoggingInterceptor LoggingInterceptor->AppModule - - + + diff --git a/docs/compodoc/modules/AppModule/dependencies.svg b/docs/compodoc/modules/AppModule/dependencies.svg index 2f1449e..b03b2b7 100644 --- a/docs/compodoc/modules/AppModule/dependencies.svg +++ b/docs/compodoc/modules/AppModule/dependencies.svg @@ -24,123 +24,123 @@ cluster_AppModule + +cluster_AppModule_providers + + cluster_AppModule_imports - + cluster_AppModule_declarations - + cluster_AppModule_bootstrap - - - -cluster_AppModule_providers - + AppComponent - -AppComponent + +AppComponent AppModule - -AppModule + +AppModule AppComponent->AppModule - - + + AppComponent - -AppComponent + +AppComponent AppModule->AppComponent - - + + AppRoutingModule - -AppRoutingModule + +AppRoutingModule AppRoutingModule->AppModule - - + + SharedModule - -SharedModule + +SharedModule SharedModule->AppModule - - + + ErrorInterceptor - -ErrorInterceptor + +ErrorInterceptor ErrorInterceptor->AppModule - - + + GlobalErrorHandler - -GlobalErrorHandler + +GlobalErrorHandler GlobalErrorHandler->AppModule - - + + HttpConfigInterceptor - -HttpConfigInterceptor + +HttpConfigInterceptor HttpConfigInterceptor->AppModule - - + + LoggingInterceptor - -LoggingInterceptor + +LoggingInterceptor LoggingInterceptor->AppModule - - + + diff --git a/docs/compodoc/modules/SettingsModule.html b/docs/compodoc/modules/SettingsModule.html index 5117520..9e25586 100644 --- a/docs/compodoc/modules/SettingsModule.html +++ b/docs/compodoc/modules/SettingsModule.html @@ -65,67 +65,67 @@ cluster_SettingsModule - -cluster_SettingsModule_imports - - cluster_SettingsModule_declarations - + + + +cluster_SettingsModule_imports + OrganizationComponent - -OrganizationComponent + +OrganizationComponent SettingsModule - -SettingsModule + +SettingsModule OrganizationComponent->SettingsModule - - + + SettingsComponent - -SettingsComponent + +SettingsComponent SettingsComponent->SettingsModule - - + + SettingsRoutingModule - -SettingsRoutingModule + +SettingsRoutingModule SettingsRoutingModule->SettingsModule - - + + SharedModule - -SharedModule + +SharedModule SharedModule->SettingsModule - - + + diff --git a/docs/compodoc/modules/SettingsModule/dependencies.svg b/docs/compodoc/modules/SettingsModule/dependencies.svg index 92b7b9a..0ea9f34 100644 --- a/docs/compodoc/modules/SettingsModule/dependencies.svg +++ b/docs/compodoc/modules/SettingsModule/dependencies.svg @@ -24,67 +24,67 @@ cluster_SettingsModule - -cluster_SettingsModule_imports - - cluster_SettingsModule_declarations - + + + +cluster_SettingsModule_imports + OrganizationComponent - -OrganizationComponent + +OrganizationComponent SettingsModule - -SettingsModule + +SettingsModule OrganizationComponent->SettingsModule - - + + SettingsComponent - -SettingsComponent + +SettingsComponent SettingsComponent->SettingsModule - - + + SettingsRoutingModule - -SettingsRoutingModule + +SettingsRoutingModule SettingsRoutingModule->SettingsModule - - + + SharedModule - -SharedModule + +SharedModule SharedModule->SettingsModule - - + + diff --git a/docs/compodoc/modules/SharedModule.html b/docs/compodoc/modules/SharedModule.html index 4062b36..222e7f8 100644 --- a/docs/compodoc/modules/SharedModule.html +++ b/docs/compodoc/modules/SharedModule.html @@ -65,14 +65,14 @@ cluster_SharedModule - -cluster_SharedModule_declarations - - cluster_SharedModule_exports + +cluster_SharedModule_declarations + + ErrorDialogComponent diff --git a/docs/compodoc/modules/SharedModule/dependencies.svg b/docs/compodoc/modules/SharedModule/dependencies.svg index 288188e..b593a62 100644 --- a/docs/compodoc/modules/SharedModule/dependencies.svg +++ b/docs/compodoc/modules/SharedModule/dependencies.svg @@ -24,14 +24,14 @@ cluster_SharedModule - -cluster_SharedModule_declarations - - cluster_SharedModule_exports + +cluster_SharedModule_declarations + + ErrorDialogComponent diff --git a/docs/compodoc/overview.html b/docs/compodoc/overview.html index 257abdf..c56d3d3 100644 --- a/docs/compodoc/overview.html +++ b/docs/compodoc/overview.html @@ -881,7 +881,7 @@

              -

              18 Classes

              +

              12 Classes

              @@ -897,7 +897,7 @@

              -

              14 Interfaces

              +

              20 Interfaces

              diff --git a/docs/typedoc/assets/js/search.js b/docs/typedoc/assets/js/search.js index 6028e02..506844b 100644 --- a/docs/typedoc/assets/js/search.js +++ b/docs/typedoc/assets/js/search.js @@ -1 +1 @@ -window.searchData = {"kinds":{"1":"Module","32":"Variable","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","262144":"Accessor","16777216":"Reference"},"rows":[{"id":0,"kind":1,"name":"app/_eth/accountIndex","url":"modules/app__eth_accountindex.html","classes":"tsd-kind-module"},{"id":1,"kind":128,"name":"AccountIndex","url":"classes/app__eth_accountindex.accountindex.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_eth/accountIndex"},{"id":2,"kind":512,"name":"constructor","url":"classes/app__eth_accountindex.accountindex.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":3,"kind":1024,"name":"contract","url":"classes/app__eth_accountindex.accountindex.html#contract","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":4,"kind":1024,"name":"contractAddress","url":"classes/app__eth_accountindex.accountindex.html#contractaddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":5,"kind":1024,"name":"signerAddress","url":"classes/app__eth_accountindex.accountindex.html#signeraddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":6,"kind":2048,"name":"addToAccountRegistry","url":"classes/app__eth_accountindex.accountindex.html#addtoaccountregistry","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":7,"kind":2048,"name":"haveAccount","url":"classes/app__eth_accountindex.accountindex.html#haveaccount","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":8,"kind":2048,"name":"last","url":"classes/app__eth_accountindex.accountindex.html#last","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":9,"kind":2048,"name":"totalAccounts","url":"classes/app__eth_accountindex.accountindex.html#totalaccounts","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":10,"kind":1,"name":"app/_eth","url":"modules/app__eth.html","classes":"tsd-kind-module"},{"id":11,"kind":1,"name":"app/_eth/token-registry","url":"modules/app__eth_token_registry.html","classes":"tsd-kind-module"},{"id":12,"kind":128,"name":"TokenRegistry","url":"classes/app__eth_token_registry.tokenregistry.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_eth/token-registry"},{"id":13,"kind":512,"name":"constructor","url":"classes/app__eth_token_registry.tokenregistry.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":14,"kind":1024,"name":"contract","url":"classes/app__eth_token_registry.tokenregistry.html#contract","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":15,"kind":1024,"name":"contractAddress","url":"classes/app__eth_token_registry.tokenregistry.html#contractaddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":16,"kind":1024,"name":"signerAddress","url":"classes/app__eth_token_registry.tokenregistry.html#signeraddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":17,"kind":2048,"name":"addressOf","url":"classes/app__eth_token_registry.tokenregistry.html#addressof","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":18,"kind":2048,"name":"entry","url":"classes/app__eth_token_registry.tokenregistry.html#entry","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":19,"kind":2048,"name":"totalTokens","url":"classes/app__eth_token_registry.tokenregistry.html#totaltokens","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":20,"kind":1,"name":"app/_guards/auth.guard","url":"modules/app__guards_auth_guard.html","classes":"tsd-kind-module"},{"id":21,"kind":128,"name":"AuthGuard","url":"classes/app__guards_auth_guard.authguard.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_guards/auth.guard"},{"id":22,"kind":512,"name":"constructor","url":"classes/app__guards_auth_guard.authguard.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_guards/auth.guard.AuthGuard"},{"id":23,"kind":2048,"name":"canActivate","url":"classes/app__guards_auth_guard.authguard.html#canactivate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_guards/auth.guard.AuthGuard"},{"id":24,"kind":1,"name":"app/_guards","url":"modules/app__guards.html","classes":"tsd-kind-module"},{"id":25,"kind":1,"name":"app/_guards/role.guard","url":"modules/app__guards_role_guard.html","classes":"tsd-kind-module"},{"id":26,"kind":128,"name":"RoleGuard","url":"classes/app__guards_role_guard.roleguard.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_guards/role.guard"},{"id":27,"kind":512,"name":"constructor","url":"classes/app__guards_role_guard.roleguard.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_guards/role.guard.RoleGuard"},{"id":28,"kind":2048,"name":"canActivate","url":"classes/app__guards_role_guard.roleguard.html#canactivate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_guards/role.guard.RoleGuard"},{"id":29,"kind":1,"name":"app/_helpers/array-sum","url":"modules/app__helpers_array_sum.html","classes":"tsd-kind-module"},{"id":30,"kind":64,"name":"arraySum","url":"modules/app__helpers_array_sum.html#arraysum","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/array-sum"},{"id":31,"kind":1,"name":"app/_helpers/clipboard-copy","url":"modules/app__helpers_clipboard_copy.html","classes":"tsd-kind-module"},{"id":32,"kind":64,"name":"copyToClipboard","url":"modules/app__helpers_clipboard_copy.html#copytoclipboard","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/clipboard-copy"},{"id":33,"kind":1,"name":"app/_helpers/custom-error-state-matcher","url":"modules/app__helpers_custom_error_state_matcher.html","classes":"tsd-kind-module"},{"id":34,"kind":128,"name":"CustomErrorStateMatcher","url":"classes/app__helpers_custom_error_state_matcher.customerrorstatematcher.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_helpers/custom-error-state-matcher"},{"id":35,"kind":512,"name":"constructor","url":"classes/app__helpers_custom_error_state_matcher.customerrorstatematcher.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_helpers/custom-error-state-matcher.CustomErrorStateMatcher"},{"id":36,"kind":2048,"name":"isErrorState","url":"classes/app__helpers_custom_error_state_matcher.customerrorstatematcher.html#iserrorstate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_helpers/custom-error-state-matcher.CustomErrorStateMatcher"},{"id":37,"kind":1,"name":"app/_helpers/custom.validator","url":"modules/app__helpers_custom_validator.html","classes":"tsd-kind-module"},{"id":38,"kind":128,"name":"CustomValidator","url":"classes/app__helpers_custom_validator.customvalidator.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_helpers/custom.validator"},{"id":39,"kind":2048,"name":"passwordMatchValidator","url":"classes/app__helpers_custom_validator.customvalidator.html#passwordmatchvalidator","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"app/_helpers/custom.validator.CustomValidator"},{"id":40,"kind":2048,"name":"patternValidator","url":"classes/app__helpers_custom_validator.customvalidator.html#patternvalidator","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"app/_helpers/custom.validator.CustomValidator"},{"id":41,"kind":512,"name":"constructor","url":"classes/app__helpers_custom_validator.customvalidator.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_helpers/custom.validator.CustomValidator"},{"id":42,"kind":1,"name":"app/_helpers/export-csv","url":"modules/app__helpers_export_csv.html","classes":"tsd-kind-module"},{"id":43,"kind":64,"name":"exportCsv","url":"modules/app__helpers_export_csv.html#exportcsv","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/export-csv"},{"id":44,"kind":1,"name":"app/_helpers/global-error-handler","url":"modules/app__helpers_global_error_handler.html","classes":"tsd-kind-module"},{"id":45,"kind":128,"name":"HttpError","url":"classes/app__helpers_global_error_handler.httperror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_helpers/global-error-handler"},{"id":46,"kind":65536,"name":"__type","url":"classes/app__helpers_global_error_handler.httperror.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"app/_helpers/global-error-handler.HttpError"},{"id":47,"kind":512,"name":"constructor","url":"classes/app__helpers_global_error_handler.httperror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"app/_helpers/global-error-handler.HttpError"},{"id":48,"kind":1024,"name":"status","url":"classes/app__helpers_global_error_handler.httperror.html#status","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_helpers/global-error-handler.HttpError"},{"id":49,"kind":128,"name":"GlobalErrorHandler","url":"classes/app__helpers_global_error_handler.globalerrorhandler.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_helpers/global-error-handler"},{"id":50,"kind":512,"name":"constructor","url":"classes/app__helpers_global_error_handler.globalerrorhandler.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"app/_helpers/global-error-handler.GlobalErrorHandler"},{"id":51,"kind":1024,"name":"sentencesForWarningLogging","url":"classes/app__helpers_global_error_handler.globalerrorhandler.html#sentencesforwarninglogging","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_helpers/global-error-handler.GlobalErrorHandler"},{"id":52,"kind":2048,"name":"handleError","url":"classes/app__helpers_global_error_handler.globalerrorhandler.html#handleerror","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"app/_helpers/global-error-handler.GlobalErrorHandler"},{"id":53,"kind":2048,"name":"isWarning","url":"classes/app__helpers_global_error_handler.globalerrorhandler.html#iswarning","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"app/_helpers/global-error-handler.GlobalErrorHandler"},{"id":54,"kind":2048,"name":"logError","url":"classes/app__helpers_global_error_handler.globalerrorhandler.html#logerror","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_helpers/global-error-handler.GlobalErrorHandler"},{"id":55,"kind":1,"name":"app/_helpers/http-getter","url":"modules/app__helpers_http_getter.html","classes":"tsd-kind-module"},{"id":56,"kind":64,"name":"HttpGetter","url":"modules/app__helpers_http_getter.html#httpgetter","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/http-getter"},{"id":57,"kind":1,"name":"app/_helpers","url":"modules/app__helpers.html","classes":"tsd-kind-module"},{"id":58,"kind":1,"name":"app/_helpers/mock-backend","url":"modules/app__helpers_mock_backend.html","classes":"tsd-kind-module"},{"id":59,"kind":128,"name":"MockBackendInterceptor","url":"classes/app__helpers_mock_backend.mockbackendinterceptor.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_helpers/mock-backend"},{"id":60,"kind":512,"name":"constructor","url":"classes/app__helpers_mock_backend.mockbackendinterceptor.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_helpers/mock-backend.MockBackendInterceptor"},{"id":61,"kind":2048,"name":"intercept","url":"classes/app__helpers_mock_backend.mockbackendinterceptor.html#intercept","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_helpers/mock-backend.MockBackendInterceptor"},{"id":62,"kind":32,"name":"MockBackendProvider","url":"modules/app__helpers_mock_backend.html#mockbackendprovider","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"app/_helpers/mock-backend"},{"id":63,"kind":65536,"name":"__type","url":"modules/app__helpers_mock_backend.html#mockbackendprovider.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable","parent":"app/_helpers/mock-backend.MockBackendProvider"},{"id":64,"kind":1024,"name":"provide","url":"modules/app__helpers_mock_backend.html#mockbackendprovider.__type.provide","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_helpers/mock-backend.MockBackendProvider.__type"},{"id":65,"kind":1024,"name":"useClass","url":"modules/app__helpers_mock_backend.html#mockbackendprovider.__type.useclass","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_helpers/mock-backend.MockBackendProvider.__type"},{"id":66,"kind":1024,"name":"multi","url":"modules/app__helpers_mock_backend.html#mockbackendprovider.__type.multi","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_helpers/mock-backend.MockBackendProvider.__type"},{"id":67,"kind":1,"name":"app/_helpers/read-csv","url":"modules/app__helpers_read_csv.html","classes":"tsd-kind-module"},{"id":68,"kind":64,"name":"readCsv","url":"modules/app__helpers_read_csv.html#readcsv","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/read-csv"},{"id":69,"kind":1,"name":"app/_helpers/schema-validation","url":"modules/app__helpers_schema_validation.html","classes":"tsd-kind-module"},{"id":70,"kind":64,"name":"personValidation","url":"modules/app__helpers_schema_validation.html#personvalidation","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/schema-validation"},{"id":71,"kind":64,"name":"vcardValidation","url":"modules/app__helpers_schema_validation.html#vcardvalidation","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/schema-validation"},{"id":72,"kind":1,"name":"app/_interceptors/error.interceptor","url":"modules/app__interceptors_error_interceptor.html","classes":"tsd-kind-module"},{"id":73,"kind":128,"name":"ErrorInterceptor","url":"classes/app__interceptors_error_interceptor.errorinterceptor.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_interceptors/error.interceptor"},{"id":74,"kind":512,"name":"constructor","url":"classes/app__interceptors_error_interceptor.errorinterceptor.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_interceptors/error.interceptor.ErrorInterceptor"},{"id":75,"kind":2048,"name":"intercept","url":"classes/app__interceptors_error_interceptor.errorinterceptor.html#intercept","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_interceptors/error.interceptor.ErrorInterceptor"},{"id":76,"kind":1,"name":"app/_interceptors/http-config.interceptor","url":"modules/app__interceptors_http_config_interceptor.html","classes":"tsd-kind-module"},{"id":77,"kind":128,"name":"HttpConfigInterceptor","url":"classes/app__interceptors_http_config_interceptor.httpconfiginterceptor.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_interceptors/http-config.interceptor"},{"id":78,"kind":512,"name":"constructor","url":"classes/app__interceptors_http_config_interceptor.httpconfiginterceptor.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_interceptors/http-config.interceptor.HttpConfigInterceptor"},{"id":79,"kind":2048,"name":"intercept","url":"classes/app__interceptors_http_config_interceptor.httpconfiginterceptor.html#intercept","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_interceptors/http-config.interceptor.HttpConfigInterceptor"},{"id":80,"kind":1,"name":"app/_interceptors","url":"modules/app__interceptors.html","classes":"tsd-kind-module"},{"id":81,"kind":1,"name":"app/_interceptors/logging.interceptor","url":"modules/app__interceptors_logging_interceptor.html","classes":"tsd-kind-module"},{"id":82,"kind":128,"name":"LoggingInterceptor","url":"classes/app__interceptors_logging_interceptor.logginginterceptor.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_interceptors/logging.interceptor"},{"id":83,"kind":512,"name":"constructor","url":"classes/app__interceptors_logging_interceptor.logginginterceptor.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_interceptors/logging.interceptor.LoggingInterceptor"},{"id":84,"kind":2048,"name":"intercept","url":"classes/app__interceptors_logging_interceptor.logginginterceptor.html#intercept","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_interceptors/logging.interceptor.LoggingInterceptor"},{"id":85,"kind":1,"name":"app/_models/account","url":"modules/app__models_account.html","classes":"tsd-kind-module"},{"id":86,"kind":256,"name":"AccountDetails","url":"interfaces/app__models_account.accountdetails.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":87,"kind":1024,"name":"date_registered","url":"interfaces/app__models_account.accountdetails.html#date_registered","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":88,"kind":1024,"name":"gender","url":"interfaces/app__models_account.accountdetails.html#gender","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":89,"kind":1024,"name":"age","url":"interfaces/app__models_account.accountdetails.html#age","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":90,"kind":1024,"name":"type","url":"interfaces/app__models_account.accountdetails.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":91,"kind":1024,"name":"balance","url":"interfaces/app__models_account.accountdetails.html#balance","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":92,"kind":1024,"name":"identities","url":"interfaces/app__models_account.accountdetails.html#identities","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":93,"kind":65536,"name":"__type","url":"interfaces/app__models_account.accountdetails.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":94,"kind":1024,"name":"evm","url":"interfaces/app__models_account.accountdetails.html#__type.evm","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":95,"kind":65536,"name":"__type","url":"interfaces/app__models_account.accountdetails.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":96,"kind":1024,"name":"bloxberg:8996","url":"interfaces/app__models_account.accountdetails.html#__type.__type-1.bloxberg_8996","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type.__type"},{"id":97,"kind":1024,"name":"oldchain:1","url":"interfaces/app__models_account.accountdetails.html#__type.__type-1.oldchain_1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type.__type"},{"id":98,"kind":1024,"name":"latitude","url":"interfaces/app__models_account.accountdetails.html#__type.latitude","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":99,"kind":1024,"name":"longitude","url":"interfaces/app__models_account.accountdetails.html#__type.longitude","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":100,"kind":1024,"name":"location","url":"interfaces/app__models_account.accountdetails.html#location","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":101,"kind":65536,"name":"__type","url":"interfaces/app__models_account.accountdetails.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":102,"kind":1024,"name":"area","url":"interfaces/app__models_account.accountdetails.html#__type-2.area","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":103,"kind":1024,"name":"area_name","url":"interfaces/app__models_account.accountdetails.html#__type-2.area_name","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":104,"kind":1024,"name":"area_type","url":"interfaces/app__models_account.accountdetails.html#__type-2.area_type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":105,"kind":1024,"name":"products","url":"interfaces/app__models_account.accountdetails.html#products","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":106,"kind":1024,"name":"category","url":"interfaces/app__models_account.accountdetails.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":107,"kind":1024,"name":"vcard","url":"interfaces/app__models_account.accountdetails.html#vcard","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":108,"kind":65536,"name":"__type","url":"interfaces/app__models_account.accountdetails.html#__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":109,"kind":1024,"name":"email","url":"interfaces/app__models_account.accountdetails.html#__type-3.email","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":110,"kind":1024,"name":"fn","url":"interfaces/app__models_account.accountdetails.html#__type-3.fn","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":111,"kind":1024,"name":"n","url":"interfaces/app__models_account.accountdetails.html#__type-3.n","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":112,"kind":1024,"name":"tel","url":"interfaces/app__models_account.accountdetails.html#__type-3.tel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":113,"kind":1024,"name":"version","url":"interfaces/app__models_account.accountdetails.html#__type-3.version","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":114,"kind":256,"name":"Signature","url":"interfaces/app__models_account.signature.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":115,"kind":1024,"name":"algo","url":"interfaces/app__models_account.signature.html#algo","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Signature"},{"id":116,"kind":1024,"name":"data","url":"interfaces/app__models_account.signature.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Signature"},{"id":117,"kind":1024,"name":"digest","url":"interfaces/app__models_account.signature.html#digest","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Signature"},{"id":118,"kind":1024,"name":"engine","url":"interfaces/app__models_account.signature.html#engine","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Signature"},{"id":119,"kind":256,"name":"Meta","url":"interfaces/app__models_account.meta.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":120,"kind":1024,"name":"data","url":"interfaces/app__models_account.meta.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Meta"},{"id":121,"kind":1024,"name":"id","url":"interfaces/app__models_account.meta.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Meta"},{"id":122,"kind":1024,"name":"signature","url":"interfaces/app__models_account.meta.html#signature","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Meta"},{"id":123,"kind":256,"name":"MetaResponse","url":"interfaces/app__models_account.metaresponse.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":124,"kind":1024,"name":"id","url":"interfaces/app__models_account.metaresponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.MetaResponse"},{"id":125,"kind":1024,"name":"m","url":"interfaces/app__models_account.metaresponse.html#m","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.MetaResponse"},{"id":126,"kind":32,"name":"defaultAccount","url":"modules/app__models_account.html#defaultaccount","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"app/_models/account"},{"id":127,"kind":1,"name":"app/_models","url":"modules/app__models.html","classes":"tsd-kind-module"},{"id":128,"kind":1,"name":"app/_models/mappings","url":"modules/app__models_mappings.html","classes":"tsd-kind-module"},{"id":129,"kind":256,"name":"Action","url":"interfaces/app__models_mappings.action.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/mappings"},{"id":130,"kind":1024,"name":"id","url":"interfaces/app__models_mappings.action.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Action"},{"id":131,"kind":1024,"name":"user","url":"interfaces/app__models_mappings.action.html#user","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Action"},{"id":132,"kind":1024,"name":"role","url":"interfaces/app__models_mappings.action.html#role","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Action"},{"id":133,"kind":1024,"name":"action","url":"interfaces/app__models_mappings.action.html#action","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Action"},{"id":134,"kind":1024,"name":"approval","url":"interfaces/app__models_mappings.action.html#approval","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Action"},{"id":135,"kind":256,"name":"Category","url":"interfaces/app__models_mappings.category.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/mappings"},{"id":136,"kind":1024,"name":"name","url":"interfaces/app__models_mappings.category.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Category"},{"id":137,"kind":1024,"name":"products","url":"interfaces/app__models_mappings.category.html#products","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Category"},{"id":138,"kind":256,"name":"AreaName","url":"interfaces/app__models_mappings.areaname.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/mappings"},{"id":139,"kind":1024,"name":"name","url":"interfaces/app__models_mappings.areaname.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.AreaName"},{"id":140,"kind":1024,"name":"locations","url":"interfaces/app__models_mappings.areaname.html#locations","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.AreaName"},{"id":141,"kind":256,"name":"AreaType","url":"interfaces/app__models_mappings.areatype.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/mappings"},{"id":142,"kind":1024,"name":"name","url":"interfaces/app__models_mappings.areatype.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.AreaType"},{"id":143,"kind":1024,"name":"area","url":"interfaces/app__models_mappings.areatype.html#area","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.AreaType"},{"id":144,"kind":1,"name":"app/_models/settings","url":"modules/app__models_settings.html","classes":"tsd-kind-module"},{"id":145,"kind":128,"name":"Settings","url":"classes/app__models_settings.settings.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_models/settings"},{"id":146,"kind":512,"name":"constructor","url":"classes/app__models_settings.settings.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_models/settings.Settings"},{"id":147,"kind":1024,"name":"w3","url":"classes/app__models_settings.settings.html#w3","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/settings.Settings"},{"id":148,"kind":1024,"name":"scanFilter","url":"classes/app__models_settings.settings.html#scanfilter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/settings.Settings"},{"id":149,"kind":1024,"name":"registry","url":"classes/app__models_settings.settings.html#registry","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/settings.Settings"},{"id":150,"kind":1024,"name":"txHelper","url":"classes/app__models_settings.settings.html#txhelper","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/settings.Settings"},{"id":151,"kind":128,"name":"W3","url":"classes/app__models_settings.w3.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_models/settings"},{"id":152,"kind":512,"name":"constructor","url":"classes/app__models_settings.w3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_models/settings.W3"},{"id":153,"kind":1024,"name":"engine","url":"classes/app__models_settings.w3.html#engine","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/settings.W3"},{"id":154,"kind":1024,"name":"provider","url":"classes/app__models_settings.w3.html#provider","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/settings.W3"},{"id":155,"kind":1,"name":"app/_models/staff","url":"modules/app__models_staff.html","classes":"tsd-kind-module"},{"id":156,"kind":256,"name":"Staff","url":"interfaces/app__models_staff.staff.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/staff"},{"id":157,"kind":1024,"name":"comment","url":"interfaces/app__models_staff.staff.html#comment","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/staff.Staff"},{"id":158,"kind":1024,"name":"email","url":"interfaces/app__models_staff.staff.html#email","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/staff.Staff"},{"id":159,"kind":1024,"name":"name","url":"interfaces/app__models_staff.staff.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/staff.Staff"},{"id":160,"kind":1024,"name":"tag","url":"interfaces/app__models_staff.staff.html#tag","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/staff.Staff"},{"id":161,"kind":1024,"name":"userid","url":"interfaces/app__models_staff.staff.html#userid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/staff.Staff"},{"id":162,"kind":1,"name":"app/_models/token","url":"modules/app__models_token.html","classes":"tsd-kind-module"},{"id":163,"kind":256,"name":"Token","url":"interfaces/app__models_token.token.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/token"},{"id":164,"kind":1024,"name":"name","url":"interfaces/app__models_token.token.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":165,"kind":1024,"name":"symbol","url":"interfaces/app__models_token.token.html#symbol","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":166,"kind":1024,"name":"address","url":"interfaces/app__models_token.token.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":167,"kind":1024,"name":"supply","url":"interfaces/app__models_token.token.html#supply","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":168,"kind":1024,"name":"decimals","url":"interfaces/app__models_token.token.html#decimals","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":169,"kind":1024,"name":"reserves","url":"interfaces/app__models_token.token.html#reserves","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":170,"kind":65536,"name":"__type","url":"interfaces/app__models_token.token.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":171,"kind":1024,"name":"0xa686005CE37Dce7738436256982C3903f2E4ea8E","url":"interfaces/app__models_token.token.html#__type.0xa686005ce37dce7738436256982c3903f2e4ea8e","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/token.Token.__type"},{"id":172,"kind":65536,"name":"__type","url":"interfaces/app__models_token.token.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"app/_models/token.Token.__type"},{"id":173,"kind":1024,"name":"weight","url":"interfaces/app__models_token.token.html#__type.__type-1.weight","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/token.Token.__type.__type"},{"id":174,"kind":1024,"name":"balance","url":"interfaces/app__models_token.token.html#__type.__type-1.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/token.Token.__type.__type"},{"id":175,"kind":1024,"name":"reserveRatio","url":"interfaces/app__models_token.token.html#reserveratio","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":176,"kind":1024,"name":"owner","url":"interfaces/app__models_token.token.html#owner","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":177,"kind":1,"name":"app/_models/transaction","url":"modules/app__models_transaction.html","classes":"tsd-kind-module"},{"id":178,"kind":128,"name":"BlocksBloom","url":"classes/app__models_transaction.blocksbloom.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":179,"kind":512,"name":"constructor","url":"classes/app__models_transaction.blocksbloom.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_models/transaction.BlocksBloom"},{"id":180,"kind":1024,"name":"low","url":"classes/app__models_transaction.blocksbloom.html#low","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.BlocksBloom"},{"id":181,"kind":1024,"name":"blockFilter","url":"classes/app__models_transaction.blocksbloom.html#blockfilter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.BlocksBloom"},{"id":182,"kind":1024,"name":"blocktxFilter","url":"classes/app__models_transaction.blocksbloom.html#blocktxfilter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.BlocksBloom"},{"id":183,"kind":1024,"name":"alg","url":"classes/app__models_transaction.blocksbloom.html#alg","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.BlocksBloom"},{"id":184,"kind":1024,"name":"filterRounds","url":"classes/app__models_transaction.blocksbloom.html#filterrounds","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.BlocksBloom"},{"id":185,"kind":128,"name":"TxToken","url":"classes/app__models_transaction.txtoken.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":186,"kind":512,"name":"constructor","url":"classes/app__models_transaction.txtoken.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_models/transaction.TxToken"},{"id":187,"kind":1024,"name":"address","url":"classes/app__models_transaction.txtoken.html#address","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.TxToken"},{"id":188,"kind":1024,"name":"name","url":"classes/app__models_transaction.txtoken.html#name","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.TxToken"},{"id":189,"kind":1024,"name":"symbol","url":"classes/app__models_transaction.txtoken.html#symbol","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.TxToken"},{"id":190,"kind":128,"name":"Tx","url":"classes/app__models_transaction.tx.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":191,"kind":512,"name":"constructor","url":"classes/app__models_transaction.tx.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_models/transaction.Tx"},{"id":192,"kind":1024,"name":"block","url":"classes/app__models_transaction.tx.html#block","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Tx"},{"id":193,"kind":1024,"name":"success","url":"classes/app__models_transaction.tx.html#success","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Tx"},{"id":194,"kind":1024,"name":"timestamp","url":"classes/app__models_transaction.tx.html#timestamp","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Tx"},{"id":195,"kind":1024,"name":"txHash","url":"classes/app__models_transaction.tx.html#txhash","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Tx"},{"id":196,"kind":1024,"name":"txIndex","url":"classes/app__models_transaction.tx.html#txindex","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Tx"},{"id":197,"kind":128,"name":"Transaction","url":"classes/app__models_transaction.transaction.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":198,"kind":512,"name":"constructor","url":"classes/app__models_transaction.transaction.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":199,"kind":1024,"name":"from","url":"classes/app__models_transaction.transaction.html#from","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":200,"kind":1024,"name":"sender","url":"classes/app__models_transaction.transaction.html#sender","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":201,"kind":1024,"name":"to","url":"classes/app__models_transaction.transaction.html#to","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":202,"kind":1024,"name":"recipient","url":"classes/app__models_transaction.transaction.html#recipient","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":203,"kind":1024,"name":"token","url":"classes/app__models_transaction.transaction.html#token","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":204,"kind":1024,"name":"tx","url":"classes/app__models_transaction.transaction.html#tx","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":205,"kind":1024,"name":"value","url":"classes/app__models_transaction.transaction.html#value","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":206,"kind":1024,"name":"type","url":"classes/app__models_transaction.transaction.html#type","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Transaction"},{"id":207,"kind":128,"name":"Conversion","url":"classes/app__models_transaction.conversion.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":208,"kind":512,"name":"constructor","url":"classes/app__models_transaction.conversion.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_models/transaction.Conversion"},{"id":209,"kind":1024,"name":"destinationToken","url":"classes/app__models_transaction.conversion.html#destinationtoken","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Conversion"},{"id":210,"kind":1024,"name":"fromValue","url":"classes/app__models_transaction.conversion.html#fromvalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Conversion"},{"id":211,"kind":1024,"name":"sourceToken","url":"classes/app__models_transaction.conversion.html#sourcetoken","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Conversion"},{"id":212,"kind":1024,"name":"toValue","url":"classes/app__models_transaction.conversion.html#tovalue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Conversion"},{"id":213,"kind":1024,"name":"trader","url":"classes/app__models_transaction.conversion.html#trader","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Conversion"},{"id":214,"kind":1024,"name":"user","url":"classes/app__models_transaction.conversion.html#user","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Conversion"},{"id":215,"kind":1024,"name":"tx","url":"classes/app__models_transaction.conversion.html#tx","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/transaction.Conversion"},{"id":216,"kind":1,"name":"app/_pgp","url":"modules/app__pgp.html","classes":"tsd-kind-module"},{"id":217,"kind":1,"name":"app/_pgp/pgp-key-store","url":"modules/app__pgp_pgp_key_store.html","classes":"tsd-kind-module"},{"id":218,"kind":128,"name":"MutablePgpKeyStore","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_pgp/pgp-key-store"},{"id":219,"kind":512,"name":"constructor","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":220,"kind":2048,"name":"loadKeyring","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#loadkeyring","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":221,"kind":2048,"name":"importKeyPair","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#importkeypair","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":222,"kind":2048,"name":"importPublicKey","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#importpublickey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":223,"kind":2048,"name":"importPrivateKey","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#importprivatekey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":224,"kind":2048,"name":"getPublicKeys","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getpublickeys","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":225,"kind":2048,"name":"getTrustedKeys","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#gettrustedkeys","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":226,"kind":2048,"name":"getTrustedActiveKeys","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#gettrustedactivekeys","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":227,"kind":2048,"name":"getEncryptKeys","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getencryptkeys","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":228,"kind":2048,"name":"getPrivateKeys","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getprivatekeys","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":229,"kind":2048,"name":"getPrivateKey","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getprivatekey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":230,"kind":2048,"name":"isValidKey","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#isvalidkey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":231,"kind":2048,"name":"isEncryptedPrivateKey","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#isencryptedprivatekey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":232,"kind":2048,"name":"getFingerprint","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getfingerprint","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":233,"kind":2048,"name":"getKeyId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getkeyid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":234,"kind":2048,"name":"getPrivateKeyId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getprivatekeyid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":235,"kind":2048,"name":"getKeysForId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getkeysforid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":236,"kind":2048,"name":"getPublicKeyForId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getpublickeyforid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":237,"kind":2048,"name":"getPrivateKeyForId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getprivatekeyforid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":238,"kind":2048,"name":"getPublicKeyForSubkeyId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getpublickeyforsubkeyid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":239,"kind":2048,"name":"getPublicKeysForAddress","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getpublickeysforaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":240,"kind":2048,"name":"removeKeysForId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#removekeysforid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":241,"kind":2048,"name":"removePublicKeyForId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#removepublickeyforid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":242,"kind":2048,"name":"removePublicKey","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#removepublickey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":243,"kind":2048,"name":"clearKeysInKeyring","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#clearkeysinkeyring","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":244,"kind":2048,"name":"sign","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#sign","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":245,"kind":256,"name":"MutableKeyStore","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_pgp/pgp-key-store"},{"id":246,"kind":2048,"name":"loadKeyring","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#loadkeyring","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":247,"kind":2048,"name":"importKeyPair","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#importkeypair","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":248,"kind":2048,"name":"importPublicKey","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#importpublickey","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":249,"kind":2048,"name":"importPrivateKey","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#importprivatekey","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":250,"kind":2048,"name":"getPublicKeys","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getpublickeys","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":251,"kind":2048,"name":"getTrustedKeys","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#gettrustedkeys","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-overwrite","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":252,"kind":2048,"name":"getTrustedActiveKeys","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#gettrustedactivekeys","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-overwrite","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":253,"kind":2048,"name":"getEncryptKeys","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getencryptkeys","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-overwrite","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":254,"kind":2048,"name":"getPrivateKeys","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getprivatekeys","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":255,"kind":2048,"name":"getPrivateKey","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getprivatekey","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-overwrite","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":256,"kind":2048,"name":"isValidKey","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#isvalidkey","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":257,"kind":2048,"name":"isEncryptedPrivateKey","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#isencryptedprivatekey","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":258,"kind":2048,"name":"getFingerprint","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getfingerprint","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-overwrite","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":259,"kind":2048,"name":"getKeyId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getkeyid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":260,"kind":2048,"name":"getPrivateKeyId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getprivatekeyid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":261,"kind":2048,"name":"getKeysForId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getkeysforid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":262,"kind":2048,"name":"getPublicKeyForId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getpublickeyforid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":263,"kind":2048,"name":"getPrivateKeyForId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getprivatekeyforid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":264,"kind":2048,"name":"getPublicKeyForSubkeyId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getpublickeyforsubkeyid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":265,"kind":2048,"name":"getPublicKeysForAddress","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getpublickeysforaddress","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":266,"kind":2048,"name":"removeKeysForId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#removekeysforid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":267,"kind":2048,"name":"removePublicKeyForId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#removepublickeyforid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":268,"kind":2048,"name":"removePublicKey","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#removepublickey","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":269,"kind":2048,"name":"clearKeysInKeyring","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#clearkeysinkeyring","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":270,"kind":2048,"name":"sign","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#sign","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":271,"kind":1,"name":"app/_pgp/pgp-signer","url":"modules/app__pgp_pgp_signer.html","classes":"tsd-kind-module"},{"id":272,"kind":256,"name":"Signable","url":"interfaces/app__pgp_pgp_signer.signable.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_pgp/pgp-signer"},{"id":273,"kind":2048,"name":"digest","url":"interfaces/app__pgp_pgp_signer.signable.html#digest","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signable"},{"id":274,"kind":256,"name":"Signature","url":"interfaces/app__pgp_pgp_signer.signature.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_pgp/pgp-signer"},{"id":275,"kind":1024,"name":"engine","url":"interfaces/app__pgp_pgp_signer.signature.html#engine","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signature"},{"id":276,"kind":1024,"name":"algo","url":"interfaces/app__pgp_pgp_signer.signature.html#algo","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signature"},{"id":277,"kind":1024,"name":"data","url":"interfaces/app__pgp_pgp_signer.signature.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signature"},{"id":278,"kind":1024,"name":"digest","url":"interfaces/app__pgp_pgp_signer.signature.html#digest","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signature"},{"id":279,"kind":256,"name":"Signer","url":"interfaces/app__pgp_pgp_signer.signer.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_pgp/pgp-signer"},{"id":280,"kind":2048,"name":"onsign","url":"interfaces/app__pgp_pgp_signer.signer.html#onsign","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signer"},{"id":281,"kind":2048,"name":"onverify","url":"interfaces/app__pgp_pgp_signer.signer.html#onverify","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signer"},{"id":282,"kind":2048,"name":"fingerprint","url":"interfaces/app__pgp_pgp_signer.signer.html#fingerprint","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signer"},{"id":283,"kind":2048,"name":"prepare","url":"interfaces/app__pgp_pgp_signer.signer.html#prepare","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signer"},{"id":284,"kind":2048,"name":"verify","url":"interfaces/app__pgp_pgp_signer.signer.html#verify","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signer"},{"id":285,"kind":2048,"name":"sign","url":"interfaces/app__pgp_pgp_signer.signer.html#sign","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signer"},{"id":286,"kind":128,"name":"PGPSigner","url":"classes/app__pgp_pgp_signer.pgpsigner.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_pgp/pgp-signer"},{"id":287,"kind":512,"name":"constructor","url":"classes/app__pgp_pgp_signer.pgpsigner.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":288,"kind":1024,"name":"engine","url":"classes/app__pgp_pgp_signer.pgpsigner.html#engine","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":289,"kind":1024,"name":"algo","url":"classes/app__pgp_pgp_signer.pgpsigner.html#algo","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":290,"kind":1024,"name":"dgst","url":"classes/app__pgp_pgp_signer.pgpsigner.html#dgst","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":291,"kind":1024,"name":"signature","url":"classes/app__pgp_pgp_signer.pgpsigner.html#signature","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":292,"kind":1024,"name":"keyStore","url":"classes/app__pgp_pgp_signer.pgpsigner.html#keystore","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":293,"kind":1024,"name":"onsign","url":"classes/app__pgp_pgp_signer.pgpsigner.html#onsign","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":294,"kind":65536,"name":"__type","url":"classes/app__pgp_pgp_signer.pgpsigner.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":295,"kind":1024,"name":"onverify","url":"classes/app__pgp_pgp_signer.pgpsigner.html#onverify","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":296,"kind":65536,"name":"__type","url":"classes/app__pgp_pgp_signer.pgpsigner.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":297,"kind":1024,"name":"loggingService","url":"classes/app__pgp_pgp_signer.pgpsigner.html#loggingservice","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":298,"kind":2048,"name":"fingerprint","url":"classes/app__pgp_pgp_signer.pgpsigner.html#fingerprint","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":299,"kind":2048,"name":"prepare","url":"classes/app__pgp_pgp_signer.pgpsigner.html#prepare","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":300,"kind":2048,"name":"verify","url":"classes/app__pgp_pgp_signer.pgpsigner.html#verify","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":301,"kind":2048,"name":"sign","url":"classes/app__pgp_pgp_signer.pgpsigner.html#sign","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":302,"kind":1,"name":"app/_services/auth.service","url":"modules/app__services_auth_service.html","classes":"tsd-kind-module"},{"id":303,"kind":128,"name":"AuthService","url":"classes/app__services_auth_service.authservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/auth.service"},{"id":304,"kind":512,"name":"constructor","url":"classes/app__services_auth_service.authservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":305,"kind":1024,"name":"sessionToken","url":"classes/app__services_auth_service.authservice.html#sessiontoken","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":306,"kind":1024,"name":"sessionLoginCount","url":"classes/app__services_auth_service.authservice.html#sessionlogincount","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":307,"kind":1024,"name":"mutableKeyStore","url":"classes/app__services_auth_service.authservice.html#mutablekeystore","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":308,"kind":2048,"name":"init","url":"classes/app__services_auth_service.authservice.html#init","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":309,"kind":2048,"name":"setState","url":"classes/app__services_auth_service.authservice.html#setstate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":310,"kind":2048,"name":"getWithToken","url":"classes/app__services_auth_service.authservice.html#getwithtoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":311,"kind":2048,"name":"sendResponse","url":"classes/app__services_auth_service.authservice.html#sendresponse","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":312,"kind":2048,"name":"getChallenge","url":"classes/app__services_auth_service.authservice.html#getchallenge","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":313,"kind":2048,"name":"login","url":"classes/app__services_auth_service.authservice.html#login","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":314,"kind":2048,"name":"loginResponse","url":"classes/app__services_auth_service.authservice.html#loginresponse","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":315,"kind":2048,"name":"loginView","url":"classes/app__services_auth_service.authservice.html#loginview","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":316,"kind":2048,"name":"setKey","url":"classes/app__services_auth_service.authservice.html#setkey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":317,"kind":2048,"name":"logout","url":"classes/app__services_auth_service.authservice.html#logout","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":318,"kind":2048,"name":"getTrustedUsers","url":"classes/app__services_auth_service.authservice.html#gettrustedusers","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":319,"kind":2048,"name":"getPublicKeys","url":"classes/app__services_auth_service.authservice.html#getpublickeys","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":320,"kind":2048,"name":"getPrivateKey","url":"classes/app__services_auth_service.authservice.html#getprivatekey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":321,"kind":1,"name":"app/_services/block-sync.service","url":"modules/app__services_block_sync_service.html","classes":"tsd-kind-module"},{"id":322,"kind":128,"name":"BlockSyncService","url":"classes/app__services_block_sync_service.blocksyncservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/block-sync.service"},{"id":323,"kind":512,"name":"constructor","url":"classes/app__services_block_sync_service.blocksyncservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":324,"kind":1024,"name":"readyStateTarget","url":"classes/app__services_block_sync_service.blocksyncservice.html#readystatetarget","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":325,"kind":1024,"name":"readyState","url":"classes/app__services_block_sync_service.blocksyncservice.html#readystate","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":326,"kind":2048,"name":"blockSync","url":"classes/app__services_block_sync_service.blocksyncservice.html#blocksync","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":327,"kind":2048,"name":"readyStateProcessor","url":"classes/app__services_block_sync_service.blocksyncservice.html#readystateprocessor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":328,"kind":2048,"name":"newTransferEvent","url":"classes/app__services_block_sync_service.blocksyncservice.html#newtransferevent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":329,"kind":2048,"name":"newConversionEvent","url":"classes/app__services_block_sync_service.blocksyncservice.html#newconversionevent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":330,"kind":2048,"name":"scan","url":"classes/app__services_block_sync_service.blocksyncservice.html#scan","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":331,"kind":2048,"name":"fetcher","url":"classes/app__services_block_sync_service.blocksyncservice.html#fetcher","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":332,"kind":1,"name":"app/_services/error-dialog.service","url":"modules/app__services_error_dialog_service.html","classes":"tsd-kind-module"},{"id":333,"kind":128,"name":"ErrorDialogService","url":"classes/app__services_error_dialog_service.errordialogservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/error-dialog.service"},{"id":334,"kind":512,"name":"constructor","url":"classes/app__services_error_dialog_service.errordialogservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/error-dialog.service.ErrorDialogService"},{"id":335,"kind":1024,"name":"isDialogOpen","url":"classes/app__services_error_dialog_service.errordialogservice.html#isdialogopen","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/error-dialog.service.ErrorDialogService"},{"id":336,"kind":1024,"name":"dialog","url":"classes/app__services_error_dialog_service.errordialogservice.html#dialog","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/error-dialog.service.ErrorDialogService"},{"id":337,"kind":2048,"name":"openDialog","url":"classes/app__services_error_dialog_service.errordialogservice.html#opendialog","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/error-dialog.service.ErrorDialogService"},{"id":338,"kind":1,"name":"app/_services","url":"modules/app__services.html","classes":"tsd-kind-module"},{"id":339,"kind":1,"name":"app/_services/location.service","url":"modules/app__services_location_service.html","classes":"tsd-kind-module"},{"id":340,"kind":128,"name":"LocationService","url":"classes/app__services_location_service.locationservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/location.service"},{"id":341,"kind":512,"name":"constructor","url":"classes/app__services_location_service.locationservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":342,"kind":2048,"name":"getAreaNames","url":"classes/app__services_location_service.locationservice.html#getareanames","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":343,"kind":2048,"name":"getAreaNameByLocation","url":"classes/app__services_location_service.locationservice.html#getareanamebylocation","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":344,"kind":2048,"name":"getAreaTypes","url":"classes/app__services_location_service.locationservice.html#getareatypes","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":345,"kind":2048,"name":"getAreaTypeByArea","url":"classes/app__services_location_service.locationservice.html#getareatypebyarea","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":346,"kind":1,"name":"app/_services/logging.service","url":"modules/app__services_logging_service.html","classes":"tsd-kind-module"},{"id":347,"kind":128,"name":"LoggingService","url":"classes/app__services_logging_service.loggingservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/logging.service"},{"id":348,"kind":512,"name":"constructor","url":"classes/app__services_logging_service.loggingservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":349,"kind":1024,"name":"env","url":"classes/app__services_logging_service.loggingservice.html#env","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":350,"kind":1024,"name":"canDebug","url":"classes/app__services_logging_service.loggingservice.html#candebug","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":351,"kind":2048,"name":"sendTraceLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#sendtracelevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":352,"kind":2048,"name":"sendDebugLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#senddebuglevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":353,"kind":2048,"name":"sendInfoLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#sendinfolevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":354,"kind":2048,"name":"sendLogLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#sendloglevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":355,"kind":2048,"name":"sendWarnLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#sendwarnlevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":356,"kind":2048,"name":"sendErrorLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#senderrorlevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":357,"kind":2048,"name":"sendFatalLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#sendfatallevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":358,"kind":1,"name":"app/_services/registry.service","url":"modules/app__services_registry_service.html","classes":"tsd-kind-module"},{"id":359,"kind":128,"name":"RegistryService","url":"classes/app__services_registry_service.registryservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/registry.service"},{"id":360,"kind":512,"name":"constructor","url":"classes/app__services_registry_service.registryservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/registry.service.RegistryService"},{"id":361,"kind":1024,"name":"web3","url":"classes/app__services_registry_service.registryservice.html#web3","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/registry.service.RegistryService"},{"id":362,"kind":1024,"name":"fileGetter","url":"classes/app__services_registry_service.registryservice.html#filegetter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/registry.service.RegistryService"},{"id":363,"kind":1024,"name":"registry","url":"classes/app__services_registry_service.registryservice.html#registry","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/registry.service.RegistryService"},{"id":364,"kind":2048,"name":"getRegistry","url":"classes/app__services_registry_service.registryservice.html#getregistry","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/registry.service.RegistryService"},{"id":365,"kind":2048,"name":"getWeb3","url":"classes/app__services_registry_service.registryservice.html#getweb3","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/registry.service.RegistryService"},{"id":366,"kind":1,"name":"app/_services/token.service","url":"modules/app__services_token_service.html","classes":"tsd-kind-module"},{"id":367,"kind":128,"name":"TokenService","url":"classes/app__services_token_service.tokenservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/token.service"},{"id":368,"kind":512,"name":"constructor","url":"classes/app__services_token_service.tokenservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":369,"kind":1024,"name":"registry","url":"classes/app__services_token_service.tokenservice.html#registry","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":370,"kind":1024,"name":"tokenRegistry","url":"classes/app__services_token_service.tokenservice.html#tokenregistry","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":371,"kind":1024,"name":"LoadEvent","url":"classes/app__services_token_service.tokenservice.html#loadevent","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":372,"kind":2048,"name":"getTokens","url":"classes/app__services_token_service.tokenservice.html#gettokens","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":373,"kind":2048,"name":"getTokenBySymbol","url":"classes/app__services_token_service.tokenservice.html#gettokenbysymbol","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":374,"kind":2048,"name":"getTokenBalance","url":"classes/app__services_token_service.tokenservice.html#gettokenbalance","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":375,"kind":1,"name":"app/_services/transaction.service","url":"modules/app__services_transaction_service.html","classes":"tsd-kind-module"},{"id":376,"kind":128,"name":"TransactionService","url":"classes/app__services_transaction_service.transactionservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/transaction.service"},{"id":377,"kind":512,"name":"constructor","url":"classes/app__services_transaction_service.transactionservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":378,"kind":1024,"name":"transactions","url":"classes/app__services_transaction_service.transactionservice.html#transactions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":379,"kind":1024,"name":"transactionList","url":"classes/app__services_transaction_service.transactionservice.html#transactionlist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/transaction.service.TransactionService"},{"id":380,"kind":1024,"name":"transactionsSubject","url":"classes/app__services_transaction_service.transactionservice.html#transactionssubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":381,"kind":1024,"name":"userInfo","url":"classes/app__services_transaction_service.transactionservice.html#userinfo","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":382,"kind":1024,"name":"web3","url":"classes/app__services_transaction_service.transactionservice.html#web3","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":383,"kind":1024,"name":"registry","url":"classes/app__services_transaction_service.transactionservice.html#registry","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":384,"kind":2048,"name":"getAllTransactions","url":"classes/app__services_transaction_service.transactionservice.html#getalltransactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":385,"kind":2048,"name":"getAddressTransactions","url":"classes/app__services_transaction_service.transactionservice.html#getaddresstransactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":386,"kind":2048,"name":"setTransaction","url":"classes/app__services_transaction_service.transactionservice.html#settransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":387,"kind":2048,"name":"setConversion","url":"classes/app__services_transaction_service.transactionservice.html#setconversion","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":388,"kind":2048,"name":"addTransaction","url":"classes/app__services_transaction_service.transactionservice.html#addtransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":389,"kind":2048,"name":"resetTransactionsList","url":"classes/app__services_transaction_service.transactionservice.html#resettransactionslist","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":390,"kind":2048,"name":"getAccountInfo","url":"classes/app__services_transaction_service.transactionservice.html#getaccountinfo","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":391,"kind":2048,"name":"transferRequest","url":"classes/app__services_transaction_service.transactionservice.html#transferrequest","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":392,"kind":1,"name":"app/_services/user.service","url":"modules/app__services_user_service.html","classes":"tsd-kind-module"},{"id":393,"kind":128,"name":"UserService","url":"classes/app__services_user_service.userservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/user.service"},{"id":394,"kind":512,"name":"constructor","url":"classes/app__services_user_service.userservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":395,"kind":1024,"name":"headers","url":"classes/app__services_user_service.userservice.html#headers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":396,"kind":1024,"name":"keystore","url":"classes/app__services_user_service.userservice.html#keystore","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":397,"kind":1024,"name":"signer","url":"classes/app__services_user_service.userservice.html#signer","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":398,"kind":1024,"name":"registry","url":"classes/app__services_user_service.userservice.html#registry","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":399,"kind":1024,"name":"accounts","url":"classes/app__services_user_service.userservice.html#accounts","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":400,"kind":1024,"name":"accountsList","url":"classes/app__services_user_service.userservice.html#accountslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/user.service.UserService"},{"id":401,"kind":1024,"name":"accountsSubject","url":"classes/app__services_user_service.userservice.html#accountssubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":402,"kind":1024,"name":"actions","url":"classes/app__services_user_service.userservice.html#actions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":403,"kind":1024,"name":"actionsList","url":"classes/app__services_user_service.userservice.html#actionslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/user.service.UserService"},{"id":404,"kind":1024,"name":"actionsSubject","url":"classes/app__services_user_service.userservice.html#actionssubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":405,"kind":2048,"name":"resetPin","url":"classes/app__services_user_service.userservice.html#resetpin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":406,"kind":2048,"name":"getAccountStatus","url":"classes/app__services_user_service.userservice.html#getaccountstatus","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":407,"kind":2048,"name":"getLockedAccounts","url":"classes/app__services_user_service.userservice.html#getlockedaccounts","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":408,"kind":2048,"name":"changeAccountInfo","url":"classes/app__services_user_service.userservice.html#changeaccountinfo","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":409,"kind":2048,"name":"updateMeta","url":"classes/app__services_user_service.userservice.html#updatemeta","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":410,"kind":2048,"name":"getActions","url":"classes/app__services_user_service.userservice.html#getactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":411,"kind":2048,"name":"getActionById","url":"classes/app__services_user_service.userservice.html#getactionbyid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":412,"kind":2048,"name":"approveAction","url":"classes/app__services_user_service.userservice.html#approveaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":413,"kind":2048,"name":"revokeAction","url":"classes/app__services_user_service.userservice.html#revokeaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":414,"kind":2048,"name":"getAccountDetailsFromMeta","url":"classes/app__services_user_service.userservice.html#getaccountdetailsfrommeta","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":415,"kind":2048,"name":"wrap","url":"classes/app__services_user_service.userservice.html#wrap","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":416,"kind":2048,"name":"loadAccounts","url":"classes/app__services_user_service.userservice.html#loadaccounts","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":417,"kind":2048,"name":"getAccountByAddress","url":"classes/app__services_user_service.userservice.html#getaccountbyaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":418,"kind":2048,"name":"getAccountByPhone","url":"classes/app__services_user_service.userservice.html#getaccountbyphone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":419,"kind":2048,"name":"resetAccountsList","url":"classes/app__services_user_service.userservice.html#resetaccountslist","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":420,"kind":2048,"name":"searchAccountByName","url":"classes/app__services_user_service.userservice.html#searchaccountbyname","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":421,"kind":2048,"name":"getCategories","url":"classes/app__services_user_service.userservice.html#getcategories","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":422,"kind":2048,"name":"getCategoryByProduct","url":"classes/app__services_user_service.userservice.html#getcategorybyproduct","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":423,"kind":2048,"name":"getAccountTypes","url":"classes/app__services_user_service.userservice.html#getaccounttypes","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":424,"kind":2048,"name":"getTransactionTypes","url":"classes/app__services_user_service.userservice.html#gettransactiontypes","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":425,"kind":2048,"name":"getGenders","url":"classes/app__services_user_service.userservice.html#getgenders","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":426,"kind":1,"name":"app/app-routing.module","url":"modules/app_app_routing_module.html","classes":"tsd-kind-module"},{"id":427,"kind":128,"name":"AppRoutingModule","url":"classes/app_app_routing_module.approutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/app-routing.module"},{"id":428,"kind":512,"name":"constructor","url":"classes/app_app_routing_module.approutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/app-routing.module.AppRoutingModule"},{"id":429,"kind":1,"name":"app/app.component","url":"modules/app_app_component.html","classes":"tsd-kind-module"},{"id":430,"kind":128,"name":"AppComponent","url":"classes/app_app_component.appcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/app.component"},{"id":431,"kind":512,"name":"constructor","url":"classes/app_app_component.appcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":432,"kind":1024,"name":"title","url":"classes/app_app_component.appcomponent.html#title","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":433,"kind":1024,"name":"readyStateTarget","url":"classes/app_app_component.appcomponent.html#readystatetarget","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":434,"kind":1024,"name":"readyState","url":"classes/app_app_component.appcomponent.html#readystate","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":435,"kind":1024,"name":"mediaQuery","url":"classes/app_app_component.appcomponent.html#mediaquery","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":436,"kind":2048,"name":"ngOnInit","url":"classes/app_app_component.appcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":437,"kind":2048,"name":"onResize","url":"classes/app_app_component.appcomponent.html#onresize","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":438,"kind":2048,"name":"cicTransfer","url":"classes/app_app_component.appcomponent.html#cictransfer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":439,"kind":2048,"name":"cicConvert","url":"classes/app_app_component.appcomponent.html#cicconvert","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":440,"kind":1,"name":"app/app.module","url":"modules/app_app_module.html","classes":"tsd-kind-module"},{"id":441,"kind":128,"name":"AppModule","url":"classes/app_app_module.appmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/app.module"},{"id":442,"kind":512,"name":"constructor","url":"classes/app_app_module.appmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/app.module.AppModule"},{"id":443,"kind":1,"name":"app/auth/_directives","url":"modules/app_auth__directives.html","classes":"tsd-kind-module"},{"id":444,"kind":1,"name":"app/auth/_directives/password-toggle.directive","url":"modules/app_auth__directives_password_toggle_directive.html","classes":"tsd-kind-module"},{"id":445,"kind":128,"name":"PasswordToggleDirective","url":"classes/app_auth__directives_password_toggle_directive.passwordtoggledirective.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/auth/_directives/password-toggle.directive"},{"id":446,"kind":512,"name":"constructor","url":"classes/app_auth__directives_password_toggle_directive.passwordtoggledirective.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/auth/_directives/password-toggle.directive.PasswordToggleDirective"},{"id":447,"kind":1024,"name":"id","url":"classes/app_auth__directives_password_toggle_directive.passwordtoggledirective.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/auth/_directives/password-toggle.directive.PasswordToggleDirective"},{"id":448,"kind":1024,"name":"iconId","url":"classes/app_auth__directives_password_toggle_directive.passwordtoggledirective.html#iconid","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/auth/_directives/password-toggle.directive.PasswordToggleDirective"},{"id":449,"kind":2048,"name":"togglePasswordVisibility","url":"classes/app_auth__directives_password_toggle_directive.passwordtoggledirective.html#togglepasswordvisibility","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/auth/_directives/password-toggle.directive.PasswordToggleDirective"},{"id":450,"kind":1,"name":"app/auth/auth-routing.module","url":"modules/app_auth_auth_routing_module.html","classes":"tsd-kind-module"},{"id":451,"kind":128,"name":"AuthRoutingModule","url":"classes/app_auth_auth_routing_module.authroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/auth/auth-routing.module"},{"id":452,"kind":512,"name":"constructor","url":"classes/app_auth_auth_routing_module.authroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/auth/auth-routing.module.AuthRoutingModule"},{"id":453,"kind":1,"name":"app/auth/auth.component","url":"modules/app_auth_auth_component.html","classes":"tsd-kind-module"},{"id":454,"kind":128,"name":"AuthComponent","url":"classes/app_auth_auth_component.authcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/auth/auth.component"},{"id":455,"kind":512,"name":"constructor","url":"classes/app_auth_auth_component.authcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":456,"kind":1024,"name":"keyForm","url":"classes/app_auth_auth_component.authcomponent.html#keyform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":457,"kind":1024,"name":"submitted","url":"classes/app_auth_auth_component.authcomponent.html#submitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":458,"kind":1024,"name":"loading","url":"classes/app_auth_auth_component.authcomponent.html#loading","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":459,"kind":1024,"name":"matcher","url":"classes/app_auth_auth_component.authcomponent.html#matcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":460,"kind":2048,"name":"ngOnInit","url":"classes/app_auth_auth_component.authcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":461,"kind":262144,"name":"keyFormStub","url":"classes/app_auth_auth_component.authcomponent.html#keyformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":462,"kind":2048,"name":"onSubmit","url":"classes/app_auth_auth_component.authcomponent.html#onsubmit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":463,"kind":2048,"name":"login","url":"classes/app_auth_auth_component.authcomponent.html#login","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":464,"kind":2048,"name":"switchWindows","url":"classes/app_auth_auth_component.authcomponent.html#switchwindows","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":465,"kind":2048,"name":"toggleDisplay","url":"classes/app_auth_auth_component.authcomponent.html#toggledisplay","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":466,"kind":1,"name":"app/auth/auth.module","url":"modules/app_auth_auth_module.html","classes":"tsd-kind-module"},{"id":467,"kind":128,"name":"AuthModule","url":"classes/app_auth_auth_module.authmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/auth/auth.module"},{"id":468,"kind":512,"name":"constructor","url":"classes/app_auth_auth_module.authmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/auth/auth.module.AuthModule"},{"id":469,"kind":1,"name":"app/pages/accounts/account-details/account-details.component","url":"modules/app_pages_accounts_account_details_account_details_component.html","classes":"tsd-kind-module"},{"id":470,"kind":128,"name":"AccountDetailsComponent","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/accounts/account-details/account-details.component"},{"id":471,"kind":512,"name":"constructor","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":472,"kind":1024,"name":"transactionsDataSource","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactionsdatasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":473,"kind":1024,"name":"transactionsDisplayedColumns","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactionsdisplayedcolumns","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":474,"kind":1024,"name":"transactionsDefaultPageSize","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactionsdefaultpagesize","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":475,"kind":1024,"name":"transactionsPageSizeOptions","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactionspagesizeoptions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":476,"kind":1024,"name":"transactionTablePaginator","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactiontablepaginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":477,"kind":1024,"name":"transactionTableSort","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactiontablesort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":478,"kind":1024,"name":"userDataSource","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#userdatasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":479,"kind":1024,"name":"userDisplayedColumns","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#userdisplayedcolumns","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":480,"kind":1024,"name":"usersDefaultPageSize","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#usersdefaultpagesize","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":481,"kind":1024,"name":"usersPageSizeOptions","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#userspagesizeoptions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":482,"kind":1024,"name":"userTablePaginator","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#usertablepaginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":483,"kind":1024,"name":"userTableSort","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#usertablesort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":484,"kind":1024,"name":"accountInfoForm","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accountinfoform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":485,"kind":1024,"name":"account","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#account","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":486,"kind":1024,"name":"accountAddress","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accountaddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":487,"kind":1024,"name":"accountStatus","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accountstatus","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":488,"kind":1024,"name":"accounts","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accounts","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":489,"kind":1024,"name":"accountsType","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accountstype","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":490,"kind":1024,"name":"categories","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#categories","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":491,"kind":1024,"name":"areaNames","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#areanames","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":492,"kind":1024,"name":"areaTypes","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#areatypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":493,"kind":1024,"name":"transaction","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transaction","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":494,"kind":1024,"name":"transactions","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":495,"kind":1024,"name":"transactionsType","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactionstype","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":496,"kind":1024,"name":"accountTypes","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accounttypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":497,"kind":1024,"name":"transactionsTypes","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactionstypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":498,"kind":1024,"name":"genders","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#genders","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":499,"kind":1024,"name":"matcher","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#matcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":500,"kind":1024,"name":"submitted","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#submitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":501,"kind":1024,"name":"bloxbergLink","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#bloxberglink","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":502,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":503,"kind":2048,"name":"doTransactionFilter","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#dotransactionfilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":504,"kind":2048,"name":"doUserFilter","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#douserfilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":505,"kind":2048,"name":"viewTransaction","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#viewtransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":506,"kind":2048,"name":"viewAccount","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#viewaccount","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":507,"kind":262144,"name":"accountInfoFormStub","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accountinfoformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":508,"kind":2048,"name":"saveInfo","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#saveinfo","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":509,"kind":2048,"name":"filterAccounts","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#filteraccounts","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":510,"kind":2048,"name":"filterTransactions","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#filtertransactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":511,"kind":2048,"name":"resetPin","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#resetpin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":512,"kind":2048,"name":"downloadCsv","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#downloadcsv","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":513,"kind":2048,"name":"copyAddress","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#copyaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":514,"kind":1,"name":"app/pages/accounts/account-search/account-search.component","url":"modules/app_pages_accounts_account_search_account_search_component.html","classes":"tsd-kind-module"},{"id":515,"kind":128,"name":"AccountSearchComponent","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/accounts/account-search/account-search.component"},{"id":516,"kind":512,"name":"constructor","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":517,"kind":1024,"name":"nameSearchForm","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#namesearchform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":518,"kind":1024,"name":"nameSearchSubmitted","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#namesearchsubmitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":519,"kind":1024,"name":"nameSearchLoading","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#namesearchloading","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":520,"kind":1024,"name":"phoneSearchForm","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#phonesearchform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":521,"kind":1024,"name":"phoneSearchSubmitted","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#phonesearchsubmitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":522,"kind":1024,"name":"phoneSearchLoading","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#phonesearchloading","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":523,"kind":1024,"name":"addressSearchForm","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#addresssearchform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":524,"kind":1024,"name":"addressSearchSubmitted","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#addresssearchsubmitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":525,"kind":1024,"name":"addressSearchLoading","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#addresssearchloading","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":526,"kind":1024,"name":"matcher","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#matcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":527,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":528,"kind":262144,"name":"nameSearchFormStub","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#namesearchformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":529,"kind":262144,"name":"phoneSearchFormStub","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#phonesearchformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":530,"kind":262144,"name":"addressSearchFormStub","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#addresssearchformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":531,"kind":2048,"name":"onNameSearch","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#onnamesearch","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":532,"kind":2048,"name":"onPhoneSearch","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#onphonesearch","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":533,"kind":2048,"name":"onAddressSearch","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#onaddresssearch","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":534,"kind":1,"name":"app/pages/accounts/accounts-routing.module","url":"modules/app_pages_accounts_accounts_routing_module.html","classes":"tsd-kind-module"},{"id":535,"kind":128,"name":"AccountsRoutingModule","url":"classes/app_pages_accounts_accounts_routing_module.accountsroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/accounts/accounts-routing.module"},{"id":536,"kind":512,"name":"constructor","url":"classes/app_pages_accounts_accounts_routing_module.accountsroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/accounts/accounts-routing.module.AccountsRoutingModule"},{"id":537,"kind":1,"name":"app/pages/accounts/accounts.component","url":"modules/app_pages_accounts_accounts_component.html","classes":"tsd-kind-module"},{"id":538,"kind":128,"name":"AccountsComponent","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/accounts/accounts.component"},{"id":539,"kind":512,"name":"constructor","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":540,"kind":1024,"name":"dataSource","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#datasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":541,"kind":1024,"name":"accounts","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#accounts","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":542,"kind":1024,"name":"displayedColumns","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#displayedcolumns","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":543,"kind":1024,"name":"defaultPageSize","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#defaultpagesize","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":544,"kind":1024,"name":"pageSizeOptions","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#pagesizeoptions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":545,"kind":1024,"name":"accountsType","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#accountstype","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":546,"kind":1024,"name":"accountTypes","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#accounttypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":547,"kind":1024,"name":"paginator","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#paginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":548,"kind":1024,"name":"sort","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#sort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":549,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":550,"kind":2048,"name":"doFilter","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#dofilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":551,"kind":2048,"name":"viewAccount","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#viewaccount","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":552,"kind":2048,"name":"filterAccounts","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#filteraccounts","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":553,"kind":2048,"name":"refreshPaginator","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#refreshpaginator","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":554,"kind":2048,"name":"downloadCsv","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#downloadcsv","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":555,"kind":1,"name":"app/pages/accounts/accounts.module","url":"modules/app_pages_accounts_accounts_module.html","classes":"tsd-kind-module"},{"id":556,"kind":128,"name":"AccountsModule","url":"classes/app_pages_accounts_accounts_module.accountsmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/accounts/accounts.module"},{"id":557,"kind":512,"name":"constructor","url":"classes/app_pages_accounts_accounts_module.accountsmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/accounts/accounts.module.AccountsModule"},{"id":558,"kind":1,"name":"app/pages/accounts/create-account/create-account.component","url":"modules/app_pages_accounts_create_account_create_account_component.html","classes":"tsd-kind-module"},{"id":559,"kind":128,"name":"CreateAccountComponent","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/accounts/create-account/create-account.component"},{"id":560,"kind":512,"name":"constructor","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":561,"kind":1024,"name":"createForm","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#createform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":562,"kind":1024,"name":"matcher","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#matcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":563,"kind":1024,"name":"submitted","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#submitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":564,"kind":1024,"name":"categories","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#categories","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":565,"kind":1024,"name":"areaNames","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#areanames","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":566,"kind":1024,"name":"accountTypes","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#accounttypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":567,"kind":1024,"name":"genders","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#genders","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":568,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":569,"kind":262144,"name":"createFormStub","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#createformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":570,"kind":2048,"name":"onSubmit","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#onsubmit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":571,"kind":1,"name":"app/pages/admin/admin-routing.module","url":"modules/app_pages_admin_admin_routing_module.html","classes":"tsd-kind-module"},{"id":572,"kind":128,"name":"AdminRoutingModule","url":"classes/app_pages_admin_admin_routing_module.adminroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/admin/admin-routing.module"},{"id":573,"kind":512,"name":"constructor","url":"classes/app_pages_admin_admin_routing_module.adminroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/admin/admin-routing.module.AdminRoutingModule"},{"id":574,"kind":1,"name":"app/pages/admin/admin.component","url":"modules/app_pages_admin_admin_component.html","classes":"tsd-kind-module"},{"id":575,"kind":128,"name":"AdminComponent","url":"classes/app_pages_admin_admin_component.admincomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/admin/admin.component"},{"id":576,"kind":512,"name":"constructor","url":"classes/app_pages_admin_admin_component.admincomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":577,"kind":1024,"name":"dataSource","url":"classes/app_pages_admin_admin_component.admincomponent.html#datasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":578,"kind":1024,"name":"displayedColumns","url":"classes/app_pages_admin_admin_component.admincomponent.html#displayedcolumns","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":579,"kind":1024,"name":"action","url":"classes/app_pages_admin_admin_component.admincomponent.html#action","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":580,"kind":1024,"name":"actions","url":"classes/app_pages_admin_admin_component.admincomponent.html#actions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":581,"kind":1024,"name":"paginator","url":"classes/app_pages_admin_admin_component.admincomponent.html#paginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":582,"kind":1024,"name":"sort","url":"classes/app_pages_admin_admin_component.admincomponent.html#sort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":583,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_admin_admin_component.admincomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":584,"kind":2048,"name":"doFilter","url":"classes/app_pages_admin_admin_component.admincomponent.html#dofilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":585,"kind":2048,"name":"approvalStatus","url":"classes/app_pages_admin_admin_component.admincomponent.html#approvalstatus","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":586,"kind":2048,"name":"approveAction","url":"classes/app_pages_admin_admin_component.admincomponent.html#approveaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":587,"kind":2048,"name":"disapproveAction","url":"classes/app_pages_admin_admin_component.admincomponent.html#disapproveaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":588,"kind":2048,"name":"expandCollapse","url":"classes/app_pages_admin_admin_component.admincomponent.html#expandcollapse","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":589,"kind":2048,"name":"downloadCsv","url":"classes/app_pages_admin_admin_component.admincomponent.html#downloadcsv","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":590,"kind":1,"name":"app/pages/admin/admin.module","url":"modules/app_pages_admin_admin_module.html","classes":"tsd-kind-module"},{"id":591,"kind":128,"name":"AdminModule","url":"classes/app_pages_admin_admin_module.adminmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/admin/admin.module"},{"id":592,"kind":512,"name":"constructor","url":"classes/app_pages_admin_admin_module.adminmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/admin/admin.module.AdminModule"},{"id":593,"kind":1,"name":"app/pages/pages-routing.module","url":"modules/app_pages_pages_routing_module.html","classes":"tsd-kind-module"},{"id":594,"kind":128,"name":"PagesRoutingModule","url":"classes/app_pages_pages_routing_module.pagesroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/pages-routing.module"},{"id":595,"kind":512,"name":"constructor","url":"classes/app_pages_pages_routing_module.pagesroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/pages-routing.module.PagesRoutingModule"},{"id":596,"kind":1,"name":"app/pages/pages.component","url":"modules/app_pages_pages_component.html","classes":"tsd-kind-module"},{"id":597,"kind":128,"name":"PagesComponent","url":"classes/app_pages_pages_component.pagescomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/pages.component"},{"id":598,"kind":512,"name":"constructor","url":"classes/app_pages_pages_component.pagescomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/pages.component.PagesComponent"},{"id":599,"kind":1024,"name":"url","url":"classes/app_pages_pages_component.pagescomponent.html#url","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/pages.component.PagesComponent"},{"id":600,"kind":1,"name":"app/pages/pages.module","url":"modules/app_pages_pages_module.html","classes":"tsd-kind-module"},{"id":601,"kind":128,"name":"PagesModule","url":"classes/app_pages_pages_module.pagesmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/pages.module"},{"id":602,"kind":512,"name":"constructor","url":"classes/app_pages_pages_module.pagesmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/pages.module.PagesModule"},{"id":603,"kind":1,"name":"app/pages/settings/organization/organization.component","url":"modules/app_pages_settings_organization_organization_component.html","classes":"tsd-kind-module"},{"id":604,"kind":128,"name":"OrganizationComponent","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/settings/organization/organization.component"},{"id":605,"kind":512,"name":"constructor","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":606,"kind":1024,"name":"organizationForm","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#organizationform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":607,"kind":1024,"name":"submitted","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#submitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":608,"kind":1024,"name":"matcher","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#matcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":609,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":610,"kind":262144,"name":"organizationFormStub","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#organizationformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":611,"kind":2048,"name":"onSubmit","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#onsubmit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":612,"kind":1,"name":"app/pages/settings/settings-routing.module","url":"modules/app_pages_settings_settings_routing_module.html","classes":"tsd-kind-module"},{"id":613,"kind":128,"name":"SettingsRoutingModule","url":"classes/app_pages_settings_settings_routing_module.settingsroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/settings/settings-routing.module"},{"id":614,"kind":512,"name":"constructor","url":"classes/app_pages_settings_settings_routing_module.settingsroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/settings/settings-routing.module.SettingsRoutingModule"},{"id":615,"kind":1,"name":"app/pages/settings/settings.component","url":"modules/app_pages_settings_settings_component.html","classes":"tsd-kind-module"},{"id":616,"kind":128,"name":"SettingsComponent","url":"classes/app_pages_settings_settings_component.settingscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/settings/settings.component"},{"id":617,"kind":512,"name":"constructor","url":"classes/app_pages_settings_settings_component.settingscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":618,"kind":1024,"name":"date","url":"classes/app_pages_settings_settings_component.settingscomponent.html#date","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":619,"kind":1024,"name":"dataSource","url":"classes/app_pages_settings_settings_component.settingscomponent.html#datasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":620,"kind":1024,"name":"displayedColumns","url":"classes/app_pages_settings_settings_component.settingscomponent.html#displayedcolumns","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":621,"kind":1024,"name":"trustedUsers","url":"classes/app_pages_settings_settings_component.settingscomponent.html#trustedusers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":622,"kind":1024,"name":"paginator","url":"classes/app_pages_settings_settings_component.settingscomponent.html#paginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":623,"kind":1024,"name":"sort","url":"classes/app_pages_settings_settings_component.settingscomponent.html#sort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":624,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_settings_settings_component.settingscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":625,"kind":2048,"name":"doFilter","url":"classes/app_pages_settings_settings_component.settingscomponent.html#dofilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":626,"kind":2048,"name":"downloadCsv","url":"classes/app_pages_settings_settings_component.settingscomponent.html#downloadcsv","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":627,"kind":2048,"name":"logout","url":"classes/app_pages_settings_settings_component.settingscomponent.html#logout","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":628,"kind":1,"name":"app/pages/settings/settings.module","url":"modules/app_pages_settings_settings_module.html","classes":"tsd-kind-module"},{"id":629,"kind":128,"name":"SettingsModule","url":"classes/app_pages_settings_settings_module.settingsmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/settings/settings.module"},{"id":630,"kind":512,"name":"constructor","url":"classes/app_pages_settings_settings_module.settingsmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/settings/settings.module.SettingsModule"},{"id":631,"kind":1,"name":"app/pages/tokens/token-details/token-details.component","url":"modules/app_pages_tokens_token_details_token_details_component.html","classes":"tsd-kind-module"},{"id":632,"kind":128,"name":"TokenDetailsComponent","url":"classes/app_pages_tokens_token_details_token_details_component.tokendetailscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/tokens/token-details/token-details.component"},{"id":633,"kind":512,"name":"constructor","url":"classes/app_pages_tokens_token_details_token_details_component.tokendetailscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/tokens/token-details/token-details.component.TokenDetailsComponent"},{"id":634,"kind":1024,"name":"token","url":"classes/app_pages_tokens_token_details_token_details_component.tokendetailscomponent.html#token","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/token-details/token-details.component.TokenDetailsComponent"},{"id":635,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_tokens_token_details_token_details_component.tokendetailscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/tokens/token-details/token-details.component.TokenDetailsComponent"},{"id":636,"kind":1,"name":"app/pages/tokens/tokens-routing.module","url":"modules/app_pages_tokens_tokens_routing_module.html","classes":"tsd-kind-module"},{"id":637,"kind":128,"name":"TokensRoutingModule","url":"classes/app_pages_tokens_tokens_routing_module.tokensroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/tokens/tokens-routing.module"},{"id":638,"kind":512,"name":"constructor","url":"classes/app_pages_tokens_tokens_routing_module.tokensroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/tokens/tokens-routing.module.TokensRoutingModule"},{"id":639,"kind":1,"name":"app/pages/tokens/tokens.component","url":"modules/app_pages_tokens_tokens_component.html","classes":"tsd-kind-module"},{"id":640,"kind":128,"name":"TokensComponent","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/tokens/tokens.component"},{"id":641,"kind":512,"name":"constructor","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":642,"kind":1024,"name":"dataSource","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#datasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":643,"kind":1024,"name":"columnsToDisplay","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#columnstodisplay","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":644,"kind":1024,"name":"paginator","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#paginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":645,"kind":1024,"name":"sort","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#sort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":646,"kind":1024,"name":"tokens","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#tokens","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":647,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":648,"kind":2048,"name":"doFilter","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#dofilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":649,"kind":2048,"name":"viewToken","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#viewtoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":650,"kind":2048,"name":"downloadCsv","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#downloadcsv","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":651,"kind":1,"name":"app/pages/tokens/tokens.module","url":"modules/app_pages_tokens_tokens_module.html","classes":"tsd-kind-module"},{"id":652,"kind":128,"name":"TokensModule","url":"classes/app_pages_tokens_tokens_module.tokensmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/tokens/tokens.module"},{"id":653,"kind":512,"name":"constructor","url":"classes/app_pages_tokens_tokens_module.tokensmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/tokens/tokens.module.TokensModule"},{"id":654,"kind":1,"name":"app/pages/transactions/transaction-details/transaction-details.component","url":"modules/app_pages_transactions_transaction_details_transaction_details_component.html","classes":"tsd-kind-module"},{"id":655,"kind":128,"name":"TransactionDetailsComponent","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/transactions/transaction-details/transaction-details.component"},{"id":656,"kind":512,"name":"constructor","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":657,"kind":1024,"name":"transaction","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#transaction","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":658,"kind":1024,"name":"senderBloxbergLink","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#senderbloxberglink","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":659,"kind":1024,"name":"recipientBloxbergLink","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#recipientbloxberglink","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":660,"kind":1024,"name":"traderBloxbergLink","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#traderbloxberglink","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":661,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":662,"kind":2048,"name":"viewSender","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#viewsender","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":663,"kind":2048,"name":"viewRecipient","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#viewrecipient","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":664,"kind":2048,"name":"viewTrader","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#viewtrader","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":665,"kind":2048,"name":"reverseTransaction","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#reversetransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":666,"kind":2048,"name":"copyAddress","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#copyaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":667,"kind":1,"name":"app/pages/transactions/transactions-routing.module","url":"modules/app_pages_transactions_transactions_routing_module.html","classes":"tsd-kind-module"},{"id":668,"kind":128,"name":"TransactionsRoutingModule","url":"classes/app_pages_transactions_transactions_routing_module.transactionsroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/transactions/transactions-routing.module"},{"id":669,"kind":512,"name":"constructor","url":"classes/app_pages_transactions_transactions_routing_module.transactionsroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/transactions/transactions-routing.module.TransactionsRoutingModule"},{"id":670,"kind":1,"name":"app/pages/transactions/transactions.component","url":"modules/app_pages_transactions_transactions_component.html","classes":"tsd-kind-module"},{"id":671,"kind":128,"name":"TransactionsComponent","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/transactions/transactions.component"},{"id":672,"kind":512,"name":"constructor","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":673,"kind":1024,"name":"transactionDataSource","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#transactiondatasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":674,"kind":1024,"name":"transactionDisplayedColumns","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#transactiondisplayedcolumns","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":675,"kind":1024,"name":"defaultPageSize","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#defaultpagesize","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":676,"kind":1024,"name":"pageSizeOptions","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#pagesizeoptions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":677,"kind":1024,"name":"transactions","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#transactions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":678,"kind":1024,"name":"transaction","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#transaction","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":679,"kind":1024,"name":"transactionsType","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#transactionstype","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":680,"kind":1024,"name":"transactionsTypes","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#transactionstypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":681,"kind":1024,"name":"paginator","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#paginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":682,"kind":1024,"name":"sort","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#sort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":683,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":684,"kind":2048,"name":"viewTransaction","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#viewtransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":685,"kind":2048,"name":"doFilter","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#dofilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":686,"kind":2048,"name":"filterTransactions","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#filtertransactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":687,"kind":2048,"name":"ngAfterViewInit","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#ngafterviewinit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":688,"kind":2048,"name":"downloadCsv","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#downloadcsv","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":689,"kind":1,"name":"app/pages/transactions/transactions.module","url":"modules/app_pages_transactions_transactions_module.html","classes":"tsd-kind-module"},{"id":690,"kind":128,"name":"TransactionsModule","url":"classes/app_pages_transactions_transactions_module.transactionsmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/transactions/transactions.module"},{"id":691,"kind":512,"name":"constructor","url":"classes/app_pages_transactions_transactions_module.transactionsmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/transactions/transactions.module.TransactionsModule"},{"id":692,"kind":1,"name":"app/shared/_directives/menu-selection.directive","url":"modules/app_shared__directives_menu_selection_directive.html","classes":"tsd-kind-module"},{"id":693,"kind":128,"name":"MenuSelectionDirective","url":"classes/app_shared__directives_menu_selection_directive.menuselectiondirective.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/_directives/menu-selection.directive"},{"id":694,"kind":512,"name":"constructor","url":"classes/app_shared__directives_menu_selection_directive.menuselectiondirective.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/_directives/menu-selection.directive.MenuSelectionDirective"},{"id":695,"kind":2048,"name":"onMenuSelect","url":"classes/app_shared__directives_menu_selection_directive.menuselectiondirective.html#onmenuselect","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/_directives/menu-selection.directive.MenuSelectionDirective"},{"id":696,"kind":1,"name":"app/shared/_directives/menu-toggle.directive","url":"modules/app_shared__directives_menu_toggle_directive.html","classes":"tsd-kind-module"},{"id":697,"kind":128,"name":"MenuToggleDirective","url":"classes/app_shared__directives_menu_toggle_directive.menutoggledirective.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/_directives/menu-toggle.directive"},{"id":698,"kind":512,"name":"constructor","url":"classes/app_shared__directives_menu_toggle_directive.menutoggledirective.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/_directives/menu-toggle.directive.MenuToggleDirective"},{"id":699,"kind":2048,"name":"onMenuToggle","url":"classes/app_shared__directives_menu_toggle_directive.menutoggledirective.html#onmenutoggle","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/_directives/menu-toggle.directive.MenuToggleDirective"},{"id":700,"kind":1,"name":"app/shared/_pipes/safe.pipe","url":"modules/app_shared__pipes_safe_pipe.html","classes":"tsd-kind-module"},{"id":701,"kind":128,"name":"SafePipe","url":"classes/app_shared__pipes_safe_pipe.safepipe.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/_pipes/safe.pipe"},{"id":702,"kind":512,"name":"constructor","url":"classes/app_shared__pipes_safe_pipe.safepipe.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/_pipes/safe.pipe.SafePipe"},{"id":703,"kind":2048,"name":"transform","url":"classes/app_shared__pipes_safe_pipe.safepipe.html#transform","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/_pipes/safe.pipe.SafePipe"},{"id":704,"kind":1,"name":"app/shared/_pipes/token-ratio.pipe","url":"modules/app_shared__pipes_token_ratio_pipe.html","classes":"tsd-kind-module"},{"id":705,"kind":128,"name":"TokenRatioPipe","url":"classes/app_shared__pipes_token_ratio_pipe.tokenratiopipe.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/_pipes/token-ratio.pipe"},{"id":706,"kind":512,"name":"constructor","url":"classes/app_shared__pipes_token_ratio_pipe.tokenratiopipe.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/_pipes/token-ratio.pipe.TokenRatioPipe"},{"id":707,"kind":2048,"name":"transform","url":"classes/app_shared__pipes_token_ratio_pipe.tokenratiopipe.html#transform","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/_pipes/token-ratio.pipe.TokenRatioPipe"},{"id":708,"kind":1,"name":"app/shared/error-dialog/error-dialog.component","url":"modules/app_shared_error_dialog_error_dialog_component.html","classes":"tsd-kind-module"},{"id":709,"kind":128,"name":"ErrorDialogComponent","url":"classes/app_shared_error_dialog_error_dialog_component.errordialogcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/error-dialog/error-dialog.component"},{"id":710,"kind":512,"name":"constructor","url":"classes/app_shared_error_dialog_error_dialog_component.errordialogcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/error-dialog/error-dialog.component.ErrorDialogComponent"},{"id":711,"kind":1024,"name":"data","url":"classes/app_shared_error_dialog_error_dialog_component.errordialogcomponent.html#data","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/shared/error-dialog/error-dialog.component.ErrorDialogComponent"},{"id":712,"kind":1,"name":"app/shared/footer/footer.component","url":"modules/app_shared_footer_footer_component.html","classes":"tsd-kind-module"},{"id":713,"kind":128,"name":"FooterComponent","url":"classes/app_shared_footer_footer_component.footercomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/footer/footer.component"},{"id":714,"kind":512,"name":"constructor","url":"classes/app_shared_footer_footer_component.footercomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/footer/footer.component.FooterComponent"},{"id":715,"kind":2048,"name":"ngOnInit","url":"classes/app_shared_footer_footer_component.footercomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/footer/footer.component.FooterComponent"},{"id":716,"kind":1,"name":"app/shared/network-status/network-status.component","url":"modules/app_shared_network_status_network_status_component.html","classes":"tsd-kind-module"},{"id":717,"kind":128,"name":"NetworkStatusComponent","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/network-status/network-status.component"},{"id":718,"kind":512,"name":"constructor","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/network-status/network-status.component.NetworkStatusComponent"},{"id":719,"kind":1024,"name":"noInternetConnection","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html#nointernetconnection","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/shared/network-status/network-status.component.NetworkStatusComponent"},{"id":720,"kind":2048,"name":"ngOnInit","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/network-status/network-status.component.NetworkStatusComponent"},{"id":721,"kind":2048,"name":"handleNetworkChange","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html#handlenetworkchange","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/network-status/network-status.component.NetworkStatusComponent"},{"id":722,"kind":1,"name":"app/shared/shared.module","url":"modules/app_shared_shared_module.html","classes":"tsd-kind-module"},{"id":723,"kind":128,"name":"SharedModule","url":"classes/app_shared_shared_module.sharedmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/shared.module"},{"id":724,"kind":512,"name":"constructor","url":"classes/app_shared_shared_module.sharedmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/shared.module.SharedModule"},{"id":725,"kind":1,"name":"app/shared/sidebar/sidebar.component","url":"modules/app_shared_sidebar_sidebar_component.html","classes":"tsd-kind-module"},{"id":726,"kind":128,"name":"SidebarComponent","url":"classes/app_shared_sidebar_sidebar_component.sidebarcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/sidebar/sidebar.component"},{"id":727,"kind":512,"name":"constructor","url":"classes/app_shared_sidebar_sidebar_component.sidebarcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/sidebar/sidebar.component.SidebarComponent"},{"id":728,"kind":2048,"name":"ngOnInit","url":"classes/app_shared_sidebar_sidebar_component.sidebarcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/sidebar/sidebar.component.SidebarComponent"},{"id":729,"kind":1,"name":"app/shared/topbar/topbar.component","url":"modules/app_shared_topbar_topbar_component.html","classes":"tsd-kind-module"},{"id":730,"kind":128,"name":"TopbarComponent","url":"classes/app_shared_topbar_topbar_component.topbarcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/topbar/topbar.component"},{"id":731,"kind":512,"name":"constructor","url":"classes/app_shared_topbar_topbar_component.topbarcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/topbar/topbar.component.TopbarComponent"},{"id":732,"kind":2048,"name":"ngOnInit","url":"classes/app_shared_topbar_topbar_component.topbarcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/topbar/topbar.component.TopbarComponent"},{"id":733,"kind":1,"name":"assets/js/ethtx/dist/hex","url":"modules/assets_js_ethtx_dist_hex.html","classes":"tsd-kind-module"},{"id":734,"kind":64,"name":"fromHex","url":"modules/assets_js_ethtx_dist_hex.html#fromhex","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/hex"},{"id":735,"kind":64,"name":"toHex","url":"modules/assets_js_ethtx_dist_hex.html#tohex","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/hex"},{"id":736,"kind":64,"name":"strip0x","url":"modules/assets_js_ethtx_dist_hex.html#strip0x","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/hex"},{"id":737,"kind":64,"name":"add0x","url":"modules/assets_js_ethtx_dist_hex.html#add0x","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/hex"},{"id":738,"kind":1,"name":"assets/js/ethtx/dist","url":"modules/assets_js_ethtx_dist.html","classes":"tsd-kind-module"},{"id":739,"kind":1,"name":"assets/js/ethtx/dist/tx","url":"modules/assets_js_ethtx_dist_tx.html","classes":"tsd-kind-module"},{"id":740,"kind":128,"name":"Tx","url":"classes/assets_js_ethtx_dist_tx.tx.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"assets/js/ethtx/dist/tx"},{"id":741,"kind":512,"name":"constructor","url":"classes/assets_js_ethtx_dist_tx.tx.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":742,"kind":1024,"name":"nonce","url":"classes/assets_js_ethtx_dist_tx.tx.html#nonce","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":743,"kind":1024,"name":"gasPrice","url":"classes/assets_js_ethtx_dist_tx.tx.html#gasprice","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":744,"kind":1024,"name":"gasLimit","url":"classes/assets_js_ethtx_dist_tx.tx.html#gaslimit","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":745,"kind":1024,"name":"to","url":"classes/assets_js_ethtx_dist_tx.tx.html#to","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":746,"kind":1024,"name":"value","url":"classes/assets_js_ethtx_dist_tx.tx.html#value","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":747,"kind":1024,"name":"data","url":"classes/assets_js_ethtx_dist_tx.tx.html#data","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":748,"kind":1024,"name":"v","url":"classes/assets_js_ethtx_dist_tx.tx.html#v","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":749,"kind":1024,"name":"r","url":"classes/assets_js_ethtx_dist_tx.tx.html#r","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":750,"kind":1024,"name":"s","url":"classes/assets_js_ethtx_dist_tx.tx.html#s","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":751,"kind":1024,"name":"chainId","url":"classes/assets_js_ethtx_dist_tx.tx.html#chainid","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":752,"kind":1024,"name":"_signatureSet","url":"classes/assets_js_ethtx_dist_tx.tx.html#_signatureset","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":753,"kind":1024,"name":"_workBuffer","url":"classes/assets_js_ethtx_dist_tx.tx.html#_workbuffer","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":754,"kind":1024,"name":"_outBuffer","url":"classes/assets_js_ethtx_dist_tx.tx.html#_outbuffer","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":755,"kind":1024,"name":"_outBufferCursor","url":"classes/assets_js_ethtx_dist_tx.tx.html#_outbuffercursor","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":756,"kind":1024,"name":"serializeNumber","url":"classes/assets_js_ethtx_dist_tx.tx.html#serializenumber","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":757,"kind":1024,"name":"write","url":"classes/assets_js_ethtx_dist_tx.tx.html#write","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":758,"kind":2048,"name":"serializeBytes","url":"classes/assets_js_ethtx_dist_tx.tx.html#serializebytes","classes":"tsd-kind-method tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":759,"kind":2048,"name":"canonicalOrder","url":"classes/assets_js_ethtx_dist_tx.tx.html#canonicalorder","classes":"tsd-kind-method tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":760,"kind":2048,"name":"serializeRLP","url":"classes/assets_js_ethtx_dist_tx.tx.html#serializerlp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":761,"kind":2048,"name":"message","url":"classes/assets_js_ethtx_dist_tx.tx.html#message","classes":"tsd-kind-method tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":762,"kind":2048,"name":"setSignature","url":"classes/assets_js_ethtx_dist_tx.tx.html#setsignature","classes":"tsd-kind-method tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":763,"kind":2048,"name":"clearSignature","url":"classes/assets_js_ethtx_dist_tx.tx.html#clearsignature","classes":"tsd-kind-method tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":764,"kind":64,"name":"stringToValue","url":"modules/assets_js_ethtx_dist_tx.html#stringtovalue","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/tx"},{"id":765,"kind":64,"name":"hexToValue","url":"modules/assets_js_ethtx_dist_tx.html#hextovalue","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/tx"},{"id":766,"kind":64,"name":"toValue","url":"modules/assets_js_ethtx_dist_tx.html#tovalue","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/tx"},{"id":767,"kind":1,"name":"environments/environment.dev","url":"modules/environments_environment_dev.html","classes":"tsd-kind-module"},{"id":768,"kind":32,"name":"environment","url":"modules/environments_environment_dev.html#environment","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"environments/environment.dev"},{"id":769,"kind":65536,"name":"__type","url":"modules/environments_environment_dev.html#environment.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable","parent":"environments/environment.dev.environment"},{"id":770,"kind":1024,"name":"production","url":"modules/environments_environment_dev.html#environment.__type.production","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":771,"kind":1024,"name":"bloxbergChainId","url":"modules/environments_environment_dev.html#environment.__type.bloxbergchainid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":772,"kind":1024,"name":"logLevel","url":"modules/environments_environment_dev.html#environment.__type.loglevel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":773,"kind":1024,"name":"serverLogLevel","url":"modules/environments_environment_dev.html#environment.__type.serverloglevel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":774,"kind":1024,"name":"loggingUrl","url":"modules/environments_environment_dev.html#environment.__type.loggingurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":775,"kind":1024,"name":"cicMetaUrl","url":"modules/environments_environment_dev.html#environment.__type.cicmetaurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":776,"kind":1024,"name":"publicKeysUrl","url":"modules/environments_environment_dev.html#environment.__type.publickeysurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":777,"kind":1024,"name":"cicCacheUrl","url":"modules/environments_environment_dev.html#environment.__type.ciccacheurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":778,"kind":1024,"name":"web3Provider","url":"modules/environments_environment_dev.html#environment.__type.web3provider","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":779,"kind":1024,"name":"cicUssdUrl","url":"modules/environments_environment_dev.html#environment.__type.cicussdurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":780,"kind":1024,"name":"registryAddress","url":"modules/environments_environment_dev.html#environment.__type.registryaddress","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":781,"kind":1024,"name":"trustedDeclaratorAddress","url":"modules/environments_environment_dev.html#environment.__type.trusteddeclaratoraddress","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":782,"kind":1,"name":"environments/environment.prod","url":"modules/environments_environment_prod.html","classes":"tsd-kind-module"},{"id":783,"kind":32,"name":"environment","url":"modules/environments_environment_prod.html#environment","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"environments/environment.prod"},{"id":784,"kind":65536,"name":"__type","url":"modules/environments_environment_prod.html#environment.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable","parent":"environments/environment.prod.environment"},{"id":785,"kind":1024,"name":"production","url":"modules/environments_environment_prod.html#environment.__type.production","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":786,"kind":1024,"name":"bloxbergChainId","url":"modules/environments_environment_prod.html#environment.__type.bloxbergchainid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":787,"kind":1024,"name":"logLevel","url":"modules/environments_environment_prod.html#environment.__type.loglevel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":788,"kind":1024,"name":"serverLogLevel","url":"modules/environments_environment_prod.html#environment.__type.serverloglevel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":789,"kind":1024,"name":"loggingUrl","url":"modules/environments_environment_prod.html#environment.__type.loggingurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":790,"kind":1024,"name":"cicMetaUrl","url":"modules/environments_environment_prod.html#environment.__type.cicmetaurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":791,"kind":1024,"name":"publicKeysUrl","url":"modules/environments_environment_prod.html#environment.__type.publickeysurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":792,"kind":1024,"name":"cicCacheUrl","url":"modules/environments_environment_prod.html#environment.__type.ciccacheurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":793,"kind":1024,"name":"web3Provider","url":"modules/environments_environment_prod.html#environment.__type.web3provider","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":794,"kind":1024,"name":"cicUssdUrl","url":"modules/environments_environment_prod.html#environment.__type.cicussdurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":795,"kind":1024,"name":"registryAddress","url":"modules/environments_environment_prod.html#environment.__type.registryaddress","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":796,"kind":1024,"name":"trustedDeclaratorAddress","url":"modules/environments_environment_prod.html#environment.__type.trusteddeclaratoraddress","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":797,"kind":1,"name":"environments/environment","url":"modules/environments_environment.html","classes":"tsd-kind-module"},{"id":798,"kind":32,"name":"environment","url":"modules/environments_environment.html#environment","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"environments/environment"},{"id":799,"kind":65536,"name":"__type","url":"modules/environments_environment.html#environment.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable","parent":"environments/environment.environment"},{"id":800,"kind":1024,"name":"production","url":"modules/environments_environment.html#environment.__type.production","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":801,"kind":1024,"name":"bloxbergChainId","url":"modules/environments_environment.html#environment.__type.bloxbergchainid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":802,"kind":1024,"name":"logLevel","url":"modules/environments_environment.html#environment.__type.loglevel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":803,"kind":1024,"name":"serverLogLevel","url":"modules/environments_environment.html#environment.__type.serverloglevel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":804,"kind":1024,"name":"loggingUrl","url":"modules/environments_environment.html#environment.__type.loggingurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":805,"kind":1024,"name":"cicMetaUrl","url":"modules/environments_environment.html#environment.__type.cicmetaurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":806,"kind":1024,"name":"publicKeysUrl","url":"modules/environments_environment.html#environment.__type.publickeysurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":807,"kind":1024,"name":"cicCacheUrl","url":"modules/environments_environment.html#environment.__type.ciccacheurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":808,"kind":1024,"name":"web3Provider","url":"modules/environments_environment.html#environment.__type.web3provider","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":809,"kind":1024,"name":"cicUssdUrl","url":"modules/environments_environment.html#environment.__type.cicussdurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":810,"kind":1024,"name":"registryAddress","url":"modules/environments_environment.html#environment.__type.registryaddress","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":811,"kind":1024,"name":"trustedDeclaratorAddress","url":"modules/environments_environment.html#environment.__type.trusteddeclaratoraddress","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":812,"kind":1,"name":"main","url":"modules/main.html","classes":"tsd-kind-module"},{"id":813,"kind":1,"name":"polyfills","url":"modules/polyfills.html","classes":"tsd-kind-module"},{"id":814,"kind":1,"name":"test","url":"modules/test.html","classes":"tsd-kind-module"},{"id":815,"kind":1,"name":"testing/activated-route-stub","url":"modules/testing_activated_route_stub.html","classes":"tsd-kind-module"},{"id":816,"kind":128,"name":"ActivatedRouteStub","url":"classes/testing_activated_route_stub.activatedroutestub.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/activated-route-stub"},{"id":817,"kind":512,"name":"constructor","url":"classes/testing_activated_route_stub.activatedroutestub.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/activated-route-stub.ActivatedRouteStub"},{"id":818,"kind":1024,"name":"subject","url":"classes/testing_activated_route_stub.activatedroutestub.html#subject","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"testing/activated-route-stub.ActivatedRouteStub"},{"id":819,"kind":1024,"name":"paramMap","url":"classes/testing_activated_route_stub.activatedroutestub.html#parammap","classes":"tsd-kind-property tsd-parent-kind-class","parent":"testing/activated-route-stub.ActivatedRouteStub"},{"id":820,"kind":2048,"name":"setParamMap","url":"classes/testing_activated_route_stub.activatedroutestub.html#setparammap","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/activated-route-stub.ActivatedRouteStub"},{"id":821,"kind":1,"name":"testing","url":"modules/testing.html","classes":"tsd-kind-module"},{"id":822,"kind":1,"name":"testing/router-link-directive-stub","url":"modules/testing_router_link_directive_stub.html","classes":"tsd-kind-module"},{"id":823,"kind":128,"name":"RouterLinkDirectiveStub","url":"classes/testing_router_link_directive_stub.routerlinkdirectivestub.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/router-link-directive-stub"},{"id":824,"kind":512,"name":"constructor","url":"classes/testing_router_link_directive_stub.routerlinkdirectivestub.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/router-link-directive-stub.RouterLinkDirectiveStub"},{"id":825,"kind":1024,"name":"linkParams","url":"classes/testing_router_link_directive_stub.routerlinkdirectivestub.html#linkparams","classes":"tsd-kind-property tsd-parent-kind-class","parent":"testing/router-link-directive-stub.RouterLinkDirectiveStub"},{"id":826,"kind":1024,"name":"navigatedTo","url":"classes/testing_router_link_directive_stub.routerlinkdirectivestub.html#navigatedto","classes":"tsd-kind-property tsd-parent-kind-class","parent":"testing/router-link-directive-stub.RouterLinkDirectiveStub"},{"id":827,"kind":2048,"name":"onClick","url":"classes/testing_router_link_directive_stub.routerlinkdirectivestub.html#onclick","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/router-link-directive-stub.RouterLinkDirectiveStub"},{"id":828,"kind":1,"name":"testing/shared-module-stub","url":"modules/testing_shared_module_stub.html","classes":"tsd-kind-module"},{"id":829,"kind":128,"name":"SidebarStubComponent","url":"classes/testing_shared_module_stub.sidebarstubcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/shared-module-stub"},{"id":830,"kind":512,"name":"constructor","url":"classes/testing_shared_module_stub.sidebarstubcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/shared-module-stub.SidebarStubComponent"},{"id":831,"kind":128,"name":"TopbarStubComponent","url":"classes/testing_shared_module_stub.topbarstubcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/shared-module-stub"},{"id":832,"kind":512,"name":"constructor","url":"classes/testing_shared_module_stub.topbarstubcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/shared-module-stub.TopbarStubComponent"},{"id":833,"kind":128,"name":"FooterStubComponent","url":"classes/testing_shared_module_stub.footerstubcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/shared-module-stub"},{"id":834,"kind":512,"name":"constructor","url":"classes/testing_shared_module_stub.footerstubcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/shared-module-stub.FooterStubComponent"},{"id":835,"kind":1,"name":"testing/token-service-stub","url":"modules/testing_token_service_stub.html","classes":"tsd-kind-module"},{"id":836,"kind":128,"name":"TokenServiceStub","url":"classes/testing_token_service_stub.tokenservicestub.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/token-service-stub"},{"id":837,"kind":512,"name":"constructor","url":"classes/testing_token_service_stub.tokenservicestub.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/token-service-stub.TokenServiceStub"},{"id":838,"kind":2048,"name":"getBySymbol","url":"classes/testing_token_service_stub.tokenservicestub.html#getbysymbol","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/token-service-stub.TokenServiceStub"},{"id":839,"kind":1,"name":"testing/transaction-service-stub","url":"modules/testing_transaction_service_stub.html","classes":"tsd-kind-module"},{"id":840,"kind":128,"name":"TransactionServiceStub","url":"classes/testing_transaction_service_stub.transactionservicestub.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/transaction-service-stub"},{"id":841,"kind":512,"name":"constructor","url":"classes/testing_transaction_service_stub.transactionservicestub.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/transaction-service-stub.TransactionServiceStub"},{"id":842,"kind":2048,"name":"setTransaction","url":"classes/testing_transaction_service_stub.transactionservicestub.html#settransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/transaction-service-stub.TransactionServiceStub"},{"id":843,"kind":2048,"name":"setConversion","url":"classes/testing_transaction_service_stub.transactionservicestub.html#setconversion","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/transaction-service-stub.TransactionServiceStub"},{"id":844,"kind":2048,"name":"getAllTransactions","url":"classes/testing_transaction_service_stub.transactionservicestub.html#getalltransactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/transaction-service-stub.TransactionServiceStub"},{"id":845,"kind":1,"name":"testing/user-service-stub","url":"modules/testing_user_service_stub.html","classes":"tsd-kind-module"},{"id":846,"kind":128,"name":"UserServiceStub","url":"classes/testing_user_service_stub.userservicestub.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/user-service-stub"},{"id":847,"kind":512,"name":"constructor","url":"classes/testing_user_service_stub.userservicestub.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":848,"kind":1024,"name":"users","url":"classes/testing_user_service_stub.userservicestub.html#users","classes":"tsd-kind-property tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":849,"kind":1024,"name":"actions","url":"classes/testing_user_service_stub.userservicestub.html#actions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":850,"kind":2048,"name":"getUserById","url":"classes/testing_user_service_stub.userservicestub.html#getuserbyid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":851,"kind":2048,"name":"getUser","url":"classes/testing_user_service_stub.userservicestub.html#getuser","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":852,"kind":2048,"name":"getActionById","url":"classes/testing_user_service_stub.userservicestub.html#getactionbyid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":853,"kind":2048,"name":"approveAction","url":"classes/testing_user_service_stub.userservicestub.html#approveaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":854,"kind":16777216,"name":"AccountIndex","url":"modules/app__eth.html#accountindex","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_eth"},{"id":855,"kind":16777216,"name":"TokenRegistry","url":"modules/app__eth.html#tokenregistry","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_eth"},{"id":856,"kind":16777216,"name":"AuthGuard","url":"modules/app__guards.html#authguard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_guards"},{"id":857,"kind":16777216,"name":"RoleGuard","url":"modules/app__guards.html#roleguard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_guards"},{"id":858,"kind":16777216,"name":"arraySum","url":"modules/app__helpers.html#arraysum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":859,"kind":16777216,"name":"copyToClipboard","url":"modules/app__helpers.html#copytoclipboard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":860,"kind":16777216,"name":"CustomValidator","url":"modules/app__helpers.html#customvalidator","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":861,"kind":16777216,"name":"CustomErrorStateMatcher","url":"modules/app__helpers.html#customerrorstatematcher","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":862,"kind":16777216,"name":"exportCsv","url":"modules/app__helpers.html#exportcsv","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":863,"kind":16777216,"name":"HttpError","url":"modules/app__helpers.html#httperror","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":864,"kind":16777216,"name":"GlobalErrorHandler","url":"modules/app__helpers.html#globalerrorhandler","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":865,"kind":16777216,"name":"HttpGetter","url":"modules/app__helpers.html#httpgetter","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":866,"kind":16777216,"name":"MockBackendInterceptor","url":"modules/app__helpers.html#mockbackendinterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":867,"kind":16777216,"name":"MockBackendProvider","url":"modules/app__helpers.html#mockbackendprovider","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":868,"kind":16777216,"name":"readCsv","url":"modules/app__helpers.html#readcsv","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":869,"kind":16777216,"name":"personValidation","url":"modules/app__helpers.html#personvalidation","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":870,"kind":16777216,"name":"vcardValidation","url":"modules/app__helpers.html#vcardvalidation","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":871,"kind":16777216,"name":"ErrorInterceptor","url":"modules/app__interceptors.html#errorinterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_interceptors"},{"id":872,"kind":16777216,"name":"HttpConfigInterceptor","url":"modules/app__interceptors.html#httpconfiginterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_interceptors"},{"id":873,"kind":16777216,"name":"LoggingInterceptor","url":"modules/app__interceptors.html#logginginterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_interceptors"},{"id":874,"kind":16777216,"name":"BlocksBloom","url":"modules/app__models.html#blocksbloom","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":875,"kind":16777216,"name":"TxToken","url":"modules/app__models.html#txtoken","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":876,"kind":16777216,"name":"Tx","url":"modules/app__models.html#tx","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":877,"kind":16777216,"name":"Transaction","url":"modules/app__models.html#transaction","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":878,"kind":16777216,"name":"Conversion","url":"modules/app__models.html#conversion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":879,"kind":16777216,"name":"Settings","url":"modules/app__models.html#settings","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":880,"kind":16777216,"name":"W3","url":"modules/app__models.html#w3","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":881,"kind":16777216,"name":"AccountDetails","url":"modules/app__models.html#accountdetails","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":882,"kind":16777216,"name":"Signature","url":"modules/app__models.html#signature","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":883,"kind":16777216,"name":"Meta","url":"modules/app__models.html#meta","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":884,"kind":16777216,"name":"MetaResponse","url":"modules/app__models.html#metaresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":885,"kind":16777216,"name":"defaultAccount","url":"modules/app__models.html#defaultaccount","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":886,"kind":16777216,"name":"Staff","url":"modules/app__models.html#staff","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":887,"kind":16777216,"name":"Token","url":"modules/app__models.html#token","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":888,"kind":16777216,"name":"Action","url":"modules/app__models.html#action","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":889,"kind":16777216,"name":"Category","url":"modules/app__models.html#category","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":890,"kind":16777216,"name":"AreaName","url":"modules/app__models.html#areaname","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":891,"kind":16777216,"name":"AreaType","url":"modules/app__models.html#areatype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":892,"kind":16777216,"name":"MutablePgpKeyStore","url":"modules/app__pgp.html#mutablepgpkeystore","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":893,"kind":16777216,"name":"MutableKeyStore","url":"modules/app__pgp.html#mutablekeystore","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":894,"kind":16777216,"name":"Signable","url":"modules/app__pgp.html#signable","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":895,"kind":16777216,"name":"Signature","url":"modules/app__pgp.html#signature","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":896,"kind":16777216,"name":"Signer","url":"modules/app__pgp.html#signer","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":897,"kind":16777216,"name":"PGPSigner","url":"modules/app__pgp.html#pgpsigner","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":898,"kind":16777216,"name":"AuthService","url":"modules/app__services.html#authservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":899,"kind":16777216,"name":"TransactionService","url":"modules/app__services.html#transactionservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":900,"kind":16777216,"name":"UserService","url":"modules/app__services.html#userservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":901,"kind":16777216,"name":"TokenService","url":"modules/app__services.html#tokenservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":902,"kind":16777216,"name":"BlockSyncService","url":"modules/app__services.html#blocksyncservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":903,"kind":16777216,"name":"LocationService","url":"modules/app__services.html#locationservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":904,"kind":16777216,"name":"LoggingService","url":"modules/app__services.html#loggingservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":905,"kind":16777216,"name":"ErrorDialogService","url":"modules/app__services.html#errordialogservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":906,"kind":16777216,"name":"Tx","url":"modules/assets_js_ethtx_dist.html#tx","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"assets/js/ethtx/dist"},{"id":907,"kind":16777216,"name":"ActivatedRouteStub","url":"modules/testing.html#activatedroutestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":908,"kind":16777216,"name":"RouterLinkDirectiveStub","url":"modules/testing.html#routerlinkdirectivestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":909,"kind":16777216,"name":"SidebarStubComponent","url":"modules/testing.html#sidebarstubcomponent","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":910,"kind":16777216,"name":"TopbarStubComponent","url":"modules/testing.html#topbarstubcomponent","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":911,"kind":16777216,"name":"FooterStubComponent","url":"modules/testing.html#footerstubcomponent","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":912,"kind":16777216,"name":"UserServiceStub","url":"modules/testing.html#userservicestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":913,"kind":16777216,"name":"TokenServiceStub","url":"modules/testing.html#tokenservicestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":914,"kind":16777216,"name":"TransactionServiceStub","url":"modules/testing.html#transactionservicestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,60.513]],["parent/0",[]],["name/1",[1,60.513]],["parent/1",[0,6.749]],["name/2",[2,24.925]],["parent/2",[3,5.35]],["name/3",[4,60.513]],["parent/3",[3,5.35]],["name/4",[5,60.513]],["parent/4",[3,5.35]],["name/5",[6,60.513]],["parent/5",[3,5.35]],["name/6",[7,65.749]],["parent/6",[3,5.35]],["name/7",[8,65.749]],["parent/7",[3,5.35]],["name/8",[9,65.749]],["parent/8",[3,5.35]],["name/9",[10,65.749]],["parent/9",[3,5.35]],["name/10",[11,57.064]],["parent/10",[]],["name/11",[12,33.586,13,35.323]],["parent/11",[]],["name/12",[14,57.064]],["parent/12",[12,3.944,13,4.148]],["name/13",[2,24.925]],["parent/13",[12,3.944,15,4.148]],["name/14",[4,60.513]],["parent/14",[12,3.944,15,4.148]],["name/15",[5,60.513]],["parent/15",[12,3.944,15,4.148]],["name/16",[6,60.513]],["parent/16",[12,3.944,15,4.148]],["name/17",[16,65.749]],["parent/17",[12,3.944,15,4.148]],["name/18",[17,65.749]],["parent/18",[12,3.944,15,4.148]],["name/19",[18,65.749]],["parent/19",[12,3.944,15,4.148]],["name/20",[19,60.513]],["parent/20",[]],["name/21",[20,60.513]],["parent/21",[19,6.749]],["name/22",[2,24.925]],["parent/22",[21,6.749]],["name/23",[22,60.513]],["parent/23",[21,6.749]],["name/24",[23,57.064]],["parent/24",[]],["name/25",[24,60.513]],["parent/25",[]],["name/26",[25,60.513]],["parent/26",[24,6.749]],["name/27",[2,24.925]],["parent/27",[26,6.749]],["name/28",[22,60.513]],["parent/28",[26,6.749]],["name/29",[27,43.4,28,43.4]],["parent/29",[]],["name/30",[29,60.513]],["parent/30",[27,5.096,28,5.096]],["name/31",[30,43.4,31,43.4]],["parent/31",[]],["name/32",[32,60.513]],["parent/32",[30,5.096,31,5.096]],["name/33",[33,24.961,34,19.153,35,24.961,36,22.562]],["parent/33",[]],["name/34",[37,60.513]],["parent/34",[33,3.08,34,2.363,35,3.08,36,2.784]],["name/35",[2,24.925]],["parent/35",[33,3.08,34,2.363,35,3.08,38,3.42]],["name/36",[39,65.749]],["parent/36",[33,3.08,34,2.363,35,3.08,38,3.42]],["name/37",[40,60.513]],["parent/37",[]],["name/38",[41,60.513]],["parent/38",[40,6.749]],["name/39",[42,65.749]],["parent/39",[43,6.365]],["name/40",[44,65.749]],["parent/40",[43,6.365]],["name/41",[2,24.925]],["parent/41",[43,6.365]],["name/42",[45,43.4,46,39.079]],["parent/42",[]],["name/43",[47,60.513]],["parent/43",[45,5.096,46,4.589]],["name/44",[34,23.376,48,25.087,49,31.904]],["parent/44",[]],["name/45",[50,60.513]],["parent/45",[34,2.828,48,3.035,49,3.86]],["name/46",[51,43.227]],["parent/46",[34,2.828,48,3.035,52,3.86]],["name/47",[2,24.925]],["parent/47",[34,2.828,48,3.035,52,3.86]],["name/48",[53,65.749]],["parent/48",[34,2.828,48,3.035,52,3.86]],["name/49",[54,60.513]],["parent/49",[34,2.828,48,3.035,49,3.86]],["name/50",[2,24.925]],["parent/50",[34,2.828,48,3.035,55,3.547]],["name/51",[56,65.749]],["parent/51",[34,2.828,48,3.035,55,3.547]],["name/52",[57,65.749]],["parent/52",[34,2.828,48,3.035,55,3.547]],["name/53",[58,65.749]],["parent/53",[34,2.828,48,3.035,55,3.547]],["name/54",[59,65.749]],["parent/54",[34,2.828,48,3.035,55,3.547]],["name/55",[60,43.4,61,43.4]],["parent/55",[]],["name/56",[62,60.513]],["parent/56",[60,5.096,61,5.096]],["name/57",[63,42.495]],["parent/57",[]],["name/58",[64,33.586,65,40.926]],["parent/58",[]],["name/59",[66,60.513]],["parent/59",[64,3.944,65,4.806]],["name/60",[2,24.925]],["parent/60",[64,3.944,67,5.096]],["name/61",[68,54.488]],["parent/61",[64,3.944,67,5.096]],["name/62",[69,60.513]],["parent/62",[64,3.944,65,4.806]],["name/63",[51,43.227]],["parent/63",[64,3.944,70,5.537]],["name/64",[71,65.749]],["parent/64",[64,3.944,72,4.806]],["name/65",[73,65.749]],["parent/65",[64,3.944,72,4.806]],["name/66",[74,65.749]],["parent/66",[64,3.944,72,4.806]],["name/67",[46,39.079,75,43.4]],["parent/67",[]],["name/68",[76,60.513]],["parent/68",[46,4.589,75,5.096]],["name/69",[77,40.926,78,40.926]],["parent/69",[]],["name/70",[79,60.513]],["parent/70",[77,4.806,78,4.806]],["name/71",[80,60.513]],["parent/71",[77,4.806,78,4.806]],["name/72",[81,60.513]],["parent/72",[]],["name/73",[82,60.513]],["parent/73",[81,6.749]],["name/74",[2,24.925]],["parent/74",[83,6.749]],["name/75",[68,54.488]],["parent/75",[83,6.749]],["name/76",[84,39.079,85,43.4]],["parent/76",[]],["name/77",[86,60.513]],["parent/77",[84,4.589,85,5.096]],["name/78",[2,24.925]],["parent/78",[84,4.589,87,5.096]],["name/79",[68,54.488]],["parent/79",[84,4.589,87,5.096]],["name/80",[88,54.488]],["parent/80",[]],["name/81",[89,60.513]],["parent/81",[]],["name/82",[90,60.513]],["parent/82",[89,6.749]],["name/83",[2,24.925]],["parent/83",[91,6.749]],["name/84",[68,54.488]],["parent/84",[91,6.749]],["name/85",[92,50.719]],["parent/85",[]],["name/86",[93,60.513]],["parent/86",[92,5.657]],["name/87",[94,65.749]],["parent/87",[95,4.821]],["name/88",[96,65.749]],["parent/88",[95,4.821]],["name/89",[97,65.749]],["parent/89",[95,4.821]],["name/90",[98,60.513]],["parent/90",[95,4.821]],["name/91",[99,60.513]],["parent/91",[95,4.821]],["name/92",[100,65.749]],["parent/92",[95,4.821]],["name/93",[51,43.227]],["parent/93",[95,4.821]],["name/94",[101,65.749]],["parent/94",[102,4.909]],["name/95",[51,43.227]],["parent/95",[102,4.909]],["name/96",[103,65.749]],["parent/96",[104,6.749]],["name/97",[105,65.749]],["parent/97",[104,6.749]],["name/98",[106,65.749]],["parent/98",[102,4.909]],["name/99",[107,65.749]],["parent/99",[102,4.909]],["name/100",[108,65.749]],["parent/100",[95,4.821]],["name/101",[51,43.227]],["parent/101",[95,4.821]],["name/102",[109,60.513]],["parent/102",[102,4.909]],["name/103",[110,65.749]],["parent/103",[102,4.909]],["name/104",[111,65.749]],["parent/104",[102,4.909]],["name/105",[112,60.513]],["parent/105",[95,4.821]],["name/106",[113,57.064]],["parent/106",[95,4.821]],["name/107",[114,65.749]],["parent/107",[95,4.821]],["name/108",[51,43.227]],["parent/108",[95,4.821]],["name/109",[115,60.513]],["parent/109",[102,4.909]],["name/110",[116,65.749]],["parent/110",[102,4.909]],["name/111",[117,65.749]],["parent/111",[102,4.909]],["name/112",[118,65.749]],["parent/112",[102,4.909]],["name/113",[119,65.749]],["parent/113",[102,4.909]],["name/114",[120,50.719]],["parent/114",[92,5.657]],["name/115",[121,57.064]],["parent/115",[122,6.077]],["name/116",[123,52.431]],["parent/116",[122,6.077]],["name/117",[124,57.064]],["parent/117",[122,6.077]],["name/118",[125,54.488]],["parent/118",[122,6.077]],["name/119",[126,60.513]],["parent/119",[92,5.657]],["name/120",[123,52.431]],["parent/120",[127,6.365]],["name/121",[128,54.488]],["parent/121",[127,6.365]],["name/122",[120,50.719]],["parent/122",[127,6.365]],["name/123",[129,60.513]],["parent/123",[92,5.657]],["name/124",[128,54.488]],["parent/124",[130,6.749]],["name/125",[131,65.749]],["parent/125",[130,6.749]],["name/126",[132,60.513]],["parent/126",[92,5.657]],["name/127",[133,39.458]],["parent/127",[]],["name/128",[134,52.431]],["parent/128",[]],["name/129",[135,54.488]],["parent/129",[134,5.848]],["name/130",[128,54.488]],["parent/130",[136,5.848]],["name/131",[137,60.513]],["parent/131",[136,5.848]],["name/132",[138,65.749]],["parent/132",[136,5.848]],["name/133",[135,54.488]],["parent/133",[136,5.848]],["name/134",[139,65.749]],["parent/134",[136,5.848]],["name/135",[113,57.064]],["parent/135",[134,5.848]],["name/136",[140,50.719]],["parent/136",[141,6.749]],["name/137",[112,60.513]],["parent/137",[141,6.749]],["name/138",[142,60.513]],["parent/138",[134,5.848]],["name/139",[140,50.719]],["parent/139",[143,6.749]],["name/140",[144,65.749]],["parent/140",[143,6.749]],["name/141",[145,60.513]],["parent/141",[134,5.848]],["name/142",[140,50.719]],["parent/142",[146,6.749]],["name/143",[109,60.513]],["parent/143",[146,6.749]],["name/144",[147,57.064]],["parent/144",[]],["name/145",[148,60.513]],["parent/145",[147,6.365]],["name/146",[2,24.925]],["parent/146",[149,5.848]],["name/147",[150,57.064]],["parent/147",[149,5.848]],["name/148",[151,65.749]],["parent/148",[149,5.848]],["name/149",[13,49.252]],["parent/149",[149,5.848]],["name/150",[152,65.749]],["parent/150",[149,5.848]],["name/151",[150,57.064]],["parent/151",[147,6.365]],["name/152",[2,24.925]],["parent/152",[153,6.365]],["name/153",[125,54.488]],["parent/153",[153,6.365]],["name/154",[154,65.749]],["parent/154",[153,6.365]],["name/155",[155,60.513]],["parent/155",[]],["name/156",[156,60.513]],["parent/156",[155,6.749]],["name/157",[157,65.749]],["parent/157",[158,5.848]],["name/158",[115,60.513]],["parent/158",[158,5.848]],["name/159",[140,50.719]],["parent/159",[158,5.848]],["name/160",[159,65.749]],["parent/160",[158,5.848]],["name/161",[160,65.749]],["parent/161",[158,5.848]],["name/162",[161,60.513]],["parent/162",[]],["name/163",[162,54.488]],["parent/163",[161,6.749]],["name/164",[140,50.719]],["parent/164",[163,5.223]],["name/165",[164,60.513]],["parent/165",[163,5.223]],["name/166",[165,60.513]],["parent/166",[163,5.223]],["name/167",[166,65.749]],["parent/167",[163,5.223]],["name/168",[167,65.749]],["parent/168",[163,5.223]],["name/169",[168,65.749]],["parent/169",[163,5.223]],["name/170",[51,43.227]],["parent/170",[163,5.223]],["name/171",[169,65.749]],["parent/171",[170,6.749]],["name/172",[51,43.227]],["parent/172",[170,6.749]],["name/173",[171,65.749]],["parent/173",[172,6.749]],["name/174",[99,60.513]],["parent/174",[172,6.749]],["name/175",[173,65.749]],["parent/175",[163,5.223]],["name/176",[174,65.749]],["parent/176",[163,5.223]],["name/177",[175,50.719]],["parent/177",[]],["name/178",[176,60.513]],["parent/178",[175,5.657]],["name/179",[2,24.925]],["parent/179",[177,5.657]],["name/180",[178,65.749]],["parent/180",[177,5.657]],["name/181",[179,65.749]],["parent/181",[177,5.657]],["name/182",[180,65.749]],["parent/182",[177,5.657]],["name/183",[181,65.749]],["parent/183",[177,5.657]],["name/184",[182,65.749]],["parent/184",[177,5.657]],["name/185",[183,60.513]],["parent/185",[175,5.657]],["name/186",[2,24.925]],["parent/186",[184,6.077]],["name/187",[165,60.513]],["parent/187",[184,6.077]],["name/188",[140,50.719]],["parent/188",[184,6.077]],["name/189",[164,60.513]],["parent/189",[184,6.077]],["name/190",[185,50.719]],["parent/190",[175,5.657]],["name/191",[2,24.925]],["parent/191",[186,5.657]],["name/192",[187,65.749]],["parent/192",[186,5.657]],["name/193",[188,65.749]],["parent/193",[186,5.657]],["name/194",[189,65.749]],["parent/194",[186,5.657]],["name/195",[190,65.749]],["parent/195",[186,5.657]],["name/196",[191,65.749]],["parent/196",[186,5.657]],["name/197",[192,52.431]],["parent/197",[175,5.657]],["name/198",[2,24.925]],["parent/198",[193,5.223]],["name/199",[194,65.749]],["parent/199",[193,5.223]],["name/200",[195,65.749]],["parent/200",[193,5.223]],["name/201",[196,60.513]],["parent/201",[193,5.223]],["name/202",[197,65.749]],["parent/202",[193,5.223]],["name/203",[162,54.488]],["parent/203",[193,5.223]],["name/204",[185,50.719]],["parent/204",[193,5.223]],["name/205",[198,60.513]],["parent/205",[193,5.223]],["name/206",[98,60.513]],["parent/206",[193,5.223]],["name/207",[199,60.513]],["parent/207",[175,5.657]],["name/208",[2,24.925]],["parent/208",[200,5.35]],["name/209",[201,65.749]],["parent/209",[200,5.35]],["name/210",[202,65.749]],["parent/210",[200,5.35]],["name/211",[203,65.749]],["parent/211",[200,5.35]],["name/212",[204,60.513]],["parent/212",[200,5.35]],["name/213",[205,65.749]],["parent/213",[200,5.35]],["name/214",[137,60.513]],["parent/214",[200,5.35]],["name/215",[185,50.719]],["parent/215",[200,5.35]],["name/216",[206,49.252]],["parent/216",[]],["name/217",[207,13.59,208,16.171,209,31.904]],["parent/217",[]],["name/218",[210,60.513]],["parent/218",[207,1.644,208,1.957,209,3.86]],["name/219",[2,24.925]],["parent/219",[207,1.644,208,1.957,211,2.456]],["name/220",[212,60.513]],["parent/220",[207,1.644,208,1.957,211,2.456]],["name/221",[213,60.513]],["parent/221",[207,1.644,208,1.957,211,2.456]],["name/222",[214,60.513]],["parent/222",[207,1.644,208,1.957,211,2.456]],["name/223",[215,60.513]],["parent/223",[207,1.644,208,1.957,211,2.456]],["name/224",[216,57.064]],["parent/224",[207,1.644,208,1.957,211,2.456]],["name/225",[217,60.513]],["parent/225",[207,1.644,208,1.957,211,2.456]],["name/226",[218,60.513]],["parent/226",[207,1.644,208,1.957,211,2.456]],["name/227",[219,60.513]],["parent/227",[207,1.644,208,1.957,211,2.456]],["name/228",[220,60.513]],["parent/228",[207,1.644,208,1.957,211,2.456]],["name/229",[221,57.064]],["parent/229",[207,1.644,208,1.957,211,2.456]],["name/230",[222,60.513]],["parent/230",[207,1.644,208,1.957,211,2.456]],["name/231",[223,60.513]],["parent/231",[207,1.644,208,1.957,211,2.456]],["name/232",[224,60.513]],["parent/232",[207,1.644,208,1.957,211,2.456]],["name/233",[225,60.513]],["parent/233",[207,1.644,208,1.957,211,2.456]],["name/234",[226,60.513]],["parent/234",[207,1.644,208,1.957,211,2.456]],["name/235",[227,60.513]],["parent/235",[207,1.644,208,1.957,211,2.456]],["name/236",[228,60.513]],["parent/236",[207,1.644,208,1.957,211,2.456]],["name/237",[229,60.513]],["parent/237",[207,1.644,208,1.957,211,2.456]],["name/238",[230,60.513]],["parent/238",[207,1.644,208,1.957,211,2.456]],["name/239",[231,60.513]],["parent/239",[207,1.644,208,1.957,211,2.456]],["name/240",[232,60.513]],["parent/240",[207,1.644,208,1.957,211,2.456]],["name/241",[233,60.513]],["parent/241",[207,1.644,208,1.957,211,2.456]],["name/242",[234,60.513]],["parent/242",[207,1.644,208,1.957,211,2.456]],["name/243",[235,60.513]],["parent/243",[207,1.644,208,1.957,211,2.456]],["name/244",[236,54.488]],["parent/244",[207,1.644,208,1.957,211,2.456]],["name/245",[237,57.064]],["parent/245",[207,1.644,208,1.957,209,3.86]],["name/246",[212,60.513]],["parent/246",[207,1.644,208,1.957,238,2.483]],["name/247",[213,60.513]],["parent/247",[207,1.644,208,1.957,238,2.483]],["name/248",[214,60.513]],["parent/248",[207,1.644,208,1.957,238,2.483]],["name/249",[215,60.513]],["parent/249",[207,1.644,208,1.957,238,2.483]],["name/250",[216,57.064]],["parent/250",[207,1.644,208,1.957,238,2.483]],["name/251",[217,60.513]],["parent/251",[207,1.644,208,1.957,238,2.483]],["name/252",[218,60.513]],["parent/252",[207,1.644,208,1.957,238,2.483]],["name/253",[219,60.513]],["parent/253",[207,1.644,208,1.957,238,2.483]],["name/254",[220,60.513]],["parent/254",[207,1.644,208,1.957,238,2.483]],["name/255",[221,57.064]],["parent/255",[207,1.644,208,1.957,238,2.483]],["name/256",[222,60.513]],["parent/256",[207,1.644,208,1.957,238,2.483]],["name/257",[223,60.513]],["parent/257",[207,1.644,208,1.957,238,2.483]],["name/258",[224,60.513]],["parent/258",[207,1.644,208,1.957,238,2.483]],["name/259",[225,60.513]],["parent/259",[207,1.644,208,1.957,238,2.483]],["name/260",[226,60.513]],["parent/260",[207,1.644,208,1.957,238,2.483]],["name/261",[227,60.513]],["parent/261",[207,1.644,208,1.957,238,2.483]],["name/262",[228,60.513]],["parent/262",[207,1.644,208,1.957,238,2.483]],["name/263",[229,60.513]],["parent/263",[207,1.644,208,1.957,238,2.483]],["name/264",[230,60.513]],["parent/264",[207,1.644,208,1.957,238,2.483]],["name/265",[231,60.513]],["parent/265",[207,1.644,208,1.957,238,2.483]],["name/266",[232,60.513]],["parent/266",[207,1.644,208,1.957,238,2.483]],["name/267",[233,60.513]],["parent/267",[207,1.644,208,1.957,238,2.483]],["name/268",[234,60.513]],["parent/268",[207,1.644,208,1.957,238,2.483]],["name/269",[235,60.513]],["parent/269",[207,1.644,208,1.957,238,2.483]],["name/270",[236,54.488]],["parent/270",[207,1.644,208,1.957,238,2.483]],["name/271",[207,17.433,239,34.403]],["parent/271",[]],["name/272",[240,60.513]],["parent/272",[207,2.047,239,4.04]],["name/273",[124,57.064]],["parent/273",[207,2.047,241,5.537]],["name/274",[120,50.719]],["parent/274",[207,2.047,239,4.04]],["name/275",[125,54.488]],["parent/275",[207,2.047,242,4.589]],["name/276",[121,57.064]],["parent/276",[207,2.047,242,4.589]],["name/277",[123,52.431]],["parent/277",[207,2.047,242,4.589]],["name/278",[124,57.064]],["parent/278",[207,2.047,242,4.589]],["name/279",[239,47.969]],["parent/279",[207,2.047,239,4.04]],["name/280",[243,60.513]],["parent/280",[207,2.047,244,4.271]],["name/281",[245,60.513]],["parent/281",[207,2.047,244,4.271]],["name/282",[246,60.513]],["parent/282",[207,2.047,244,4.271]],["name/283",[247,60.513]],["parent/283",[207,2.047,244,4.271]],["name/284",[248,60.513]],["parent/284",[207,2.047,244,4.271]],["name/285",[236,54.488]],["parent/285",[207,2.047,244,4.271]],["name/286",[249,60.513]],["parent/286",[207,2.047,239,4.04]],["name/287",[2,24.925]],["parent/287",[207,2.047,250,3.521]],["name/288",[125,54.488]],["parent/288",[207,2.047,250,3.521]],["name/289",[121,57.064]],["parent/289",[207,2.047,250,3.521]],["name/290",[251,65.749]],["parent/290",[207,2.047,250,3.521]],["name/291",[120,50.719]],["parent/291",[207,2.047,250,3.521]],["name/292",[252,60.513]],["parent/292",[207,2.047,250,3.521]],["name/293",[243,60.513]],["parent/293",[207,2.047,250,3.521]],["name/294",[51,43.227]],["parent/294",[207,2.047,250,3.521]],["name/295",[245,60.513]],["parent/295",[207,2.047,250,3.521]],["name/296",[51,43.227]],["parent/296",[207,2.047,250,3.521]],["name/297",[253,57.064]],["parent/297",[207,2.047,250,3.521]],["name/298",[246,60.513]],["parent/298",[207,2.047,250,3.521]],["name/299",[247,60.513]],["parent/299",[207,2.047,250,3.521]],["name/300",[248,60.513]],["parent/300",[207,2.047,250,3.521]],["name/301",[236,54.488]],["parent/301",[207,2.047,250,3.521]],["name/302",[254,60.513]],["parent/302",[]],["name/303",[255,60.513]],["parent/303",[254,6.749]],["name/304",[2,24.925]],["parent/304",[256,4.525]],["name/305",[257,65.749]],["parent/305",[256,4.525]],["name/306",[258,65.749]],["parent/306",[256,4.525]],["name/307",[237,57.064]],["parent/307",[256,4.525]],["name/308",[259,65.749]],["parent/308",[256,4.525]],["name/309",[260,65.749]],["parent/309",[256,4.525]],["name/310",[261,65.749]],["parent/310",[256,4.525]],["name/311",[262,65.749]],["parent/311",[256,4.525]],["name/312",[263,65.749]],["parent/312",[256,4.525]],["name/313",[264,60.513]],["parent/313",[256,4.525]],["name/314",[265,65.749]],["parent/314",[256,4.525]],["name/315",[266,65.749]],["parent/315",[256,4.525]],["name/316",[267,65.749]],["parent/316",[256,4.525]],["name/317",[268,60.513]],["parent/317",[256,4.525]],["name/318",[269,65.749]],["parent/318",[256,4.525]],["name/319",[216,57.064]],["parent/319",[256,4.525]],["name/320",[221,57.064]],["parent/320",[256,4.525]],["name/321",[270,32.181,271,43.4]],["parent/321",[]],["name/322",[272,60.513]],["parent/322",[270,3.779,271,5.096]],["name/323",[2,24.925]],["parent/323",[270,3.779,273,3.944]],["name/324",[274,60.513]],["parent/324",[270,3.779,273,3.944]],["name/325",[275,60.513]],["parent/325",[270,3.779,273,3.944]],["name/326",[276,65.749]],["parent/326",[270,3.779,273,3.944]],["name/327",[277,65.749]],["parent/327",[270,3.779,273,3.944]],["name/328",[278,65.749]],["parent/328",[270,3.779,273,3.944]],["name/329",[279,65.749]],["parent/329",[270,3.779,273,3.944]],["name/330",[280,65.749]],["parent/330",[270,3.779,273,3.944]],["name/331",[281,65.749]],["parent/331",[270,3.779,273,3.944]],["name/332",[282,36.375,283,43.4]],["parent/332",[]],["name/333",[284,60.513]],["parent/333",[282,4.271,283,5.096]],["name/334",[2,24.925]],["parent/334",[282,4.271,285,4.589]],["name/335",[286,65.749]],["parent/335",[282,4.271,285,4.589]],["name/336",[287,65.749]],["parent/336",[282,4.271,285,4.589]],["name/337",[288,65.749]],["parent/337",[282,4.271,285,4.589]],["name/338",[289,46.829]],["parent/338",[]],["name/339",[290,60.513]],["parent/339",[]],["name/340",[291,60.513]],["parent/340",[290,6.749]],["name/341",[2,24.925]],["parent/341",[292,5.848]],["name/342",[293,65.749]],["parent/342",[292,5.848]],["name/343",[294,65.749]],["parent/343",[292,5.848]],["name/344",[295,65.749]],["parent/344",[292,5.848]],["name/345",[296,65.749]],["parent/345",[292,5.848]],["name/346",[297,60.513]],["parent/346",[]],["name/347",[253,57.064]],["parent/347",[297,6.749]],["name/348",[2,24.925]],["parent/348",[298,5.109]],["name/349",[299,65.749]],["parent/349",[298,5.109]],["name/350",[300,65.749]],["parent/350",[298,5.109]],["name/351",[301,65.749]],["parent/351",[298,5.109]],["name/352",[302,65.749]],["parent/352",[298,5.109]],["name/353",[303,65.749]],["parent/353",[298,5.109]],["name/354",[304,65.749]],["parent/354",[298,5.109]],["name/355",[305,65.749]],["parent/355",[298,5.109]],["name/356",[306,65.749]],["parent/356",[298,5.109]],["name/357",[307,65.749]],["parent/357",[298,5.109]],["name/358",[308,60.513]],["parent/358",[]],["name/359",[309,65.749]],["parent/359",[308,6.749]],["name/360",[2,24.925]],["parent/360",[310,5.657]],["name/361",[311,60.513]],["parent/361",[310,5.657]],["name/362",[312,65.749]],["parent/362",[310,5.657]],["name/363",[13,49.252]],["parent/363",[310,5.657]],["name/364",[313,65.749]],["parent/364",[310,5.657]],["name/365",[314,65.749]],["parent/365",[310,5.657]],["name/366",[315,60.513]],["parent/366",[]],["name/367",[316,60.513]],["parent/367",[315,6.749]],["name/368",[2,24.925]],["parent/368",[317,5.493]],["name/369",[13,49.252]],["parent/369",[317,5.493]],["name/370",[14,57.064]],["parent/370",[317,5.493]],["name/371",[318,65.749]],["parent/371",[317,5.493]],["name/372",[319,65.749]],["parent/372",[317,5.493]],["name/373",[320,65.749]],["parent/373",[317,5.493]],["name/374",[321,65.749]],["parent/374",[317,5.493]],["name/375",[322,60.513]],["parent/375",[]],["name/376",[323,60.513]],["parent/376",[322,6.749]],["name/377",[2,24.925]],["parent/377",[324,4.664]],["name/378",[325,57.064]],["parent/378",[324,4.664]],["name/379",[326,65.749]],["parent/379",[324,4.664]],["name/380",[327,65.749]],["parent/380",[324,4.664]],["name/381",[328,65.749]],["parent/381",[324,4.664]],["name/382",[311,60.513]],["parent/382",[324,4.664]],["name/383",[13,49.252]],["parent/383",[324,4.664]],["name/384",[329,60.513]],["parent/384",[324,4.664]],["name/385",[330,65.749]],["parent/385",[324,4.664]],["name/386",[331,60.513]],["parent/386",[324,4.664]],["name/387",[332,60.513]],["parent/387",[324,4.664]],["name/388",[333,65.749]],["parent/388",[324,4.664]],["name/389",[334,65.749]],["parent/389",[324,4.664]],["name/390",[335,65.749]],["parent/390",[324,4.664]],["name/391",[336,65.749]],["parent/391",[324,4.664]],["name/392",[337,60.513]],["parent/392",[]],["name/393",[338,60.513]],["parent/393",[337,6.749]],["name/394",[2,24.925]],["parent/394",[339,3.817]],["name/395",[340,65.749]],["parent/395",[339,3.817]],["name/396",[252,60.513]],["parent/396",[339,3.817]],["name/397",[239,47.969]],["parent/397",[339,3.817]],["name/398",[13,49.252]],["parent/398",[339,3.817]],["name/399",[341,57.064]],["parent/399",[339,3.817]],["name/400",[342,65.749]],["parent/400",[339,3.817]],["name/401",[343,65.749]],["parent/401",[339,3.817]],["name/402",[344,57.064]],["parent/402",[339,3.817]],["name/403",[345,65.749]],["parent/403",[339,3.817]],["name/404",[346,65.749]],["parent/404",[339,3.817]],["name/405",[347,60.513]],["parent/405",[339,3.817]],["name/406",[348,65.749]],["parent/406",[339,3.817]],["name/407",[349,65.749]],["parent/407",[339,3.817]],["name/408",[350,65.749]],["parent/408",[339,3.817]],["name/409",[351,65.749]],["parent/409",[339,3.817]],["name/410",[352,65.749]],["parent/410",[339,3.817]],["name/411",[353,60.513]],["parent/411",[339,3.817]],["name/412",[354,57.064]],["parent/412",[339,3.817]],["name/413",[355,65.749]],["parent/413",[339,3.817]],["name/414",[356,65.749]],["parent/414",[339,3.817]],["name/415",[357,65.749]],["parent/415",[339,3.817]],["name/416",[358,65.749]],["parent/416",[339,3.817]],["name/417",[359,65.749]],["parent/417",[339,3.817]],["name/418",[360,65.749]],["parent/418",[339,3.817]],["name/419",[361,65.749]],["parent/419",[339,3.817]],["name/420",[362,65.749]],["parent/420",[339,3.817]],["name/421",[363,65.749]],["parent/421",[339,3.817]],["name/422",[364,65.749]],["parent/422",[339,3.817]],["name/423",[365,65.749]],["parent/423",[339,3.817]],["name/424",[366,65.749]],["parent/424",[339,3.817]],["name/425",[367,65.749]],["parent/425",[339,3.817]],["name/426",[368,40.926,369,29.527]],["parent/426",[]],["name/427",[370,65.749]],["parent/427",[368,4.806,369,3.467]],["name/428",[2,24.925]],["parent/428",[368,4.806,371,5.537]],["name/429",[372,60.513]],["parent/429",[]],["name/430",[373,65.749]],["parent/430",[372,6.749]],["name/431",[2,24.925]],["parent/431",[374,5.223]],["name/432",[375,65.749]],["parent/432",[374,5.223]],["name/433",[274,60.513]],["parent/433",[374,5.223]],["name/434",[275,60.513]],["parent/434",[374,5.223]],["name/435",[376,65.749]],["parent/435",[374,5.223]],["name/436",[377,40.567]],["parent/436",[374,5.223]],["name/437",[378,65.749]],["parent/437",[374,5.223]],["name/438",[379,65.749]],["parent/438",[374,5.223]],["name/439",[380,65.749]],["parent/439",[374,5.223]],["name/440",[381,60.513]],["parent/440",[]],["name/441",[382,65.749]],["parent/441",[381,6.749]],["name/442",[2,24.925]],["parent/442",[383,7.333]],["name/443",[384,65.749]],["parent/443",[]],["name/444",[385,36.375,386,39.079]],["parent/444",[]],["name/445",[387,65.749]],["parent/445",[385,4.271,386,4.589]],["name/446",[2,24.925]],["parent/446",[385,4.271,388,4.589]],["name/447",[128,54.488]],["parent/447",[385,4.271,388,4.589]],["name/448",[389,65.749]],["parent/448",[385,4.271,388,4.589]],["name/449",[390,65.749]],["parent/449",[385,4.271,388,4.589]],["name/450",[369,29.527,391,40.926]],["parent/450",[]],["name/451",[392,65.749]],["parent/451",[369,3.467,391,4.806]],["name/452",[2,24.925]],["parent/452",[391,4.806,393,5.537]],["name/453",[394,60.513]],["parent/453",[]],["name/454",[395,65.749]],["parent/454",[394,6.749]],["name/455",[2,24.925]],["parent/455",[396,5.005]],["name/456",[397,65.749]],["parent/456",[396,5.005]],["name/457",[398,54.488]],["parent/457",[396,5.005]],["name/458",[399,65.749]],["parent/458",[396,5.005]],["name/459",[36,49.252]],["parent/459",[396,5.005]],["name/460",[377,40.567]],["parent/460",[396,5.005]],["name/461",[400,65.749]],["parent/461",[396,5.005]],["name/462",[401,57.064]],["parent/462",[396,5.005]],["name/463",[264,60.513]],["parent/463",[396,5.005]],["name/464",[402,65.749]],["parent/464",[396,5.005]],["name/465",[403,65.749]],["parent/465",[396,5.005]],["name/466",[404,60.513]],["parent/466",[]],["name/467",[405,65.749]],["parent/467",[404,6.749]],["name/468",[2,24.925]],["parent/468",[406,7.333]],["name/469",[407,15.117,408,17.205,409,28.356]],["parent/469",[]],["name/470",[410,65.749]],["parent/470",[407,1.829,408,2.082,409,3.431]],["name/471",[2,24.925]],["parent/471",[407,1.829,408,2.082,411,2.113]],["name/472",[412,65.749]],["parent/472",[407,1.829,408,2.082,411,2.113]],["name/473",[413,65.749]],["parent/473",[407,1.829,408,2.082,411,2.113]],["name/474",[414,65.749]],["parent/474",[407,1.829,408,2.082,411,2.113]],["name/475",[415,65.749]],["parent/475",[407,1.829,408,2.082,411,2.113]],["name/476",[416,65.749]],["parent/476",[407,1.829,408,2.082,411,2.113]],["name/477",[417,65.749]],["parent/477",[407,1.829,408,2.082,411,2.113]],["name/478",[418,65.749]],["parent/478",[407,1.829,408,2.082,411,2.113]],["name/479",[419,65.749]],["parent/479",[407,1.829,408,2.082,411,2.113]],["name/480",[420,65.749]],["parent/480",[407,1.829,408,2.082,411,2.113]],["name/481",[421,65.749]],["parent/481",[407,1.829,408,2.082,411,2.113]],["name/482",[422,65.749]],["parent/482",[407,1.829,408,2.082,411,2.113]],["name/483",[423,65.749]],["parent/483",[407,1.829,408,2.082,411,2.113]],["name/484",[424,65.749]],["parent/484",[407,1.829,408,2.082,411,2.113]],["name/485",[425,65.749]],["parent/485",[407,1.829,408,2.082,411,2.113]],["name/486",[426,65.749]],["parent/486",[407,1.829,408,2.082,411,2.113]],["name/487",[427,65.749]],["parent/487",[407,1.829,408,2.082,411,2.113]],["name/488",[341,57.064]],["parent/488",[407,1.829,408,2.082,411,2.113]],["name/489",[428,60.513]],["parent/489",[407,1.829,408,2.082,411,2.113]],["name/490",[429,60.513]],["parent/490",[407,1.829,408,2.082,411,2.113]],["name/491",[430,60.513]],["parent/491",[407,1.829,408,2.082,411,2.113]],["name/492",[431,65.749]],["parent/492",[407,1.829,408,2.082,411,2.113]],["name/493",[192,52.431]],["parent/493",[407,1.829,408,2.082,411,2.113]],["name/494",[325,57.064]],["parent/494",[407,1.829,408,2.082,411,2.113]],["name/495",[432,60.513]],["parent/495",[407,1.829,408,2.082,411,2.113]],["name/496",[433,57.064]],["parent/496",[407,1.829,408,2.082,411,2.113]],["name/497",[434,60.513]],["parent/497",[407,1.829,408,2.082,411,2.113]],["name/498",[435,60.513]],["parent/498",[407,1.829,408,2.082,411,2.113]],["name/499",[36,49.252]],["parent/499",[407,1.829,408,2.082,411,2.113]],["name/500",[398,54.488]],["parent/500",[407,1.829,408,2.082,411,2.113]],["name/501",[436,65.749]],["parent/501",[407,1.829,408,2.082,411,2.113]],["name/502",[377,40.567]],["parent/502",[407,1.829,408,2.082,411,2.113]],["name/503",[437,65.749]],["parent/503",[407,1.829,408,2.082,411,2.113]],["name/504",[438,65.749]],["parent/504",[407,1.829,408,2.082,411,2.113]],["name/505",[439,60.513]],["parent/505",[407,1.829,408,2.082,411,2.113]],["name/506",[440,60.513]],["parent/506",[407,1.829,408,2.082,411,2.113]],["name/507",[441,65.749]],["parent/507",[407,1.829,408,2.082,411,2.113]],["name/508",[442,65.749]],["parent/508",[407,1.829,408,2.082,411,2.113]],["name/509",[443,60.513]],["parent/509",[407,1.829,408,2.082,411,2.113]],["name/510",[444,60.513]],["parent/510",[407,1.829,408,2.082,411,2.113]],["name/511",[347,60.513]],["parent/511",[407,1.829,408,2.082,411,2.113]],["name/512",[445,50.719]],["parent/512",[407,1.829,408,2.082,411,2.113]],["name/513",[446,60.513]],["parent/513",[407,1.829,408,2.082,411,2.113]],["name/514",[407,15.117,447,21.774,448,33.832]],["parent/514",[]],["name/515",[449,65.749]],["parent/515",[407,1.829,447,2.634,448,4.093]],["name/516",[2,24.925]],["parent/516",[407,1.829,447,2.634,450,2.706]],["name/517",[451,65.749]],["parent/517",[407,1.829,447,2.634,450,2.706]],["name/518",[452,65.749]],["parent/518",[407,1.829,447,2.634,450,2.706]],["name/519",[453,65.749]],["parent/519",[407,1.829,447,2.634,450,2.706]],["name/520",[454,65.749]],["parent/520",[407,1.829,447,2.634,450,2.706]],["name/521",[455,65.749]],["parent/521",[407,1.829,447,2.634,450,2.706]],["name/522",[456,65.749]],["parent/522",[407,1.829,447,2.634,450,2.706]],["name/523",[457,65.749]],["parent/523",[407,1.829,447,2.634,450,2.706]],["name/524",[458,65.749]],["parent/524",[407,1.829,447,2.634,450,2.706]],["name/525",[459,65.749]],["parent/525",[407,1.829,447,2.634,450,2.706]],["name/526",[36,49.252]],["parent/526",[407,1.829,447,2.634,450,2.706]],["name/527",[377,40.567]],["parent/527",[407,1.829,447,2.634,450,2.706]],["name/528",[460,65.749]],["parent/528",[407,1.829,447,2.634,450,2.706]],["name/529",[461,65.749]],["parent/529",[407,1.829,447,2.634,450,2.706]],["name/530",[462,65.749]],["parent/530",[407,1.829,447,2.634,450,2.706]],["name/531",[463,65.749]],["parent/531",[407,1.829,447,2.634,450,2.706]],["name/532",[464,65.749]],["parent/532",[407,1.829,447,2.634,450,2.706]],["name/533",[465,65.749]],["parent/533",[407,1.829,447,2.634,450,2.706]],["name/534",[369,29.527,466,40.926]],["parent/534",[]],["name/535",[467,65.749]],["parent/535",[369,3.467,466,4.806]],["name/536",[2,24.925]],["parent/536",[466,4.806,468,5.537]],["name/537",[469,60.513]],["parent/537",[]],["name/538",[470,65.749]],["parent/538",[469,6.749]],["name/539",[2,24.925]],["parent/539",[471,4.592]],["name/540",[472,54.488]],["parent/540",[471,4.592]],["name/541",[341,57.064]],["parent/541",[471,4.592]],["name/542",[473,57.064]],["parent/542",[471,4.592]],["name/543",[474,60.513]],["parent/543",[471,4.592]],["name/544",[475,60.513]],["parent/544",[471,4.592]],["name/545",[428,60.513]],["parent/545",[471,4.592]],["name/546",[433,57.064]],["parent/546",[471,4.592]],["name/547",[476,52.431]],["parent/547",[471,4.592]],["name/548",[477,52.431]],["parent/548",[471,4.592]],["name/549",[377,40.567]],["parent/549",[471,4.592]],["name/550",[478,52.431]],["parent/550",[471,4.592]],["name/551",[440,60.513]],["parent/551",[471,4.592]],["name/552",[443,60.513]],["parent/552",[471,4.592]],["name/553",[479,65.749]],["parent/553",[471,4.592]],["name/554",[445,50.719]],["parent/554",[471,4.592]],["name/555",[480,60.513]],["parent/555",[]],["name/556",[481,65.749]],["parent/556",[480,6.749]],["name/557",[2,24.925]],["parent/557",[482,7.333]],["name/558",[483,24.168,484,24.168,485,33.832]],["parent/558",[]],["name/559",[486,65.749]],["parent/559",[483,2.924,484,2.924,485,4.093]],["name/560",[2,24.925]],["parent/560",[483,2.924,484,2.924,487,3.035]],["name/561",[488,65.749]],["parent/561",[483,2.924,484,2.924,487,3.035]],["name/562",[36,49.252]],["parent/562",[483,2.924,484,2.924,487,3.035]],["name/563",[398,54.488]],["parent/563",[483,2.924,484,2.924,487,3.035]],["name/564",[429,60.513]],["parent/564",[483,2.924,484,2.924,487,3.035]],["name/565",[430,60.513]],["parent/565",[483,2.924,484,2.924,487,3.035]],["name/566",[433,57.064]],["parent/566",[483,2.924,484,2.924,487,3.035]],["name/567",[435,60.513]],["parent/567",[483,2.924,484,2.924,487,3.035]],["name/568",[377,40.567]],["parent/568",[483,2.924,484,2.924,487,3.035]],["name/569",[489,65.749]],["parent/569",[483,2.924,484,2.924,487,3.035]],["name/570",[401,57.064]],["parent/570",[483,2.924,484,2.924,487,3.035]],["name/571",[369,29.527,490,40.926]],["parent/571",[]],["name/572",[491,65.749]],["parent/572",[369,3.467,490,4.806]],["name/573",[2,24.925]],["parent/573",[490,4.806,492,5.537]],["name/574",[493,60.513]],["parent/574",[]],["name/575",[494,65.749]],["parent/575",[493,6.749]],["name/576",[2,24.925]],["parent/576",[495,4.74]],["name/577",[472,54.488]],["parent/577",[495,4.74]],["name/578",[473,57.064]],["parent/578",[495,4.74]],["name/579",[135,54.488]],["parent/579",[495,4.74]],["name/580",[344,57.064]],["parent/580",[495,4.74]],["name/581",[476,52.431]],["parent/581",[495,4.74]],["name/582",[477,52.431]],["parent/582",[495,4.74]],["name/583",[377,40.567]],["parent/583",[495,4.74]],["name/584",[478,52.431]],["parent/584",[495,4.74]],["name/585",[496,65.749]],["parent/585",[495,4.74]],["name/586",[354,57.064]],["parent/586",[495,4.74]],["name/587",[497,65.749]],["parent/587",[495,4.74]],["name/588",[498,65.749]],["parent/588",[495,4.74]],["name/589",[445,50.719]],["parent/589",[495,4.74]],["name/590",[499,60.513]],["parent/590",[]],["name/591",[500,65.749]],["parent/591",[499,6.749]],["name/592",[2,24.925]],["parent/592",[501,7.333]],["name/593",[369,29.527,502,40.926]],["parent/593",[]],["name/594",[503,65.749]],["parent/594",[369,3.467,502,4.806]],["name/595",[2,24.925]],["parent/595",[502,4.806,504,5.537]],["name/596",[505,60.513]],["parent/596",[]],["name/597",[506,65.749]],["parent/597",[505,6.749]],["name/598",[2,24.925]],["parent/598",[507,6.749]],["name/599",[508,65.749]],["parent/599",[507,6.749]],["name/600",[509,60.513]],["parent/600",[]],["name/601",[510,65.749]],["parent/601",[509,6.749]],["name/602",[2,24.925]],["parent/602",[511,7.333]],["name/603",[512,60.513]],["parent/603",[]],["name/604",[513,65.749]],["parent/604",[512,6.749]],["name/605",[2,24.925]],["parent/605",[514,5.493]],["name/606",[515,65.749]],["parent/606",[514,5.493]],["name/607",[398,54.488]],["parent/607",[514,5.493]],["name/608",[36,49.252]],["parent/608",[514,5.493]],["name/609",[377,40.567]],["parent/609",[514,5.493]],["name/610",[516,65.749]],["parent/610",[514,5.493]],["name/611",[401,57.064]],["parent/611",[514,5.493]],["name/612",[369,29.527,517,40.926]],["parent/612",[]],["name/613",[518,65.749]],["parent/613",[369,3.467,517,4.806]],["name/614",[2,24.925]],["parent/614",[517,4.806,519,5.537]],["name/615",[520,60.513]],["parent/615",[]],["name/616",[521,65.749]],["parent/616",[520,6.749]],["name/617",[2,24.925]],["parent/617",[522,5.005]],["name/618",[523,65.749]],["parent/618",[522,5.005]],["name/619",[472,54.488]],["parent/619",[522,5.005]],["name/620",[473,57.064]],["parent/620",[522,5.005]],["name/621",[524,65.749]],["parent/621",[522,5.005]],["name/622",[476,52.431]],["parent/622",[522,5.005]],["name/623",[477,52.431]],["parent/623",[522,5.005]],["name/624",[377,40.567]],["parent/624",[522,5.005]],["name/625",[478,52.431]],["parent/625",[522,5.005]],["name/626",[445,50.719]],["parent/626",[522,5.005]],["name/627",[268,60.513]],["parent/627",[522,5.005]],["name/628",[525,60.513]],["parent/628",[]],["name/629",[526,65.749]],["parent/629",[525,6.749]],["name/630",[2,24.925]],["parent/630",[527,7.333]],["name/631",[409,28.356,528,29.313,529,29.313]],["parent/631",[]],["name/632",[530,65.749]],["parent/632",[409,3.431,528,3.547,529,3.547]],["name/633",[2,24.925]],["parent/633",[528,3.547,529,3.547,531,3.86]],["name/634",[162,54.488]],["parent/634",[528,3.547,529,3.547,531,3.86]],["name/635",[377,40.567]],["parent/635",[528,3.547,529,3.547,531,3.86]],["name/636",[369,29.527,532,40.926]],["parent/636",[]],["name/637",[533,65.749]],["parent/637",[369,3.467,532,4.806]],["name/638",[2,24.925]],["parent/638",[532,4.806,534,5.537]],["name/639",[535,60.513]],["parent/639",[]],["name/640",[536,65.749]],["parent/640",[535,6.749]],["name/641",[2,24.925]],["parent/641",[537,5.109]],["name/642",[472,54.488]],["parent/642",[537,5.109]],["name/643",[538,65.749]],["parent/643",[537,5.109]],["name/644",[476,52.431]],["parent/644",[537,5.109]],["name/645",[477,52.431]],["parent/645",[537,5.109]],["name/646",[539,65.749]],["parent/646",[537,5.109]],["name/647",[377,40.567]],["parent/647",[537,5.109]],["name/648",[478,52.431]],["parent/648",[537,5.109]],["name/649",[540,65.749]],["parent/649",[537,5.109]],["name/650",[445,50.719]],["parent/650",[537,5.109]],["name/651",[541,60.513]],["parent/651",[]],["name/652",[542,65.749]],["parent/652",[541,6.749]],["name/653",[2,24.925]],["parent/653",[543,7.333]],["name/654",[409,28.356,544,24.168,545,24.168]],["parent/654",[]],["name/655",[546,65.749]],["parent/655",[409,3.431,544,2.924,545,2.924]],["name/656",[2,24.925]],["parent/656",[544,2.924,545,2.924,547,3.035]],["name/657",[192,52.431]],["parent/657",[544,2.924,545,2.924,547,3.035]],["name/658",[548,65.749]],["parent/658",[544,2.924,545,2.924,547,3.035]],["name/659",[549,65.749]],["parent/659",[544,2.924,545,2.924,547,3.035]],["name/660",[550,65.749]],["parent/660",[544,2.924,545,2.924,547,3.035]],["name/661",[377,40.567]],["parent/661",[544,2.924,545,2.924,547,3.035]],["name/662",[551,65.749]],["parent/662",[544,2.924,545,2.924,547,3.035]],["name/663",[552,65.749]],["parent/663",[544,2.924,545,2.924,547,3.035]],["name/664",[553,65.749]],["parent/664",[544,2.924,545,2.924,547,3.035]],["name/665",[554,65.749]],["parent/665",[544,2.924,545,2.924,547,3.035]],["name/666",[446,60.513]],["parent/666",[544,2.924,545,2.924,547,3.035]],["name/667",[369,29.527,555,40.926]],["parent/667",[]],["name/668",[556,65.749]],["parent/668",[369,3.467,555,4.806]],["name/669",[2,24.925]],["parent/669",[555,4.806,557,5.537]],["name/670",[558,60.513]],["parent/670",[]],["name/671",[559,65.749]],["parent/671",[558,6.749]],["name/672",[2,24.925]],["parent/672",[560,4.525]],["name/673",[561,65.749]],["parent/673",[560,4.525]],["name/674",[562,65.749]],["parent/674",[560,4.525]],["name/675",[474,60.513]],["parent/675",[560,4.525]],["name/676",[475,60.513]],["parent/676",[560,4.525]],["name/677",[325,57.064]],["parent/677",[560,4.525]],["name/678",[192,52.431]],["parent/678",[560,4.525]],["name/679",[432,60.513]],["parent/679",[560,4.525]],["name/680",[434,60.513]],["parent/680",[560,4.525]],["name/681",[476,52.431]],["parent/681",[560,4.525]],["name/682",[477,52.431]],["parent/682",[560,4.525]],["name/683",[377,40.567]],["parent/683",[560,4.525]],["name/684",[439,60.513]],["parent/684",[560,4.525]],["name/685",[478,52.431]],["parent/685",[560,4.525]],["name/686",[444,60.513]],["parent/686",[560,4.525]],["name/687",[563,65.749]],["parent/687",[560,4.525]],["name/688",[445,50.719]],["parent/688",[560,4.525]],["name/689",[564,60.513]],["parent/689",[]],["name/690",[565,65.749]],["parent/690",[564,6.749]],["name/691",[2,24.925]],["parent/691",[566,7.333]],["name/692",[567,34.403,568,43.4]],["parent/692",[]],["name/693",[569,65.749]],["parent/693",[567,4.04,568,5.096]],["name/694",[2,24.925]],["parent/694",[567,4.04,570,5.096]],["name/695",[571,65.749]],["parent/695",[567,4.04,570,5.096]],["name/696",[386,39.079,567,34.403]],["parent/696",[]],["name/697",[572,65.749]],["parent/697",[386,4.589,567,4.04]],["name/698",[2,24.925]],["parent/698",[567,4.04,573,5.096]],["name/699",[574,65.749]],["parent/699",[567,4.04,573,5.096]],["name/700",[575,60.513]],["parent/700",[]],["name/701",[576,65.749]],["parent/701",[575,6.749]],["name/702",[2,24.925]],["parent/702",[577,6.749]],["name/703",[578,60.513]],["parent/703",[577,6.749]],["name/704",[579,39.079,580,43.4]],["parent/704",[]],["name/705",[581,65.749]],["parent/705",[579,4.589,580,5.096]],["name/706",[2,24.925]],["parent/706",[579,4.589,582,5.096]],["name/707",[578,60.513]],["parent/707",[579,4.589,582,5.096]],["name/708",[583,30.463,584,30.463,585,33.832]],["parent/708",[]],["name/709",[586,65.749]],["parent/709",[583,3.686,584,3.686,585,4.093]],["name/710",[2,24.925]],["parent/710",[583,3.686,584,3.686,587,4.093]],["name/711",[123,52.431]],["parent/711",[583,3.686,584,3.686,587,4.093]],["name/712",[588,60.513]],["parent/712",[]],["name/713",[589,65.749]],["parent/713",[588,6.749]],["name/714",[2,24.925]],["parent/714",[590,6.749]],["name/715",[377,40.567]],["parent/715",[590,6.749]],["name/716",[591,28.356,592,28.356,593,33.832]],["parent/716",[]],["name/717",[594,65.749]],["parent/717",[591,3.431,592,3.431,593,4.093]],["name/718",[2,24.925]],["parent/718",[591,3.431,592,3.431,595,3.686]],["name/719",[596,65.749]],["parent/719",[591,3.431,592,3.431,595,3.686]],["name/720",[377,40.567]],["parent/720",[591,3.431,592,3.431,595,3.686]],["name/721",[597,65.749]],["parent/721",[591,3.431,592,3.431,595,3.686]],["name/722",[598,60.513]],["parent/722",[]],["name/723",[599,65.749]],["parent/723",[598,6.749]],["name/724",[2,24.925]],["parent/724",[600,7.333]],["name/725",[601,60.513]],["parent/725",[]],["name/726",[602,65.749]],["parent/726",[601,6.749]],["name/727",[2,24.925]],["parent/727",[603,6.749]],["name/728",[377,40.567]],["parent/728",[603,6.749]],["name/729",[604,60.513]],["parent/729",[]],["name/730",[605,65.749]],["parent/730",[604,6.749]],["name/731",[2,24.925]],["parent/731",[606,6.749]],["name/732",[377,40.567]],["parent/732",[606,6.749]],["name/733",[607,52.431]],["parent/733",[]],["name/734",[608,65.749]],["parent/734",[607,5.848]],["name/735",[609,65.749]],["parent/735",[607,5.848]],["name/736",[610,65.749]],["parent/736",[607,5.848]],["name/737",[611,65.749]],["parent/737",[607,5.848]],["name/738",[612,60.513]],["parent/738",[]],["name/739",[613,52.431]],["parent/739",[]],["name/740",[185,50.719]],["parent/740",[613,5.848]],["name/741",[2,24.925]],["parent/741",[614,4.188]],["name/742",[615,65.749]],["parent/742",[614,4.188]],["name/743",[616,65.749]],["parent/743",[614,4.188]],["name/744",[617,65.749]],["parent/744",[614,4.188]],["name/745",[196,60.513]],["parent/745",[614,4.188]],["name/746",[198,60.513]],["parent/746",[614,4.188]],["name/747",[123,52.431]],["parent/747",[614,4.188]],["name/748",[618,65.749]],["parent/748",[614,4.188]],["name/749",[619,65.749]],["parent/749",[614,4.188]],["name/750",[620,65.749]],["parent/750",[614,4.188]],["name/751",[621,65.749]],["parent/751",[614,4.188]],["name/752",[622,65.749]],["parent/752",[614,4.188]],["name/753",[623,65.749]],["parent/753",[614,4.188]],["name/754",[624,65.749]],["parent/754",[614,4.188]],["name/755",[625,65.749]],["parent/755",[614,4.188]],["name/756",[626,65.749]],["parent/756",[614,4.188]],["name/757",[627,65.749]],["parent/757",[614,4.188]],["name/758",[628,65.749]],["parent/758",[614,4.188]],["name/759",[629,65.749]],["parent/759",[614,4.188]],["name/760",[630,65.749]],["parent/760",[614,4.188]],["name/761",[631,65.749]],["parent/761",[614,4.188]],["name/762",[632,65.749]],["parent/762",[614,4.188]],["name/763",[633,65.749]],["parent/763",[614,4.188]],["name/764",[634,65.749]],["parent/764",[613,5.848]],["name/765",[635,65.749]],["parent/765",[613,5.848]],["name/766",[204,60.513]],["parent/766",[613,5.848]],["name/767",[636,60.513]],["parent/767",[]],["name/768",[637,57.064]],["parent/768",[636,6.749]],["name/769",[51,43.227]],["parent/769",[638,7.333]],["name/770",[639,57.064]],["parent/770",[640,4.909]],["name/771",[641,57.064]],["parent/771",[640,4.909]],["name/772",[642,57.064]],["parent/772",[640,4.909]],["name/773",[643,57.064]],["parent/773",[640,4.909]],["name/774",[644,57.064]],["parent/774",[640,4.909]],["name/775",[645,57.064]],["parent/775",[640,4.909]],["name/776",[646,57.064]],["parent/776",[640,4.909]],["name/777",[647,57.064]],["parent/777",[640,4.909]],["name/778",[648,57.064]],["parent/778",[640,4.909]],["name/779",[649,57.064]],["parent/779",[640,4.909]],["name/780",[650,57.064]],["parent/780",[640,4.909]],["name/781",[651,57.064]],["parent/781",[640,4.909]],["name/782",[652,60.513]],["parent/782",[]],["name/783",[637,57.064]],["parent/783",[652,6.749]],["name/784",[51,43.227]],["parent/784",[653,7.333]],["name/785",[639,57.064]],["parent/785",[654,4.909]],["name/786",[641,57.064]],["parent/786",[654,4.909]],["name/787",[642,57.064]],["parent/787",[654,4.909]],["name/788",[643,57.064]],["parent/788",[654,4.909]],["name/789",[644,57.064]],["parent/789",[654,4.909]],["name/790",[645,57.064]],["parent/790",[654,4.909]],["name/791",[646,57.064]],["parent/791",[654,4.909]],["name/792",[647,57.064]],["parent/792",[654,4.909]],["name/793",[648,57.064]],["parent/793",[654,4.909]],["name/794",[649,57.064]],["parent/794",[654,4.909]],["name/795",[650,57.064]],["parent/795",[654,4.909]],["name/796",[651,57.064]],["parent/796",[654,4.909]],["name/797",[655,60.513]],["parent/797",[]],["name/798",[637,57.064]],["parent/798",[655,6.749]],["name/799",[51,43.227]],["parent/799",[656,7.333]],["name/800",[639,57.064]],["parent/800",[657,4.909]],["name/801",[641,57.064]],["parent/801",[657,4.909]],["name/802",[642,57.064]],["parent/802",[657,4.909]],["name/803",[643,57.064]],["parent/803",[657,4.909]],["name/804",[644,57.064]],["parent/804",[657,4.909]],["name/805",[645,57.064]],["parent/805",[657,4.909]],["name/806",[646,57.064]],["parent/806",[657,4.909]],["name/807",[647,57.064]],["parent/807",[657,4.909]],["name/808",[648,57.064]],["parent/808",[657,4.909]],["name/809",[649,57.064]],["parent/809",[657,4.909]],["name/810",[650,57.064]],["parent/810",[657,4.909]],["name/811",[651,57.064]],["parent/811",[657,4.909]],["name/812",[658,65.749]],["parent/812",[]],["name/813",[659,65.749]],["parent/813",[]],["name/814",[660,65.749]],["parent/814",[]],["name/815",[661,28.356,662,28.356,663,23.758]],["parent/815",[]],["name/816",[664,60.513]],["parent/816",[661,3.431,662,3.431,663,2.875]],["name/817",[2,24.925]],["parent/817",[661,3.431,662,3.431,665,3.686]],["name/818",[666,65.749]],["parent/818",[661,3.431,662,3.431,665,3.686]],["name/819",[667,65.749]],["parent/819",[661,3.431,662,3.431,665,3.686]],["name/820",[668,65.749]],["parent/820",[661,3.431,662,3.431,665,3.686]],["name/821",[669,46.829]],["parent/821",[]],["name/822",[663,19.467,670,23.234,671,23.234,672,23.234]],["parent/822",[]],["name/823",[673,60.513]],["parent/823",[663,2.402,670,2.867,671,2.867,672,2.867]],["name/824",[2,24.925]],["parent/824",[670,2.867,671,2.867,672,2.867,674,3.08]],["name/825",[675,65.749]],["parent/825",[670,2.867,671,2.867,672,2.867,674,3.08]],["name/826",[676,65.749]],["parent/826",[670,2.867,671,2.867,672,2.867,674,3.08]],["name/827",[677,65.749]],["parent/827",[670,2.867,671,2.867,672,2.867,674,3.08]],["name/828",[663,23.758,678,27.536,679,27.536]],["parent/828",[]],["name/829",[680,60.513]],["parent/829",[663,2.875,678,3.332,679,3.332]],["name/830",[2,24.925]],["parent/830",[678,3.332,679,3.332,681,4.448]],["name/831",[682,60.513]],["parent/831",[663,2.875,678,3.332,679,3.332]],["name/832",[2,24.925]],["parent/832",[678,3.332,679,3.332,683,4.448]],["name/833",[684,60.513]],["parent/833",[663,2.875,678,3.332,679,3.332]],["name/834",[2,24.925]],["parent/834",[678,3.332,679,3.332,685,4.448]],["name/835",[663,23.758,686,30.463,687,22.06]],["parent/835",[]],["name/836",[688,60.513]],["parent/836",[663,2.875,686,3.686,687,2.669]],["name/837",[2,24.925]],["parent/837",[686,3.686,687,2.669,689,4.093]],["name/838",[690,65.749]],["parent/838",[686,3.686,687,2.669,689,4.093]],["name/839",[663,23.758,687,22.06,691,28.356]],["parent/839",[]],["name/840",[692,60.513]],["parent/840",[663,2.875,687,2.669,691,3.431]],["name/841",[2,24.925]],["parent/841",[687,2.669,691,3.431,693,3.686]],["name/842",[331,60.513]],["parent/842",[687,2.669,691,3.431,693,3.686]],["name/843",[332,60.513]],["parent/843",[687,2.669,691,3.431,693,3.686]],["name/844",[329,60.513]],["parent/844",[687,2.669,691,3.431,693,3.686]],["name/845",[663,23.758,687,22.06,694,26.181]],["parent/845",[]],["name/846",[695,60.513]],["parent/846",[663,2.875,687,2.669,694,3.168]],["name/847",[2,24.925]],["parent/847",[687,2.669,694,3.168,696,3.332]],["name/848",[697,65.749]],["parent/848",[687,2.669,694,3.168,696,3.332]],["name/849",[344,57.064]],["parent/849",[687,2.669,694,3.168,696,3.332]],["name/850",[698,65.749]],["parent/850",[687,2.669,694,3.168,696,3.332]],["name/851",[699,65.749]],["parent/851",[687,2.669,694,3.168,696,3.332]],["name/852",[353,60.513]],["parent/852",[687,2.669,694,3.168,696,3.332]],["name/853",[354,57.064]],["parent/853",[687,2.669,694,3.168,696,3.332]],["name/854",[1,60.513]],["parent/854",[11,6.365]],["name/855",[14,57.064]],["parent/855",[11,6.365]],["name/856",[20,60.513]],["parent/856",[23,6.365]],["name/857",[25,60.513]],["parent/857",[23,6.365]],["name/858",[29,60.513]],["parent/858",[63,4.74]],["name/859",[32,60.513]],["parent/859",[63,4.74]],["name/860",[41,60.513]],["parent/860",[63,4.74]],["name/861",[37,60.513]],["parent/861",[63,4.74]],["name/862",[47,60.513]],["parent/862",[63,4.74]],["name/863",[50,60.513]],["parent/863",[63,4.74]],["name/864",[54,60.513]],["parent/864",[63,4.74]],["name/865",[62,60.513]],["parent/865",[63,4.74]],["name/866",[66,60.513]],["parent/866",[63,4.74]],["name/867",[69,60.513]],["parent/867",[63,4.74]],["name/868",[76,60.513]],["parent/868",[63,4.74]],["name/869",[79,60.513]],["parent/869",[63,4.74]],["name/870",[80,60.513]],["parent/870",[63,4.74]],["name/871",[82,60.513]],["parent/871",[88,6.077]],["name/872",[86,60.513]],["parent/872",[88,6.077]],["name/873",[90,60.513]],["parent/873",[88,6.077]],["name/874",[176,60.513]],["parent/874",[133,4.401]],["name/875",[183,60.513]],["parent/875",[133,4.401]],["name/876",[185,50.719]],["parent/876",[133,4.401]],["name/877",[192,52.431]],["parent/877",[133,4.401]],["name/878",[199,60.513]],["parent/878",[133,4.401]],["name/879",[148,60.513]],["parent/879",[133,4.401]],["name/880",[150,57.064]],["parent/880",[133,4.401]],["name/881",[93,60.513]],["parent/881",[133,4.401]],["name/882",[120,50.719]],["parent/882",[133,4.401]],["name/883",[126,60.513]],["parent/883",[133,4.401]],["name/884",[129,60.513]],["parent/884",[133,4.401]],["name/885",[132,60.513]],["parent/885",[133,4.401]],["name/886",[156,60.513]],["parent/886",[133,4.401]],["name/887",[162,54.488]],["parent/887",[133,4.401]],["name/888",[135,54.488]],["parent/888",[133,4.401]],["name/889",[113,57.064]],["parent/889",[133,4.401]],["name/890",[142,60.513]],["parent/890",[133,4.401]],["name/891",[145,60.513]],["parent/891",[133,4.401]],["name/892",[210,60.513]],["parent/892",[206,5.493]],["name/893",[237,57.064]],["parent/893",[206,5.493]],["name/894",[240,60.513]],["parent/894",[206,5.493]],["name/895",[120,50.719]],["parent/895",[206,5.493]],["name/896",[239,47.969]],["parent/896",[206,5.493]],["name/897",[249,60.513]],["parent/897",[206,5.493]],["name/898",[255,60.513]],["parent/898",[289,5.223]],["name/899",[323,60.513]],["parent/899",[289,5.223]],["name/900",[338,60.513]],["parent/900",[289,5.223]],["name/901",[316,60.513]],["parent/901",[289,5.223]],["name/902",[272,60.513]],["parent/902",[289,5.223]],["name/903",[291,60.513]],["parent/903",[289,5.223]],["name/904",[253,57.064]],["parent/904",[289,5.223]],["name/905",[284,60.513]],["parent/905",[289,5.223]],["name/906",[185,50.719]],["parent/906",[612,6.749]],["name/907",[664,60.513]],["parent/907",[669,5.223]],["name/908",[673,60.513]],["parent/908",[669,5.223]],["name/909",[680,60.513]],["parent/909",[669,5.223]],["name/910",[682,60.513]],["parent/910",[669,5.223]],["name/911",[684,60.513]],["parent/911",[669,5.223]],["name/912",[695,60.513]],["parent/912",[669,5.223]],["name/913",[688,60.513]],["parent/913",[669,5.223]],["name/914",[692,60.513]],["parent/914",[669,5.223]]],"invertedIndex":[["0xa686005ce37dce7738436256982c3903f2e4ea8e",{"_index":169,"name":{"171":{}},"parent":{}}],["__type",{"_index":51,"name":{"46":{},"63":{},"93":{},"95":{},"101":{},"108":{},"170":{},"172":{},"294":{},"296":{},"769":{},"784":{},"799":{}},"parent":{}}],["_outbuffer",{"_index":624,"name":{"754":{}},"parent":{}}],["_outbuffercursor",{"_index":625,"name":{"755":{}},"parent":{}}],["_signatureset",{"_index":622,"name":{"752":{}},"parent":{}}],["_workbuffer",{"_index":623,"name":{"753":{}},"parent":{}}],["account",{"_index":425,"name":{"485":{}},"parent":{}}],["account.component",{"_index":485,"name":{"558":{}},"parent":{"559":{}}}],["account.component.createaccountcomponent",{"_index":487,"name":{},"parent":{"560":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{}}}],["account/create",{"_index":484,"name":{"558":{}},"parent":{"559":{},"560":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{}}}],["accountaddress",{"_index":426,"name":{"486":{}},"parent":{}}],["accountdetails",{"_index":93,"name":{"86":{},"881":{}},"parent":{}}],["accountdetailscomponent",{"_index":410,"name":{"470":{}},"parent":{}}],["accountindex",{"_index":1,"name":{"1":{},"854":{}},"parent":{}}],["accountinfoform",{"_index":424,"name":{"484":{}},"parent":{}}],["accountinfoformstub",{"_index":441,"name":{"507":{}},"parent":{}}],["accounts",{"_index":341,"name":{"399":{},"488":{},"541":{}},"parent":{}}],["accountscomponent",{"_index":470,"name":{"538":{}},"parent":{}}],["accountsearchcomponent",{"_index":449,"name":{"515":{}},"parent":{}}],["accountslist",{"_index":342,"name":{"400":{}},"parent":{}}],["accountsmodule",{"_index":481,"name":{"556":{}},"parent":{}}],["accountsroutingmodule",{"_index":467,"name":{"535":{}},"parent":{}}],["accountssubject",{"_index":343,"name":{"401":{}},"parent":{}}],["accountstatus",{"_index":427,"name":{"487":{}},"parent":{}}],["accountstype",{"_index":428,"name":{"489":{},"545":{}},"parent":{}}],["accounttypes",{"_index":433,"name":{"496":{},"546":{},"566":{}},"parent":{}}],["action",{"_index":135,"name":{"129":{},"133":{},"579":{},"888":{}},"parent":{}}],["actions",{"_index":344,"name":{"402":{},"580":{},"849":{}},"parent":{}}],["actionslist",{"_index":345,"name":{"403":{}},"parent":{}}],["actionssubject",{"_index":346,"name":{"404":{}},"parent":{}}],["activatedroutestub",{"_index":664,"name":{"816":{},"907":{}},"parent":{}}],["add0x",{"_index":611,"name":{"737":{}},"parent":{}}],["address",{"_index":165,"name":{"166":{},"187":{}},"parent":{}}],["addressof",{"_index":16,"name":{"17":{}},"parent":{}}],["addresssearchform",{"_index":457,"name":{"523":{}},"parent":{}}],["addresssearchformstub",{"_index":462,"name":{"530":{}},"parent":{}}],["addresssearchloading",{"_index":459,"name":{"525":{}},"parent":{}}],["addresssearchsubmitted",{"_index":458,"name":{"524":{}},"parent":{}}],["addtoaccountregistry",{"_index":7,"name":{"6":{}},"parent":{}}],["addtransaction",{"_index":333,"name":{"388":{}},"parent":{}}],["admincomponent",{"_index":494,"name":{"575":{}},"parent":{}}],["adminmodule",{"_index":500,"name":{"591":{}},"parent":{}}],["adminroutingmodule",{"_index":491,"name":{"572":{}},"parent":{}}],["age",{"_index":97,"name":{"89":{}},"parent":{}}],["alg",{"_index":181,"name":{"183":{}},"parent":{}}],["algo",{"_index":121,"name":{"115":{},"276":{},"289":{}},"parent":{}}],["app/_eth",{"_index":11,"name":{"10":{}},"parent":{"854":{},"855":{}}}],["app/_eth/accountindex",{"_index":0,"name":{"0":{}},"parent":{"1":{}}}],["app/_eth/accountindex.accountindex",{"_index":3,"name":{},"parent":{"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{}}}],["app/_eth/token",{"_index":12,"name":{"11":{}},"parent":{"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{}}}],["app/_guards",{"_index":23,"name":{"24":{}},"parent":{"856":{},"857":{}}}],["app/_guards/auth.guard",{"_index":19,"name":{"20":{}},"parent":{"21":{}}}],["app/_guards/auth.guard.authguard",{"_index":21,"name":{},"parent":{"22":{},"23":{}}}],["app/_guards/role.guard",{"_index":24,"name":{"25":{}},"parent":{"26":{}}}],["app/_guards/role.guard.roleguard",{"_index":26,"name":{},"parent":{"27":{},"28":{}}}],["app/_helpers",{"_index":63,"name":{"57":{}},"parent":{"858":{},"859":{},"860":{},"861":{},"862":{},"863":{},"864":{},"865":{},"866":{},"867":{},"868":{},"869":{},"870":{}}}],["app/_helpers/array",{"_index":27,"name":{"29":{}},"parent":{"30":{}}}],["app/_helpers/clipboard",{"_index":30,"name":{"31":{}},"parent":{"32":{}}}],["app/_helpers/custom",{"_index":33,"name":{"33":{}},"parent":{"34":{},"35":{},"36":{}}}],["app/_helpers/custom.validator",{"_index":40,"name":{"37":{}},"parent":{"38":{}}}],["app/_helpers/custom.validator.customvalidator",{"_index":43,"name":{},"parent":{"39":{},"40":{},"41":{}}}],["app/_helpers/export",{"_index":45,"name":{"42":{}},"parent":{"43":{}}}],["app/_helpers/global",{"_index":48,"name":{"44":{}},"parent":{"45":{},"46":{},"47":{},"48":{},"49":{},"50":{},"51":{},"52":{},"53":{},"54":{}}}],["app/_helpers/http",{"_index":60,"name":{"55":{}},"parent":{"56":{}}}],["app/_helpers/mock",{"_index":64,"name":{"58":{}},"parent":{"59":{},"60":{},"61":{},"62":{},"63":{},"64":{},"65":{},"66":{}}}],["app/_helpers/read",{"_index":75,"name":{"67":{}},"parent":{"68":{}}}],["app/_helpers/schema",{"_index":77,"name":{"69":{}},"parent":{"70":{},"71":{}}}],["app/_interceptors",{"_index":88,"name":{"80":{}},"parent":{"871":{},"872":{},"873":{}}}],["app/_interceptors/error.interceptor",{"_index":81,"name":{"72":{}},"parent":{"73":{}}}],["app/_interceptors/error.interceptor.errorinterceptor",{"_index":83,"name":{},"parent":{"74":{},"75":{}}}],["app/_interceptors/http",{"_index":84,"name":{"76":{}},"parent":{"77":{},"78":{},"79":{}}}],["app/_interceptors/logging.interceptor",{"_index":89,"name":{"81":{}},"parent":{"82":{}}}],["app/_interceptors/logging.interceptor.logginginterceptor",{"_index":91,"name":{},"parent":{"83":{},"84":{}}}],["app/_models",{"_index":133,"name":{"127":{}},"parent":{"874":{},"875":{},"876":{},"877":{},"878":{},"879":{},"880":{},"881":{},"882":{},"883":{},"884":{},"885":{},"886":{},"887":{},"888":{},"889":{},"890":{},"891":{}}}],["app/_models/account",{"_index":92,"name":{"85":{}},"parent":{"86":{},"114":{},"119":{},"123":{},"126":{}}}],["app/_models/account.accountdetails",{"_index":95,"name":{},"parent":{"87":{},"88":{},"89":{},"90":{},"91":{},"92":{},"93":{},"100":{},"101":{},"105":{},"106":{},"107":{},"108":{}}}],["app/_models/account.accountdetails.__type",{"_index":102,"name":{},"parent":{"94":{},"95":{},"98":{},"99":{},"102":{},"103":{},"104":{},"109":{},"110":{},"111":{},"112":{},"113":{}}}],["app/_models/account.accountdetails.__type.__type",{"_index":104,"name":{},"parent":{"96":{},"97":{}}}],["app/_models/account.meta",{"_index":127,"name":{},"parent":{"120":{},"121":{},"122":{}}}],["app/_models/account.metaresponse",{"_index":130,"name":{},"parent":{"124":{},"125":{}}}],["app/_models/account.signature",{"_index":122,"name":{},"parent":{"115":{},"116":{},"117":{},"118":{}}}],["app/_models/mappings",{"_index":134,"name":{"128":{}},"parent":{"129":{},"135":{},"138":{},"141":{}}}],["app/_models/mappings.action",{"_index":136,"name":{},"parent":{"130":{},"131":{},"132":{},"133":{},"134":{}}}],["app/_models/mappings.areaname",{"_index":143,"name":{},"parent":{"139":{},"140":{}}}],["app/_models/mappings.areatype",{"_index":146,"name":{},"parent":{"142":{},"143":{}}}],["app/_models/mappings.category",{"_index":141,"name":{},"parent":{"136":{},"137":{}}}],["app/_models/settings",{"_index":147,"name":{"144":{}},"parent":{"145":{},"151":{}}}],["app/_models/settings.settings",{"_index":149,"name":{},"parent":{"146":{},"147":{},"148":{},"149":{},"150":{}}}],["app/_models/settings.w3",{"_index":153,"name":{},"parent":{"152":{},"153":{},"154":{}}}],["app/_models/staff",{"_index":155,"name":{"155":{}},"parent":{"156":{}}}],["app/_models/staff.staff",{"_index":158,"name":{},"parent":{"157":{},"158":{},"159":{},"160":{},"161":{}}}],["app/_models/token",{"_index":161,"name":{"162":{}},"parent":{"163":{}}}],["app/_models/token.token",{"_index":163,"name":{},"parent":{"164":{},"165":{},"166":{},"167":{},"168":{},"169":{},"170":{},"175":{},"176":{}}}],["app/_models/token.token.__type",{"_index":170,"name":{},"parent":{"171":{},"172":{}}}],["app/_models/token.token.__type.__type",{"_index":172,"name":{},"parent":{"173":{},"174":{}}}],["app/_models/transaction",{"_index":175,"name":{"177":{}},"parent":{"178":{},"185":{},"190":{},"197":{},"207":{}}}],["app/_models/transaction.blocksbloom",{"_index":177,"name":{},"parent":{"179":{},"180":{},"181":{},"182":{},"183":{},"184":{}}}],["app/_models/transaction.conversion",{"_index":200,"name":{},"parent":{"208":{},"209":{},"210":{},"211":{},"212":{},"213":{},"214":{},"215":{}}}],["app/_models/transaction.transaction",{"_index":193,"name":{},"parent":{"198":{},"199":{},"200":{},"201":{},"202":{},"203":{},"204":{},"205":{},"206":{}}}],["app/_models/transaction.tx",{"_index":186,"name":{},"parent":{"191":{},"192":{},"193":{},"194":{},"195":{},"196":{}}}],["app/_models/transaction.txtoken",{"_index":184,"name":{},"parent":{"186":{},"187":{},"188":{},"189":{}}}],["app/_pgp",{"_index":206,"name":{"216":{}},"parent":{"892":{},"893":{},"894":{},"895":{},"896":{},"897":{}}}],["app/_pgp/pgp",{"_index":207,"name":{"217":{},"271":{}},"parent":{"218":{},"219":{},"220":{},"221":{},"222":{},"223":{},"224":{},"225":{},"226":{},"227":{},"228":{},"229":{},"230":{},"231":{},"232":{},"233":{},"234":{},"235":{},"236":{},"237":{},"238":{},"239":{},"240":{},"241":{},"242":{},"243":{},"244":{},"245":{},"246":{},"247":{},"248":{},"249":{},"250":{},"251":{},"252":{},"253":{},"254":{},"255":{},"256":{},"257":{},"258":{},"259":{},"260":{},"261":{},"262":{},"263":{},"264":{},"265":{},"266":{},"267":{},"268":{},"269":{},"270":{},"272":{},"273":{},"274":{},"275":{},"276":{},"277":{},"278":{},"279":{},"280":{},"281":{},"282":{},"283":{},"284":{},"285":{},"286":{},"287":{},"288":{},"289":{},"290":{},"291":{},"292":{},"293":{},"294":{},"295":{},"296":{},"297":{},"298":{},"299":{},"300":{},"301":{}}}],["app/_services",{"_index":289,"name":{"338":{}},"parent":{"898":{},"899":{},"900":{},"901":{},"902":{},"903":{},"904":{},"905":{}}}],["app/_services/auth.service",{"_index":254,"name":{"302":{}},"parent":{"303":{}}}],["app/_services/auth.service.authservice",{"_index":256,"name":{},"parent":{"304":{},"305":{},"306":{},"307":{},"308":{},"309":{},"310":{},"311":{},"312":{},"313":{},"314":{},"315":{},"316":{},"317":{},"318":{},"319":{},"320":{}}}],["app/_services/block",{"_index":270,"name":{"321":{}},"parent":{"322":{},"323":{},"324":{},"325":{},"326":{},"327":{},"328":{},"329":{},"330":{},"331":{}}}],["app/_services/error",{"_index":282,"name":{"332":{}},"parent":{"333":{},"334":{},"335":{},"336":{},"337":{}}}],["app/_services/location.service",{"_index":290,"name":{"339":{}},"parent":{"340":{}}}],["app/_services/location.service.locationservice",{"_index":292,"name":{},"parent":{"341":{},"342":{},"343":{},"344":{},"345":{}}}],["app/_services/logging.service",{"_index":297,"name":{"346":{}},"parent":{"347":{}}}],["app/_services/logging.service.loggingservice",{"_index":298,"name":{},"parent":{"348":{},"349":{},"350":{},"351":{},"352":{},"353":{},"354":{},"355":{},"356":{},"357":{}}}],["app/_services/registry.service",{"_index":308,"name":{"358":{}},"parent":{"359":{}}}],["app/_services/registry.service.registryservice",{"_index":310,"name":{},"parent":{"360":{},"361":{},"362":{},"363":{},"364":{},"365":{}}}],["app/_services/token.service",{"_index":315,"name":{"366":{}},"parent":{"367":{}}}],["app/_services/token.service.tokenservice",{"_index":317,"name":{},"parent":{"368":{},"369":{},"370":{},"371":{},"372":{},"373":{},"374":{}}}],["app/_services/transaction.service",{"_index":322,"name":{"375":{}},"parent":{"376":{}}}],["app/_services/transaction.service.transactionservice",{"_index":324,"name":{},"parent":{"377":{},"378":{},"379":{},"380":{},"381":{},"382":{},"383":{},"384":{},"385":{},"386":{},"387":{},"388":{},"389":{},"390":{},"391":{}}}],["app/_services/user.service",{"_index":337,"name":{"392":{}},"parent":{"393":{}}}],["app/_services/user.service.userservice",{"_index":339,"name":{},"parent":{"394":{},"395":{},"396":{},"397":{},"398":{},"399":{},"400":{},"401":{},"402":{},"403":{},"404":{},"405":{},"406":{},"407":{},"408":{},"409":{},"410":{},"411":{},"412":{},"413":{},"414":{},"415":{},"416":{},"417":{},"418":{},"419":{},"420":{},"421":{},"422":{},"423":{},"424":{},"425":{}}}],["app/app",{"_index":368,"name":{"426":{}},"parent":{"427":{},"428":{}}}],["app/app.component",{"_index":372,"name":{"429":{}},"parent":{"430":{}}}],["app/app.component.appcomponent",{"_index":374,"name":{},"parent":{"431":{},"432":{},"433":{},"434":{},"435":{},"436":{},"437":{},"438":{},"439":{}}}],["app/app.module",{"_index":381,"name":{"440":{}},"parent":{"441":{}}}],["app/app.module.appmodule",{"_index":383,"name":{},"parent":{"442":{}}}],["app/auth/_directives",{"_index":384,"name":{"443":{}},"parent":{}}],["app/auth/_directives/password",{"_index":385,"name":{"444":{}},"parent":{"445":{},"446":{},"447":{},"448":{},"449":{}}}],["app/auth/auth",{"_index":391,"name":{"450":{}},"parent":{"451":{},"452":{}}}],["app/auth/auth.component",{"_index":394,"name":{"453":{}},"parent":{"454":{}}}],["app/auth/auth.component.authcomponent",{"_index":396,"name":{},"parent":{"455":{},"456":{},"457":{},"458":{},"459":{},"460":{},"461":{},"462":{},"463":{},"464":{},"465":{}}}],["app/auth/auth.module",{"_index":404,"name":{"466":{}},"parent":{"467":{}}}],["app/auth/auth.module.authmodule",{"_index":406,"name":{},"parent":{"468":{}}}],["app/pages/accounts/account",{"_index":407,"name":{"469":{},"514":{}},"parent":{"470":{},"471":{},"472":{},"473":{},"474":{},"475":{},"476":{},"477":{},"478":{},"479":{},"480":{},"481":{},"482":{},"483":{},"484":{},"485":{},"486":{},"487":{},"488":{},"489":{},"490":{},"491":{},"492":{},"493":{},"494":{},"495":{},"496":{},"497":{},"498":{},"499":{},"500":{},"501":{},"502":{},"503":{},"504":{},"505":{},"506":{},"507":{},"508":{},"509":{},"510":{},"511":{},"512":{},"513":{},"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{},"532":{},"533":{}}}],["app/pages/accounts/accounts",{"_index":466,"name":{"534":{}},"parent":{"535":{},"536":{}}}],["app/pages/accounts/accounts.component",{"_index":469,"name":{"537":{}},"parent":{"538":{}}}],["app/pages/accounts/accounts.component.accountscomponent",{"_index":471,"name":{},"parent":{"539":{},"540":{},"541":{},"542":{},"543":{},"544":{},"545":{},"546":{},"547":{},"548":{},"549":{},"550":{},"551":{},"552":{},"553":{},"554":{}}}],["app/pages/accounts/accounts.module",{"_index":480,"name":{"555":{}},"parent":{"556":{}}}],["app/pages/accounts/accounts.module.accountsmodule",{"_index":482,"name":{},"parent":{"557":{}}}],["app/pages/accounts/create",{"_index":483,"name":{"558":{}},"parent":{"559":{},"560":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{}}}],["app/pages/admin/admin",{"_index":490,"name":{"571":{}},"parent":{"572":{},"573":{}}}],["app/pages/admin/admin.component",{"_index":493,"name":{"574":{}},"parent":{"575":{}}}],["app/pages/admin/admin.component.admincomponent",{"_index":495,"name":{},"parent":{"576":{},"577":{},"578":{},"579":{},"580":{},"581":{},"582":{},"583":{},"584":{},"585":{},"586":{},"587":{},"588":{},"589":{}}}],["app/pages/admin/admin.module",{"_index":499,"name":{"590":{}},"parent":{"591":{}}}],["app/pages/admin/admin.module.adminmodule",{"_index":501,"name":{},"parent":{"592":{}}}],["app/pages/pages",{"_index":502,"name":{"593":{}},"parent":{"594":{},"595":{}}}],["app/pages/pages.component",{"_index":505,"name":{"596":{}},"parent":{"597":{}}}],["app/pages/pages.component.pagescomponent",{"_index":507,"name":{},"parent":{"598":{},"599":{}}}],["app/pages/pages.module",{"_index":509,"name":{"600":{}},"parent":{"601":{}}}],["app/pages/pages.module.pagesmodule",{"_index":511,"name":{},"parent":{"602":{}}}],["app/pages/settings/organization/organization.component",{"_index":512,"name":{"603":{}},"parent":{"604":{}}}],["app/pages/settings/organization/organization.component.organizationcomponent",{"_index":514,"name":{},"parent":{"605":{},"606":{},"607":{},"608":{},"609":{},"610":{},"611":{}}}],["app/pages/settings/settings",{"_index":517,"name":{"612":{}},"parent":{"613":{},"614":{}}}],["app/pages/settings/settings.component",{"_index":520,"name":{"615":{}},"parent":{"616":{}}}],["app/pages/settings/settings.component.settingscomponent",{"_index":522,"name":{},"parent":{"617":{},"618":{},"619":{},"620":{},"621":{},"622":{},"623":{},"624":{},"625":{},"626":{},"627":{}}}],["app/pages/settings/settings.module",{"_index":525,"name":{"628":{}},"parent":{"629":{}}}],["app/pages/settings/settings.module.settingsmodule",{"_index":527,"name":{},"parent":{"630":{}}}],["app/pages/tokens/token",{"_index":528,"name":{"631":{}},"parent":{"632":{},"633":{},"634":{},"635":{}}}],["app/pages/tokens/tokens",{"_index":532,"name":{"636":{}},"parent":{"637":{},"638":{}}}],["app/pages/tokens/tokens.component",{"_index":535,"name":{"639":{}},"parent":{"640":{}}}],["app/pages/tokens/tokens.component.tokenscomponent",{"_index":537,"name":{},"parent":{"641":{},"642":{},"643":{},"644":{},"645":{},"646":{},"647":{},"648":{},"649":{},"650":{}}}],["app/pages/tokens/tokens.module",{"_index":541,"name":{"651":{}},"parent":{"652":{}}}],["app/pages/tokens/tokens.module.tokensmodule",{"_index":543,"name":{},"parent":{"653":{}}}],["app/pages/transactions/transaction",{"_index":544,"name":{"654":{}},"parent":{"655":{},"656":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{},"665":{},"666":{}}}],["app/pages/transactions/transactions",{"_index":555,"name":{"667":{}},"parent":{"668":{},"669":{}}}],["app/pages/transactions/transactions.component",{"_index":558,"name":{"670":{}},"parent":{"671":{}}}],["app/pages/transactions/transactions.component.transactionscomponent",{"_index":560,"name":{},"parent":{"672":{},"673":{},"674":{},"675":{},"676":{},"677":{},"678":{},"679":{},"680":{},"681":{},"682":{},"683":{},"684":{},"685":{},"686":{},"687":{},"688":{}}}],["app/pages/transactions/transactions.module",{"_index":564,"name":{"689":{}},"parent":{"690":{}}}],["app/pages/transactions/transactions.module.transactionsmodule",{"_index":566,"name":{},"parent":{"691":{}}}],["app/shared/_directives/menu",{"_index":567,"name":{"692":{},"696":{}},"parent":{"693":{},"694":{},"695":{},"697":{},"698":{},"699":{}}}],["app/shared/_pipes/safe.pipe",{"_index":575,"name":{"700":{}},"parent":{"701":{}}}],["app/shared/_pipes/safe.pipe.safepipe",{"_index":577,"name":{},"parent":{"702":{},"703":{}}}],["app/shared/_pipes/token",{"_index":579,"name":{"704":{}},"parent":{"705":{},"706":{},"707":{}}}],["app/shared/error",{"_index":583,"name":{"708":{}},"parent":{"709":{},"710":{},"711":{}}}],["app/shared/footer/footer.component",{"_index":588,"name":{"712":{}},"parent":{"713":{}}}],["app/shared/footer/footer.component.footercomponent",{"_index":590,"name":{},"parent":{"714":{},"715":{}}}],["app/shared/network",{"_index":591,"name":{"716":{}},"parent":{"717":{},"718":{},"719":{},"720":{},"721":{}}}],["app/shared/shared.module",{"_index":598,"name":{"722":{}},"parent":{"723":{}}}],["app/shared/shared.module.sharedmodule",{"_index":600,"name":{},"parent":{"724":{}}}],["app/shared/sidebar/sidebar.component",{"_index":601,"name":{"725":{}},"parent":{"726":{}}}],["app/shared/sidebar/sidebar.component.sidebarcomponent",{"_index":603,"name":{},"parent":{"727":{},"728":{}}}],["app/shared/topbar/topbar.component",{"_index":604,"name":{"729":{}},"parent":{"730":{}}}],["app/shared/topbar/topbar.component.topbarcomponent",{"_index":606,"name":{},"parent":{"731":{},"732":{}}}],["appcomponent",{"_index":373,"name":{"430":{}},"parent":{}}],["appmodule",{"_index":382,"name":{"441":{}},"parent":{}}],["approutingmodule",{"_index":370,"name":{"427":{}},"parent":{}}],["approval",{"_index":139,"name":{"134":{}},"parent":{}}],["approvalstatus",{"_index":496,"name":{"585":{}},"parent":{}}],["approveaction",{"_index":354,"name":{"412":{},"586":{},"853":{}},"parent":{}}],["area",{"_index":109,"name":{"102":{},"143":{}},"parent":{}}],["area_name",{"_index":110,"name":{"103":{}},"parent":{}}],["area_type",{"_index":111,"name":{"104":{}},"parent":{}}],["areaname",{"_index":142,"name":{"138":{},"890":{}},"parent":{}}],["areanames",{"_index":430,"name":{"491":{},"565":{}},"parent":{}}],["areatype",{"_index":145,"name":{"141":{},"891":{}},"parent":{}}],["areatypes",{"_index":431,"name":{"492":{}},"parent":{}}],["arraysum",{"_index":29,"name":{"30":{},"858":{}},"parent":{}}],["assets/js/ethtx/dist",{"_index":612,"name":{"738":{}},"parent":{"906":{}}}],["assets/js/ethtx/dist/hex",{"_index":607,"name":{"733":{}},"parent":{"734":{},"735":{},"736":{},"737":{}}}],["assets/js/ethtx/dist/tx",{"_index":613,"name":{"739":{}},"parent":{"740":{},"764":{},"765":{},"766":{}}}],["assets/js/ethtx/dist/tx.tx",{"_index":614,"name":{},"parent":{"741":{},"742":{},"743":{},"744":{},"745":{},"746":{},"747":{},"748":{},"749":{},"750":{},"751":{},"752":{},"753":{},"754":{},"755":{},"756":{},"757":{},"758":{},"759":{},"760":{},"761":{},"762":{},"763":{}}}],["authcomponent",{"_index":395,"name":{"454":{}},"parent":{}}],["authguard",{"_index":20,"name":{"21":{},"856":{}},"parent":{}}],["authmodule",{"_index":405,"name":{"467":{}},"parent":{}}],["authroutingmodule",{"_index":392,"name":{"451":{}},"parent":{}}],["authservice",{"_index":255,"name":{"303":{},"898":{}},"parent":{}}],["backend",{"_index":65,"name":{"58":{}},"parent":{"59":{},"62":{}}}],["backend.mockbackendinterceptor",{"_index":67,"name":{},"parent":{"60":{},"61":{}}}],["backend.mockbackendprovider",{"_index":70,"name":{},"parent":{"63":{}}}],["backend.mockbackendprovider.__type",{"_index":72,"name":{},"parent":{"64":{},"65":{},"66":{}}}],["balance",{"_index":99,"name":{"91":{},"174":{}},"parent":{}}],["block",{"_index":187,"name":{"192":{}},"parent":{}}],["blockfilter",{"_index":179,"name":{"181":{}},"parent":{}}],["blocksbloom",{"_index":176,"name":{"178":{},"874":{}},"parent":{}}],["blocksync",{"_index":276,"name":{"326":{}},"parent":{}}],["blocksyncservice",{"_index":272,"name":{"322":{},"902":{}},"parent":{}}],["blocktxfilter",{"_index":180,"name":{"182":{}},"parent":{}}],["bloxberg:8996",{"_index":103,"name":{"96":{}},"parent":{}}],["bloxbergchainid",{"_index":641,"name":{"771":{},"786":{},"801":{}},"parent":{}}],["bloxberglink",{"_index":436,"name":{"501":{}},"parent":{}}],["canactivate",{"_index":22,"name":{"23":{},"28":{}},"parent":{}}],["candebug",{"_index":300,"name":{"350":{}},"parent":{}}],["canonicalorder",{"_index":629,"name":{"759":{}},"parent":{}}],["categories",{"_index":429,"name":{"490":{},"564":{}},"parent":{}}],["category",{"_index":113,"name":{"106":{},"135":{},"889":{}},"parent":{}}],["chainid",{"_index":621,"name":{"751":{}},"parent":{}}],["changeaccountinfo",{"_index":350,"name":{"408":{}},"parent":{}}],["ciccacheurl",{"_index":647,"name":{"777":{},"792":{},"807":{}},"parent":{}}],["cicconvert",{"_index":380,"name":{"439":{}},"parent":{}}],["cicmetaurl",{"_index":645,"name":{"775":{},"790":{},"805":{}},"parent":{}}],["cictransfer",{"_index":379,"name":{"438":{}},"parent":{}}],["cicussdurl",{"_index":649,"name":{"779":{},"794":{},"809":{}},"parent":{}}],["clearkeysinkeyring",{"_index":235,"name":{"243":{},"269":{}},"parent":{}}],["clearsignature",{"_index":633,"name":{"763":{}},"parent":{}}],["columnstodisplay",{"_index":538,"name":{"643":{}},"parent":{}}],["comment",{"_index":157,"name":{"157":{}},"parent":{}}],["config.interceptor",{"_index":85,"name":{"76":{}},"parent":{"77":{}}}],["config.interceptor.httpconfiginterceptor",{"_index":87,"name":{},"parent":{"78":{},"79":{}}}],["constructor",{"_index":2,"name":{"2":{},"13":{},"22":{},"27":{},"35":{},"41":{},"47":{},"50":{},"60":{},"74":{},"78":{},"83":{},"146":{},"152":{},"179":{},"186":{},"191":{},"198":{},"208":{},"219":{},"287":{},"304":{},"323":{},"334":{},"341":{},"348":{},"360":{},"368":{},"377":{},"394":{},"428":{},"431":{},"442":{},"446":{},"452":{},"455":{},"468":{},"471":{},"516":{},"536":{},"539":{},"557":{},"560":{},"573":{},"576":{},"592":{},"595":{},"598":{},"602":{},"605":{},"614":{},"617":{},"630":{},"633":{},"638":{},"641":{},"653":{},"656":{},"669":{},"672":{},"691":{},"694":{},"698":{},"702":{},"706":{},"710":{},"714":{},"718":{},"724":{},"727":{},"731":{},"741":{},"817":{},"824":{},"830":{},"832":{},"834":{},"837":{},"841":{},"847":{}},"parent":{}}],["contract",{"_index":4,"name":{"3":{},"14":{}},"parent":{}}],["contractaddress",{"_index":5,"name":{"4":{},"15":{}},"parent":{}}],["conversion",{"_index":199,"name":{"207":{},"878":{}},"parent":{}}],["copy",{"_index":31,"name":{"31":{}},"parent":{"32":{}}}],["copyaddress",{"_index":446,"name":{"513":{},"666":{}},"parent":{}}],["copytoclipboard",{"_index":32,"name":{"32":{},"859":{}},"parent":{}}],["createaccountcomponent",{"_index":486,"name":{"559":{}},"parent":{}}],["createform",{"_index":488,"name":{"561":{}},"parent":{}}],["createformstub",{"_index":489,"name":{"569":{}},"parent":{}}],["csv",{"_index":46,"name":{"42":{},"67":{}},"parent":{"43":{},"68":{}}}],["customerrorstatematcher",{"_index":37,"name":{"34":{},"861":{}},"parent":{}}],["customvalidator",{"_index":41,"name":{"38":{},"860":{}},"parent":{}}],["data",{"_index":123,"name":{"116":{},"120":{},"277":{},"711":{},"747":{}},"parent":{}}],["datasource",{"_index":472,"name":{"540":{},"577":{},"619":{},"642":{}},"parent":{}}],["date",{"_index":523,"name":{"618":{}},"parent":{}}],["date_registered",{"_index":94,"name":{"87":{}},"parent":{}}],["decimals",{"_index":167,"name":{"168":{}},"parent":{}}],["defaultaccount",{"_index":132,"name":{"126":{},"885":{}},"parent":{}}],["defaultpagesize",{"_index":474,"name":{"543":{},"675":{}},"parent":{}}],["destinationtoken",{"_index":201,"name":{"209":{}},"parent":{}}],["details.component",{"_index":409,"name":{"469":{},"631":{},"654":{}},"parent":{"470":{},"632":{},"655":{}}}],["details.component.accountdetailscomponent",{"_index":411,"name":{},"parent":{"471":{},"472":{},"473":{},"474":{},"475":{},"476":{},"477":{},"478":{},"479":{},"480":{},"481":{},"482":{},"483":{},"484":{},"485":{},"486":{},"487":{},"488":{},"489":{},"490":{},"491":{},"492":{},"493":{},"494":{},"495":{},"496":{},"497":{},"498":{},"499":{},"500":{},"501":{},"502":{},"503":{},"504":{},"505":{},"506":{},"507":{},"508":{},"509":{},"510":{},"511":{},"512":{},"513":{}}}],["details.component.tokendetailscomponent",{"_index":531,"name":{},"parent":{"633":{},"634":{},"635":{}}}],["details.component.transactiondetailscomponent",{"_index":547,"name":{},"parent":{"656":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{},"665":{},"666":{}}}],["details/account",{"_index":408,"name":{"469":{}},"parent":{"470":{},"471":{},"472":{},"473":{},"474":{},"475":{},"476":{},"477":{},"478":{},"479":{},"480":{},"481":{},"482":{},"483":{},"484":{},"485":{},"486":{},"487":{},"488":{},"489":{},"490":{},"491":{},"492":{},"493":{},"494":{},"495":{},"496":{},"497":{},"498":{},"499":{},"500":{},"501":{},"502":{},"503":{},"504":{},"505":{},"506":{},"507":{},"508":{},"509":{},"510":{},"511":{},"512":{},"513":{}}}],["details/token",{"_index":529,"name":{"631":{}},"parent":{"632":{},"633":{},"634":{},"635":{}}}],["details/transaction",{"_index":545,"name":{"654":{}},"parent":{"655":{},"656":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{},"665":{},"666":{}}}],["dgst",{"_index":251,"name":{"290":{}},"parent":{}}],["dialog",{"_index":287,"name":{"336":{}},"parent":{}}],["dialog.component",{"_index":585,"name":{"708":{}},"parent":{"709":{}}}],["dialog.component.errordialogcomponent",{"_index":587,"name":{},"parent":{"710":{},"711":{}}}],["dialog.service",{"_index":283,"name":{"332":{}},"parent":{"333":{}}}],["dialog.service.errordialogservice",{"_index":285,"name":{},"parent":{"334":{},"335":{},"336":{},"337":{}}}],["dialog/error",{"_index":584,"name":{"708":{}},"parent":{"709":{},"710":{},"711":{}}}],["digest",{"_index":124,"name":{"117":{},"273":{},"278":{}},"parent":{}}],["directive",{"_index":672,"name":{"822":{}},"parent":{"823":{},"824":{},"825":{},"826":{},"827":{}}}],["disapproveaction",{"_index":497,"name":{"587":{}},"parent":{}}],["displayedcolumns",{"_index":473,"name":{"542":{},"578":{},"620":{}},"parent":{}}],["dofilter",{"_index":478,"name":{"550":{},"584":{},"625":{},"648":{},"685":{}},"parent":{}}],["dotransactionfilter",{"_index":437,"name":{"503":{}},"parent":{}}],["douserfilter",{"_index":438,"name":{"504":{}},"parent":{}}],["downloadcsv",{"_index":445,"name":{"512":{},"554":{},"589":{},"626":{},"650":{},"688":{}},"parent":{}}],["email",{"_index":115,"name":{"109":{},"158":{}},"parent":{}}],["engine",{"_index":125,"name":{"118":{},"153":{},"275":{},"288":{}},"parent":{}}],["entry",{"_index":17,"name":{"18":{}},"parent":{}}],["env",{"_index":299,"name":{"349":{}},"parent":{}}],["environment",{"_index":637,"name":{"768":{},"783":{},"798":{}},"parent":{}}],["environments/environment",{"_index":655,"name":{"797":{}},"parent":{"798":{}}}],["environments/environment.dev",{"_index":636,"name":{"767":{}},"parent":{"768":{}}}],["environments/environment.dev.environment",{"_index":638,"name":{},"parent":{"769":{}}}],["environments/environment.dev.environment.__type",{"_index":640,"name":{},"parent":{"770":{},"771":{},"772":{},"773":{},"774":{},"775":{},"776":{},"777":{},"778":{},"779":{},"780":{},"781":{}}}],["environments/environment.environment",{"_index":656,"name":{},"parent":{"799":{}}}],["environments/environment.environment.__type",{"_index":657,"name":{},"parent":{"800":{},"801":{},"802":{},"803":{},"804":{},"805":{},"806":{},"807":{},"808":{},"809":{},"810":{},"811":{}}}],["environments/environment.prod",{"_index":652,"name":{"782":{}},"parent":{"783":{}}}],["environments/environment.prod.environment",{"_index":653,"name":{},"parent":{"784":{}}}],["environments/environment.prod.environment.__type",{"_index":654,"name":{},"parent":{"785":{},"786":{},"787":{},"788":{},"789":{},"790":{},"791":{},"792":{},"793":{},"794":{},"795":{},"796":{}}}],["error",{"_index":34,"name":{"33":{},"44":{}},"parent":{"34":{},"35":{},"36":{},"45":{},"46":{},"47":{},"48":{},"49":{},"50":{},"51":{},"52":{},"53":{},"54":{}}}],["errordialogcomponent",{"_index":586,"name":{"709":{}},"parent":{}}],["errordialogservice",{"_index":284,"name":{"333":{},"905":{}},"parent":{}}],["errorinterceptor",{"_index":82,"name":{"73":{},"871":{}},"parent":{}}],["evm",{"_index":101,"name":{"94":{}},"parent":{}}],["expandcollapse",{"_index":498,"name":{"588":{}},"parent":{}}],["exportcsv",{"_index":47,"name":{"43":{},"862":{}},"parent":{}}],["fetcher",{"_index":281,"name":{"331":{}},"parent":{}}],["filegetter",{"_index":312,"name":{"362":{}},"parent":{}}],["filteraccounts",{"_index":443,"name":{"509":{},"552":{}},"parent":{}}],["filterrounds",{"_index":182,"name":{"184":{}},"parent":{}}],["filtertransactions",{"_index":444,"name":{"510":{},"686":{}},"parent":{}}],["fingerprint",{"_index":246,"name":{"282":{},"298":{}},"parent":{}}],["fn",{"_index":116,"name":{"110":{}},"parent":{}}],["footercomponent",{"_index":589,"name":{"713":{}},"parent":{}}],["footerstubcomponent",{"_index":684,"name":{"833":{},"911":{}},"parent":{}}],["from",{"_index":194,"name":{"199":{}},"parent":{}}],["fromhex",{"_index":608,"name":{"734":{}},"parent":{}}],["fromvalue",{"_index":202,"name":{"210":{}},"parent":{}}],["gaslimit",{"_index":617,"name":{"744":{}},"parent":{}}],["gasprice",{"_index":616,"name":{"743":{}},"parent":{}}],["gender",{"_index":96,"name":{"88":{}},"parent":{}}],["genders",{"_index":435,"name":{"498":{},"567":{}},"parent":{}}],["getaccountbyaddress",{"_index":359,"name":{"417":{}},"parent":{}}],["getaccountbyphone",{"_index":360,"name":{"418":{}},"parent":{}}],["getaccountdetailsfrommeta",{"_index":356,"name":{"414":{}},"parent":{}}],["getaccountinfo",{"_index":335,"name":{"390":{}},"parent":{}}],["getaccountstatus",{"_index":348,"name":{"406":{}},"parent":{}}],["getaccounttypes",{"_index":365,"name":{"423":{}},"parent":{}}],["getactionbyid",{"_index":353,"name":{"411":{},"852":{}},"parent":{}}],["getactions",{"_index":352,"name":{"410":{}},"parent":{}}],["getaddresstransactions",{"_index":330,"name":{"385":{}},"parent":{}}],["getalltransactions",{"_index":329,"name":{"384":{},"844":{}},"parent":{}}],["getareanamebylocation",{"_index":294,"name":{"343":{}},"parent":{}}],["getareanames",{"_index":293,"name":{"342":{}},"parent":{}}],["getareatypebyarea",{"_index":296,"name":{"345":{}},"parent":{}}],["getareatypes",{"_index":295,"name":{"344":{}},"parent":{}}],["getbysymbol",{"_index":690,"name":{"838":{}},"parent":{}}],["getcategories",{"_index":363,"name":{"421":{}},"parent":{}}],["getcategorybyproduct",{"_index":364,"name":{"422":{}},"parent":{}}],["getchallenge",{"_index":263,"name":{"312":{}},"parent":{}}],["getencryptkeys",{"_index":219,"name":{"227":{},"253":{}},"parent":{}}],["getfingerprint",{"_index":224,"name":{"232":{},"258":{}},"parent":{}}],["getgenders",{"_index":367,"name":{"425":{}},"parent":{}}],["getkeyid",{"_index":225,"name":{"233":{},"259":{}},"parent":{}}],["getkeysforid",{"_index":227,"name":{"235":{},"261":{}},"parent":{}}],["getlockedaccounts",{"_index":349,"name":{"407":{}},"parent":{}}],["getprivatekey",{"_index":221,"name":{"229":{},"255":{},"320":{}},"parent":{}}],["getprivatekeyforid",{"_index":229,"name":{"237":{},"263":{}},"parent":{}}],["getprivatekeyid",{"_index":226,"name":{"234":{},"260":{}},"parent":{}}],["getprivatekeys",{"_index":220,"name":{"228":{},"254":{}},"parent":{}}],["getpublickeyforid",{"_index":228,"name":{"236":{},"262":{}},"parent":{}}],["getpublickeyforsubkeyid",{"_index":230,"name":{"238":{},"264":{}},"parent":{}}],["getpublickeys",{"_index":216,"name":{"224":{},"250":{},"319":{}},"parent":{}}],["getpublickeysforaddress",{"_index":231,"name":{"239":{},"265":{}},"parent":{}}],["getregistry",{"_index":313,"name":{"364":{}},"parent":{}}],["getter",{"_index":61,"name":{"55":{}},"parent":{"56":{}}}],["gettokenbalance",{"_index":321,"name":{"374":{}},"parent":{}}],["gettokenbysymbol",{"_index":320,"name":{"373":{}},"parent":{}}],["gettokens",{"_index":319,"name":{"372":{}},"parent":{}}],["gettransactiontypes",{"_index":366,"name":{"424":{}},"parent":{}}],["gettrustedactivekeys",{"_index":218,"name":{"226":{},"252":{}},"parent":{}}],["gettrustedkeys",{"_index":217,"name":{"225":{},"251":{}},"parent":{}}],["gettrustedusers",{"_index":269,"name":{"318":{}},"parent":{}}],["getuser",{"_index":699,"name":{"851":{}},"parent":{}}],["getuserbyid",{"_index":698,"name":{"850":{}},"parent":{}}],["getweb3",{"_index":314,"name":{"365":{}},"parent":{}}],["getwithtoken",{"_index":261,"name":{"310":{}},"parent":{}}],["globalerrorhandler",{"_index":54,"name":{"49":{},"864":{}},"parent":{}}],["handleerror",{"_index":57,"name":{"52":{}},"parent":{}}],["handlenetworkchange",{"_index":597,"name":{"721":{}},"parent":{}}],["handler",{"_index":49,"name":{"44":{}},"parent":{"45":{},"49":{}}}],["handler.globalerrorhandler",{"_index":55,"name":{},"parent":{"50":{},"51":{},"52":{},"53":{},"54":{}}}],["handler.httperror",{"_index":52,"name":{},"parent":{"46":{},"47":{},"48":{}}}],["haveaccount",{"_index":8,"name":{"7":{}},"parent":{}}],["headers",{"_index":340,"name":{"395":{}},"parent":{}}],["hextovalue",{"_index":635,"name":{"765":{}},"parent":{}}],["httpconfiginterceptor",{"_index":86,"name":{"77":{},"872":{}},"parent":{}}],["httperror",{"_index":50,"name":{"45":{},"863":{}},"parent":{}}],["httpgetter",{"_index":62,"name":{"56":{},"865":{}},"parent":{}}],["iconid",{"_index":389,"name":{"448":{}},"parent":{}}],["id",{"_index":128,"name":{"121":{},"124":{},"130":{},"447":{}},"parent":{}}],["identities",{"_index":100,"name":{"92":{}},"parent":{}}],["importkeypair",{"_index":213,"name":{"221":{},"247":{}},"parent":{}}],["importprivatekey",{"_index":215,"name":{"223":{},"249":{}},"parent":{}}],["importpublickey",{"_index":214,"name":{"222":{},"248":{}},"parent":{}}],["init",{"_index":259,"name":{"308":{}},"parent":{}}],["intercept",{"_index":68,"name":{"61":{},"75":{},"79":{},"84":{}},"parent":{}}],["isdialogopen",{"_index":286,"name":{"335":{}},"parent":{}}],["isencryptedprivatekey",{"_index":223,"name":{"231":{},"257":{}},"parent":{}}],["iserrorstate",{"_index":39,"name":{"36":{}},"parent":{}}],["isvalidkey",{"_index":222,"name":{"230":{},"256":{}},"parent":{}}],["iswarning",{"_index":58,"name":{"53":{}},"parent":{}}],["key",{"_index":208,"name":{"217":{}},"parent":{"218":{},"219":{},"220":{},"221":{},"222":{},"223":{},"224":{},"225":{},"226":{},"227":{},"228":{},"229":{},"230":{},"231":{},"232":{},"233":{},"234":{},"235":{},"236":{},"237":{},"238":{},"239":{},"240":{},"241":{},"242":{},"243":{},"244":{},"245":{},"246":{},"247":{},"248":{},"249":{},"250":{},"251":{},"252":{},"253":{},"254":{},"255":{},"256":{},"257":{},"258":{},"259":{},"260":{},"261":{},"262":{},"263":{},"264":{},"265":{},"266":{},"267":{},"268":{},"269":{},"270":{}}}],["keyform",{"_index":397,"name":{"456":{}},"parent":{}}],["keyformstub",{"_index":400,"name":{"461":{}},"parent":{}}],["keystore",{"_index":252,"name":{"292":{},"396":{}},"parent":{}}],["last",{"_index":9,"name":{"8":{}},"parent":{}}],["latitude",{"_index":106,"name":{"98":{}},"parent":{}}],["link",{"_index":671,"name":{"822":{}},"parent":{"823":{},"824":{},"825":{},"826":{},"827":{}}}],["linkparams",{"_index":675,"name":{"825":{}},"parent":{}}],["loadaccounts",{"_index":358,"name":{"416":{}},"parent":{}}],["loadevent",{"_index":318,"name":{"371":{}},"parent":{}}],["loading",{"_index":399,"name":{"458":{}},"parent":{}}],["loadkeyring",{"_index":212,"name":{"220":{},"246":{}},"parent":{}}],["location",{"_index":108,"name":{"100":{}},"parent":{}}],["locations",{"_index":144,"name":{"140":{}},"parent":{}}],["locationservice",{"_index":291,"name":{"340":{},"903":{}},"parent":{}}],["logerror",{"_index":59,"name":{"54":{}},"parent":{}}],["logginginterceptor",{"_index":90,"name":{"82":{},"873":{}},"parent":{}}],["loggingservice",{"_index":253,"name":{"297":{},"347":{},"904":{}},"parent":{}}],["loggingurl",{"_index":644,"name":{"774":{},"789":{},"804":{}},"parent":{}}],["login",{"_index":264,"name":{"313":{},"463":{}},"parent":{}}],["loginresponse",{"_index":265,"name":{"314":{}},"parent":{}}],["loginview",{"_index":266,"name":{"315":{}},"parent":{}}],["loglevel",{"_index":642,"name":{"772":{},"787":{},"802":{}},"parent":{}}],["logout",{"_index":268,"name":{"317":{},"627":{}},"parent":{}}],["longitude",{"_index":107,"name":{"99":{}},"parent":{}}],["low",{"_index":178,"name":{"180":{}},"parent":{}}],["m",{"_index":131,"name":{"125":{}},"parent":{}}],["main",{"_index":658,"name":{"812":{}},"parent":{}}],["matcher",{"_index":36,"name":{"33":{},"459":{},"499":{},"526":{},"562":{},"608":{}},"parent":{"34":{}}}],["matcher.customerrorstatematcher",{"_index":38,"name":{},"parent":{"35":{},"36":{}}}],["mediaquery",{"_index":376,"name":{"435":{}},"parent":{}}],["menuselectiondirective",{"_index":569,"name":{"693":{}},"parent":{}}],["menutoggledirective",{"_index":572,"name":{"697":{}},"parent":{}}],["message",{"_index":631,"name":{"761":{}},"parent":{}}],["meta",{"_index":126,"name":{"119":{},"883":{}},"parent":{}}],["metaresponse",{"_index":129,"name":{"123":{},"884":{}},"parent":{}}],["mockbackendinterceptor",{"_index":66,"name":{"59":{},"866":{}},"parent":{}}],["mockbackendprovider",{"_index":69,"name":{"62":{},"867":{}},"parent":{}}],["module",{"_index":679,"name":{"828":{}},"parent":{"829":{},"830":{},"831":{},"832":{},"833":{},"834":{}}}],["multi",{"_index":74,"name":{"66":{}},"parent":{}}],["mutablekeystore",{"_index":237,"name":{"245":{},"307":{},"893":{}},"parent":{}}],["mutablepgpkeystore",{"_index":210,"name":{"218":{},"892":{}},"parent":{}}],["n",{"_index":117,"name":{"111":{}},"parent":{}}],["name",{"_index":140,"name":{"136":{},"139":{},"142":{},"159":{},"164":{},"188":{}},"parent":{}}],["namesearchform",{"_index":451,"name":{"517":{}},"parent":{}}],["namesearchformstub",{"_index":460,"name":{"528":{}},"parent":{}}],["namesearchloading",{"_index":453,"name":{"519":{}},"parent":{}}],["namesearchsubmitted",{"_index":452,"name":{"518":{}},"parent":{}}],["navigatedto",{"_index":676,"name":{"826":{}},"parent":{}}],["networkstatuscomponent",{"_index":594,"name":{"717":{}},"parent":{}}],["newconversionevent",{"_index":279,"name":{"329":{}},"parent":{}}],["newtransferevent",{"_index":278,"name":{"328":{}},"parent":{}}],["ngafterviewinit",{"_index":563,"name":{"687":{}},"parent":{}}],["ngoninit",{"_index":377,"name":{"436":{},"460":{},"502":{},"527":{},"549":{},"568":{},"583":{},"609":{},"624":{},"635":{},"647":{},"661":{},"683":{},"715":{},"720":{},"728":{},"732":{}},"parent":{}}],["nointernetconnection",{"_index":596,"name":{"719":{}},"parent":{}}],["nonce",{"_index":615,"name":{"742":{}},"parent":{}}],["oldchain:1",{"_index":105,"name":{"97":{}},"parent":{}}],["onaddresssearch",{"_index":465,"name":{"533":{}},"parent":{}}],["onclick",{"_index":677,"name":{"827":{}},"parent":{}}],["onmenuselect",{"_index":571,"name":{"695":{}},"parent":{}}],["onmenutoggle",{"_index":574,"name":{"699":{}},"parent":{}}],["onnamesearch",{"_index":463,"name":{"531":{}},"parent":{}}],["onphonesearch",{"_index":464,"name":{"532":{}},"parent":{}}],["onresize",{"_index":378,"name":{"437":{}},"parent":{}}],["onsign",{"_index":243,"name":{"280":{},"293":{}},"parent":{}}],["onsubmit",{"_index":401,"name":{"462":{},"570":{},"611":{}},"parent":{}}],["onverify",{"_index":245,"name":{"281":{},"295":{}},"parent":{}}],["opendialog",{"_index":288,"name":{"337":{}},"parent":{}}],["organizationcomponent",{"_index":513,"name":{"604":{}},"parent":{}}],["organizationform",{"_index":515,"name":{"606":{}},"parent":{}}],["organizationformstub",{"_index":516,"name":{"610":{}},"parent":{}}],["owner",{"_index":174,"name":{"176":{}},"parent":{}}],["pagescomponent",{"_index":506,"name":{"597":{}},"parent":{}}],["pagesizeoptions",{"_index":475,"name":{"544":{},"676":{}},"parent":{}}],["pagesmodule",{"_index":510,"name":{"601":{}},"parent":{}}],["pagesroutingmodule",{"_index":503,"name":{"594":{}},"parent":{}}],["paginator",{"_index":476,"name":{"547":{},"581":{},"622":{},"644":{},"681":{}},"parent":{}}],["parammap",{"_index":667,"name":{"819":{}},"parent":{}}],["passwordmatchvalidator",{"_index":42,"name":{"39":{}},"parent":{}}],["passwordtoggledirective",{"_index":387,"name":{"445":{}},"parent":{}}],["patternvalidator",{"_index":44,"name":{"40":{}},"parent":{}}],["personvalidation",{"_index":79,"name":{"70":{},"869":{}},"parent":{}}],["pgpsigner",{"_index":249,"name":{"286":{},"897":{}},"parent":{}}],["phonesearchform",{"_index":454,"name":{"520":{}},"parent":{}}],["phonesearchformstub",{"_index":461,"name":{"529":{}},"parent":{}}],["phonesearchloading",{"_index":456,"name":{"522":{}},"parent":{}}],["phonesearchsubmitted",{"_index":455,"name":{"521":{}},"parent":{}}],["polyfills",{"_index":659,"name":{"813":{}},"parent":{}}],["prepare",{"_index":247,"name":{"283":{},"299":{}},"parent":{}}],["production",{"_index":639,"name":{"770":{},"785":{},"800":{}},"parent":{}}],["products",{"_index":112,"name":{"105":{},"137":{}},"parent":{}}],["provide",{"_index":71,"name":{"64":{}},"parent":{}}],["provider",{"_index":154,"name":{"154":{}},"parent":{}}],["publickeysurl",{"_index":646,"name":{"776":{},"791":{},"806":{}},"parent":{}}],["r",{"_index":619,"name":{"749":{}},"parent":{}}],["ratio.pipe",{"_index":580,"name":{"704":{}},"parent":{"705":{}}}],["ratio.pipe.tokenratiopipe",{"_index":582,"name":{},"parent":{"706":{},"707":{}}}],["readcsv",{"_index":76,"name":{"68":{},"868":{}},"parent":{}}],["readystate",{"_index":275,"name":{"325":{},"434":{}},"parent":{}}],["readystateprocessor",{"_index":277,"name":{"327":{}},"parent":{}}],["readystatetarget",{"_index":274,"name":{"324":{},"433":{}},"parent":{}}],["recipient",{"_index":197,"name":{"202":{}},"parent":{}}],["recipientbloxberglink",{"_index":549,"name":{"659":{}},"parent":{}}],["refreshpaginator",{"_index":479,"name":{"553":{}},"parent":{}}],["registry",{"_index":13,"name":{"11":{},"149":{},"363":{},"369":{},"383":{},"398":{}},"parent":{"12":{}}}],["registry.tokenregistry",{"_index":15,"name":{},"parent":{"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{}}}],["registryaddress",{"_index":650,"name":{"780":{},"795":{},"810":{}},"parent":{}}],["registryservice",{"_index":309,"name":{"359":{}},"parent":{}}],["removekeysforid",{"_index":232,"name":{"240":{},"266":{}},"parent":{}}],["removepublickey",{"_index":234,"name":{"242":{},"268":{}},"parent":{}}],["removepublickeyforid",{"_index":233,"name":{"241":{},"267":{}},"parent":{}}],["reserveratio",{"_index":173,"name":{"175":{}},"parent":{}}],["reserves",{"_index":168,"name":{"169":{}},"parent":{}}],["resetaccountslist",{"_index":361,"name":{"419":{}},"parent":{}}],["resetpin",{"_index":347,"name":{"405":{},"511":{}},"parent":{}}],["resettransactionslist",{"_index":334,"name":{"389":{}},"parent":{}}],["reversetransaction",{"_index":554,"name":{"665":{}},"parent":{}}],["revokeaction",{"_index":355,"name":{"413":{}},"parent":{}}],["role",{"_index":138,"name":{"132":{}},"parent":{}}],["roleguard",{"_index":25,"name":{"26":{},"857":{}},"parent":{}}],["route",{"_index":662,"name":{"815":{}},"parent":{"816":{},"817":{},"818":{},"819":{},"820":{}}}],["routerlinkdirectivestub",{"_index":673,"name":{"823":{},"908":{}},"parent":{}}],["routing.module",{"_index":369,"name":{"426":{},"450":{},"534":{},"571":{},"593":{},"612":{},"636":{},"667":{}},"parent":{"427":{},"451":{},"535":{},"572":{},"594":{},"613":{},"637":{},"668":{}}}],["routing.module.accountsroutingmodule",{"_index":468,"name":{},"parent":{"536":{}}}],["routing.module.adminroutingmodule",{"_index":492,"name":{},"parent":{"573":{}}}],["routing.module.approutingmodule",{"_index":371,"name":{},"parent":{"428":{}}}],["routing.module.authroutingmodule",{"_index":393,"name":{},"parent":{"452":{}}}],["routing.module.pagesroutingmodule",{"_index":504,"name":{},"parent":{"595":{}}}],["routing.module.settingsroutingmodule",{"_index":519,"name":{},"parent":{"614":{}}}],["routing.module.tokensroutingmodule",{"_index":534,"name":{},"parent":{"638":{}}}],["routing.module.transactionsroutingmodule",{"_index":557,"name":{},"parent":{"669":{}}}],["s",{"_index":620,"name":{"750":{}},"parent":{}}],["safepipe",{"_index":576,"name":{"701":{}},"parent":{}}],["saveinfo",{"_index":442,"name":{"508":{}},"parent":{}}],["scan",{"_index":280,"name":{"330":{}},"parent":{}}],["scanfilter",{"_index":151,"name":{"148":{}},"parent":{}}],["search.component",{"_index":448,"name":{"514":{}},"parent":{"515":{}}}],["search.component.accountsearchcomponent",{"_index":450,"name":{},"parent":{"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{},"532":{},"533":{}}}],["search/account",{"_index":447,"name":{"514":{}},"parent":{"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{},"532":{},"533":{}}}],["searchaccountbyname",{"_index":362,"name":{"420":{}},"parent":{}}],["selection.directive",{"_index":568,"name":{"692":{}},"parent":{"693":{}}}],["selection.directive.menuselectiondirective",{"_index":570,"name":{},"parent":{"694":{},"695":{}}}],["senddebuglevelmessage",{"_index":302,"name":{"352":{}},"parent":{}}],["sender",{"_index":195,"name":{"200":{}},"parent":{}}],["senderbloxberglink",{"_index":548,"name":{"658":{}},"parent":{}}],["senderrorlevelmessage",{"_index":306,"name":{"356":{}},"parent":{}}],["sendfatallevelmessage",{"_index":307,"name":{"357":{}},"parent":{}}],["sendinfolevelmessage",{"_index":303,"name":{"353":{}},"parent":{}}],["sendloglevelmessage",{"_index":304,"name":{"354":{}},"parent":{}}],["sendresponse",{"_index":262,"name":{"311":{}},"parent":{}}],["sendtracelevelmessage",{"_index":301,"name":{"351":{}},"parent":{}}],["sendwarnlevelmessage",{"_index":305,"name":{"355":{}},"parent":{}}],["sentencesforwarninglogging",{"_index":56,"name":{"51":{}},"parent":{}}],["serializebytes",{"_index":628,"name":{"758":{}},"parent":{}}],["serializenumber",{"_index":626,"name":{"756":{}},"parent":{}}],["serializerlp",{"_index":630,"name":{"760":{}},"parent":{}}],["serverloglevel",{"_index":643,"name":{"773":{},"788":{},"803":{}},"parent":{}}],["service",{"_index":687,"name":{"835":{},"839":{},"845":{}},"parent":{"836":{},"837":{},"838":{},"840":{},"841":{},"842":{},"843":{},"844":{},"846":{},"847":{},"848":{},"849":{},"850":{},"851":{},"852":{},"853":{}}}],["sessionlogincount",{"_index":258,"name":{"306":{}},"parent":{}}],["sessiontoken",{"_index":257,"name":{"305":{}},"parent":{}}],["setconversion",{"_index":332,"name":{"387":{},"843":{}},"parent":{}}],["setkey",{"_index":267,"name":{"316":{}},"parent":{}}],["setparammap",{"_index":668,"name":{"820":{}},"parent":{}}],["setsignature",{"_index":632,"name":{"762":{}},"parent":{}}],["setstate",{"_index":260,"name":{"309":{}},"parent":{}}],["settings",{"_index":148,"name":{"145":{},"879":{}},"parent":{}}],["settingscomponent",{"_index":521,"name":{"616":{}},"parent":{}}],["settingsmodule",{"_index":526,"name":{"629":{}},"parent":{}}],["settingsroutingmodule",{"_index":518,"name":{"613":{}},"parent":{}}],["settransaction",{"_index":331,"name":{"386":{},"842":{}},"parent":{}}],["sharedmodule",{"_index":599,"name":{"723":{}},"parent":{}}],["sidebarcomponent",{"_index":602,"name":{"726":{}},"parent":{}}],["sidebarstubcomponent",{"_index":680,"name":{"829":{},"909":{}},"parent":{}}],["sign",{"_index":236,"name":{"244":{},"270":{},"285":{},"301":{}},"parent":{}}],["signable",{"_index":240,"name":{"272":{},"894":{}},"parent":{}}],["signature",{"_index":120,"name":{"114":{},"122":{},"274":{},"291":{},"882":{},"895":{}},"parent":{}}],["signer",{"_index":239,"name":{"271":{},"279":{},"397":{},"896":{}},"parent":{"272":{},"274":{},"279":{},"286":{}}}],["signer.pgpsigner",{"_index":250,"name":{},"parent":{"287":{},"288":{},"289":{},"290":{},"291":{},"292":{},"293":{},"294":{},"295":{},"296":{},"297":{},"298":{},"299":{},"300":{},"301":{}}}],["signer.signable",{"_index":241,"name":{},"parent":{"273":{}}}],["signer.signature",{"_index":242,"name":{},"parent":{"275":{},"276":{},"277":{},"278":{}}}],["signer.signer",{"_index":244,"name":{},"parent":{"280":{},"281":{},"282":{},"283":{},"284":{},"285":{}}}],["signeraddress",{"_index":6,"name":{"5":{},"16":{}},"parent":{}}],["sort",{"_index":477,"name":{"548":{},"582":{},"623":{},"645":{},"682":{}},"parent":{}}],["sourcetoken",{"_index":203,"name":{"211":{}},"parent":{}}],["staff",{"_index":156,"name":{"156":{},"886":{}},"parent":{}}],["state",{"_index":35,"name":{"33":{}},"parent":{"34":{},"35":{},"36":{}}}],["status",{"_index":53,"name":{"48":{}},"parent":{}}],["status.component",{"_index":593,"name":{"716":{}},"parent":{"717":{}}}],["status.component.networkstatuscomponent",{"_index":595,"name":{},"parent":{"718":{},"719":{},"720":{},"721":{}}}],["status/network",{"_index":592,"name":{"716":{}},"parent":{"717":{},"718":{},"719":{},"720":{},"721":{}}}],["store",{"_index":209,"name":{"217":{}},"parent":{"218":{},"245":{}}}],["store.mutablekeystore",{"_index":238,"name":{},"parent":{"246":{},"247":{},"248":{},"249":{},"250":{},"251":{},"252":{},"253":{},"254":{},"255":{},"256":{},"257":{},"258":{},"259":{},"260":{},"261":{},"262":{},"263":{},"264":{},"265":{},"266":{},"267":{},"268":{},"269":{},"270":{}}}],["store.mutablepgpkeystore",{"_index":211,"name":{},"parent":{"219":{},"220":{},"221":{},"222":{},"223":{},"224":{},"225":{},"226":{},"227":{},"228":{},"229":{},"230":{},"231":{},"232":{},"233":{},"234":{},"235":{},"236":{},"237":{},"238":{},"239":{},"240":{},"241":{},"242":{},"243":{},"244":{}}}],["stringtovalue",{"_index":634,"name":{"764":{}},"parent":{}}],["strip0x",{"_index":610,"name":{"736":{}},"parent":{}}],["stub",{"_index":663,"name":{"815":{},"822":{},"828":{},"835":{},"839":{},"845":{}},"parent":{"816":{},"823":{},"829":{},"831":{},"833":{},"836":{},"840":{},"846":{}}}],["stub.activatedroutestub",{"_index":665,"name":{},"parent":{"817":{},"818":{},"819":{},"820":{}}}],["stub.footerstubcomponent",{"_index":685,"name":{},"parent":{"834":{}}}],["stub.routerlinkdirectivestub",{"_index":674,"name":{},"parent":{"824":{},"825":{},"826":{},"827":{}}}],["stub.sidebarstubcomponent",{"_index":681,"name":{},"parent":{"830":{}}}],["stub.tokenservicestub",{"_index":689,"name":{},"parent":{"837":{},"838":{}}}],["stub.topbarstubcomponent",{"_index":683,"name":{},"parent":{"832":{}}}],["stub.transactionservicestub",{"_index":693,"name":{},"parent":{"841":{},"842":{},"843":{},"844":{}}}],["stub.userservicestub",{"_index":696,"name":{},"parent":{"847":{},"848":{},"849":{},"850":{},"851":{},"852":{},"853":{}}}],["subject",{"_index":666,"name":{"818":{}},"parent":{}}],["submitted",{"_index":398,"name":{"457":{},"500":{},"563":{},"607":{}},"parent":{}}],["success",{"_index":188,"name":{"193":{}},"parent":{}}],["sum",{"_index":28,"name":{"29":{}},"parent":{"30":{}}}],["supply",{"_index":166,"name":{"167":{}},"parent":{}}],["switchwindows",{"_index":402,"name":{"464":{}},"parent":{}}],["symbol",{"_index":164,"name":{"165":{},"189":{}},"parent":{}}],["sync.service",{"_index":271,"name":{"321":{}},"parent":{"322":{}}}],["sync.service.blocksyncservice",{"_index":273,"name":{},"parent":{"323":{},"324":{},"325":{},"326":{},"327":{},"328":{},"329":{},"330":{},"331":{}}}],["tag",{"_index":159,"name":{"160":{}},"parent":{}}],["tel",{"_index":118,"name":{"112":{}},"parent":{}}],["test",{"_index":660,"name":{"814":{}},"parent":{}}],["testing",{"_index":669,"name":{"821":{}},"parent":{"907":{},"908":{},"909":{},"910":{},"911":{},"912":{},"913":{},"914":{}}}],["testing/activated",{"_index":661,"name":{"815":{}},"parent":{"816":{},"817":{},"818":{},"819":{},"820":{}}}],["testing/router",{"_index":670,"name":{"822":{}},"parent":{"823":{},"824":{},"825":{},"826":{},"827":{}}}],["testing/shared",{"_index":678,"name":{"828":{}},"parent":{"829":{},"830":{},"831":{},"832":{},"833":{},"834":{}}}],["testing/token",{"_index":686,"name":{"835":{}},"parent":{"836":{},"837":{},"838":{}}}],["testing/transaction",{"_index":691,"name":{"839":{}},"parent":{"840":{},"841":{},"842":{},"843":{},"844":{}}}],["testing/user",{"_index":694,"name":{"845":{}},"parent":{"846":{},"847":{},"848":{},"849":{},"850":{},"851":{},"852":{},"853":{}}}],["timestamp",{"_index":189,"name":{"194":{}},"parent":{}}],["title",{"_index":375,"name":{"432":{}},"parent":{}}],["to",{"_index":196,"name":{"201":{},"745":{}},"parent":{}}],["toggle.directive",{"_index":386,"name":{"444":{},"696":{}},"parent":{"445":{},"697":{}}}],["toggle.directive.menutoggledirective",{"_index":573,"name":{},"parent":{"698":{},"699":{}}}],["toggle.directive.passwordtoggledirective",{"_index":388,"name":{},"parent":{"446":{},"447":{},"448":{},"449":{}}}],["toggledisplay",{"_index":403,"name":{"465":{}},"parent":{}}],["togglepasswordvisibility",{"_index":390,"name":{"449":{}},"parent":{}}],["tohex",{"_index":609,"name":{"735":{}},"parent":{}}],["token",{"_index":162,"name":{"163":{},"203":{},"634":{},"887":{}},"parent":{}}],["tokendetailscomponent",{"_index":530,"name":{"632":{}},"parent":{}}],["tokenratiopipe",{"_index":581,"name":{"705":{}},"parent":{}}],["tokenregistry",{"_index":14,"name":{"12":{},"370":{},"855":{}},"parent":{}}],["tokens",{"_index":539,"name":{"646":{}},"parent":{}}],["tokenscomponent",{"_index":536,"name":{"640":{}},"parent":{}}],["tokenservice",{"_index":316,"name":{"367":{},"901":{}},"parent":{}}],["tokenservicestub",{"_index":688,"name":{"836":{},"913":{}},"parent":{}}],["tokensmodule",{"_index":542,"name":{"652":{}},"parent":{}}],["tokensroutingmodule",{"_index":533,"name":{"637":{}},"parent":{}}],["topbarcomponent",{"_index":605,"name":{"730":{}},"parent":{}}],["topbarstubcomponent",{"_index":682,"name":{"831":{},"910":{}},"parent":{}}],["totalaccounts",{"_index":10,"name":{"9":{}},"parent":{}}],["totaltokens",{"_index":18,"name":{"19":{}},"parent":{}}],["tovalue",{"_index":204,"name":{"212":{},"766":{}},"parent":{}}],["trader",{"_index":205,"name":{"213":{}},"parent":{}}],["traderbloxberglink",{"_index":550,"name":{"660":{}},"parent":{}}],["transaction",{"_index":192,"name":{"197":{},"493":{},"657":{},"678":{},"877":{}},"parent":{}}],["transactiondatasource",{"_index":561,"name":{"673":{}},"parent":{}}],["transactiondetailscomponent",{"_index":546,"name":{"655":{}},"parent":{}}],["transactiondisplayedcolumns",{"_index":562,"name":{"674":{}},"parent":{}}],["transactionlist",{"_index":326,"name":{"379":{}},"parent":{}}],["transactions",{"_index":325,"name":{"378":{},"494":{},"677":{}},"parent":{}}],["transactionscomponent",{"_index":559,"name":{"671":{}},"parent":{}}],["transactionsdatasource",{"_index":412,"name":{"472":{}},"parent":{}}],["transactionsdefaultpagesize",{"_index":414,"name":{"474":{}},"parent":{}}],["transactionsdisplayedcolumns",{"_index":413,"name":{"473":{}},"parent":{}}],["transactionservice",{"_index":323,"name":{"376":{},"899":{}},"parent":{}}],["transactionservicestub",{"_index":692,"name":{"840":{},"914":{}},"parent":{}}],["transactionsmodule",{"_index":565,"name":{"690":{}},"parent":{}}],["transactionspagesizeoptions",{"_index":415,"name":{"475":{}},"parent":{}}],["transactionsroutingmodule",{"_index":556,"name":{"668":{}},"parent":{}}],["transactionssubject",{"_index":327,"name":{"380":{}},"parent":{}}],["transactionstype",{"_index":432,"name":{"495":{},"679":{}},"parent":{}}],["transactionstypes",{"_index":434,"name":{"497":{},"680":{}},"parent":{}}],["transactiontablepaginator",{"_index":416,"name":{"476":{}},"parent":{}}],["transactiontablesort",{"_index":417,"name":{"477":{}},"parent":{}}],["transferrequest",{"_index":336,"name":{"391":{}},"parent":{}}],["transform",{"_index":578,"name":{"703":{},"707":{}},"parent":{}}],["trusteddeclaratoraddress",{"_index":651,"name":{"781":{},"796":{},"811":{}},"parent":{}}],["trustedusers",{"_index":524,"name":{"621":{}},"parent":{}}],["tx",{"_index":185,"name":{"190":{},"204":{},"215":{},"740":{},"876":{},"906":{}},"parent":{}}],["txhash",{"_index":190,"name":{"195":{}},"parent":{}}],["txhelper",{"_index":152,"name":{"150":{}},"parent":{}}],["txindex",{"_index":191,"name":{"196":{}},"parent":{}}],["txtoken",{"_index":183,"name":{"185":{},"875":{}},"parent":{}}],["type",{"_index":98,"name":{"90":{},"206":{}},"parent":{}}],["updatemeta",{"_index":351,"name":{"409":{}},"parent":{}}],["url",{"_index":508,"name":{"599":{}},"parent":{}}],["useclass",{"_index":73,"name":{"65":{}},"parent":{}}],["user",{"_index":137,"name":{"131":{},"214":{}},"parent":{}}],["userdatasource",{"_index":418,"name":{"478":{}},"parent":{}}],["userdisplayedcolumns",{"_index":419,"name":{"479":{}},"parent":{}}],["userid",{"_index":160,"name":{"161":{}},"parent":{}}],["userinfo",{"_index":328,"name":{"381":{}},"parent":{}}],["users",{"_index":697,"name":{"848":{}},"parent":{}}],["usersdefaultpagesize",{"_index":420,"name":{"480":{}},"parent":{}}],["userservice",{"_index":338,"name":{"393":{},"900":{}},"parent":{}}],["userservicestub",{"_index":695,"name":{"846":{},"912":{}},"parent":{}}],["userspagesizeoptions",{"_index":421,"name":{"481":{}},"parent":{}}],["usertablepaginator",{"_index":422,"name":{"482":{}},"parent":{}}],["usertablesort",{"_index":423,"name":{"483":{}},"parent":{}}],["v",{"_index":618,"name":{"748":{}},"parent":{}}],["validation",{"_index":78,"name":{"69":{}},"parent":{"70":{},"71":{}}}],["value",{"_index":198,"name":{"205":{},"746":{}},"parent":{}}],["vcard",{"_index":114,"name":{"107":{}},"parent":{}}],["vcardvalidation",{"_index":80,"name":{"71":{},"870":{}},"parent":{}}],["verify",{"_index":248,"name":{"284":{},"300":{}},"parent":{}}],["version",{"_index":119,"name":{"113":{}},"parent":{}}],["viewaccount",{"_index":440,"name":{"506":{},"551":{}},"parent":{}}],["viewrecipient",{"_index":552,"name":{"663":{}},"parent":{}}],["viewsender",{"_index":551,"name":{"662":{}},"parent":{}}],["viewtoken",{"_index":540,"name":{"649":{}},"parent":{}}],["viewtrader",{"_index":553,"name":{"664":{}},"parent":{}}],["viewtransaction",{"_index":439,"name":{"505":{},"684":{}},"parent":{}}],["w3",{"_index":150,"name":{"147":{},"151":{},"880":{}},"parent":{}}],["web3",{"_index":311,"name":{"361":{},"382":{}},"parent":{}}],["web3provider",{"_index":648,"name":{"778":{},"793":{},"808":{}},"parent":{}}],["weight",{"_index":171,"name":{"173":{}},"parent":{}}],["wrap",{"_index":357,"name":{"415":{}},"parent":{}}],["write",{"_index":627,"name":{"757":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file +window.searchData = {"kinds":{"1":"Module","32":"Variable","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","262144":"Accessor","16777216":"Reference"},"rows":[{"id":0,"kind":1,"name":"app/_eth/accountIndex","url":"modules/app__eth_accountindex.html","classes":"tsd-kind-module"},{"id":1,"kind":128,"name":"AccountIndex","url":"classes/app__eth_accountindex.accountindex.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_eth/accountIndex"},{"id":2,"kind":512,"name":"constructor","url":"classes/app__eth_accountindex.accountindex.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":3,"kind":1024,"name":"contract","url":"classes/app__eth_accountindex.accountindex.html#contract","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":4,"kind":1024,"name":"contractAddress","url":"classes/app__eth_accountindex.accountindex.html#contractaddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":5,"kind":1024,"name":"signerAddress","url":"classes/app__eth_accountindex.accountindex.html#signeraddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":6,"kind":2048,"name":"addToAccountRegistry","url":"classes/app__eth_accountindex.accountindex.html#addtoaccountregistry","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":7,"kind":2048,"name":"haveAccount","url":"classes/app__eth_accountindex.accountindex.html#haveaccount","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":8,"kind":2048,"name":"last","url":"classes/app__eth_accountindex.accountindex.html#last","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":9,"kind":2048,"name":"totalAccounts","url":"classes/app__eth_accountindex.accountindex.html#totalaccounts","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":10,"kind":1,"name":"app/_eth","url":"modules/app__eth.html","classes":"tsd-kind-module"},{"id":11,"kind":1,"name":"app/_eth/token-registry","url":"modules/app__eth_token_registry.html","classes":"tsd-kind-module"},{"id":12,"kind":128,"name":"TokenRegistry","url":"classes/app__eth_token_registry.tokenregistry.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_eth/token-registry"},{"id":13,"kind":512,"name":"constructor","url":"classes/app__eth_token_registry.tokenregistry.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":14,"kind":1024,"name":"contract","url":"classes/app__eth_token_registry.tokenregistry.html#contract","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":15,"kind":1024,"name":"contractAddress","url":"classes/app__eth_token_registry.tokenregistry.html#contractaddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":16,"kind":1024,"name":"signerAddress","url":"classes/app__eth_token_registry.tokenregistry.html#signeraddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":17,"kind":2048,"name":"addressOf","url":"classes/app__eth_token_registry.tokenregistry.html#addressof","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":18,"kind":2048,"name":"entry","url":"classes/app__eth_token_registry.tokenregistry.html#entry","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":19,"kind":2048,"name":"totalTokens","url":"classes/app__eth_token_registry.tokenregistry.html#totaltokens","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_eth/token-registry.TokenRegistry"},{"id":20,"kind":1,"name":"app/_guards/auth.guard","url":"modules/app__guards_auth_guard.html","classes":"tsd-kind-module"},{"id":21,"kind":128,"name":"AuthGuard","url":"classes/app__guards_auth_guard.authguard.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_guards/auth.guard"},{"id":22,"kind":512,"name":"constructor","url":"classes/app__guards_auth_guard.authguard.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_guards/auth.guard.AuthGuard"},{"id":23,"kind":2048,"name":"canActivate","url":"classes/app__guards_auth_guard.authguard.html#canactivate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_guards/auth.guard.AuthGuard"},{"id":24,"kind":1,"name":"app/_guards","url":"modules/app__guards.html","classes":"tsd-kind-module"},{"id":25,"kind":1,"name":"app/_guards/role.guard","url":"modules/app__guards_role_guard.html","classes":"tsd-kind-module"},{"id":26,"kind":128,"name":"RoleGuard","url":"classes/app__guards_role_guard.roleguard.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_guards/role.guard"},{"id":27,"kind":512,"name":"constructor","url":"classes/app__guards_role_guard.roleguard.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_guards/role.guard.RoleGuard"},{"id":28,"kind":2048,"name":"canActivate","url":"classes/app__guards_role_guard.roleguard.html#canactivate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_guards/role.guard.RoleGuard"},{"id":29,"kind":1,"name":"app/_helpers/array-sum","url":"modules/app__helpers_array_sum.html","classes":"tsd-kind-module"},{"id":30,"kind":64,"name":"arraySum","url":"modules/app__helpers_array_sum.html#arraysum","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/array-sum"},{"id":31,"kind":1,"name":"app/_helpers/clipboard-copy","url":"modules/app__helpers_clipboard_copy.html","classes":"tsd-kind-module"},{"id":32,"kind":64,"name":"copyToClipboard","url":"modules/app__helpers_clipboard_copy.html#copytoclipboard","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/clipboard-copy"},{"id":33,"kind":1,"name":"app/_helpers/custom-error-state-matcher","url":"modules/app__helpers_custom_error_state_matcher.html","classes":"tsd-kind-module"},{"id":34,"kind":128,"name":"CustomErrorStateMatcher","url":"classes/app__helpers_custom_error_state_matcher.customerrorstatematcher.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_helpers/custom-error-state-matcher"},{"id":35,"kind":512,"name":"constructor","url":"classes/app__helpers_custom_error_state_matcher.customerrorstatematcher.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_helpers/custom-error-state-matcher.CustomErrorStateMatcher"},{"id":36,"kind":2048,"name":"isErrorState","url":"classes/app__helpers_custom_error_state_matcher.customerrorstatematcher.html#iserrorstate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_helpers/custom-error-state-matcher.CustomErrorStateMatcher"},{"id":37,"kind":1,"name":"app/_helpers/custom.validator","url":"modules/app__helpers_custom_validator.html","classes":"tsd-kind-module"},{"id":38,"kind":128,"name":"CustomValidator","url":"classes/app__helpers_custom_validator.customvalidator.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_helpers/custom.validator"},{"id":39,"kind":2048,"name":"passwordMatchValidator","url":"classes/app__helpers_custom_validator.customvalidator.html#passwordmatchvalidator","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"app/_helpers/custom.validator.CustomValidator"},{"id":40,"kind":2048,"name":"patternValidator","url":"classes/app__helpers_custom_validator.customvalidator.html#patternvalidator","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"app/_helpers/custom.validator.CustomValidator"},{"id":41,"kind":512,"name":"constructor","url":"classes/app__helpers_custom_validator.customvalidator.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_helpers/custom.validator.CustomValidator"},{"id":42,"kind":1,"name":"app/_helpers/export-csv","url":"modules/app__helpers_export_csv.html","classes":"tsd-kind-module"},{"id":43,"kind":64,"name":"exportCsv","url":"modules/app__helpers_export_csv.html#exportcsv","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/export-csv"},{"id":44,"kind":1,"name":"app/_helpers/global-error-handler","url":"modules/app__helpers_global_error_handler.html","classes":"tsd-kind-module"},{"id":45,"kind":128,"name":"HttpError","url":"classes/app__helpers_global_error_handler.httperror.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_helpers/global-error-handler"},{"id":46,"kind":65536,"name":"__type","url":"classes/app__helpers_global_error_handler.httperror.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"app/_helpers/global-error-handler.HttpError"},{"id":47,"kind":512,"name":"constructor","url":"classes/app__helpers_global_error_handler.httperror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"app/_helpers/global-error-handler.HttpError"},{"id":48,"kind":1024,"name":"status","url":"classes/app__helpers_global_error_handler.httperror.html#status","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_helpers/global-error-handler.HttpError"},{"id":49,"kind":128,"name":"GlobalErrorHandler","url":"classes/app__helpers_global_error_handler.globalerrorhandler.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_helpers/global-error-handler"},{"id":50,"kind":512,"name":"constructor","url":"classes/app__helpers_global_error_handler.globalerrorhandler.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"app/_helpers/global-error-handler.GlobalErrorHandler"},{"id":51,"kind":1024,"name":"sentencesForWarningLogging","url":"classes/app__helpers_global_error_handler.globalerrorhandler.html#sentencesforwarninglogging","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_helpers/global-error-handler.GlobalErrorHandler"},{"id":52,"kind":2048,"name":"handleError","url":"classes/app__helpers_global_error_handler.globalerrorhandler.html#handleerror","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"app/_helpers/global-error-handler.GlobalErrorHandler"},{"id":53,"kind":2048,"name":"isWarning","url":"classes/app__helpers_global_error_handler.globalerrorhandler.html#iswarning","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"app/_helpers/global-error-handler.GlobalErrorHandler"},{"id":54,"kind":2048,"name":"logError","url":"classes/app__helpers_global_error_handler.globalerrorhandler.html#logerror","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_helpers/global-error-handler.GlobalErrorHandler"},{"id":55,"kind":1,"name":"app/_helpers/http-getter","url":"modules/app__helpers_http_getter.html","classes":"tsd-kind-module"},{"id":56,"kind":64,"name":"HttpGetter","url":"modules/app__helpers_http_getter.html#httpgetter","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/http-getter"},{"id":57,"kind":1,"name":"app/_helpers","url":"modules/app__helpers.html","classes":"tsd-kind-module"},{"id":58,"kind":1,"name":"app/_helpers/mock-backend","url":"modules/app__helpers_mock_backend.html","classes":"tsd-kind-module"},{"id":59,"kind":128,"name":"MockBackendInterceptor","url":"classes/app__helpers_mock_backend.mockbackendinterceptor.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_helpers/mock-backend"},{"id":60,"kind":512,"name":"constructor","url":"classes/app__helpers_mock_backend.mockbackendinterceptor.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_helpers/mock-backend.MockBackendInterceptor"},{"id":61,"kind":2048,"name":"intercept","url":"classes/app__helpers_mock_backend.mockbackendinterceptor.html#intercept","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_helpers/mock-backend.MockBackendInterceptor"},{"id":62,"kind":32,"name":"MockBackendProvider","url":"modules/app__helpers_mock_backend.html#mockbackendprovider","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"app/_helpers/mock-backend"},{"id":63,"kind":65536,"name":"__type","url":"modules/app__helpers_mock_backend.html#mockbackendprovider.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable","parent":"app/_helpers/mock-backend.MockBackendProvider"},{"id":64,"kind":1024,"name":"provide","url":"modules/app__helpers_mock_backend.html#mockbackendprovider.__type.provide","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_helpers/mock-backend.MockBackendProvider.__type"},{"id":65,"kind":1024,"name":"useClass","url":"modules/app__helpers_mock_backend.html#mockbackendprovider.__type.useclass","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_helpers/mock-backend.MockBackendProvider.__type"},{"id":66,"kind":1024,"name":"multi","url":"modules/app__helpers_mock_backend.html#mockbackendprovider.__type.multi","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_helpers/mock-backend.MockBackendProvider.__type"},{"id":67,"kind":1,"name":"app/_helpers/read-csv","url":"modules/app__helpers_read_csv.html","classes":"tsd-kind-module"},{"id":68,"kind":64,"name":"readCsv","url":"modules/app__helpers_read_csv.html#readcsv","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/read-csv"},{"id":69,"kind":1,"name":"app/_helpers/schema-validation","url":"modules/app__helpers_schema_validation.html","classes":"tsd-kind-module"},{"id":70,"kind":64,"name":"personValidation","url":"modules/app__helpers_schema_validation.html#personvalidation","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/schema-validation"},{"id":71,"kind":64,"name":"vcardValidation","url":"modules/app__helpers_schema_validation.html#vcardvalidation","classes":"tsd-kind-function tsd-parent-kind-module","parent":"app/_helpers/schema-validation"},{"id":72,"kind":1,"name":"app/_interceptors/error.interceptor","url":"modules/app__interceptors_error_interceptor.html","classes":"tsd-kind-module"},{"id":73,"kind":128,"name":"ErrorInterceptor","url":"classes/app__interceptors_error_interceptor.errorinterceptor.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_interceptors/error.interceptor"},{"id":74,"kind":512,"name":"constructor","url":"classes/app__interceptors_error_interceptor.errorinterceptor.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_interceptors/error.interceptor.ErrorInterceptor"},{"id":75,"kind":2048,"name":"intercept","url":"classes/app__interceptors_error_interceptor.errorinterceptor.html#intercept","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_interceptors/error.interceptor.ErrorInterceptor"},{"id":76,"kind":1,"name":"app/_interceptors/http-config.interceptor","url":"modules/app__interceptors_http_config_interceptor.html","classes":"tsd-kind-module"},{"id":77,"kind":128,"name":"HttpConfigInterceptor","url":"classes/app__interceptors_http_config_interceptor.httpconfiginterceptor.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_interceptors/http-config.interceptor"},{"id":78,"kind":512,"name":"constructor","url":"classes/app__interceptors_http_config_interceptor.httpconfiginterceptor.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_interceptors/http-config.interceptor.HttpConfigInterceptor"},{"id":79,"kind":2048,"name":"intercept","url":"classes/app__interceptors_http_config_interceptor.httpconfiginterceptor.html#intercept","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_interceptors/http-config.interceptor.HttpConfigInterceptor"},{"id":80,"kind":1,"name":"app/_interceptors","url":"modules/app__interceptors.html","classes":"tsd-kind-module"},{"id":81,"kind":1,"name":"app/_interceptors/logging.interceptor","url":"modules/app__interceptors_logging_interceptor.html","classes":"tsd-kind-module"},{"id":82,"kind":128,"name":"LoggingInterceptor","url":"classes/app__interceptors_logging_interceptor.logginginterceptor.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_interceptors/logging.interceptor"},{"id":83,"kind":512,"name":"constructor","url":"classes/app__interceptors_logging_interceptor.logginginterceptor.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_interceptors/logging.interceptor.LoggingInterceptor"},{"id":84,"kind":2048,"name":"intercept","url":"classes/app__interceptors_logging_interceptor.logginginterceptor.html#intercept","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_interceptors/logging.interceptor.LoggingInterceptor"},{"id":85,"kind":1,"name":"app/_models/account","url":"modules/app__models_account.html","classes":"tsd-kind-module"},{"id":86,"kind":256,"name":"AccountDetails","url":"interfaces/app__models_account.accountdetails.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":87,"kind":1024,"name":"date_registered","url":"interfaces/app__models_account.accountdetails.html#date_registered","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":88,"kind":1024,"name":"gender","url":"interfaces/app__models_account.accountdetails.html#gender","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":89,"kind":1024,"name":"age","url":"interfaces/app__models_account.accountdetails.html#age","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":90,"kind":1024,"name":"type","url":"interfaces/app__models_account.accountdetails.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":91,"kind":1024,"name":"balance","url":"interfaces/app__models_account.accountdetails.html#balance","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":92,"kind":1024,"name":"identities","url":"interfaces/app__models_account.accountdetails.html#identities","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":93,"kind":65536,"name":"__type","url":"interfaces/app__models_account.accountdetails.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":94,"kind":1024,"name":"evm","url":"interfaces/app__models_account.accountdetails.html#__type.evm","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":95,"kind":65536,"name":"__type","url":"interfaces/app__models_account.accountdetails.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":96,"kind":1024,"name":"bloxberg:8996","url":"interfaces/app__models_account.accountdetails.html#__type.__type-1.bloxberg_8996","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type.__type"},{"id":97,"kind":1024,"name":"oldchain:1","url":"interfaces/app__models_account.accountdetails.html#__type.__type-1.oldchain_1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type.__type"},{"id":98,"kind":1024,"name":"latitude","url":"interfaces/app__models_account.accountdetails.html#__type.latitude","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":99,"kind":1024,"name":"longitude","url":"interfaces/app__models_account.accountdetails.html#__type.longitude","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":100,"kind":1024,"name":"location","url":"interfaces/app__models_account.accountdetails.html#location","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":101,"kind":65536,"name":"__type","url":"interfaces/app__models_account.accountdetails.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":102,"kind":1024,"name":"area","url":"interfaces/app__models_account.accountdetails.html#__type-2.area","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":103,"kind":1024,"name":"area_name","url":"interfaces/app__models_account.accountdetails.html#__type-2.area_name","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":104,"kind":1024,"name":"area_type","url":"interfaces/app__models_account.accountdetails.html#__type-2.area_type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":105,"kind":1024,"name":"products","url":"interfaces/app__models_account.accountdetails.html#products","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":106,"kind":1024,"name":"category","url":"interfaces/app__models_account.accountdetails.html#category","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":107,"kind":1024,"name":"vcard","url":"interfaces/app__models_account.accountdetails.html#vcard","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":108,"kind":65536,"name":"__type","url":"interfaces/app__models_account.accountdetails.html#__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"app/_models/account.AccountDetails"},{"id":109,"kind":1024,"name":"email","url":"interfaces/app__models_account.accountdetails.html#__type-3.email","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":110,"kind":1024,"name":"fn","url":"interfaces/app__models_account.accountdetails.html#__type-3.fn","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":111,"kind":1024,"name":"n","url":"interfaces/app__models_account.accountdetails.html#__type-3.n","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":112,"kind":1024,"name":"tel","url":"interfaces/app__models_account.accountdetails.html#__type-3.tel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":113,"kind":1024,"name":"version","url":"interfaces/app__models_account.accountdetails.html#__type-3.version","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/account.AccountDetails.__type"},{"id":114,"kind":256,"name":"Meta","url":"interfaces/app__models_account.meta.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":115,"kind":1024,"name":"data","url":"interfaces/app__models_account.meta.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Meta"},{"id":116,"kind":1024,"name":"id","url":"interfaces/app__models_account.meta.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Meta"},{"id":117,"kind":1024,"name":"signature","url":"interfaces/app__models_account.meta.html#signature","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Meta"},{"id":118,"kind":256,"name":"MetaResponse","url":"interfaces/app__models_account.metaresponse.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":119,"kind":1024,"name":"id","url":"interfaces/app__models_account.metaresponse.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.MetaResponse"},{"id":120,"kind":1024,"name":"m","url":"interfaces/app__models_account.metaresponse.html#m","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.MetaResponse"},{"id":121,"kind":256,"name":"Signature","url":"interfaces/app__models_account.signature.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/account"},{"id":122,"kind":1024,"name":"algo","url":"interfaces/app__models_account.signature.html#algo","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Signature"},{"id":123,"kind":1024,"name":"data","url":"interfaces/app__models_account.signature.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Signature"},{"id":124,"kind":1024,"name":"digest","url":"interfaces/app__models_account.signature.html#digest","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Signature"},{"id":125,"kind":1024,"name":"engine","url":"interfaces/app__models_account.signature.html#engine","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/account.Signature"},{"id":126,"kind":32,"name":"defaultAccount","url":"modules/app__models_account.html#defaultaccount","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"app/_models/account"},{"id":127,"kind":1,"name":"app/_models","url":"modules/app__models.html","classes":"tsd-kind-module"},{"id":128,"kind":1,"name":"app/_models/mappings","url":"modules/app__models_mappings.html","classes":"tsd-kind-module"},{"id":129,"kind":256,"name":"Action","url":"interfaces/app__models_mappings.action.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/mappings"},{"id":130,"kind":1024,"name":"id","url":"interfaces/app__models_mappings.action.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Action"},{"id":131,"kind":1024,"name":"user","url":"interfaces/app__models_mappings.action.html#user","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Action"},{"id":132,"kind":1024,"name":"role","url":"interfaces/app__models_mappings.action.html#role","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Action"},{"id":133,"kind":1024,"name":"action","url":"interfaces/app__models_mappings.action.html#action","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Action"},{"id":134,"kind":1024,"name":"approval","url":"interfaces/app__models_mappings.action.html#approval","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Action"},{"id":135,"kind":256,"name":"AreaName","url":"interfaces/app__models_mappings.areaname.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/mappings"},{"id":136,"kind":1024,"name":"name","url":"interfaces/app__models_mappings.areaname.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.AreaName"},{"id":137,"kind":1024,"name":"locations","url":"interfaces/app__models_mappings.areaname.html#locations","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.AreaName"},{"id":138,"kind":256,"name":"AreaType","url":"interfaces/app__models_mappings.areatype.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/mappings"},{"id":139,"kind":1024,"name":"name","url":"interfaces/app__models_mappings.areatype.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.AreaType"},{"id":140,"kind":1024,"name":"area","url":"interfaces/app__models_mappings.areatype.html#area","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.AreaType"},{"id":141,"kind":256,"name":"Category","url":"interfaces/app__models_mappings.category.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/mappings"},{"id":142,"kind":1024,"name":"name","url":"interfaces/app__models_mappings.category.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Category"},{"id":143,"kind":1024,"name":"products","url":"interfaces/app__models_mappings.category.html#products","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/mappings.Category"},{"id":144,"kind":1,"name":"app/_models/settings","url":"modules/app__models_settings.html","classes":"tsd-kind-module"},{"id":145,"kind":128,"name":"Settings","url":"classes/app__models_settings.settings.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_models/settings"},{"id":146,"kind":512,"name":"constructor","url":"classes/app__models_settings.settings.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_models/settings.Settings"},{"id":147,"kind":1024,"name":"w3","url":"classes/app__models_settings.settings.html#w3","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/settings.Settings"},{"id":148,"kind":1024,"name":"scanFilter","url":"classes/app__models_settings.settings.html#scanfilter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/settings.Settings"},{"id":149,"kind":1024,"name":"registry","url":"classes/app__models_settings.settings.html#registry","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/settings.Settings"},{"id":150,"kind":1024,"name":"txHelper","url":"classes/app__models_settings.settings.html#txhelper","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_models/settings.Settings"},{"id":151,"kind":256,"name":"W3","url":"interfaces/app__models_settings.w3.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/settings"},{"id":152,"kind":1024,"name":"engine","url":"interfaces/app__models_settings.w3.html#engine","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/settings.W3"},{"id":153,"kind":1024,"name":"provider","url":"interfaces/app__models_settings.w3.html#provider","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/settings.W3"},{"id":154,"kind":1,"name":"app/_models/staff","url":"modules/app__models_staff.html","classes":"tsd-kind-module"},{"id":155,"kind":256,"name":"Staff","url":"interfaces/app__models_staff.staff.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/staff"},{"id":156,"kind":1024,"name":"comment","url":"interfaces/app__models_staff.staff.html#comment","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/staff.Staff"},{"id":157,"kind":1024,"name":"email","url":"interfaces/app__models_staff.staff.html#email","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/staff.Staff"},{"id":158,"kind":1024,"name":"name","url":"interfaces/app__models_staff.staff.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/staff.Staff"},{"id":159,"kind":1024,"name":"tag","url":"interfaces/app__models_staff.staff.html#tag","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/staff.Staff"},{"id":160,"kind":1024,"name":"userid","url":"interfaces/app__models_staff.staff.html#userid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/staff.Staff"},{"id":161,"kind":1,"name":"app/_models/token","url":"modules/app__models_token.html","classes":"tsd-kind-module"},{"id":162,"kind":256,"name":"Token","url":"interfaces/app__models_token.token.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/token"},{"id":163,"kind":1024,"name":"name","url":"interfaces/app__models_token.token.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":164,"kind":1024,"name":"symbol","url":"interfaces/app__models_token.token.html#symbol","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":165,"kind":1024,"name":"address","url":"interfaces/app__models_token.token.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":166,"kind":1024,"name":"supply","url":"interfaces/app__models_token.token.html#supply","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":167,"kind":1024,"name":"decimals","url":"interfaces/app__models_token.token.html#decimals","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":168,"kind":1024,"name":"reserves","url":"interfaces/app__models_token.token.html#reserves","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":169,"kind":65536,"name":"__type","url":"interfaces/app__models_token.token.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":170,"kind":1024,"name":"0xa686005CE37Dce7738436256982C3903f2E4ea8E","url":"interfaces/app__models_token.token.html#__type.0xa686005ce37dce7738436256982c3903f2e4ea8e","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/token.Token.__type"},{"id":171,"kind":65536,"name":"__type","url":"interfaces/app__models_token.token.html#__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"app/_models/token.Token.__type"},{"id":172,"kind":1024,"name":"weight","url":"interfaces/app__models_token.token.html#__type.__type-1.weight","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/token.Token.__type.__type"},{"id":173,"kind":1024,"name":"balance","url":"interfaces/app__models_token.token.html#__type.__type-1.balance","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_models/token.Token.__type.__type"},{"id":174,"kind":1024,"name":"reserveRatio","url":"interfaces/app__models_token.token.html#reserveratio","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":175,"kind":1024,"name":"owner","url":"interfaces/app__models_token.token.html#owner","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/token.Token"},{"id":176,"kind":1,"name":"app/_models/transaction","url":"modules/app__models_transaction.html","classes":"tsd-kind-module"},{"id":177,"kind":256,"name":"BlocksBloom","url":"interfaces/app__models_transaction.blocksbloom.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":178,"kind":1024,"name":"low","url":"interfaces/app__models_transaction.blocksbloom.html#low","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.BlocksBloom"},{"id":179,"kind":1024,"name":"blockFilter","url":"interfaces/app__models_transaction.blocksbloom.html#blockfilter","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.BlocksBloom"},{"id":180,"kind":1024,"name":"blocktxFilter","url":"interfaces/app__models_transaction.blocksbloom.html#blocktxfilter","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.BlocksBloom"},{"id":181,"kind":1024,"name":"alg","url":"interfaces/app__models_transaction.blocksbloom.html#alg","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.BlocksBloom"},{"id":182,"kind":1024,"name":"filterRounds","url":"interfaces/app__models_transaction.blocksbloom.html#filterrounds","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.BlocksBloom"},{"id":183,"kind":256,"name":"Conversion","url":"interfaces/app__models_transaction.conversion.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":184,"kind":1024,"name":"destinationToken","url":"interfaces/app__models_transaction.conversion.html#destinationtoken","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":185,"kind":1024,"name":"fromValue","url":"interfaces/app__models_transaction.conversion.html#fromvalue","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":186,"kind":1024,"name":"sourceToken","url":"interfaces/app__models_transaction.conversion.html#sourcetoken","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":187,"kind":1024,"name":"toValue","url":"interfaces/app__models_transaction.conversion.html#tovalue","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":188,"kind":1024,"name":"trader","url":"interfaces/app__models_transaction.conversion.html#trader","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":189,"kind":1024,"name":"user","url":"interfaces/app__models_transaction.conversion.html#user","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":190,"kind":1024,"name":"tx","url":"interfaces/app__models_transaction.conversion.html#tx","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Conversion"},{"id":191,"kind":256,"name":"Transaction","url":"interfaces/app__models_transaction.transaction.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":192,"kind":1024,"name":"from","url":"interfaces/app__models_transaction.transaction.html#from","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":193,"kind":1024,"name":"sender","url":"interfaces/app__models_transaction.transaction.html#sender","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":194,"kind":1024,"name":"to","url":"interfaces/app__models_transaction.transaction.html#to","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":195,"kind":1024,"name":"recipient","url":"interfaces/app__models_transaction.transaction.html#recipient","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":196,"kind":1024,"name":"token","url":"interfaces/app__models_transaction.transaction.html#token","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":197,"kind":1024,"name":"tx","url":"interfaces/app__models_transaction.transaction.html#tx","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":198,"kind":1024,"name":"value","url":"interfaces/app__models_transaction.transaction.html#value","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":199,"kind":1024,"name":"type","url":"interfaces/app__models_transaction.transaction.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Transaction"},{"id":200,"kind":256,"name":"Tx","url":"interfaces/app__models_transaction.tx.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":201,"kind":1024,"name":"block","url":"interfaces/app__models_transaction.tx.html#block","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Tx"},{"id":202,"kind":1024,"name":"success","url":"interfaces/app__models_transaction.tx.html#success","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Tx"},{"id":203,"kind":1024,"name":"timestamp","url":"interfaces/app__models_transaction.tx.html#timestamp","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Tx"},{"id":204,"kind":1024,"name":"txHash","url":"interfaces/app__models_transaction.tx.html#txhash","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Tx"},{"id":205,"kind":1024,"name":"txIndex","url":"interfaces/app__models_transaction.tx.html#txindex","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.Tx"},{"id":206,"kind":256,"name":"TxToken","url":"interfaces/app__models_transaction.txtoken.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_models/transaction"},{"id":207,"kind":1024,"name":"address","url":"interfaces/app__models_transaction.txtoken.html#address","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.TxToken"},{"id":208,"kind":1024,"name":"name","url":"interfaces/app__models_transaction.txtoken.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.TxToken"},{"id":209,"kind":1024,"name":"symbol","url":"interfaces/app__models_transaction.txtoken.html#symbol","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_models/transaction.TxToken"},{"id":210,"kind":1,"name":"app/_pgp","url":"modules/app__pgp.html","classes":"tsd-kind-module"},{"id":211,"kind":1,"name":"app/_pgp/pgp-key-store","url":"modules/app__pgp_pgp_key_store.html","classes":"tsd-kind-module"},{"id":212,"kind":128,"name":"MutablePgpKeyStore","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_pgp/pgp-key-store"},{"id":213,"kind":512,"name":"constructor","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":214,"kind":2048,"name":"loadKeyring","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#loadkeyring","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":215,"kind":2048,"name":"importKeyPair","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#importkeypair","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":216,"kind":2048,"name":"importPublicKey","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#importpublickey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":217,"kind":2048,"name":"importPrivateKey","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#importprivatekey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":218,"kind":2048,"name":"getPublicKeys","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getpublickeys","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":219,"kind":2048,"name":"getTrustedKeys","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#gettrustedkeys","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":220,"kind":2048,"name":"getTrustedActiveKeys","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#gettrustedactivekeys","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":221,"kind":2048,"name":"getEncryptKeys","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getencryptkeys","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":222,"kind":2048,"name":"getPrivateKeys","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getprivatekeys","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":223,"kind":2048,"name":"getPrivateKey","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getprivatekey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":224,"kind":2048,"name":"isValidKey","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#isvalidkey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":225,"kind":2048,"name":"isEncryptedPrivateKey","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#isencryptedprivatekey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":226,"kind":2048,"name":"getFingerprint","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getfingerprint","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":227,"kind":2048,"name":"getKeyId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getkeyid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":228,"kind":2048,"name":"getPrivateKeyId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getprivatekeyid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":229,"kind":2048,"name":"getKeysForId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getkeysforid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":230,"kind":2048,"name":"getPublicKeyForId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getpublickeyforid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":231,"kind":2048,"name":"getPrivateKeyForId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getprivatekeyforid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":232,"kind":2048,"name":"getPublicKeyForSubkeyId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getpublickeyforsubkeyid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":233,"kind":2048,"name":"getPublicKeysForAddress","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#getpublickeysforaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":234,"kind":2048,"name":"removeKeysForId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#removekeysforid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":235,"kind":2048,"name":"removePublicKeyForId","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#removepublickeyforid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":236,"kind":2048,"name":"removePublicKey","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#removepublickey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":237,"kind":2048,"name":"clearKeysInKeyring","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#clearkeysinkeyring","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":238,"kind":2048,"name":"sign","url":"classes/app__pgp_pgp_key_store.mutablepgpkeystore.html#sign","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-key-store.MutablePgpKeyStore"},{"id":239,"kind":256,"name":"MutableKeyStore","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_pgp/pgp-key-store"},{"id":240,"kind":2048,"name":"loadKeyring","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#loadkeyring","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":241,"kind":2048,"name":"importKeyPair","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#importkeypair","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":242,"kind":2048,"name":"importPublicKey","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#importpublickey","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":243,"kind":2048,"name":"importPrivateKey","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#importprivatekey","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":244,"kind":2048,"name":"getPublicKeys","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getpublickeys","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":245,"kind":2048,"name":"getTrustedKeys","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#gettrustedkeys","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-overwrite","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":246,"kind":2048,"name":"getTrustedActiveKeys","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#gettrustedactivekeys","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-overwrite","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":247,"kind":2048,"name":"getEncryptKeys","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getencryptkeys","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-overwrite","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":248,"kind":2048,"name":"getPrivateKeys","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getprivatekeys","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":249,"kind":2048,"name":"getPrivateKey","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getprivatekey","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-overwrite","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":250,"kind":2048,"name":"isValidKey","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#isvalidkey","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":251,"kind":2048,"name":"isEncryptedPrivateKey","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#isencryptedprivatekey","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":252,"kind":2048,"name":"getFingerprint","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getfingerprint","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-overwrite","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":253,"kind":2048,"name":"getKeyId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getkeyid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":254,"kind":2048,"name":"getPrivateKeyId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getprivatekeyid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":255,"kind":2048,"name":"getKeysForId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getkeysforid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":256,"kind":2048,"name":"getPublicKeyForId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getpublickeyforid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":257,"kind":2048,"name":"getPrivateKeyForId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getprivatekeyforid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":258,"kind":2048,"name":"getPublicKeyForSubkeyId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getpublickeyforsubkeyid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":259,"kind":2048,"name":"getPublicKeysForAddress","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#getpublickeysforaddress","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":260,"kind":2048,"name":"removeKeysForId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#removekeysforid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":261,"kind":2048,"name":"removePublicKeyForId","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#removepublickeyforid","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":262,"kind":2048,"name":"removePublicKey","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#removepublickey","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":263,"kind":2048,"name":"clearKeysInKeyring","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#clearkeysinkeyring","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":264,"kind":2048,"name":"sign","url":"interfaces/app__pgp_pgp_key_store.mutablekeystore.html#sign","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-key-store.MutableKeyStore"},{"id":265,"kind":1,"name":"app/_pgp/pgp-signer","url":"modules/app__pgp_pgp_signer.html","classes":"tsd-kind-module"},{"id":266,"kind":256,"name":"Signable","url":"interfaces/app__pgp_pgp_signer.signable.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_pgp/pgp-signer"},{"id":267,"kind":2048,"name":"digest","url":"interfaces/app__pgp_pgp_signer.signable.html#digest","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signable"},{"id":268,"kind":256,"name":"Signature","url":"interfaces/app__pgp_pgp_signer.signature.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_pgp/pgp-signer"},{"id":269,"kind":1024,"name":"engine","url":"interfaces/app__pgp_pgp_signer.signature.html#engine","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signature"},{"id":270,"kind":1024,"name":"algo","url":"interfaces/app__pgp_pgp_signer.signature.html#algo","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signature"},{"id":271,"kind":1024,"name":"data","url":"interfaces/app__pgp_pgp_signer.signature.html#data","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signature"},{"id":272,"kind":1024,"name":"digest","url":"interfaces/app__pgp_pgp_signer.signature.html#digest","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signature"},{"id":273,"kind":256,"name":"Signer","url":"interfaces/app__pgp_pgp_signer.signer.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"app/_pgp/pgp-signer"},{"id":274,"kind":2048,"name":"onsign","url":"interfaces/app__pgp_pgp_signer.signer.html#onsign","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signer"},{"id":275,"kind":2048,"name":"onverify","url":"interfaces/app__pgp_pgp_signer.signer.html#onverify","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signer"},{"id":276,"kind":2048,"name":"fingerprint","url":"interfaces/app__pgp_pgp_signer.signer.html#fingerprint","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signer"},{"id":277,"kind":2048,"name":"prepare","url":"interfaces/app__pgp_pgp_signer.signer.html#prepare","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signer"},{"id":278,"kind":2048,"name":"verify","url":"interfaces/app__pgp_pgp_signer.signer.html#verify","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signer"},{"id":279,"kind":2048,"name":"sign","url":"interfaces/app__pgp_pgp_signer.signer.html#sign","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"app/_pgp/pgp-signer.Signer"},{"id":280,"kind":128,"name":"PGPSigner","url":"classes/app__pgp_pgp_signer.pgpsigner.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_pgp/pgp-signer"},{"id":281,"kind":512,"name":"constructor","url":"classes/app__pgp_pgp_signer.pgpsigner.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":282,"kind":1024,"name":"engine","url":"classes/app__pgp_pgp_signer.pgpsigner.html#engine","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":283,"kind":1024,"name":"algo","url":"classes/app__pgp_pgp_signer.pgpsigner.html#algo","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":284,"kind":1024,"name":"dgst","url":"classes/app__pgp_pgp_signer.pgpsigner.html#dgst","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":285,"kind":1024,"name":"signature","url":"classes/app__pgp_pgp_signer.pgpsigner.html#signature","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":286,"kind":1024,"name":"keyStore","url":"classes/app__pgp_pgp_signer.pgpsigner.html#keystore","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":287,"kind":1024,"name":"onsign","url":"classes/app__pgp_pgp_signer.pgpsigner.html#onsign","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":288,"kind":65536,"name":"__type","url":"classes/app__pgp_pgp_signer.pgpsigner.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":289,"kind":1024,"name":"onverify","url":"classes/app__pgp_pgp_signer.pgpsigner.html#onverify","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":290,"kind":65536,"name":"__type","url":"classes/app__pgp_pgp_signer.pgpsigner.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":291,"kind":1024,"name":"loggingService","url":"classes/app__pgp_pgp_signer.pgpsigner.html#loggingservice","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":292,"kind":2048,"name":"fingerprint","url":"classes/app__pgp_pgp_signer.pgpsigner.html#fingerprint","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":293,"kind":2048,"name":"prepare","url":"classes/app__pgp_pgp_signer.pgpsigner.html#prepare","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":294,"kind":2048,"name":"verify","url":"classes/app__pgp_pgp_signer.pgpsigner.html#verify","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":295,"kind":2048,"name":"sign","url":"classes/app__pgp_pgp_signer.pgpsigner.html#sign","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_pgp/pgp-signer.PGPSigner"},{"id":296,"kind":1,"name":"app/_services/auth.service","url":"modules/app__services_auth_service.html","classes":"tsd-kind-module"},{"id":297,"kind":128,"name":"AuthService","url":"classes/app__services_auth_service.authservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/auth.service"},{"id":298,"kind":512,"name":"constructor","url":"classes/app__services_auth_service.authservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":299,"kind":1024,"name":"sessionToken","url":"classes/app__services_auth_service.authservice.html#sessiontoken","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":300,"kind":1024,"name":"sessionLoginCount","url":"classes/app__services_auth_service.authservice.html#sessionlogincount","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":301,"kind":1024,"name":"mutableKeyStore","url":"classes/app__services_auth_service.authservice.html#mutablekeystore","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":302,"kind":2048,"name":"init","url":"classes/app__services_auth_service.authservice.html#init","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":303,"kind":2048,"name":"setState","url":"classes/app__services_auth_service.authservice.html#setstate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":304,"kind":2048,"name":"getWithToken","url":"classes/app__services_auth_service.authservice.html#getwithtoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":305,"kind":2048,"name":"sendResponse","url":"classes/app__services_auth_service.authservice.html#sendresponse","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":306,"kind":2048,"name":"getChallenge","url":"classes/app__services_auth_service.authservice.html#getchallenge","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":307,"kind":2048,"name":"login","url":"classes/app__services_auth_service.authservice.html#login","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":308,"kind":2048,"name":"loginResponse","url":"classes/app__services_auth_service.authservice.html#loginresponse","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":309,"kind":2048,"name":"loginView","url":"classes/app__services_auth_service.authservice.html#loginview","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":310,"kind":2048,"name":"setKey","url":"classes/app__services_auth_service.authservice.html#setkey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":311,"kind":2048,"name":"logout","url":"classes/app__services_auth_service.authservice.html#logout","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":312,"kind":2048,"name":"getTrustedUsers","url":"classes/app__services_auth_service.authservice.html#gettrustedusers","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":313,"kind":2048,"name":"getPublicKeys","url":"classes/app__services_auth_service.authservice.html#getpublickeys","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":314,"kind":2048,"name":"getPrivateKey","url":"classes/app__services_auth_service.authservice.html#getprivatekey","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/auth.service.AuthService"},{"id":315,"kind":1,"name":"app/_services/block-sync.service","url":"modules/app__services_block_sync_service.html","classes":"tsd-kind-module"},{"id":316,"kind":128,"name":"BlockSyncService","url":"classes/app__services_block_sync_service.blocksyncservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/block-sync.service"},{"id":317,"kind":512,"name":"constructor","url":"classes/app__services_block_sync_service.blocksyncservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":318,"kind":1024,"name":"readyStateTarget","url":"classes/app__services_block_sync_service.blocksyncservice.html#readystatetarget","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":319,"kind":1024,"name":"readyState","url":"classes/app__services_block_sync_service.blocksyncservice.html#readystate","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":320,"kind":2048,"name":"blockSync","url":"classes/app__services_block_sync_service.blocksyncservice.html#blocksync","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":321,"kind":2048,"name":"readyStateProcessor","url":"classes/app__services_block_sync_service.blocksyncservice.html#readystateprocessor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":322,"kind":2048,"name":"newTransferEvent","url":"classes/app__services_block_sync_service.blocksyncservice.html#newtransferevent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":323,"kind":2048,"name":"newConversionEvent","url":"classes/app__services_block_sync_service.blocksyncservice.html#newconversionevent","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":324,"kind":2048,"name":"scan","url":"classes/app__services_block_sync_service.blocksyncservice.html#scan","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":325,"kind":2048,"name":"fetcher","url":"classes/app__services_block_sync_service.blocksyncservice.html#fetcher","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/block-sync.service.BlockSyncService"},{"id":326,"kind":1,"name":"app/_services/error-dialog.service","url":"modules/app__services_error_dialog_service.html","classes":"tsd-kind-module"},{"id":327,"kind":128,"name":"ErrorDialogService","url":"classes/app__services_error_dialog_service.errordialogservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/error-dialog.service"},{"id":328,"kind":512,"name":"constructor","url":"classes/app__services_error_dialog_service.errordialogservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/error-dialog.service.ErrorDialogService"},{"id":329,"kind":1024,"name":"isDialogOpen","url":"classes/app__services_error_dialog_service.errordialogservice.html#isdialogopen","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/error-dialog.service.ErrorDialogService"},{"id":330,"kind":1024,"name":"dialog","url":"classes/app__services_error_dialog_service.errordialogservice.html#dialog","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/error-dialog.service.ErrorDialogService"},{"id":331,"kind":2048,"name":"openDialog","url":"classes/app__services_error_dialog_service.errordialogservice.html#opendialog","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/error-dialog.service.ErrorDialogService"},{"id":332,"kind":1,"name":"app/_services","url":"modules/app__services.html","classes":"tsd-kind-module"},{"id":333,"kind":1,"name":"app/_services/location.service","url":"modules/app__services_location_service.html","classes":"tsd-kind-module"},{"id":334,"kind":128,"name":"LocationService","url":"classes/app__services_location_service.locationservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/location.service"},{"id":335,"kind":512,"name":"constructor","url":"classes/app__services_location_service.locationservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":336,"kind":2048,"name":"getAreaNames","url":"classes/app__services_location_service.locationservice.html#getareanames","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":337,"kind":2048,"name":"getAreaNameByLocation","url":"classes/app__services_location_service.locationservice.html#getareanamebylocation","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":338,"kind":2048,"name":"getAreaTypes","url":"classes/app__services_location_service.locationservice.html#getareatypes","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":339,"kind":2048,"name":"getAreaTypeByArea","url":"classes/app__services_location_service.locationservice.html#getareatypebyarea","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/location.service.LocationService"},{"id":340,"kind":1,"name":"app/_services/logging.service","url":"modules/app__services_logging_service.html","classes":"tsd-kind-module"},{"id":341,"kind":128,"name":"LoggingService","url":"classes/app__services_logging_service.loggingservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/logging.service"},{"id":342,"kind":512,"name":"constructor","url":"classes/app__services_logging_service.loggingservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":343,"kind":1024,"name":"env","url":"classes/app__services_logging_service.loggingservice.html#env","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":344,"kind":1024,"name":"canDebug","url":"classes/app__services_logging_service.loggingservice.html#candebug","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":345,"kind":2048,"name":"sendTraceLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#sendtracelevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":346,"kind":2048,"name":"sendDebugLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#senddebuglevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":347,"kind":2048,"name":"sendInfoLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#sendinfolevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":348,"kind":2048,"name":"sendLogLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#sendloglevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":349,"kind":2048,"name":"sendWarnLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#sendwarnlevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":350,"kind":2048,"name":"sendErrorLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#senderrorlevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":351,"kind":2048,"name":"sendFatalLevelMessage","url":"classes/app__services_logging_service.loggingservice.html#sendfatallevelmessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/logging.service.LoggingService"},{"id":352,"kind":1,"name":"app/_services/registry.service","url":"modules/app__services_registry_service.html","classes":"tsd-kind-module"},{"id":353,"kind":128,"name":"RegistryService","url":"classes/app__services_registry_service.registryservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/registry.service"},{"id":354,"kind":512,"name":"constructor","url":"classes/app__services_registry_service.registryservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/registry.service.RegistryService"},{"id":355,"kind":1024,"name":"web3","url":"classes/app__services_registry_service.registryservice.html#web3","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/registry.service.RegistryService"},{"id":356,"kind":1024,"name":"fileGetter","url":"classes/app__services_registry_service.registryservice.html#filegetter","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/registry.service.RegistryService"},{"id":357,"kind":1024,"name":"registry","url":"classes/app__services_registry_service.registryservice.html#registry","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/registry.service.RegistryService"},{"id":358,"kind":2048,"name":"getRegistry","url":"classes/app__services_registry_service.registryservice.html#getregistry","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/registry.service.RegistryService"},{"id":359,"kind":2048,"name":"getWeb3","url":"classes/app__services_registry_service.registryservice.html#getweb3","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/registry.service.RegistryService"},{"id":360,"kind":1,"name":"app/_services/token.service","url":"modules/app__services_token_service.html","classes":"tsd-kind-module"},{"id":361,"kind":128,"name":"TokenService","url":"classes/app__services_token_service.tokenservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/token.service"},{"id":362,"kind":512,"name":"constructor","url":"classes/app__services_token_service.tokenservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":363,"kind":1024,"name":"registry","url":"classes/app__services_token_service.tokenservice.html#registry","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":364,"kind":1024,"name":"tokenRegistry","url":"classes/app__services_token_service.tokenservice.html#tokenregistry","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":365,"kind":1024,"name":"LoadEvent","url":"classes/app__services_token_service.tokenservice.html#loadevent","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":366,"kind":2048,"name":"getTokens","url":"classes/app__services_token_service.tokenservice.html#gettokens","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":367,"kind":2048,"name":"getTokenBySymbol","url":"classes/app__services_token_service.tokenservice.html#gettokenbysymbol","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":368,"kind":2048,"name":"getTokenBalance","url":"classes/app__services_token_service.tokenservice.html#gettokenbalance","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/token.service.TokenService"},{"id":369,"kind":1,"name":"app/_services/transaction.service","url":"modules/app__services_transaction_service.html","classes":"tsd-kind-module"},{"id":370,"kind":128,"name":"TransactionService","url":"classes/app__services_transaction_service.transactionservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/transaction.service"},{"id":371,"kind":512,"name":"constructor","url":"classes/app__services_transaction_service.transactionservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":372,"kind":1024,"name":"transactions","url":"classes/app__services_transaction_service.transactionservice.html#transactions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":373,"kind":1024,"name":"transactionList","url":"classes/app__services_transaction_service.transactionservice.html#transactionlist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/transaction.service.TransactionService"},{"id":374,"kind":1024,"name":"transactionsSubject","url":"classes/app__services_transaction_service.transactionservice.html#transactionssubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":375,"kind":1024,"name":"userInfo","url":"classes/app__services_transaction_service.transactionservice.html#userinfo","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":376,"kind":1024,"name":"web3","url":"classes/app__services_transaction_service.transactionservice.html#web3","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":377,"kind":1024,"name":"registry","url":"classes/app__services_transaction_service.transactionservice.html#registry","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":378,"kind":2048,"name":"getAllTransactions","url":"classes/app__services_transaction_service.transactionservice.html#getalltransactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":379,"kind":2048,"name":"getAddressTransactions","url":"classes/app__services_transaction_service.transactionservice.html#getaddresstransactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":380,"kind":2048,"name":"setTransaction","url":"classes/app__services_transaction_service.transactionservice.html#settransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":381,"kind":2048,"name":"setConversion","url":"classes/app__services_transaction_service.transactionservice.html#setconversion","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":382,"kind":2048,"name":"addTransaction","url":"classes/app__services_transaction_service.transactionservice.html#addtransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":383,"kind":2048,"name":"resetTransactionsList","url":"classes/app__services_transaction_service.transactionservice.html#resettransactionslist","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":384,"kind":2048,"name":"getAccountInfo","url":"classes/app__services_transaction_service.transactionservice.html#getaccountinfo","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":385,"kind":2048,"name":"transferRequest","url":"classes/app__services_transaction_service.transactionservice.html#transferrequest","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/transaction.service.TransactionService"},{"id":386,"kind":1,"name":"app/_services/user.service","url":"modules/app__services_user_service.html","classes":"tsd-kind-module"},{"id":387,"kind":128,"name":"UserService","url":"classes/app__services_user_service.userservice.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/_services/user.service"},{"id":388,"kind":512,"name":"constructor","url":"classes/app__services_user_service.userservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":389,"kind":1024,"name":"headers","url":"classes/app__services_user_service.userservice.html#headers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":390,"kind":1024,"name":"keystore","url":"classes/app__services_user_service.userservice.html#keystore","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":391,"kind":1024,"name":"signer","url":"classes/app__services_user_service.userservice.html#signer","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":392,"kind":1024,"name":"registry","url":"classes/app__services_user_service.userservice.html#registry","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":393,"kind":1024,"name":"accounts","url":"classes/app__services_user_service.userservice.html#accounts","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":394,"kind":1024,"name":"accountsList","url":"classes/app__services_user_service.userservice.html#accountslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/user.service.UserService"},{"id":395,"kind":1024,"name":"accountsSubject","url":"classes/app__services_user_service.userservice.html#accountssubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":396,"kind":1024,"name":"actions","url":"classes/app__services_user_service.userservice.html#actions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":397,"kind":1024,"name":"actionsList","url":"classes/app__services_user_service.userservice.html#actionslist","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"app/_services/user.service.UserService"},{"id":398,"kind":1024,"name":"actionsSubject","url":"classes/app__services_user_service.userservice.html#actionssubject","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":399,"kind":2048,"name":"resetPin","url":"classes/app__services_user_service.userservice.html#resetpin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":400,"kind":2048,"name":"getAccountStatus","url":"classes/app__services_user_service.userservice.html#getaccountstatus","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":401,"kind":2048,"name":"getLockedAccounts","url":"classes/app__services_user_service.userservice.html#getlockedaccounts","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":402,"kind":2048,"name":"changeAccountInfo","url":"classes/app__services_user_service.userservice.html#changeaccountinfo","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":403,"kind":2048,"name":"updateMeta","url":"classes/app__services_user_service.userservice.html#updatemeta","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":404,"kind":2048,"name":"getActions","url":"classes/app__services_user_service.userservice.html#getactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":405,"kind":2048,"name":"getActionById","url":"classes/app__services_user_service.userservice.html#getactionbyid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":406,"kind":2048,"name":"approveAction","url":"classes/app__services_user_service.userservice.html#approveaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":407,"kind":2048,"name":"revokeAction","url":"classes/app__services_user_service.userservice.html#revokeaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":408,"kind":2048,"name":"getAccountDetailsFromMeta","url":"classes/app__services_user_service.userservice.html#getaccountdetailsfrommeta","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":409,"kind":2048,"name":"wrap","url":"classes/app__services_user_service.userservice.html#wrap","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":410,"kind":2048,"name":"loadAccounts","url":"classes/app__services_user_service.userservice.html#loadaccounts","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":411,"kind":2048,"name":"getAccountByAddress","url":"classes/app__services_user_service.userservice.html#getaccountbyaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":412,"kind":2048,"name":"getAccountByPhone","url":"classes/app__services_user_service.userservice.html#getaccountbyphone","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":413,"kind":2048,"name":"resetAccountsList","url":"classes/app__services_user_service.userservice.html#resetaccountslist","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":414,"kind":2048,"name":"searchAccountByName","url":"classes/app__services_user_service.userservice.html#searchaccountbyname","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":415,"kind":2048,"name":"getCategories","url":"classes/app__services_user_service.userservice.html#getcategories","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":416,"kind":2048,"name":"getCategoryByProduct","url":"classes/app__services_user_service.userservice.html#getcategorybyproduct","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":417,"kind":2048,"name":"getAccountTypes","url":"classes/app__services_user_service.userservice.html#getaccounttypes","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":418,"kind":2048,"name":"getTransactionTypes","url":"classes/app__services_user_service.userservice.html#gettransactiontypes","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":419,"kind":2048,"name":"getGenders","url":"classes/app__services_user_service.userservice.html#getgenders","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/_services/user.service.UserService"},{"id":420,"kind":1,"name":"app/app-routing.module","url":"modules/app_app_routing_module.html","classes":"tsd-kind-module"},{"id":421,"kind":128,"name":"AppRoutingModule","url":"classes/app_app_routing_module.approutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/app-routing.module"},{"id":422,"kind":512,"name":"constructor","url":"classes/app_app_routing_module.approutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/app-routing.module.AppRoutingModule"},{"id":423,"kind":1,"name":"app/app.component","url":"modules/app_app_component.html","classes":"tsd-kind-module"},{"id":424,"kind":128,"name":"AppComponent","url":"classes/app_app_component.appcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/app.component"},{"id":425,"kind":512,"name":"constructor","url":"classes/app_app_component.appcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":426,"kind":1024,"name":"title","url":"classes/app_app_component.appcomponent.html#title","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":427,"kind":1024,"name":"readyStateTarget","url":"classes/app_app_component.appcomponent.html#readystatetarget","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":428,"kind":1024,"name":"readyState","url":"classes/app_app_component.appcomponent.html#readystate","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":429,"kind":1024,"name":"mediaQuery","url":"classes/app_app_component.appcomponent.html#mediaquery","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":430,"kind":2048,"name":"ngOnInit","url":"classes/app_app_component.appcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":431,"kind":2048,"name":"onResize","url":"classes/app_app_component.appcomponent.html#onresize","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":432,"kind":2048,"name":"cicTransfer","url":"classes/app_app_component.appcomponent.html#cictransfer","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":433,"kind":2048,"name":"cicConvert","url":"classes/app_app_component.appcomponent.html#cicconvert","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/app.component.AppComponent"},{"id":434,"kind":1,"name":"app/app.module","url":"modules/app_app_module.html","classes":"tsd-kind-module"},{"id":435,"kind":128,"name":"AppModule","url":"classes/app_app_module.appmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/app.module"},{"id":436,"kind":512,"name":"constructor","url":"classes/app_app_module.appmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/app.module.AppModule"},{"id":437,"kind":1,"name":"app/auth/_directives","url":"modules/app_auth__directives.html","classes":"tsd-kind-module"},{"id":438,"kind":1,"name":"app/auth/_directives/password-toggle.directive","url":"modules/app_auth__directives_password_toggle_directive.html","classes":"tsd-kind-module"},{"id":439,"kind":128,"name":"PasswordToggleDirective","url":"classes/app_auth__directives_password_toggle_directive.passwordtoggledirective.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/auth/_directives/password-toggle.directive"},{"id":440,"kind":512,"name":"constructor","url":"classes/app_auth__directives_password_toggle_directive.passwordtoggledirective.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/auth/_directives/password-toggle.directive.PasswordToggleDirective"},{"id":441,"kind":1024,"name":"id","url":"classes/app_auth__directives_password_toggle_directive.passwordtoggledirective.html#id","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/auth/_directives/password-toggle.directive.PasswordToggleDirective"},{"id":442,"kind":1024,"name":"iconId","url":"classes/app_auth__directives_password_toggle_directive.passwordtoggledirective.html#iconid","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/auth/_directives/password-toggle.directive.PasswordToggleDirective"},{"id":443,"kind":2048,"name":"togglePasswordVisibility","url":"classes/app_auth__directives_password_toggle_directive.passwordtoggledirective.html#togglepasswordvisibility","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/auth/_directives/password-toggle.directive.PasswordToggleDirective"},{"id":444,"kind":1,"name":"app/auth/auth-routing.module","url":"modules/app_auth_auth_routing_module.html","classes":"tsd-kind-module"},{"id":445,"kind":128,"name":"AuthRoutingModule","url":"classes/app_auth_auth_routing_module.authroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/auth/auth-routing.module"},{"id":446,"kind":512,"name":"constructor","url":"classes/app_auth_auth_routing_module.authroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/auth/auth-routing.module.AuthRoutingModule"},{"id":447,"kind":1,"name":"app/auth/auth.component","url":"modules/app_auth_auth_component.html","classes":"tsd-kind-module"},{"id":448,"kind":128,"name":"AuthComponent","url":"classes/app_auth_auth_component.authcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/auth/auth.component"},{"id":449,"kind":512,"name":"constructor","url":"classes/app_auth_auth_component.authcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":450,"kind":1024,"name":"keyForm","url":"classes/app_auth_auth_component.authcomponent.html#keyform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":451,"kind":1024,"name":"submitted","url":"classes/app_auth_auth_component.authcomponent.html#submitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":452,"kind":1024,"name":"loading","url":"classes/app_auth_auth_component.authcomponent.html#loading","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":453,"kind":1024,"name":"matcher","url":"classes/app_auth_auth_component.authcomponent.html#matcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":454,"kind":2048,"name":"ngOnInit","url":"classes/app_auth_auth_component.authcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":455,"kind":262144,"name":"keyFormStub","url":"classes/app_auth_auth_component.authcomponent.html#keyformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":456,"kind":2048,"name":"onSubmit","url":"classes/app_auth_auth_component.authcomponent.html#onsubmit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":457,"kind":2048,"name":"login","url":"classes/app_auth_auth_component.authcomponent.html#login","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":458,"kind":2048,"name":"switchWindows","url":"classes/app_auth_auth_component.authcomponent.html#switchwindows","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":459,"kind":2048,"name":"toggleDisplay","url":"classes/app_auth_auth_component.authcomponent.html#toggledisplay","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/auth/auth.component.AuthComponent"},{"id":460,"kind":1,"name":"app/auth/auth.module","url":"modules/app_auth_auth_module.html","classes":"tsd-kind-module"},{"id":461,"kind":128,"name":"AuthModule","url":"classes/app_auth_auth_module.authmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/auth/auth.module"},{"id":462,"kind":512,"name":"constructor","url":"classes/app_auth_auth_module.authmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/auth/auth.module.AuthModule"},{"id":463,"kind":1,"name":"app/pages/accounts/account-details/account-details.component","url":"modules/app_pages_accounts_account_details_account_details_component.html","classes":"tsd-kind-module"},{"id":464,"kind":128,"name":"AccountDetailsComponent","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/accounts/account-details/account-details.component"},{"id":465,"kind":512,"name":"constructor","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":466,"kind":1024,"name":"transactionsDataSource","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactionsdatasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":467,"kind":1024,"name":"transactionsDisplayedColumns","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactionsdisplayedcolumns","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":468,"kind":1024,"name":"transactionsDefaultPageSize","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactionsdefaultpagesize","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":469,"kind":1024,"name":"transactionsPageSizeOptions","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactionspagesizeoptions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":470,"kind":1024,"name":"transactionTablePaginator","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactiontablepaginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":471,"kind":1024,"name":"transactionTableSort","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactiontablesort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":472,"kind":1024,"name":"userDataSource","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#userdatasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":473,"kind":1024,"name":"userDisplayedColumns","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#userdisplayedcolumns","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":474,"kind":1024,"name":"usersDefaultPageSize","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#usersdefaultpagesize","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":475,"kind":1024,"name":"usersPageSizeOptions","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#userspagesizeoptions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":476,"kind":1024,"name":"userTablePaginator","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#usertablepaginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":477,"kind":1024,"name":"userTableSort","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#usertablesort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":478,"kind":1024,"name":"accountInfoForm","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accountinfoform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":479,"kind":1024,"name":"account","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#account","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":480,"kind":1024,"name":"accountAddress","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accountaddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":481,"kind":1024,"name":"accountStatus","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accountstatus","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":482,"kind":1024,"name":"accounts","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accounts","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":483,"kind":1024,"name":"accountsType","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accountstype","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":484,"kind":1024,"name":"categories","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#categories","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":485,"kind":1024,"name":"areaNames","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#areanames","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":486,"kind":1024,"name":"areaTypes","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#areatypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":487,"kind":1024,"name":"transaction","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transaction","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":488,"kind":1024,"name":"transactions","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":489,"kind":1024,"name":"transactionsType","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactionstype","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":490,"kind":1024,"name":"accountTypes","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accounttypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":491,"kind":1024,"name":"transactionsTypes","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#transactionstypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":492,"kind":1024,"name":"genders","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#genders","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":493,"kind":1024,"name":"matcher","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#matcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":494,"kind":1024,"name":"submitted","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#submitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":495,"kind":1024,"name":"bloxbergLink","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#bloxberglink","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":496,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":497,"kind":2048,"name":"doTransactionFilter","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#dotransactionfilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":498,"kind":2048,"name":"doUserFilter","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#douserfilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":499,"kind":2048,"name":"viewTransaction","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#viewtransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":500,"kind":2048,"name":"viewAccount","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#viewaccount","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":501,"kind":262144,"name":"accountInfoFormStub","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#accountinfoformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":502,"kind":2048,"name":"saveInfo","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#saveinfo","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":503,"kind":2048,"name":"filterAccounts","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#filteraccounts","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":504,"kind":2048,"name":"filterTransactions","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#filtertransactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":505,"kind":2048,"name":"resetPin","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#resetpin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":506,"kind":2048,"name":"downloadCsv","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#downloadcsv","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":507,"kind":2048,"name":"copyAddress","url":"classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html#copyaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-details/account-details.component.AccountDetailsComponent"},{"id":508,"kind":1,"name":"app/pages/accounts/account-search/account-search.component","url":"modules/app_pages_accounts_account_search_account_search_component.html","classes":"tsd-kind-module"},{"id":509,"kind":128,"name":"AccountSearchComponent","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/accounts/account-search/account-search.component"},{"id":510,"kind":512,"name":"constructor","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":511,"kind":1024,"name":"nameSearchForm","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#namesearchform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":512,"kind":1024,"name":"nameSearchSubmitted","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#namesearchsubmitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":513,"kind":1024,"name":"nameSearchLoading","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#namesearchloading","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":514,"kind":1024,"name":"phoneSearchForm","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#phonesearchform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":515,"kind":1024,"name":"phoneSearchSubmitted","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#phonesearchsubmitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":516,"kind":1024,"name":"phoneSearchLoading","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#phonesearchloading","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":517,"kind":1024,"name":"addressSearchForm","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#addresssearchform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":518,"kind":1024,"name":"addressSearchSubmitted","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#addresssearchsubmitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":519,"kind":1024,"name":"addressSearchLoading","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#addresssearchloading","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":520,"kind":1024,"name":"matcher","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#matcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":521,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":522,"kind":262144,"name":"nameSearchFormStub","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#namesearchformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":523,"kind":262144,"name":"phoneSearchFormStub","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#phonesearchformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":524,"kind":262144,"name":"addressSearchFormStub","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#addresssearchformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":525,"kind":2048,"name":"onNameSearch","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#onnamesearch","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":526,"kind":2048,"name":"onPhoneSearch","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#onphonesearch","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":527,"kind":2048,"name":"onAddressSearch","url":"classes/app_pages_accounts_account_search_account_search_component.accountsearchcomponent.html#onaddresssearch","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/account-search/account-search.component.AccountSearchComponent"},{"id":528,"kind":1,"name":"app/pages/accounts/accounts-routing.module","url":"modules/app_pages_accounts_accounts_routing_module.html","classes":"tsd-kind-module"},{"id":529,"kind":128,"name":"AccountsRoutingModule","url":"classes/app_pages_accounts_accounts_routing_module.accountsroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/accounts/accounts-routing.module"},{"id":530,"kind":512,"name":"constructor","url":"classes/app_pages_accounts_accounts_routing_module.accountsroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/accounts/accounts-routing.module.AccountsRoutingModule"},{"id":531,"kind":1,"name":"app/pages/accounts/accounts.component","url":"modules/app_pages_accounts_accounts_component.html","classes":"tsd-kind-module"},{"id":532,"kind":128,"name":"AccountsComponent","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/accounts/accounts.component"},{"id":533,"kind":512,"name":"constructor","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":534,"kind":1024,"name":"dataSource","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#datasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":535,"kind":1024,"name":"accounts","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#accounts","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":536,"kind":1024,"name":"displayedColumns","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#displayedcolumns","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":537,"kind":1024,"name":"defaultPageSize","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#defaultpagesize","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":538,"kind":1024,"name":"pageSizeOptions","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#pagesizeoptions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":539,"kind":1024,"name":"accountsType","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#accountstype","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":540,"kind":1024,"name":"accountTypes","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#accounttypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":541,"kind":1024,"name":"paginator","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#paginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":542,"kind":1024,"name":"sort","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#sort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":543,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":544,"kind":2048,"name":"doFilter","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#dofilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":545,"kind":2048,"name":"viewAccount","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#viewaccount","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":546,"kind":2048,"name":"filterAccounts","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#filteraccounts","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":547,"kind":2048,"name":"refreshPaginator","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#refreshpaginator","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":548,"kind":2048,"name":"downloadCsv","url":"classes/app_pages_accounts_accounts_component.accountscomponent.html#downloadcsv","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/accounts.component.AccountsComponent"},{"id":549,"kind":1,"name":"app/pages/accounts/accounts.module","url":"modules/app_pages_accounts_accounts_module.html","classes":"tsd-kind-module"},{"id":550,"kind":128,"name":"AccountsModule","url":"classes/app_pages_accounts_accounts_module.accountsmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/accounts/accounts.module"},{"id":551,"kind":512,"name":"constructor","url":"classes/app_pages_accounts_accounts_module.accountsmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/accounts/accounts.module.AccountsModule"},{"id":552,"kind":1,"name":"app/pages/accounts/create-account/create-account.component","url":"modules/app_pages_accounts_create_account_create_account_component.html","classes":"tsd-kind-module"},{"id":553,"kind":128,"name":"CreateAccountComponent","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/accounts/create-account/create-account.component"},{"id":554,"kind":512,"name":"constructor","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":555,"kind":1024,"name":"createForm","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#createform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":556,"kind":1024,"name":"matcher","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#matcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":557,"kind":1024,"name":"submitted","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#submitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":558,"kind":1024,"name":"categories","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#categories","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":559,"kind":1024,"name":"areaNames","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#areanames","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":560,"kind":1024,"name":"accountTypes","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#accounttypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":561,"kind":1024,"name":"genders","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#genders","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":562,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":563,"kind":262144,"name":"createFormStub","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#createformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":564,"kind":2048,"name":"onSubmit","url":"classes/app_pages_accounts_create_account_create_account_component.createaccountcomponent.html#onsubmit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/accounts/create-account/create-account.component.CreateAccountComponent"},{"id":565,"kind":1,"name":"app/pages/admin/admin-routing.module","url":"modules/app_pages_admin_admin_routing_module.html","classes":"tsd-kind-module"},{"id":566,"kind":128,"name":"AdminRoutingModule","url":"classes/app_pages_admin_admin_routing_module.adminroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/admin/admin-routing.module"},{"id":567,"kind":512,"name":"constructor","url":"classes/app_pages_admin_admin_routing_module.adminroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/admin/admin-routing.module.AdminRoutingModule"},{"id":568,"kind":1,"name":"app/pages/admin/admin.component","url":"modules/app_pages_admin_admin_component.html","classes":"tsd-kind-module"},{"id":569,"kind":128,"name":"AdminComponent","url":"classes/app_pages_admin_admin_component.admincomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/admin/admin.component"},{"id":570,"kind":512,"name":"constructor","url":"classes/app_pages_admin_admin_component.admincomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":571,"kind":1024,"name":"dataSource","url":"classes/app_pages_admin_admin_component.admincomponent.html#datasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":572,"kind":1024,"name":"displayedColumns","url":"classes/app_pages_admin_admin_component.admincomponent.html#displayedcolumns","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":573,"kind":1024,"name":"action","url":"classes/app_pages_admin_admin_component.admincomponent.html#action","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":574,"kind":1024,"name":"actions","url":"classes/app_pages_admin_admin_component.admincomponent.html#actions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":575,"kind":1024,"name":"paginator","url":"classes/app_pages_admin_admin_component.admincomponent.html#paginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":576,"kind":1024,"name":"sort","url":"classes/app_pages_admin_admin_component.admincomponent.html#sort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":577,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_admin_admin_component.admincomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":578,"kind":2048,"name":"doFilter","url":"classes/app_pages_admin_admin_component.admincomponent.html#dofilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":579,"kind":2048,"name":"approvalStatus","url":"classes/app_pages_admin_admin_component.admincomponent.html#approvalstatus","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":580,"kind":2048,"name":"approveAction","url":"classes/app_pages_admin_admin_component.admincomponent.html#approveaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":581,"kind":2048,"name":"disapproveAction","url":"classes/app_pages_admin_admin_component.admincomponent.html#disapproveaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":582,"kind":2048,"name":"expandCollapse","url":"classes/app_pages_admin_admin_component.admincomponent.html#expandcollapse","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":583,"kind":2048,"name":"downloadCsv","url":"classes/app_pages_admin_admin_component.admincomponent.html#downloadcsv","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/admin/admin.component.AdminComponent"},{"id":584,"kind":1,"name":"app/pages/admin/admin.module","url":"modules/app_pages_admin_admin_module.html","classes":"tsd-kind-module"},{"id":585,"kind":128,"name":"AdminModule","url":"classes/app_pages_admin_admin_module.adminmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/admin/admin.module"},{"id":586,"kind":512,"name":"constructor","url":"classes/app_pages_admin_admin_module.adminmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/admin/admin.module.AdminModule"},{"id":587,"kind":1,"name":"app/pages/pages-routing.module","url":"modules/app_pages_pages_routing_module.html","classes":"tsd-kind-module"},{"id":588,"kind":128,"name":"PagesRoutingModule","url":"classes/app_pages_pages_routing_module.pagesroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/pages-routing.module"},{"id":589,"kind":512,"name":"constructor","url":"classes/app_pages_pages_routing_module.pagesroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/pages-routing.module.PagesRoutingModule"},{"id":590,"kind":1,"name":"app/pages/pages.component","url":"modules/app_pages_pages_component.html","classes":"tsd-kind-module"},{"id":591,"kind":128,"name":"PagesComponent","url":"classes/app_pages_pages_component.pagescomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/pages.component"},{"id":592,"kind":512,"name":"constructor","url":"classes/app_pages_pages_component.pagescomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/pages.component.PagesComponent"},{"id":593,"kind":1024,"name":"url","url":"classes/app_pages_pages_component.pagescomponent.html#url","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/pages.component.PagesComponent"},{"id":594,"kind":1,"name":"app/pages/pages.module","url":"modules/app_pages_pages_module.html","classes":"tsd-kind-module"},{"id":595,"kind":128,"name":"PagesModule","url":"classes/app_pages_pages_module.pagesmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/pages.module"},{"id":596,"kind":512,"name":"constructor","url":"classes/app_pages_pages_module.pagesmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/pages.module.PagesModule"},{"id":597,"kind":1,"name":"app/pages/settings/organization/organization.component","url":"modules/app_pages_settings_organization_organization_component.html","classes":"tsd-kind-module"},{"id":598,"kind":128,"name":"OrganizationComponent","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/settings/organization/organization.component"},{"id":599,"kind":512,"name":"constructor","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":600,"kind":1024,"name":"organizationForm","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#organizationform","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":601,"kind":1024,"name":"submitted","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#submitted","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":602,"kind":1024,"name":"matcher","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#matcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":603,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":604,"kind":262144,"name":"organizationFormStub","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#organizationformstub","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":605,"kind":2048,"name":"onSubmit","url":"classes/app_pages_settings_organization_organization_component.organizationcomponent.html#onsubmit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/settings/organization/organization.component.OrganizationComponent"},{"id":606,"kind":1,"name":"app/pages/settings/settings-routing.module","url":"modules/app_pages_settings_settings_routing_module.html","classes":"tsd-kind-module"},{"id":607,"kind":128,"name":"SettingsRoutingModule","url":"classes/app_pages_settings_settings_routing_module.settingsroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/settings/settings-routing.module"},{"id":608,"kind":512,"name":"constructor","url":"classes/app_pages_settings_settings_routing_module.settingsroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/settings/settings-routing.module.SettingsRoutingModule"},{"id":609,"kind":1,"name":"app/pages/settings/settings.component","url":"modules/app_pages_settings_settings_component.html","classes":"tsd-kind-module"},{"id":610,"kind":128,"name":"SettingsComponent","url":"classes/app_pages_settings_settings_component.settingscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/settings/settings.component"},{"id":611,"kind":512,"name":"constructor","url":"classes/app_pages_settings_settings_component.settingscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":612,"kind":1024,"name":"date","url":"classes/app_pages_settings_settings_component.settingscomponent.html#date","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":613,"kind":1024,"name":"dataSource","url":"classes/app_pages_settings_settings_component.settingscomponent.html#datasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":614,"kind":1024,"name":"displayedColumns","url":"classes/app_pages_settings_settings_component.settingscomponent.html#displayedcolumns","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":615,"kind":1024,"name":"trustedUsers","url":"classes/app_pages_settings_settings_component.settingscomponent.html#trustedusers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":616,"kind":1024,"name":"paginator","url":"classes/app_pages_settings_settings_component.settingscomponent.html#paginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":617,"kind":1024,"name":"sort","url":"classes/app_pages_settings_settings_component.settingscomponent.html#sort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":618,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_settings_settings_component.settingscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":619,"kind":2048,"name":"doFilter","url":"classes/app_pages_settings_settings_component.settingscomponent.html#dofilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":620,"kind":2048,"name":"downloadCsv","url":"classes/app_pages_settings_settings_component.settingscomponent.html#downloadcsv","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":621,"kind":2048,"name":"logout","url":"classes/app_pages_settings_settings_component.settingscomponent.html#logout","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/settings/settings.component.SettingsComponent"},{"id":622,"kind":1,"name":"app/pages/settings/settings.module","url":"modules/app_pages_settings_settings_module.html","classes":"tsd-kind-module"},{"id":623,"kind":128,"name":"SettingsModule","url":"classes/app_pages_settings_settings_module.settingsmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/settings/settings.module"},{"id":624,"kind":512,"name":"constructor","url":"classes/app_pages_settings_settings_module.settingsmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/settings/settings.module.SettingsModule"},{"id":625,"kind":1,"name":"app/pages/tokens/token-details/token-details.component","url":"modules/app_pages_tokens_token_details_token_details_component.html","classes":"tsd-kind-module"},{"id":626,"kind":128,"name":"TokenDetailsComponent","url":"classes/app_pages_tokens_token_details_token_details_component.tokendetailscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/tokens/token-details/token-details.component"},{"id":627,"kind":512,"name":"constructor","url":"classes/app_pages_tokens_token_details_token_details_component.tokendetailscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/tokens/token-details/token-details.component.TokenDetailsComponent"},{"id":628,"kind":1024,"name":"token","url":"classes/app_pages_tokens_token_details_token_details_component.tokendetailscomponent.html#token","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/token-details/token-details.component.TokenDetailsComponent"},{"id":629,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_tokens_token_details_token_details_component.tokendetailscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/tokens/token-details/token-details.component.TokenDetailsComponent"},{"id":630,"kind":1,"name":"app/pages/tokens/tokens-routing.module","url":"modules/app_pages_tokens_tokens_routing_module.html","classes":"tsd-kind-module"},{"id":631,"kind":128,"name":"TokensRoutingModule","url":"classes/app_pages_tokens_tokens_routing_module.tokensroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/tokens/tokens-routing.module"},{"id":632,"kind":512,"name":"constructor","url":"classes/app_pages_tokens_tokens_routing_module.tokensroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/tokens/tokens-routing.module.TokensRoutingModule"},{"id":633,"kind":1,"name":"app/pages/tokens/tokens.component","url":"modules/app_pages_tokens_tokens_component.html","classes":"tsd-kind-module"},{"id":634,"kind":128,"name":"TokensComponent","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/tokens/tokens.component"},{"id":635,"kind":512,"name":"constructor","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":636,"kind":1024,"name":"dataSource","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#datasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":637,"kind":1024,"name":"columnsToDisplay","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#columnstodisplay","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":638,"kind":1024,"name":"paginator","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#paginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":639,"kind":1024,"name":"sort","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#sort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":640,"kind":1024,"name":"tokens","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#tokens","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":641,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":642,"kind":2048,"name":"doFilter","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#dofilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":643,"kind":2048,"name":"viewToken","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#viewtoken","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":644,"kind":2048,"name":"downloadCsv","url":"classes/app_pages_tokens_tokens_component.tokenscomponent.html#downloadcsv","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/tokens/tokens.component.TokensComponent"},{"id":645,"kind":1,"name":"app/pages/tokens/tokens.module","url":"modules/app_pages_tokens_tokens_module.html","classes":"tsd-kind-module"},{"id":646,"kind":128,"name":"TokensModule","url":"classes/app_pages_tokens_tokens_module.tokensmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/tokens/tokens.module"},{"id":647,"kind":512,"name":"constructor","url":"classes/app_pages_tokens_tokens_module.tokensmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/tokens/tokens.module.TokensModule"},{"id":648,"kind":1,"name":"app/pages/transactions/transaction-details/transaction-details.component","url":"modules/app_pages_transactions_transaction_details_transaction_details_component.html","classes":"tsd-kind-module"},{"id":649,"kind":128,"name":"TransactionDetailsComponent","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/transactions/transaction-details/transaction-details.component"},{"id":650,"kind":512,"name":"constructor","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":651,"kind":1024,"name":"transaction","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#transaction","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":652,"kind":1024,"name":"senderBloxbergLink","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#senderbloxberglink","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":653,"kind":1024,"name":"recipientBloxbergLink","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#recipientbloxberglink","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":654,"kind":1024,"name":"traderBloxbergLink","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#traderbloxberglink","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":655,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":656,"kind":2048,"name":"viewSender","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#viewsender","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":657,"kind":2048,"name":"viewRecipient","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#viewrecipient","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":658,"kind":2048,"name":"viewTrader","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#viewtrader","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":659,"kind":2048,"name":"reverseTransaction","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#reversetransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":660,"kind":2048,"name":"copyAddress","url":"classes/app_pages_transactions_transaction_details_transaction_details_component.transactiondetailscomponent.html#copyaddress","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transaction-details/transaction-details.component.TransactionDetailsComponent"},{"id":661,"kind":1,"name":"app/pages/transactions/transactions-routing.module","url":"modules/app_pages_transactions_transactions_routing_module.html","classes":"tsd-kind-module"},{"id":662,"kind":128,"name":"TransactionsRoutingModule","url":"classes/app_pages_transactions_transactions_routing_module.transactionsroutingmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/transactions/transactions-routing.module"},{"id":663,"kind":512,"name":"constructor","url":"classes/app_pages_transactions_transactions_routing_module.transactionsroutingmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/transactions/transactions-routing.module.TransactionsRoutingModule"},{"id":664,"kind":1,"name":"app/pages/transactions/transactions.component","url":"modules/app_pages_transactions_transactions_component.html","classes":"tsd-kind-module"},{"id":665,"kind":128,"name":"TransactionsComponent","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/transactions/transactions.component"},{"id":666,"kind":512,"name":"constructor","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":667,"kind":1024,"name":"transactionDataSource","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#transactiondatasource","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":668,"kind":1024,"name":"transactionDisplayedColumns","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#transactiondisplayedcolumns","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":669,"kind":1024,"name":"defaultPageSize","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#defaultpagesize","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":670,"kind":1024,"name":"pageSizeOptions","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#pagesizeoptions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":671,"kind":1024,"name":"transactions","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#transactions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":672,"kind":1024,"name":"transaction","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#transaction","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":673,"kind":1024,"name":"transactionsType","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#transactionstype","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":674,"kind":1024,"name":"transactionsTypes","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#transactionstypes","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":675,"kind":1024,"name":"paginator","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#paginator","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":676,"kind":1024,"name":"sort","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#sort","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":677,"kind":2048,"name":"ngOnInit","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":678,"kind":2048,"name":"viewTransaction","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#viewtransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":679,"kind":2048,"name":"doFilter","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#dofilter","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":680,"kind":2048,"name":"filterTransactions","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#filtertransactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":681,"kind":2048,"name":"ngAfterViewInit","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#ngafterviewinit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":682,"kind":2048,"name":"downloadCsv","url":"classes/app_pages_transactions_transactions_component.transactionscomponent.html#downloadcsv","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/pages/transactions/transactions.component.TransactionsComponent"},{"id":683,"kind":1,"name":"app/pages/transactions/transactions.module","url":"modules/app_pages_transactions_transactions_module.html","classes":"tsd-kind-module"},{"id":684,"kind":128,"name":"TransactionsModule","url":"classes/app_pages_transactions_transactions_module.transactionsmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/pages/transactions/transactions.module"},{"id":685,"kind":512,"name":"constructor","url":"classes/app_pages_transactions_transactions_module.transactionsmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/pages/transactions/transactions.module.TransactionsModule"},{"id":686,"kind":1,"name":"app/shared/_directives/menu-selection.directive","url":"modules/app_shared__directives_menu_selection_directive.html","classes":"tsd-kind-module"},{"id":687,"kind":128,"name":"MenuSelectionDirective","url":"classes/app_shared__directives_menu_selection_directive.menuselectiondirective.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/_directives/menu-selection.directive"},{"id":688,"kind":512,"name":"constructor","url":"classes/app_shared__directives_menu_selection_directive.menuselectiondirective.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/_directives/menu-selection.directive.MenuSelectionDirective"},{"id":689,"kind":2048,"name":"onMenuSelect","url":"classes/app_shared__directives_menu_selection_directive.menuselectiondirective.html#onmenuselect","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/_directives/menu-selection.directive.MenuSelectionDirective"},{"id":690,"kind":1,"name":"app/shared/_directives/menu-toggle.directive","url":"modules/app_shared__directives_menu_toggle_directive.html","classes":"tsd-kind-module"},{"id":691,"kind":128,"name":"MenuToggleDirective","url":"classes/app_shared__directives_menu_toggle_directive.menutoggledirective.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/_directives/menu-toggle.directive"},{"id":692,"kind":512,"name":"constructor","url":"classes/app_shared__directives_menu_toggle_directive.menutoggledirective.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/_directives/menu-toggle.directive.MenuToggleDirective"},{"id":693,"kind":2048,"name":"onMenuToggle","url":"classes/app_shared__directives_menu_toggle_directive.menutoggledirective.html#onmenutoggle","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/_directives/menu-toggle.directive.MenuToggleDirective"},{"id":694,"kind":1,"name":"app/shared/_pipes/safe.pipe","url":"modules/app_shared__pipes_safe_pipe.html","classes":"tsd-kind-module"},{"id":695,"kind":128,"name":"SafePipe","url":"classes/app_shared__pipes_safe_pipe.safepipe.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/_pipes/safe.pipe"},{"id":696,"kind":512,"name":"constructor","url":"classes/app_shared__pipes_safe_pipe.safepipe.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/_pipes/safe.pipe.SafePipe"},{"id":697,"kind":2048,"name":"transform","url":"classes/app_shared__pipes_safe_pipe.safepipe.html#transform","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/_pipes/safe.pipe.SafePipe"},{"id":698,"kind":1,"name":"app/shared/_pipes/token-ratio.pipe","url":"modules/app_shared__pipes_token_ratio_pipe.html","classes":"tsd-kind-module"},{"id":699,"kind":128,"name":"TokenRatioPipe","url":"classes/app_shared__pipes_token_ratio_pipe.tokenratiopipe.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/_pipes/token-ratio.pipe"},{"id":700,"kind":512,"name":"constructor","url":"classes/app_shared__pipes_token_ratio_pipe.tokenratiopipe.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/_pipes/token-ratio.pipe.TokenRatioPipe"},{"id":701,"kind":2048,"name":"transform","url":"classes/app_shared__pipes_token_ratio_pipe.tokenratiopipe.html#transform","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/_pipes/token-ratio.pipe.TokenRatioPipe"},{"id":702,"kind":1,"name":"app/shared/error-dialog/error-dialog.component","url":"modules/app_shared_error_dialog_error_dialog_component.html","classes":"tsd-kind-module"},{"id":703,"kind":128,"name":"ErrorDialogComponent","url":"classes/app_shared_error_dialog_error_dialog_component.errordialogcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/error-dialog/error-dialog.component"},{"id":704,"kind":512,"name":"constructor","url":"classes/app_shared_error_dialog_error_dialog_component.errordialogcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/error-dialog/error-dialog.component.ErrorDialogComponent"},{"id":705,"kind":1024,"name":"data","url":"classes/app_shared_error_dialog_error_dialog_component.errordialogcomponent.html#data","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/shared/error-dialog/error-dialog.component.ErrorDialogComponent"},{"id":706,"kind":1,"name":"app/shared/footer/footer.component","url":"modules/app_shared_footer_footer_component.html","classes":"tsd-kind-module"},{"id":707,"kind":128,"name":"FooterComponent","url":"classes/app_shared_footer_footer_component.footercomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/footer/footer.component"},{"id":708,"kind":512,"name":"constructor","url":"classes/app_shared_footer_footer_component.footercomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/footer/footer.component.FooterComponent"},{"id":709,"kind":2048,"name":"ngOnInit","url":"classes/app_shared_footer_footer_component.footercomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/footer/footer.component.FooterComponent"},{"id":710,"kind":1,"name":"app/shared/network-status/network-status.component","url":"modules/app_shared_network_status_network_status_component.html","classes":"tsd-kind-module"},{"id":711,"kind":128,"name":"NetworkStatusComponent","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/network-status/network-status.component"},{"id":712,"kind":512,"name":"constructor","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/network-status/network-status.component.NetworkStatusComponent"},{"id":713,"kind":1024,"name":"noInternetConnection","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html#nointernetconnection","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/shared/network-status/network-status.component.NetworkStatusComponent"},{"id":714,"kind":2048,"name":"ngOnInit","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/network-status/network-status.component.NetworkStatusComponent"},{"id":715,"kind":2048,"name":"handleNetworkChange","url":"classes/app_shared_network_status_network_status_component.networkstatuscomponent.html#handlenetworkchange","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/network-status/network-status.component.NetworkStatusComponent"},{"id":716,"kind":1,"name":"app/shared/shared.module","url":"modules/app_shared_shared_module.html","classes":"tsd-kind-module"},{"id":717,"kind":128,"name":"SharedModule","url":"classes/app_shared_shared_module.sharedmodule.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/shared.module"},{"id":718,"kind":512,"name":"constructor","url":"classes/app_shared_shared_module.sharedmodule.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/shared.module.SharedModule"},{"id":719,"kind":1,"name":"app/shared/sidebar/sidebar.component","url":"modules/app_shared_sidebar_sidebar_component.html","classes":"tsd-kind-module"},{"id":720,"kind":128,"name":"SidebarComponent","url":"classes/app_shared_sidebar_sidebar_component.sidebarcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/sidebar/sidebar.component"},{"id":721,"kind":512,"name":"constructor","url":"classes/app_shared_sidebar_sidebar_component.sidebarcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/sidebar/sidebar.component.SidebarComponent"},{"id":722,"kind":2048,"name":"ngOnInit","url":"classes/app_shared_sidebar_sidebar_component.sidebarcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/sidebar/sidebar.component.SidebarComponent"},{"id":723,"kind":1,"name":"app/shared/topbar/topbar.component","url":"modules/app_shared_topbar_topbar_component.html","classes":"tsd-kind-module"},{"id":724,"kind":128,"name":"TopbarComponent","url":"classes/app_shared_topbar_topbar_component.topbarcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/shared/topbar/topbar.component"},{"id":725,"kind":512,"name":"constructor","url":"classes/app_shared_topbar_topbar_component.topbarcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"app/shared/topbar/topbar.component.TopbarComponent"},{"id":726,"kind":2048,"name":"ngOnInit","url":"classes/app_shared_topbar_topbar_component.topbarcomponent.html#ngoninit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"app/shared/topbar/topbar.component.TopbarComponent"},{"id":727,"kind":1,"name":"assets/js/ethtx/dist/hex","url":"modules/assets_js_ethtx_dist_hex.html","classes":"tsd-kind-module"},{"id":728,"kind":64,"name":"fromHex","url":"modules/assets_js_ethtx_dist_hex.html#fromhex","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/hex"},{"id":729,"kind":64,"name":"toHex","url":"modules/assets_js_ethtx_dist_hex.html#tohex","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/hex"},{"id":730,"kind":64,"name":"strip0x","url":"modules/assets_js_ethtx_dist_hex.html#strip0x","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/hex"},{"id":731,"kind":64,"name":"add0x","url":"modules/assets_js_ethtx_dist_hex.html#add0x","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/hex"},{"id":732,"kind":1,"name":"assets/js/ethtx/dist","url":"modules/assets_js_ethtx_dist.html","classes":"tsd-kind-module"},{"id":733,"kind":1,"name":"assets/js/ethtx/dist/tx","url":"modules/assets_js_ethtx_dist_tx.html","classes":"tsd-kind-module"},{"id":734,"kind":128,"name":"Tx","url":"classes/assets_js_ethtx_dist_tx.tx.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"assets/js/ethtx/dist/tx"},{"id":735,"kind":512,"name":"constructor","url":"classes/assets_js_ethtx_dist_tx.tx.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":736,"kind":1024,"name":"nonce","url":"classes/assets_js_ethtx_dist_tx.tx.html#nonce","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":737,"kind":1024,"name":"gasPrice","url":"classes/assets_js_ethtx_dist_tx.tx.html#gasprice","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":738,"kind":1024,"name":"gasLimit","url":"classes/assets_js_ethtx_dist_tx.tx.html#gaslimit","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":739,"kind":1024,"name":"to","url":"classes/assets_js_ethtx_dist_tx.tx.html#to","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":740,"kind":1024,"name":"value","url":"classes/assets_js_ethtx_dist_tx.tx.html#value","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":741,"kind":1024,"name":"data","url":"classes/assets_js_ethtx_dist_tx.tx.html#data","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":742,"kind":1024,"name":"v","url":"classes/assets_js_ethtx_dist_tx.tx.html#v","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":743,"kind":1024,"name":"r","url":"classes/assets_js_ethtx_dist_tx.tx.html#r","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":744,"kind":1024,"name":"s","url":"classes/assets_js_ethtx_dist_tx.tx.html#s","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":745,"kind":1024,"name":"chainId","url":"classes/assets_js_ethtx_dist_tx.tx.html#chainid","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":746,"kind":1024,"name":"_signatureSet","url":"classes/assets_js_ethtx_dist_tx.tx.html#_signatureset","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":747,"kind":1024,"name":"_workBuffer","url":"classes/assets_js_ethtx_dist_tx.tx.html#_workbuffer","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":748,"kind":1024,"name":"_outBuffer","url":"classes/assets_js_ethtx_dist_tx.tx.html#_outbuffer","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":749,"kind":1024,"name":"_outBufferCursor","url":"classes/assets_js_ethtx_dist_tx.tx.html#_outbuffercursor","classes":"tsd-kind-property tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":750,"kind":1024,"name":"serializeNumber","url":"classes/assets_js_ethtx_dist_tx.tx.html#serializenumber","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":751,"kind":1024,"name":"write","url":"classes/assets_js_ethtx_dist_tx.tx.html#write","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":752,"kind":2048,"name":"serializeBytes","url":"classes/assets_js_ethtx_dist_tx.tx.html#serializebytes","classes":"tsd-kind-method tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":753,"kind":2048,"name":"canonicalOrder","url":"classes/assets_js_ethtx_dist_tx.tx.html#canonicalorder","classes":"tsd-kind-method tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":754,"kind":2048,"name":"serializeRLP","url":"classes/assets_js_ethtx_dist_tx.tx.html#serializerlp","classes":"tsd-kind-method tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":755,"kind":2048,"name":"message","url":"classes/assets_js_ethtx_dist_tx.tx.html#message","classes":"tsd-kind-method tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":756,"kind":2048,"name":"setSignature","url":"classes/assets_js_ethtx_dist_tx.tx.html#setsignature","classes":"tsd-kind-method tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":757,"kind":2048,"name":"clearSignature","url":"classes/assets_js_ethtx_dist_tx.tx.html#clearsignature","classes":"tsd-kind-method tsd-parent-kind-class","parent":"assets/js/ethtx/dist/tx.Tx"},{"id":758,"kind":64,"name":"stringToValue","url":"modules/assets_js_ethtx_dist_tx.html#stringtovalue","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/tx"},{"id":759,"kind":64,"name":"hexToValue","url":"modules/assets_js_ethtx_dist_tx.html#hextovalue","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/tx"},{"id":760,"kind":64,"name":"toValue","url":"modules/assets_js_ethtx_dist_tx.html#tovalue","classes":"tsd-kind-function tsd-parent-kind-module","parent":"assets/js/ethtx/dist/tx"},{"id":761,"kind":1,"name":"environments/environment.dev","url":"modules/environments_environment_dev.html","classes":"tsd-kind-module"},{"id":762,"kind":32,"name":"environment","url":"modules/environments_environment_dev.html#environment","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"environments/environment.dev"},{"id":763,"kind":65536,"name":"__type","url":"modules/environments_environment_dev.html#environment.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable","parent":"environments/environment.dev.environment"},{"id":764,"kind":1024,"name":"production","url":"modules/environments_environment_dev.html#environment.__type.production","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":765,"kind":1024,"name":"bloxbergChainId","url":"modules/environments_environment_dev.html#environment.__type.bloxbergchainid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":766,"kind":1024,"name":"logLevel","url":"modules/environments_environment_dev.html#environment.__type.loglevel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":767,"kind":1024,"name":"serverLogLevel","url":"modules/environments_environment_dev.html#environment.__type.serverloglevel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":768,"kind":1024,"name":"loggingUrl","url":"modules/environments_environment_dev.html#environment.__type.loggingurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":769,"kind":1024,"name":"cicMetaUrl","url":"modules/environments_environment_dev.html#environment.__type.cicmetaurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":770,"kind":1024,"name":"publicKeysUrl","url":"modules/environments_environment_dev.html#environment.__type.publickeysurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":771,"kind":1024,"name":"cicCacheUrl","url":"modules/environments_environment_dev.html#environment.__type.ciccacheurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":772,"kind":1024,"name":"web3Provider","url":"modules/environments_environment_dev.html#environment.__type.web3provider","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":773,"kind":1024,"name":"cicUssdUrl","url":"modules/environments_environment_dev.html#environment.__type.cicussdurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":774,"kind":1024,"name":"registryAddress","url":"modules/environments_environment_dev.html#environment.__type.registryaddress","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":775,"kind":1024,"name":"trustedDeclaratorAddress","url":"modules/environments_environment_dev.html#environment.__type.trusteddeclaratoraddress","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.dev.environment.__type"},{"id":776,"kind":1,"name":"environments/environment.prod","url":"modules/environments_environment_prod.html","classes":"tsd-kind-module"},{"id":777,"kind":32,"name":"environment","url":"modules/environments_environment_prod.html#environment","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"environments/environment.prod"},{"id":778,"kind":65536,"name":"__type","url":"modules/environments_environment_prod.html#environment.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable","parent":"environments/environment.prod.environment"},{"id":779,"kind":1024,"name":"production","url":"modules/environments_environment_prod.html#environment.__type.production","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":780,"kind":1024,"name":"bloxbergChainId","url":"modules/environments_environment_prod.html#environment.__type.bloxbergchainid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":781,"kind":1024,"name":"logLevel","url":"modules/environments_environment_prod.html#environment.__type.loglevel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":782,"kind":1024,"name":"serverLogLevel","url":"modules/environments_environment_prod.html#environment.__type.serverloglevel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":783,"kind":1024,"name":"loggingUrl","url":"modules/environments_environment_prod.html#environment.__type.loggingurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":784,"kind":1024,"name":"cicMetaUrl","url":"modules/environments_environment_prod.html#environment.__type.cicmetaurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":785,"kind":1024,"name":"publicKeysUrl","url":"modules/environments_environment_prod.html#environment.__type.publickeysurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":786,"kind":1024,"name":"cicCacheUrl","url":"modules/environments_environment_prod.html#environment.__type.ciccacheurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":787,"kind":1024,"name":"web3Provider","url":"modules/environments_environment_prod.html#environment.__type.web3provider","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":788,"kind":1024,"name":"cicUssdUrl","url":"modules/environments_environment_prod.html#environment.__type.cicussdurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":789,"kind":1024,"name":"registryAddress","url":"modules/environments_environment_prod.html#environment.__type.registryaddress","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":790,"kind":1024,"name":"trustedDeclaratorAddress","url":"modules/environments_environment_prod.html#environment.__type.trusteddeclaratoraddress","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.prod.environment.__type"},{"id":791,"kind":1,"name":"environments/environment","url":"modules/environments_environment.html","classes":"tsd-kind-module"},{"id":792,"kind":32,"name":"environment","url":"modules/environments_environment.html#environment","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"environments/environment"},{"id":793,"kind":65536,"name":"__type","url":"modules/environments_environment.html#environment.__type","classes":"tsd-kind-type-literal tsd-parent-kind-variable","parent":"environments/environment.environment"},{"id":794,"kind":1024,"name":"production","url":"modules/environments_environment.html#environment.__type.production","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":795,"kind":1024,"name":"bloxbergChainId","url":"modules/environments_environment.html#environment.__type.bloxbergchainid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":796,"kind":1024,"name":"logLevel","url":"modules/environments_environment.html#environment.__type.loglevel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":797,"kind":1024,"name":"serverLogLevel","url":"modules/environments_environment.html#environment.__type.serverloglevel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":798,"kind":1024,"name":"loggingUrl","url":"modules/environments_environment.html#environment.__type.loggingurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":799,"kind":1024,"name":"cicMetaUrl","url":"modules/environments_environment.html#environment.__type.cicmetaurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":800,"kind":1024,"name":"publicKeysUrl","url":"modules/environments_environment.html#environment.__type.publickeysurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":801,"kind":1024,"name":"cicCacheUrl","url":"modules/environments_environment.html#environment.__type.ciccacheurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":802,"kind":1024,"name":"web3Provider","url":"modules/environments_environment.html#environment.__type.web3provider","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":803,"kind":1024,"name":"cicUssdUrl","url":"modules/environments_environment.html#environment.__type.cicussdurl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":804,"kind":1024,"name":"registryAddress","url":"modules/environments_environment.html#environment.__type.registryaddress","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":805,"kind":1024,"name":"trustedDeclaratorAddress","url":"modules/environments_environment.html#environment.__type.trusteddeclaratoraddress","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"environments/environment.environment.__type"},{"id":806,"kind":1,"name":"main","url":"modules/main.html","classes":"tsd-kind-module"},{"id":807,"kind":1,"name":"polyfills","url":"modules/polyfills.html","classes":"tsd-kind-module"},{"id":808,"kind":1,"name":"test","url":"modules/test.html","classes":"tsd-kind-module"},{"id":809,"kind":1,"name":"testing/activated-route-stub","url":"modules/testing_activated_route_stub.html","classes":"tsd-kind-module"},{"id":810,"kind":128,"name":"ActivatedRouteStub","url":"classes/testing_activated_route_stub.activatedroutestub.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/activated-route-stub"},{"id":811,"kind":512,"name":"constructor","url":"classes/testing_activated_route_stub.activatedroutestub.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/activated-route-stub.ActivatedRouteStub"},{"id":812,"kind":1024,"name":"subject","url":"classes/testing_activated_route_stub.activatedroutestub.html#subject","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"testing/activated-route-stub.ActivatedRouteStub"},{"id":813,"kind":1024,"name":"paramMap","url":"classes/testing_activated_route_stub.activatedroutestub.html#parammap","classes":"tsd-kind-property tsd-parent-kind-class","parent":"testing/activated-route-stub.ActivatedRouteStub"},{"id":814,"kind":2048,"name":"setParamMap","url":"classes/testing_activated_route_stub.activatedroutestub.html#setparammap","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/activated-route-stub.ActivatedRouteStub"},{"id":815,"kind":1,"name":"testing","url":"modules/testing.html","classes":"tsd-kind-module"},{"id":816,"kind":1,"name":"testing/router-link-directive-stub","url":"modules/testing_router_link_directive_stub.html","classes":"tsd-kind-module"},{"id":817,"kind":128,"name":"RouterLinkDirectiveStub","url":"classes/testing_router_link_directive_stub.routerlinkdirectivestub.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/router-link-directive-stub"},{"id":818,"kind":512,"name":"constructor","url":"classes/testing_router_link_directive_stub.routerlinkdirectivestub.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/router-link-directive-stub.RouterLinkDirectiveStub"},{"id":819,"kind":1024,"name":"linkParams","url":"classes/testing_router_link_directive_stub.routerlinkdirectivestub.html#linkparams","classes":"tsd-kind-property tsd-parent-kind-class","parent":"testing/router-link-directive-stub.RouterLinkDirectiveStub"},{"id":820,"kind":1024,"name":"navigatedTo","url":"classes/testing_router_link_directive_stub.routerlinkdirectivestub.html#navigatedto","classes":"tsd-kind-property tsd-parent-kind-class","parent":"testing/router-link-directive-stub.RouterLinkDirectiveStub"},{"id":821,"kind":2048,"name":"onClick","url":"classes/testing_router_link_directive_stub.routerlinkdirectivestub.html#onclick","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/router-link-directive-stub.RouterLinkDirectiveStub"},{"id":822,"kind":1,"name":"testing/shared-module-stub","url":"modules/testing_shared_module_stub.html","classes":"tsd-kind-module"},{"id":823,"kind":128,"name":"SidebarStubComponent","url":"classes/testing_shared_module_stub.sidebarstubcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/shared-module-stub"},{"id":824,"kind":512,"name":"constructor","url":"classes/testing_shared_module_stub.sidebarstubcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/shared-module-stub.SidebarStubComponent"},{"id":825,"kind":128,"name":"TopbarStubComponent","url":"classes/testing_shared_module_stub.topbarstubcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/shared-module-stub"},{"id":826,"kind":512,"name":"constructor","url":"classes/testing_shared_module_stub.topbarstubcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/shared-module-stub.TopbarStubComponent"},{"id":827,"kind":128,"name":"FooterStubComponent","url":"classes/testing_shared_module_stub.footerstubcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/shared-module-stub"},{"id":828,"kind":512,"name":"constructor","url":"classes/testing_shared_module_stub.footerstubcomponent.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/shared-module-stub.FooterStubComponent"},{"id":829,"kind":1,"name":"testing/token-service-stub","url":"modules/testing_token_service_stub.html","classes":"tsd-kind-module"},{"id":830,"kind":128,"name":"TokenServiceStub","url":"classes/testing_token_service_stub.tokenservicestub.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/token-service-stub"},{"id":831,"kind":512,"name":"constructor","url":"classes/testing_token_service_stub.tokenservicestub.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/token-service-stub.TokenServiceStub"},{"id":832,"kind":2048,"name":"getBySymbol","url":"classes/testing_token_service_stub.tokenservicestub.html#getbysymbol","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/token-service-stub.TokenServiceStub"},{"id":833,"kind":1,"name":"testing/transaction-service-stub","url":"modules/testing_transaction_service_stub.html","classes":"tsd-kind-module"},{"id":834,"kind":128,"name":"TransactionServiceStub","url":"classes/testing_transaction_service_stub.transactionservicestub.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/transaction-service-stub"},{"id":835,"kind":512,"name":"constructor","url":"classes/testing_transaction_service_stub.transactionservicestub.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/transaction-service-stub.TransactionServiceStub"},{"id":836,"kind":2048,"name":"setTransaction","url":"classes/testing_transaction_service_stub.transactionservicestub.html#settransaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/transaction-service-stub.TransactionServiceStub"},{"id":837,"kind":2048,"name":"setConversion","url":"classes/testing_transaction_service_stub.transactionservicestub.html#setconversion","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/transaction-service-stub.TransactionServiceStub"},{"id":838,"kind":2048,"name":"getAllTransactions","url":"classes/testing_transaction_service_stub.transactionservicestub.html#getalltransactions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/transaction-service-stub.TransactionServiceStub"},{"id":839,"kind":1,"name":"testing/user-service-stub","url":"modules/testing_user_service_stub.html","classes":"tsd-kind-module"},{"id":840,"kind":128,"name":"UserServiceStub","url":"classes/testing_user_service_stub.userservicestub.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"testing/user-service-stub"},{"id":841,"kind":512,"name":"constructor","url":"classes/testing_user_service_stub.userservicestub.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":842,"kind":1024,"name":"users","url":"classes/testing_user_service_stub.userservicestub.html#users","classes":"tsd-kind-property tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":843,"kind":1024,"name":"actions","url":"classes/testing_user_service_stub.userservicestub.html#actions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":844,"kind":2048,"name":"getUserById","url":"classes/testing_user_service_stub.userservicestub.html#getuserbyid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":845,"kind":2048,"name":"getUser","url":"classes/testing_user_service_stub.userservicestub.html#getuser","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":846,"kind":2048,"name":"getActionById","url":"classes/testing_user_service_stub.userservicestub.html#getactionbyid","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":847,"kind":2048,"name":"approveAction","url":"classes/testing_user_service_stub.userservicestub.html#approveaction","classes":"tsd-kind-method tsd-parent-kind-class","parent":"testing/user-service-stub.UserServiceStub"},{"id":848,"kind":16777216,"name":"AccountIndex","url":"modules/app__eth.html#accountindex","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_eth"},{"id":849,"kind":16777216,"name":"TokenRegistry","url":"modules/app__eth.html#tokenregistry","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_eth"},{"id":850,"kind":16777216,"name":"AuthGuard","url":"modules/app__guards.html#authguard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_guards"},{"id":851,"kind":16777216,"name":"RoleGuard","url":"modules/app__guards.html#roleguard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_guards"},{"id":852,"kind":16777216,"name":"arraySum","url":"modules/app__helpers.html#arraysum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":853,"kind":16777216,"name":"copyToClipboard","url":"modules/app__helpers.html#copytoclipboard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":854,"kind":16777216,"name":"CustomValidator","url":"modules/app__helpers.html#customvalidator","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":855,"kind":16777216,"name":"CustomErrorStateMatcher","url":"modules/app__helpers.html#customerrorstatematcher","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":856,"kind":16777216,"name":"exportCsv","url":"modules/app__helpers.html#exportcsv","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":857,"kind":16777216,"name":"HttpError","url":"modules/app__helpers.html#httperror","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":858,"kind":16777216,"name":"GlobalErrorHandler","url":"modules/app__helpers.html#globalerrorhandler","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":859,"kind":16777216,"name":"HttpGetter","url":"modules/app__helpers.html#httpgetter","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":860,"kind":16777216,"name":"MockBackendInterceptor","url":"modules/app__helpers.html#mockbackendinterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":861,"kind":16777216,"name":"MockBackendProvider","url":"modules/app__helpers.html#mockbackendprovider","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":862,"kind":16777216,"name":"readCsv","url":"modules/app__helpers.html#readcsv","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":863,"kind":16777216,"name":"personValidation","url":"modules/app__helpers.html#personvalidation","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":864,"kind":16777216,"name":"vcardValidation","url":"modules/app__helpers.html#vcardvalidation","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":865,"kind":16777216,"name":"ErrorInterceptor","url":"modules/app__interceptors.html#errorinterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_interceptors"},{"id":866,"kind":16777216,"name":"HttpConfigInterceptor","url":"modules/app__interceptors.html#httpconfiginterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_interceptors"},{"id":867,"kind":16777216,"name":"LoggingInterceptor","url":"modules/app__interceptors.html#logginginterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_interceptors"},{"id":868,"kind":16777216,"name":"AccountDetails","url":"modules/app__models.html#accountdetails","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":869,"kind":16777216,"name":"Meta","url":"modules/app__models.html#meta","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":870,"kind":16777216,"name":"MetaResponse","url":"modules/app__models.html#metaresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":871,"kind":16777216,"name":"Signature","url":"modules/app__models.html#signature","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":872,"kind":16777216,"name":"defaultAccount","url":"modules/app__models.html#defaultaccount","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":873,"kind":16777216,"name":"Action","url":"modules/app__models.html#action","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":874,"kind":16777216,"name":"AreaName","url":"modules/app__models.html#areaname","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":875,"kind":16777216,"name":"AreaType","url":"modules/app__models.html#areatype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":876,"kind":16777216,"name":"Category","url":"modules/app__models.html#category","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":877,"kind":16777216,"name":"Settings","url":"modules/app__models.html#settings","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":878,"kind":16777216,"name":"W3","url":"modules/app__models.html#w3","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":879,"kind":16777216,"name":"Staff","url":"modules/app__models.html#staff","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":880,"kind":16777216,"name":"Token","url":"modules/app__models.html#token","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":881,"kind":16777216,"name":"BlocksBloom","url":"modules/app__models.html#blocksbloom","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":882,"kind":16777216,"name":"Conversion","url":"modules/app__models.html#conversion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":883,"kind":16777216,"name":"Transaction","url":"modules/app__models.html#transaction","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":884,"kind":16777216,"name":"Tx","url":"modules/app__models.html#tx","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":885,"kind":16777216,"name":"TxToken","url":"modules/app__models.html#txtoken","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":886,"kind":16777216,"name":"MutablePgpKeyStore","url":"modules/app__pgp.html#mutablepgpkeystore","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":887,"kind":16777216,"name":"MutableKeyStore","url":"modules/app__pgp.html#mutablekeystore","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":888,"kind":16777216,"name":"Signable","url":"modules/app__pgp.html#signable","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":889,"kind":16777216,"name":"Signature","url":"modules/app__pgp.html#signature","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":890,"kind":16777216,"name":"Signer","url":"modules/app__pgp.html#signer","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":891,"kind":16777216,"name":"PGPSigner","url":"modules/app__pgp.html#pgpsigner","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_pgp"},{"id":892,"kind":16777216,"name":"AuthService","url":"modules/app__services.html#authservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":893,"kind":16777216,"name":"TransactionService","url":"modules/app__services.html#transactionservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":894,"kind":16777216,"name":"UserService","url":"modules/app__services.html#userservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":895,"kind":16777216,"name":"TokenService","url":"modules/app__services.html#tokenservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":896,"kind":16777216,"name":"BlockSyncService","url":"modules/app__services.html#blocksyncservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":897,"kind":16777216,"name":"LocationService","url":"modules/app__services.html#locationservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":898,"kind":16777216,"name":"LoggingService","url":"modules/app__services.html#loggingservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":899,"kind":16777216,"name":"ErrorDialogService","url":"modules/app__services.html#errordialogservice","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_services"},{"id":900,"kind":16777216,"name":"Tx","url":"modules/assets_js_ethtx_dist.html#tx","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"assets/js/ethtx/dist"},{"id":901,"kind":16777216,"name":"ActivatedRouteStub","url":"modules/testing.html#activatedroutestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":902,"kind":16777216,"name":"RouterLinkDirectiveStub","url":"modules/testing.html#routerlinkdirectivestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":903,"kind":16777216,"name":"SidebarStubComponent","url":"modules/testing.html#sidebarstubcomponent","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":904,"kind":16777216,"name":"TopbarStubComponent","url":"modules/testing.html#topbarstubcomponent","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":905,"kind":16777216,"name":"FooterStubComponent","url":"modules/testing.html#footerstubcomponent","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":906,"kind":16777216,"name":"UserServiceStub","url":"modules/testing.html#userservicestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":907,"kind":16777216,"name":"TokenServiceStub","url":"modules/testing.html#tokenservicestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"},{"id":908,"kind":16777216,"name":"TransactionServiceStub","url":"modules/testing.html#transactionservicestub","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"testing"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,60.455]],["parent/0",[]],["name/1",[1,60.455]],["parent/1",[0,6.746]],["name/2",[2,25.656]],["parent/2",[3,5.346]],["name/3",[4,60.455]],["parent/3",[3,5.346]],["name/4",[5,60.455]],["parent/4",[3,5.346]],["name/5",[6,60.455]],["parent/5",[3,5.346]],["name/6",[7,65.692]],["parent/6",[3,5.346]],["name/7",[8,65.692]],["parent/7",[3,5.346]],["name/8",[9,65.692]],["parent/8",[3,5.346]],["name/9",[10,65.692]],["parent/9",[3,5.346]],["name/10",[11,57.006]],["parent/10",[]],["name/11",[12,33.545,13,35.283]],["parent/11",[]],["name/12",[14,57.006]],["parent/12",[12,3.942,13,4.146]],["name/13",[2,25.656]],["parent/13",[12,3.942,15,4.146]],["name/14",[4,60.455]],["parent/14",[12,3.942,15,4.146]],["name/15",[5,60.455]],["parent/15",[12,3.942,15,4.146]],["name/16",[6,60.455]],["parent/16",[12,3.942,15,4.146]],["name/17",[16,65.692]],["parent/17",[12,3.942,15,4.146]],["name/18",[17,65.692]],["parent/18",[12,3.942,15,4.146]],["name/19",[18,65.692]],["parent/19",[12,3.942,15,4.146]],["name/20",[19,60.455]],["parent/20",[]],["name/21",[20,60.455]],["parent/21",[19,6.746]],["name/22",[2,25.656]],["parent/22",[21,6.746]],["name/23",[22,60.455]],["parent/23",[21,6.746]],["name/24",[23,57.006]],["parent/24",[]],["name/25",[24,60.455]],["parent/25",[]],["name/26",[25,60.455]],["parent/26",[24,6.746]],["name/27",[2,25.656]],["parent/27",[26,6.746]],["name/28",[22,60.455]],["parent/28",[26,6.746]],["name/29",[27,43.361,28,43.361]],["parent/29",[]],["name/30",[29,60.455]],["parent/30",[27,5.095,28,5.095]],["name/31",[30,43.361,31,43.361]],["parent/31",[]],["name/32",[32,60.455]],["parent/32",[30,5.095,31,5.095]],["name/33",[33,24.937,34,19.128,35,24.937,36,22.538]],["parent/33",[]],["name/34",[37,60.455]],["parent/34",[33,3.08,34,2.363,35,3.08,36,2.784]],["name/35",[2,25.656]],["parent/35",[33,3.08,34,2.363,35,3.08,38,3.421]],["name/36",[39,65.692]],["parent/36",[33,3.08,34,2.363,35,3.08,38,3.421]],["name/37",[40,60.455]],["parent/37",[]],["name/38",[41,60.455]],["parent/38",[40,6.746]],["name/39",[42,65.692]],["parent/39",[43,6.361]],["name/40",[44,65.692]],["parent/40",[43,6.361]],["name/41",[2,25.656]],["parent/41",[43,6.361]],["name/42",[45,43.361,46,39.039]],["parent/42",[]],["name/43",[47,60.455]],["parent/43",[45,5.095,46,4.588]],["name/44",[34,23.344,48,25.055,49,31.874]],["parent/44",[]],["name/45",[50,60.455]],["parent/45",[34,2.827,48,3.034,49,3.86]],["name/46",[51,43.167]],["parent/46",[34,2.827,48,3.034,52,3.86]],["name/47",[2,25.656]],["parent/47",[34,2.827,48,3.034,52,3.86]],["name/48",[53,65.692]],["parent/48",[34,2.827,48,3.034,52,3.86]],["name/49",[54,60.455]],["parent/49",[34,2.827,48,3.034,49,3.86]],["name/50",[2,25.656]],["parent/50",[34,2.827,48,3.034,55,3.546]],["name/51",[56,65.692]],["parent/51",[34,2.827,48,3.034,55,3.546]],["name/52",[57,65.692]],["parent/52",[34,2.827,48,3.034,55,3.546]],["name/53",[58,65.692]],["parent/53",[34,2.827,48,3.034,55,3.546]],["name/54",[59,65.692]],["parent/54",[34,2.827,48,3.034,55,3.546]],["name/55",[60,43.361,61,43.361]],["parent/55",[]],["name/56",[62,60.455]],["parent/56",[60,5.095,61,5.095]],["name/57",[63,42.434]],["parent/57",[]],["name/58",[64,33.545,65,40.887]],["parent/58",[]],["name/59",[66,60.455]],["parent/59",[64,3.942,65,4.805]],["name/60",[2,25.656]],["parent/60",[64,3.942,67,5.095]],["name/61",[68,54.429]],["parent/61",[64,3.942,67,5.095]],["name/62",[69,60.455]],["parent/62",[64,3.942,65,4.805]],["name/63",[51,43.167]],["parent/63",[64,3.942,70,5.537]],["name/64",[71,65.692]],["parent/64",[64,3.942,72,4.805]],["name/65",[73,65.692]],["parent/65",[64,3.942,72,4.805]],["name/66",[74,65.692]],["parent/66",[64,3.942,72,4.805]],["name/67",[46,39.039,75,43.361]],["parent/67",[]],["name/68",[76,60.455]],["parent/68",[46,4.588,75,5.095]],["name/69",[77,40.887,78,40.887]],["parent/69",[]],["name/70",[79,60.455]],["parent/70",[77,4.805,78,4.805]],["name/71",[80,60.455]],["parent/71",[77,4.805,78,4.805]],["name/72",[81,60.455]],["parent/72",[]],["name/73",[82,60.455]],["parent/73",[81,6.746]],["name/74",[2,25.656]],["parent/74",[83,6.746]],["name/75",[68,54.429]],["parent/75",[83,6.746]],["name/76",[84,39.039,85,43.361]],["parent/76",[]],["name/77",[86,60.455]],["parent/77",[84,4.588,85,5.095]],["name/78",[2,25.656]],["parent/78",[84,4.588,87,5.095]],["name/79",[68,54.429]],["parent/79",[84,4.588,87,5.095]],["name/80",[88,54.429]],["parent/80",[]],["name/81",[89,60.455]],["parent/81",[]],["name/82",[90,60.455]],["parent/82",[89,6.746]],["name/83",[2,25.656]],["parent/83",[91,6.746]],["name/84",[68,54.429]],["parent/84",[91,6.746]],["name/85",[92,50.659]],["parent/85",[]],["name/86",[93,60.455]],["parent/86",[92,5.653]],["name/87",[94,65.692]],["parent/87",[95,4.817]],["name/88",[96,65.692]],["parent/88",[95,4.817]],["name/89",[97,65.692]],["parent/89",[95,4.817]],["name/90",[98,60.455]],["parent/90",[95,4.817]],["name/91",[99,60.455]],["parent/91",[95,4.817]],["name/92",[100,65.692]],["parent/92",[95,4.817]],["name/93",[51,43.167]],["parent/93",[95,4.817]],["name/94",[101,65.692]],["parent/94",[102,4.905]],["name/95",[51,43.167]],["parent/95",[102,4.905]],["name/96",[103,65.692]],["parent/96",[104,6.746]],["name/97",[105,65.692]],["parent/97",[104,6.746]],["name/98",[106,65.692]],["parent/98",[102,4.905]],["name/99",[107,65.692]],["parent/99",[102,4.905]],["name/100",[108,65.692]],["parent/100",[95,4.817]],["name/101",[51,43.167]],["parent/101",[95,4.817]],["name/102",[109,60.455]],["parent/102",[102,4.905]],["name/103",[110,65.692]],["parent/103",[102,4.905]],["name/104",[111,65.692]],["parent/104",[102,4.905]],["name/105",[112,60.455]],["parent/105",[95,4.817]],["name/106",[113,57.006]],["parent/106",[95,4.817]],["name/107",[114,65.692]],["parent/107",[95,4.817]],["name/108",[51,43.167]],["parent/108",[95,4.817]],["name/109",[115,60.455]],["parent/109",[102,4.905]],["name/110",[116,65.692]],["parent/110",[102,4.905]],["name/111",[117,65.692]],["parent/111",[102,4.905]],["name/112",[118,65.692]],["parent/112",[102,4.905]],["name/113",[119,65.692]],["parent/113",[102,4.905]],["name/114",[120,60.455]],["parent/114",[92,5.653]],["name/115",[121,52.372]],["parent/115",[122,6.361]],["name/116",[123,54.429]],["parent/116",[122,6.361]],["name/117",[124,50.659]],["parent/117",[122,6.361]],["name/118",[125,60.455]],["parent/118",[92,5.653]],["name/119",[123,54.429]],["parent/119",[126,6.746]],["name/120",[127,65.692]],["parent/120",[126,6.746]],["name/121",[124,50.659]],["parent/121",[92,5.653]],["name/122",[128,57.006]],["parent/122",[129,6.074]],["name/123",[121,52.372]],["parent/123",[129,6.074]],["name/124",[130,57.006]],["parent/124",[129,6.074]],["name/125",[131,54.429]],["parent/125",[129,6.074]],["name/126",[132,60.455]],["parent/126",[92,5.653]],["name/127",[133,39.397]],["parent/127",[]],["name/128",[134,52.372]],["parent/128",[]],["name/129",[135,54.429]],["parent/129",[134,5.844]],["name/130",[123,54.429]],["parent/130",[136,5.844]],["name/131",[137,60.455]],["parent/131",[136,5.844]],["name/132",[138,65.692]],["parent/132",[136,5.844]],["name/133",[135,54.429]],["parent/133",[136,5.844]],["name/134",[139,65.692]],["parent/134",[136,5.844]],["name/135",[140,60.455]],["parent/135",[134,5.844]],["name/136",[141,50.659]],["parent/136",[142,6.746]],["name/137",[143,65.692]],["parent/137",[142,6.746]],["name/138",[144,60.455]],["parent/138",[134,5.844]],["name/139",[141,50.659]],["parent/139",[145,6.746]],["name/140",[109,60.455]],["parent/140",[145,6.746]],["name/141",[113,57.006]],["parent/141",[134,5.844]],["name/142",[141,50.659]],["parent/142",[146,6.746]],["name/143",[112,60.455]],["parent/143",[146,6.746]],["name/144",[147,57.006]],["parent/144",[]],["name/145",[148,60.455]],["parent/145",[147,6.361]],["name/146",[2,25.656]],["parent/146",[149,5.844]],["name/147",[150,57.006]],["parent/147",[149,5.844]],["name/148",[151,65.692]],["parent/148",[149,5.844]],["name/149",[13,49.192]],["parent/149",[149,5.844]],["name/150",[152,65.692]],["parent/150",[149,5.844]],["name/151",[150,57.006]],["parent/151",[147,6.361]],["name/152",[131,54.429]],["parent/152",[153,6.746]],["name/153",[154,65.692]],["parent/153",[153,6.746]],["name/154",[155,60.455]],["parent/154",[]],["name/155",[156,60.455]],["parent/155",[155,6.746]],["name/156",[157,65.692]],["parent/156",[158,5.844]],["name/157",[115,60.455]],["parent/157",[158,5.844]],["name/158",[141,50.659]],["parent/158",[158,5.844]],["name/159",[159,65.692]],["parent/159",[158,5.844]],["name/160",[160,65.692]],["parent/160",[158,5.844]],["name/161",[161,60.455]],["parent/161",[]],["name/162",[162,54.429]],["parent/162",[161,6.746]],["name/163",[141,50.659]],["parent/163",[163,5.219]],["name/164",[164,60.455]],["parent/164",[163,5.219]],["name/165",[165,60.455]],["parent/165",[163,5.219]],["name/166",[166,65.692]],["parent/166",[163,5.219]],["name/167",[167,65.692]],["parent/167",[163,5.219]],["name/168",[168,65.692]],["parent/168",[163,5.219]],["name/169",[51,43.167]],["parent/169",[163,5.219]],["name/170",[169,65.692]],["parent/170",[170,6.746]],["name/171",[51,43.167]],["parent/171",[170,6.746]],["name/172",[171,65.692]],["parent/172",[172,6.746]],["name/173",[99,60.455]],["parent/173",[172,6.746]],["name/174",[173,65.692]],["parent/174",[163,5.219]],["name/175",[174,65.692]],["parent/175",[163,5.219]],["name/176",[175,50.659]],["parent/176",[]],["name/177",[176,60.455]],["parent/177",[175,5.653]],["name/178",[177,65.692]],["parent/178",[178,5.844]],["name/179",[179,65.692]],["parent/179",[178,5.844]],["name/180",[180,65.692]],["parent/180",[178,5.844]],["name/181",[181,65.692]],["parent/181",[178,5.844]],["name/182",[182,65.692]],["parent/182",[178,5.844]],["name/183",[183,60.455]],["parent/183",[175,5.653]],["name/184",[184,65.692]],["parent/184",[185,5.49]],["name/185",[186,65.692]],["parent/185",[185,5.49]],["name/186",[187,65.692]],["parent/186",[185,5.49]],["name/187",[188,60.455]],["parent/187",[185,5.49]],["name/188",[189,65.692]],["parent/188",[185,5.49]],["name/189",[137,60.455]],["parent/189",[185,5.49]],["name/190",[190,50.659]],["parent/190",[185,5.49]],["name/191",[191,52.372]],["parent/191",[175,5.653]],["name/192",[192,65.692]],["parent/192",[193,5.346]],["name/193",[194,65.692]],["parent/193",[193,5.346]],["name/194",[195,60.455]],["parent/194",[193,5.346]],["name/195",[196,65.692]],["parent/195",[193,5.346]],["name/196",[162,54.429]],["parent/196",[193,5.346]],["name/197",[190,50.659]],["parent/197",[193,5.346]],["name/198",[197,60.455]],["parent/198",[193,5.346]],["name/199",[98,60.455]],["parent/199",[193,5.346]],["name/200",[190,50.659]],["parent/200",[175,5.653]],["name/201",[198,65.692]],["parent/201",[199,5.844]],["name/202",[200,65.692]],["parent/202",[199,5.844]],["name/203",[201,65.692]],["parent/203",[199,5.844]],["name/204",[202,65.692]],["parent/204",[199,5.844]],["name/205",[203,65.692]],["parent/205",[199,5.844]],["name/206",[204,60.455]],["parent/206",[175,5.653]],["name/207",[165,60.455]],["parent/207",[205,6.361]],["name/208",[141,50.659]],["parent/208",[205,6.361]],["name/209",[164,60.455]],["parent/209",[205,6.361]],["name/210",[206,49.192]],["parent/210",[]],["name/211",[207,13.556,208,16.137,209,31.874]],["parent/211",[]],["name/212",[210,60.455]],["parent/212",[207,1.642,208,1.954,209,3.86]],["name/213",[2,25.656]],["parent/213",[207,1.642,208,1.954,211,2.455]],["name/214",[212,60.455]],["parent/214",[207,1.642,208,1.954,211,2.455]],["name/215",[213,60.455]],["parent/215",[207,1.642,208,1.954,211,2.455]],["name/216",[214,60.455]],["parent/216",[207,1.642,208,1.954,211,2.455]],["name/217",[215,60.455]],["parent/217",[207,1.642,208,1.954,211,2.455]],["name/218",[216,57.006]],["parent/218",[207,1.642,208,1.954,211,2.455]],["name/219",[217,60.455]],["parent/219",[207,1.642,208,1.954,211,2.455]],["name/220",[218,60.455]],["parent/220",[207,1.642,208,1.954,211,2.455]],["name/221",[219,60.455]],["parent/221",[207,1.642,208,1.954,211,2.455]],["name/222",[220,60.455]],["parent/222",[207,1.642,208,1.954,211,2.455]],["name/223",[221,57.006]],["parent/223",[207,1.642,208,1.954,211,2.455]],["name/224",[222,60.455]],["parent/224",[207,1.642,208,1.954,211,2.455]],["name/225",[223,60.455]],["parent/225",[207,1.642,208,1.954,211,2.455]],["name/226",[224,60.455]],["parent/226",[207,1.642,208,1.954,211,2.455]],["name/227",[225,60.455]],["parent/227",[207,1.642,208,1.954,211,2.455]],["name/228",[226,60.455]],["parent/228",[207,1.642,208,1.954,211,2.455]],["name/229",[227,60.455]],["parent/229",[207,1.642,208,1.954,211,2.455]],["name/230",[228,60.455]],["parent/230",[207,1.642,208,1.954,211,2.455]],["name/231",[229,60.455]],["parent/231",[207,1.642,208,1.954,211,2.455]],["name/232",[230,60.455]],["parent/232",[207,1.642,208,1.954,211,2.455]],["name/233",[231,60.455]],["parent/233",[207,1.642,208,1.954,211,2.455]],["name/234",[232,60.455]],["parent/234",[207,1.642,208,1.954,211,2.455]],["name/235",[233,60.455]],["parent/235",[207,1.642,208,1.954,211,2.455]],["name/236",[234,60.455]],["parent/236",[207,1.642,208,1.954,211,2.455]],["name/237",[235,60.455]],["parent/237",[207,1.642,208,1.954,211,2.455]],["name/238",[236,54.429]],["parent/238",[207,1.642,208,1.954,211,2.455]],["name/239",[237,57.006]],["parent/239",[207,1.642,208,1.954,209,3.86]],["name/240",[212,60.455]],["parent/240",[207,1.642,208,1.954,238,2.482]],["name/241",[213,60.455]],["parent/241",[207,1.642,208,1.954,238,2.482]],["name/242",[214,60.455]],["parent/242",[207,1.642,208,1.954,238,2.482]],["name/243",[215,60.455]],["parent/243",[207,1.642,208,1.954,238,2.482]],["name/244",[216,57.006]],["parent/244",[207,1.642,208,1.954,238,2.482]],["name/245",[217,60.455]],["parent/245",[207,1.642,208,1.954,238,2.482]],["name/246",[218,60.455]],["parent/246",[207,1.642,208,1.954,238,2.482]],["name/247",[219,60.455]],["parent/247",[207,1.642,208,1.954,238,2.482]],["name/248",[220,60.455]],["parent/248",[207,1.642,208,1.954,238,2.482]],["name/249",[221,57.006]],["parent/249",[207,1.642,208,1.954,238,2.482]],["name/250",[222,60.455]],["parent/250",[207,1.642,208,1.954,238,2.482]],["name/251",[223,60.455]],["parent/251",[207,1.642,208,1.954,238,2.482]],["name/252",[224,60.455]],["parent/252",[207,1.642,208,1.954,238,2.482]],["name/253",[225,60.455]],["parent/253",[207,1.642,208,1.954,238,2.482]],["name/254",[226,60.455]],["parent/254",[207,1.642,208,1.954,238,2.482]],["name/255",[227,60.455]],["parent/255",[207,1.642,208,1.954,238,2.482]],["name/256",[228,60.455]],["parent/256",[207,1.642,208,1.954,238,2.482]],["name/257",[229,60.455]],["parent/257",[207,1.642,208,1.954,238,2.482]],["name/258",[230,60.455]],["parent/258",[207,1.642,208,1.954,238,2.482]],["name/259",[231,60.455]],["parent/259",[207,1.642,208,1.954,238,2.482]],["name/260",[232,60.455]],["parent/260",[207,1.642,208,1.954,238,2.482]],["name/261",[233,60.455]],["parent/261",[207,1.642,208,1.954,238,2.482]],["name/262",[234,60.455]],["parent/262",[207,1.642,208,1.954,238,2.482]],["name/263",[235,60.455]],["parent/263",[207,1.642,208,1.954,238,2.482]],["name/264",[236,54.429]],["parent/264",[207,1.642,208,1.954,238,2.482]],["name/265",[207,17.389,239,34.363]],["parent/265",[]],["name/266",[240,60.455]],["parent/266",[207,2.043,239,4.038]],["name/267",[130,57.006]],["parent/267",[207,2.043,241,5.537]],["name/268",[124,50.659]],["parent/268",[207,2.043,239,4.038]],["name/269",[131,54.429]],["parent/269",[207,2.043,242,4.588]],["name/270",[128,57.006]],["parent/270",[207,2.043,242,4.588]],["name/271",[121,52.372]],["parent/271",[207,2.043,242,4.588]],["name/272",[130,57.006]],["parent/272",[207,2.043,242,4.588]],["name/273",[239,47.909]],["parent/273",[207,2.043,239,4.038]],["name/274",[243,60.455]],["parent/274",[207,2.043,244,4.27]],["name/275",[245,60.455]],["parent/275",[207,2.043,244,4.27]],["name/276",[246,60.455]],["parent/276",[207,2.043,244,4.27]],["name/277",[247,60.455]],["parent/277",[207,2.043,244,4.27]],["name/278",[248,60.455]],["parent/278",[207,2.043,244,4.27]],["name/279",[236,54.429]],["parent/279",[207,2.043,244,4.27]],["name/280",[249,60.455]],["parent/280",[207,2.043,239,4.038]],["name/281",[2,25.656]],["parent/281",[207,2.043,250,3.519]],["name/282",[131,54.429]],["parent/282",[207,2.043,250,3.519]],["name/283",[128,57.006]],["parent/283",[207,2.043,250,3.519]],["name/284",[251,65.692]],["parent/284",[207,2.043,250,3.519]],["name/285",[124,50.659]],["parent/285",[207,2.043,250,3.519]],["name/286",[252,60.455]],["parent/286",[207,2.043,250,3.519]],["name/287",[243,60.455]],["parent/287",[207,2.043,250,3.519]],["name/288",[51,43.167]],["parent/288",[207,2.043,250,3.519]],["name/289",[245,60.455]],["parent/289",[207,2.043,250,3.519]],["name/290",[51,43.167]],["parent/290",[207,2.043,250,3.519]],["name/291",[253,57.006]],["parent/291",[207,2.043,250,3.519]],["name/292",[246,60.455]],["parent/292",[207,2.043,250,3.519]],["name/293",[247,60.455]],["parent/293",[207,2.043,250,3.519]],["name/294",[248,60.455]],["parent/294",[207,2.043,250,3.519]],["name/295",[236,54.429]],["parent/295",[207,2.043,250,3.519]],["name/296",[254,60.455]],["parent/296",[]],["name/297",[255,60.455]],["parent/297",[254,6.746]],["name/298",[2,25.656]],["parent/298",[256,4.52]],["name/299",[257,65.692]],["parent/299",[256,4.52]],["name/300",[258,65.692]],["parent/300",[256,4.52]],["name/301",[237,57.006]],["parent/301",[256,4.52]],["name/302",[259,65.692]],["parent/302",[256,4.52]],["name/303",[260,65.692]],["parent/303",[256,4.52]],["name/304",[261,65.692]],["parent/304",[256,4.52]],["name/305",[262,65.692]],["parent/305",[256,4.52]],["name/306",[263,65.692]],["parent/306",[256,4.52]],["name/307",[264,60.455]],["parent/307",[256,4.52]],["name/308",[265,65.692]],["parent/308",[256,4.52]],["name/309",[266,65.692]],["parent/309",[256,4.52]],["name/310",[267,65.692]],["parent/310",[256,4.52]],["name/311",[268,60.455]],["parent/311",[256,4.52]],["name/312",[269,65.692]],["parent/312",[256,4.52]],["name/313",[216,57.006]],["parent/313",[256,4.52]],["name/314",[221,57.006]],["parent/314",[256,4.52]],["name/315",[270,32.14,271,43.361]],["parent/315",[]],["name/316",[272,60.455]],["parent/316",[270,3.777,271,5.095]],["name/317",[2,25.656]],["parent/317",[270,3.777,273,3.942]],["name/318",[274,60.455]],["parent/318",[270,3.777,273,3.942]],["name/319",[275,60.455]],["parent/319",[270,3.777,273,3.942]],["name/320",[276,65.692]],["parent/320",[270,3.777,273,3.942]],["name/321",[277,65.692]],["parent/321",[270,3.777,273,3.942]],["name/322",[278,65.692]],["parent/322",[270,3.777,273,3.942]],["name/323",[279,65.692]],["parent/323",[270,3.777,273,3.942]],["name/324",[280,65.692]],["parent/324",[270,3.777,273,3.942]],["name/325",[281,65.692]],["parent/325",[270,3.777,273,3.942]],["name/326",[282,36.335,283,43.361]],["parent/326",[]],["name/327",[284,60.455]],["parent/327",[282,4.27,283,5.095]],["name/328",[2,25.656]],["parent/328",[282,4.27,285,4.588]],["name/329",[286,65.692]],["parent/329",[282,4.27,285,4.588]],["name/330",[287,65.692]],["parent/330",[282,4.27,285,4.588]],["name/331",[288,65.692]],["parent/331",[282,4.27,285,4.588]],["name/332",[289,46.769]],["parent/332",[]],["name/333",[290,60.455]],["parent/333",[]],["name/334",[291,60.455]],["parent/334",[290,6.746]],["name/335",[2,25.656]],["parent/335",[292,5.844]],["name/336",[293,65.692]],["parent/336",[292,5.844]],["name/337",[294,65.692]],["parent/337",[292,5.844]],["name/338",[295,65.692]],["parent/338",[292,5.844]],["name/339",[296,65.692]],["parent/339",[292,5.844]],["name/340",[297,60.455]],["parent/340",[]],["name/341",[253,57.006]],["parent/341",[297,6.746]],["name/342",[2,25.656]],["parent/342",[298,5.105]],["name/343",[299,65.692]],["parent/343",[298,5.105]],["name/344",[300,65.692]],["parent/344",[298,5.105]],["name/345",[301,65.692]],["parent/345",[298,5.105]],["name/346",[302,65.692]],["parent/346",[298,5.105]],["name/347",[303,65.692]],["parent/347",[298,5.105]],["name/348",[304,65.692]],["parent/348",[298,5.105]],["name/349",[305,65.692]],["parent/349",[298,5.105]],["name/350",[306,65.692]],["parent/350",[298,5.105]],["name/351",[307,65.692]],["parent/351",[298,5.105]],["name/352",[308,60.455]],["parent/352",[]],["name/353",[309,65.692]],["parent/353",[308,6.746]],["name/354",[2,25.656]],["parent/354",[310,5.653]],["name/355",[311,60.455]],["parent/355",[310,5.653]],["name/356",[312,65.692]],["parent/356",[310,5.653]],["name/357",[13,49.192]],["parent/357",[310,5.653]],["name/358",[313,65.692]],["parent/358",[310,5.653]],["name/359",[314,65.692]],["parent/359",[310,5.653]],["name/360",[315,60.455]],["parent/360",[]],["name/361",[316,60.455]],["parent/361",[315,6.746]],["name/362",[2,25.656]],["parent/362",[317,5.49]],["name/363",[13,49.192]],["parent/363",[317,5.49]],["name/364",[14,57.006]],["parent/364",[317,5.49]],["name/365",[318,65.692]],["parent/365",[317,5.49]],["name/366",[319,65.692]],["parent/366",[317,5.49]],["name/367",[320,65.692]],["parent/367",[317,5.49]],["name/368",[321,65.692]],["parent/368",[317,5.49]],["name/369",[322,60.455]],["parent/369",[]],["name/370",[323,60.455]],["parent/370",[322,6.746]],["name/371",[2,25.656]],["parent/371",[324,4.659]],["name/372",[325,57.006]],["parent/372",[324,4.659]],["name/373",[326,65.692]],["parent/373",[324,4.659]],["name/374",[327,65.692]],["parent/374",[324,4.659]],["name/375",[328,65.692]],["parent/375",[324,4.659]],["name/376",[311,60.455]],["parent/376",[324,4.659]],["name/377",[13,49.192]],["parent/377",[324,4.659]],["name/378",[329,60.455]],["parent/378",[324,4.659]],["name/379",[330,65.692]],["parent/379",[324,4.659]],["name/380",[331,60.455]],["parent/380",[324,4.659]],["name/381",[332,60.455]],["parent/381",[324,4.659]],["name/382",[333,65.692]],["parent/382",[324,4.659]],["name/383",[334,65.692]],["parent/383",[324,4.659]],["name/384",[335,65.692]],["parent/384",[324,4.659]],["name/385",[336,65.692]],["parent/385",[324,4.659]],["name/386",[337,60.455]],["parent/386",[]],["name/387",[338,60.455]],["parent/387",[337,6.746]],["name/388",[2,25.656]],["parent/388",[339,3.812]],["name/389",[340,65.692]],["parent/389",[339,3.812]],["name/390",[252,60.455]],["parent/390",[339,3.812]],["name/391",[239,47.909]],["parent/391",[339,3.812]],["name/392",[13,49.192]],["parent/392",[339,3.812]],["name/393",[341,57.006]],["parent/393",[339,3.812]],["name/394",[342,65.692]],["parent/394",[339,3.812]],["name/395",[343,65.692]],["parent/395",[339,3.812]],["name/396",[344,57.006]],["parent/396",[339,3.812]],["name/397",[345,65.692]],["parent/397",[339,3.812]],["name/398",[346,65.692]],["parent/398",[339,3.812]],["name/399",[347,60.455]],["parent/399",[339,3.812]],["name/400",[348,65.692]],["parent/400",[339,3.812]],["name/401",[349,65.692]],["parent/401",[339,3.812]],["name/402",[350,65.692]],["parent/402",[339,3.812]],["name/403",[351,65.692]],["parent/403",[339,3.812]],["name/404",[352,65.692]],["parent/404",[339,3.812]],["name/405",[353,60.455]],["parent/405",[339,3.812]],["name/406",[354,57.006]],["parent/406",[339,3.812]],["name/407",[355,65.692]],["parent/407",[339,3.812]],["name/408",[356,65.692]],["parent/408",[339,3.812]],["name/409",[357,65.692]],["parent/409",[339,3.812]],["name/410",[358,65.692]],["parent/410",[339,3.812]],["name/411",[359,65.692]],["parent/411",[339,3.812]],["name/412",[360,65.692]],["parent/412",[339,3.812]],["name/413",[361,65.692]],["parent/413",[339,3.812]],["name/414",[362,65.692]],["parent/414",[339,3.812]],["name/415",[363,65.692]],["parent/415",[339,3.812]],["name/416",[364,65.692]],["parent/416",[339,3.812]],["name/417",[365,65.692]],["parent/417",[339,3.812]],["name/418",[366,65.692]],["parent/418",[339,3.812]],["name/419",[367,65.692]],["parent/419",[339,3.812]],["name/420",[368,40.887,369,29.486]],["parent/420",[]],["name/421",[370,65.692]],["parent/421",[368,4.805,369,3.465]],["name/422",[2,25.656]],["parent/422",[368,4.805,371,5.537]],["name/423",[372,60.455]],["parent/423",[]],["name/424",[373,65.692]],["parent/424",[372,6.746]],["name/425",[2,25.656]],["parent/425",[374,5.219]],["name/426",[375,65.692]],["parent/426",[374,5.219]],["name/427",[274,60.455]],["parent/427",[374,5.219]],["name/428",[275,60.455]],["parent/428",[374,5.219]],["name/429",[376,65.692]],["parent/429",[374,5.219]],["name/430",[377,40.506]],["parent/430",[374,5.219]],["name/431",[378,65.692]],["parent/431",[374,5.219]],["name/432",[379,65.692]],["parent/432",[374,5.219]],["name/433",[380,65.692]],["parent/433",[374,5.219]],["name/434",[381,60.455]],["parent/434",[]],["name/435",[382,65.692]],["parent/435",[381,6.746]],["name/436",[2,25.656]],["parent/436",[383,7.331]],["name/437",[384,65.692]],["parent/437",[]],["name/438",[385,36.335,386,39.039]],["parent/438",[]],["name/439",[387,65.692]],["parent/439",[385,4.27,386,4.588]],["name/440",[2,25.656]],["parent/440",[385,4.27,388,4.588]],["name/441",[123,54.429]],["parent/441",[385,4.27,388,4.588]],["name/442",[389,65.692]],["parent/442",[385,4.27,388,4.588]],["name/443",[390,65.692]],["parent/443",[385,4.27,388,4.588]],["name/444",[369,29.486,391,40.887]],["parent/444",[]],["name/445",[392,65.692]],["parent/445",[369,3.465,391,4.805]],["name/446",[2,25.656]],["parent/446",[391,4.805,393,5.537]],["name/447",[394,60.455]],["parent/447",[]],["name/448",[395,65.692]],["parent/448",[394,6.746]],["name/449",[2,25.656]],["parent/449",[396,5.001]],["name/450",[397,65.692]],["parent/450",[396,5.001]],["name/451",[398,54.429]],["parent/451",[396,5.001]],["name/452",[399,65.692]],["parent/452",[396,5.001]],["name/453",[36,49.192]],["parent/453",[396,5.001]],["name/454",[377,40.506]],["parent/454",[396,5.001]],["name/455",[400,65.692]],["parent/455",[396,5.001]],["name/456",[401,57.006]],["parent/456",[396,5.001]],["name/457",[264,60.455]],["parent/457",[396,5.001]],["name/458",[402,65.692]],["parent/458",[396,5.001]],["name/459",[403,65.692]],["parent/459",[396,5.001]],["name/460",[404,60.455]],["parent/460",[]],["name/461",[405,65.692]],["parent/461",[404,6.746]],["name/462",[2,25.656]],["parent/462",[406,7.331]],["name/463",[407,15.083,408,17.172,409,28.326]],["parent/463",[]],["name/464",[410,65.692]],["parent/464",[407,1.827,408,2.08,409,3.43]],["name/465",[2,25.656]],["parent/465",[407,1.827,408,2.08,411,2.111]],["name/466",[412,65.692]],["parent/466",[407,1.827,408,2.08,411,2.111]],["name/467",[413,65.692]],["parent/467",[407,1.827,408,2.08,411,2.111]],["name/468",[414,65.692]],["parent/468",[407,1.827,408,2.08,411,2.111]],["name/469",[415,65.692]],["parent/469",[407,1.827,408,2.08,411,2.111]],["name/470",[416,65.692]],["parent/470",[407,1.827,408,2.08,411,2.111]],["name/471",[417,65.692]],["parent/471",[407,1.827,408,2.08,411,2.111]],["name/472",[418,65.692]],["parent/472",[407,1.827,408,2.08,411,2.111]],["name/473",[419,65.692]],["parent/473",[407,1.827,408,2.08,411,2.111]],["name/474",[420,65.692]],["parent/474",[407,1.827,408,2.08,411,2.111]],["name/475",[421,65.692]],["parent/475",[407,1.827,408,2.08,411,2.111]],["name/476",[422,65.692]],["parent/476",[407,1.827,408,2.08,411,2.111]],["name/477",[423,65.692]],["parent/477",[407,1.827,408,2.08,411,2.111]],["name/478",[424,65.692]],["parent/478",[407,1.827,408,2.08,411,2.111]],["name/479",[425,65.692]],["parent/479",[407,1.827,408,2.08,411,2.111]],["name/480",[426,65.692]],["parent/480",[407,1.827,408,2.08,411,2.111]],["name/481",[427,65.692]],["parent/481",[407,1.827,408,2.08,411,2.111]],["name/482",[341,57.006]],["parent/482",[407,1.827,408,2.08,411,2.111]],["name/483",[428,60.455]],["parent/483",[407,1.827,408,2.08,411,2.111]],["name/484",[429,60.455]],["parent/484",[407,1.827,408,2.08,411,2.111]],["name/485",[430,60.455]],["parent/485",[407,1.827,408,2.08,411,2.111]],["name/486",[431,65.692]],["parent/486",[407,1.827,408,2.08,411,2.111]],["name/487",[191,52.372]],["parent/487",[407,1.827,408,2.08,411,2.111]],["name/488",[325,57.006]],["parent/488",[407,1.827,408,2.08,411,2.111]],["name/489",[432,60.455]],["parent/489",[407,1.827,408,2.08,411,2.111]],["name/490",[433,57.006]],["parent/490",[407,1.827,408,2.08,411,2.111]],["name/491",[434,60.455]],["parent/491",[407,1.827,408,2.08,411,2.111]],["name/492",[435,60.455]],["parent/492",[407,1.827,408,2.08,411,2.111]],["name/493",[36,49.192]],["parent/493",[407,1.827,408,2.08,411,2.111]],["name/494",[398,54.429]],["parent/494",[407,1.827,408,2.08,411,2.111]],["name/495",[436,65.692]],["parent/495",[407,1.827,408,2.08,411,2.111]],["name/496",[377,40.506]],["parent/496",[407,1.827,408,2.08,411,2.111]],["name/497",[437,65.692]],["parent/497",[407,1.827,408,2.08,411,2.111]],["name/498",[438,65.692]],["parent/498",[407,1.827,408,2.08,411,2.111]],["name/499",[439,60.455]],["parent/499",[407,1.827,408,2.08,411,2.111]],["name/500",[440,60.455]],["parent/500",[407,1.827,408,2.08,411,2.111]],["name/501",[441,65.692]],["parent/501",[407,1.827,408,2.08,411,2.111]],["name/502",[442,65.692]],["parent/502",[407,1.827,408,2.08,411,2.111]],["name/503",[443,60.455]],["parent/503",[407,1.827,408,2.08,411,2.111]],["name/504",[444,60.455]],["parent/504",[407,1.827,408,2.08,411,2.111]],["name/505",[347,60.455]],["parent/505",[407,1.827,408,2.08,411,2.111]],["name/506",[445,50.659]],["parent/506",[407,1.827,408,2.08,411,2.111]],["name/507",[446,60.455]],["parent/507",[407,1.827,408,2.08,411,2.111]],["name/508",[407,15.083,447,21.742,448,33.803]],["parent/508",[]],["name/509",[449,65.692]],["parent/509",[407,1.827,447,2.633,448,4.094]],["name/510",[2,25.656]],["parent/510",[407,1.827,447,2.633,450,2.704]],["name/511",[451,65.692]],["parent/511",[407,1.827,447,2.633,450,2.704]],["name/512",[452,65.692]],["parent/512",[407,1.827,447,2.633,450,2.704]],["name/513",[453,65.692]],["parent/513",[407,1.827,447,2.633,450,2.704]],["name/514",[454,65.692]],["parent/514",[407,1.827,447,2.633,450,2.704]],["name/515",[455,65.692]],["parent/515",[407,1.827,447,2.633,450,2.704]],["name/516",[456,65.692]],["parent/516",[407,1.827,447,2.633,450,2.704]],["name/517",[457,65.692]],["parent/517",[407,1.827,447,2.633,450,2.704]],["name/518",[458,65.692]],["parent/518",[407,1.827,447,2.633,450,2.704]],["name/519",[459,65.692]],["parent/519",[407,1.827,447,2.633,450,2.704]],["name/520",[36,49.192]],["parent/520",[407,1.827,447,2.633,450,2.704]],["name/521",[377,40.506]],["parent/521",[407,1.827,447,2.633,450,2.704]],["name/522",[460,65.692]],["parent/522",[407,1.827,447,2.633,450,2.704]],["name/523",[461,65.692]],["parent/523",[407,1.827,447,2.633,450,2.704]],["name/524",[462,65.692]],["parent/524",[407,1.827,447,2.633,450,2.704]],["name/525",[463,65.692]],["parent/525",[407,1.827,447,2.633,450,2.704]],["name/526",[464,65.692]],["parent/526",[407,1.827,447,2.633,450,2.704]],["name/527",[465,65.692]],["parent/527",[407,1.827,447,2.633,450,2.704]],["name/528",[369,29.486,466,40.887]],["parent/528",[]],["name/529",[467,65.692]],["parent/529",[369,3.465,466,4.805]],["name/530",[2,25.656]],["parent/530",[466,4.805,468,5.537]],["name/531",[469,60.455]],["parent/531",[]],["name/532",[470,65.692]],["parent/532",[469,6.746]],["name/533",[2,25.656]],["parent/533",[471,4.588]],["name/534",[472,54.429]],["parent/534",[471,4.588]],["name/535",[341,57.006]],["parent/535",[471,4.588]],["name/536",[473,57.006]],["parent/536",[471,4.588]],["name/537",[474,60.455]],["parent/537",[471,4.588]],["name/538",[475,60.455]],["parent/538",[471,4.588]],["name/539",[428,60.455]],["parent/539",[471,4.588]],["name/540",[433,57.006]],["parent/540",[471,4.588]],["name/541",[476,52.372]],["parent/541",[471,4.588]],["name/542",[477,52.372]],["parent/542",[471,4.588]],["name/543",[377,40.506]],["parent/543",[471,4.588]],["name/544",[478,52.372]],["parent/544",[471,4.588]],["name/545",[440,60.455]],["parent/545",[471,4.588]],["name/546",[443,60.455]],["parent/546",[471,4.588]],["name/547",[479,65.692]],["parent/547",[471,4.588]],["name/548",[445,50.659]],["parent/548",[471,4.588]],["name/549",[480,60.455]],["parent/549",[]],["name/550",[481,65.692]],["parent/550",[480,6.746]],["name/551",[2,25.656]],["parent/551",[482,7.331]],["name/552",[483,24.136,484,24.136,485,33.803]],["parent/552",[]],["name/553",[486,65.692]],["parent/553",[483,2.923,484,2.923,485,4.094]],["name/554",[2,25.656]],["parent/554",[483,2.923,484,2.923,487,3.034]],["name/555",[488,65.692]],["parent/555",[483,2.923,484,2.923,487,3.034]],["name/556",[36,49.192]],["parent/556",[483,2.923,484,2.923,487,3.034]],["name/557",[398,54.429]],["parent/557",[483,2.923,484,2.923,487,3.034]],["name/558",[429,60.455]],["parent/558",[483,2.923,484,2.923,487,3.034]],["name/559",[430,60.455]],["parent/559",[483,2.923,484,2.923,487,3.034]],["name/560",[433,57.006]],["parent/560",[483,2.923,484,2.923,487,3.034]],["name/561",[435,60.455]],["parent/561",[483,2.923,484,2.923,487,3.034]],["name/562",[377,40.506]],["parent/562",[483,2.923,484,2.923,487,3.034]],["name/563",[489,65.692]],["parent/563",[483,2.923,484,2.923,487,3.034]],["name/564",[401,57.006]],["parent/564",[483,2.923,484,2.923,487,3.034]],["name/565",[369,29.486,490,40.887]],["parent/565",[]],["name/566",[491,65.692]],["parent/566",[369,3.465,490,4.805]],["name/567",[2,25.656]],["parent/567",[490,4.805,492,5.537]],["name/568",[493,60.455]],["parent/568",[]],["name/569",[494,65.692]],["parent/569",[493,6.746]],["name/570",[2,25.656]],["parent/570",[495,4.735]],["name/571",[472,54.429]],["parent/571",[495,4.735]],["name/572",[473,57.006]],["parent/572",[495,4.735]],["name/573",[135,54.429]],["parent/573",[495,4.735]],["name/574",[344,57.006]],["parent/574",[495,4.735]],["name/575",[476,52.372]],["parent/575",[495,4.735]],["name/576",[477,52.372]],["parent/576",[495,4.735]],["name/577",[377,40.506]],["parent/577",[495,4.735]],["name/578",[478,52.372]],["parent/578",[495,4.735]],["name/579",[496,65.692]],["parent/579",[495,4.735]],["name/580",[354,57.006]],["parent/580",[495,4.735]],["name/581",[497,65.692]],["parent/581",[495,4.735]],["name/582",[498,65.692]],["parent/582",[495,4.735]],["name/583",[445,50.659]],["parent/583",[495,4.735]],["name/584",[499,60.455]],["parent/584",[]],["name/585",[500,65.692]],["parent/585",[499,6.746]],["name/586",[2,25.656]],["parent/586",[501,7.331]],["name/587",[369,29.486,502,40.887]],["parent/587",[]],["name/588",[503,65.692]],["parent/588",[369,3.465,502,4.805]],["name/589",[2,25.656]],["parent/589",[502,4.805,504,5.537]],["name/590",[505,60.455]],["parent/590",[]],["name/591",[506,65.692]],["parent/591",[505,6.746]],["name/592",[2,25.656]],["parent/592",[507,6.746]],["name/593",[508,65.692]],["parent/593",[507,6.746]],["name/594",[509,60.455]],["parent/594",[]],["name/595",[510,65.692]],["parent/595",[509,6.746]],["name/596",[2,25.656]],["parent/596",[511,7.331]],["name/597",[512,60.455]],["parent/597",[]],["name/598",[513,65.692]],["parent/598",[512,6.746]],["name/599",[2,25.656]],["parent/599",[514,5.49]],["name/600",[515,65.692]],["parent/600",[514,5.49]],["name/601",[398,54.429]],["parent/601",[514,5.49]],["name/602",[36,49.192]],["parent/602",[514,5.49]],["name/603",[377,40.506]],["parent/603",[514,5.49]],["name/604",[516,65.692]],["parent/604",[514,5.49]],["name/605",[401,57.006]],["parent/605",[514,5.49]],["name/606",[369,29.486,517,40.887]],["parent/606",[]],["name/607",[518,65.692]],["parent/607",[369,3.465,517,4.805]],["name/608",[2,25.656]],["parent/608",[517,4.805,519,5.537]],["name/609",[520,60.455]],["parent/609",[]],["name/610",[521,65.692]],["parent/610",[520,6.746]],["name/611",[2,25.656]],["parent/611",[522,5.001]],["name/612",[523,65.692]],["parent/612",[522,5.001]],["name/613",[472,54.429]],["parent/613",[522,5.001]],["name/614",[473,57.006]],["parent/614",[522,5.001]],["name/615",[524,65.692]],["parent/615",[522,5.001]],["name/616",[476,52.372]],["parent/616",[522,5.001]],["name/617",[477,52.372]],["parent/617",[522,5.001]],["name/618",[377,40.506]],["parent/618",[522,5.001]],["name/619",[478,52.372]],["parent/619",[522,5.001]],["name/620",[445,50.659]],["parent/620",[522,5.001]],["name/621",[268,60.455]],["parent/621",[522,5.001]],["name/622",[525,60.455]],["parent/622",[]],["name/623",[526,65.692]],["parent/623",[525,6.746]],["name/624",[2,25.656]],["parent/624",[527,7.331]],["name/625",[409,28.326,528,29.283,529,29.283]],["parent/625",[]],["name/626",[530,65.692]],["parent/626",[409,3.43,528,3.546,529,3.546]],["name/627",[2,25.656]],["parent/627",[528,3.546,529,3.546,531,3.86]],["name/628",[162,54.429]],["parent/628",[528,3.546,529,3.546,531,3.86]],["name/629",[377,40.506]],["parent/629",[528,3.546,529,3.546,531,3.86]],["name/630",[369,29.486,532,40.887]],["parent/630",[]],["name/631",[533,65.692]],["parent/631",[369,3.465,532,4.805]],["name/632",[2,25.656]],["parent/632",[532,4.805,534,5.537]],["name/633",[535,60.455]],["parent/633",[]],["name/634",[536,65.692]],["parent/634",[535,6.746]],["name/635",[2,25.656]],["parent/635",[537,5.105]],["name/636",[472,54.429]],["parent/636",[537,5.105]],["name/637",[538,65.692]],["parent/637",[537,5.105]],["name/638",[476,52.372]],["parent/638",[537,5.105]],["name/639",[477,52.372]],["parent/639",[537,5.105]],["name/640",[539,65.692]],["parent/640",[537,5.105]],["name/641",[377,40.506]],["parent/641",[537,5.105]],["name/642",[478,52.372]],["parent/642",[537,5.105]],["name/643",[540,65.692]],["parent/643",[537,5.105]],["name/644",[445,50.659]],["parent/644",[537,5.105]],["name/645",[541,60.455]],["parent/645",[]],["name/646",[542,65.692]],["parent/646",[541,6.746]],["name/647",[2,25.656]],["parent/647",[543,7.331]],["name/648",[409,28.326,544,24.136,545,24.136]],["parent/648",[]],["name/649",[546,65.692]],["parent/649",[409,3.43,544,2.923,545,2.923]],["name/650",[2,25.656]],["parent/650",[544,2.923,545,2.923,547,3.034]],["name/651",[191,52.372]],["parent/651",[544,2.923,545,2.923,547,3.034]],["name/652",[548,65.692]],["parent/652",[544,2.923,545,2.923,547,3.034]],["name/653",[549,65.692]],["parent/653",[544,2.923,545,2.923,547,3.034]],["name/654",[550,65.692]],["parent/654",[544,2.923,545,2.923,547,3.034]],["name/655",[377,40.506]],["parent/655",[544,2.923,545,2.923,547,3.034]],["name/656",[551,65.692]],["parent/656",[544,2.923,545,2.923,547,3.034]],["name/657",[552,65.692]],["parent/657",[544,2.923,545,2.923,547,3.034]],["name/658",[553,65.692]],["parent/658",[544,2.923,545,2.923,547,3.034]],["name/659",[554,65.692]],["parent/659",[544,2.923,545,2.923,547,3.034]],["name/660",[446,60.455]],["parent/660",[544,2.923,545,2.923,547,3.034]],["name/661",[369,29.486,555,40.887]],["parent/661",[]],["name/662",[556,65.692]],["parent/662",[369,3.465,555,4.805]],["name/663",[2,25.656]],["parent/663",[555,4.805,557,5.537]],["name/664",[558,60.455]],["parent/664",[]],["name/665",[559,65.692]],["parent/665",[558,6.746]],["name/666",[2,25.656]],["parent/666",[560,4.52]],["name/667",[561,65.692]],["parent/667",[560,4.52]],["name/668",[562,65.692]],["parent/668",[560,4.52]],["name/669",[474,60.455]],["parent/669",[560,4.52]],["name/670",[475,60.455]],["parent/670",[560,4.52]],["name/671",[325,57.006]],["parent/671",[560,4.52]],["name/672",[191,52.372]],["parent/672",[560,4.52]],["name/673",[432,60.455]],["parent/673",[560,4.52]],["name/674",[434,60.455]],["parent/674",[560,4.52]],["name/675",[476,52.372]],["parent/675",[560,4.52]],["name/676",[477,52.372]],["parent/676",[560,4.52]],["name/677",[377,40.506]],["parent/677",[560,4.52]],["name/678",[439,60.455]],["parent/678",[560,4.52]],["name/679",[478,52.372]],["parent/679",[560,4.52]],["name/680",[444,60.455]],["parent/680",[560,4.52]],["name/681",[563,65.692]],["parent/681",[560,4.52]],["name/682",[445,50.659]],["parent/682",[560,4.52]],["name/683",[564,60.455]],["parent/683",[]],["name/684",[565,65.692]],["parent/684",[564,6.746]],["name/685",[2,25.656]],["parent/685",[566,7.331]],["name/686",[567,34.363,568,43.361]],["parent/686",[]],["name/687",[569,65.692]],["parent/687",[567,4.038,568,5.095]],["name/688",[2,25.656]],["parent/688",[567,4.038,570,5.095]],["name/689",[571,65.692]],["parent/689",[567,4.038,570,5.095]],["name/690",[386,39.039,567,34.363]],["parent/690",[]],["name/691",[572,65.692]],["parent/691",[386,4.588,567,4.038]],["name/692",[2,25.656]],["parent/692",[567,4.038,573,5.095]],["name/693",[574,65.692]],["parent/693",[567,4.038,573,5.095]],["name/694",[575,60.455]],["parent/694",[]],["name/695",[576,65.692]],["parent/695",[575,6.746]],["name/696",[2,25.656]],["parent/696",[577,6.746]],["name/697",[578,60.455]],["parent/697",[577,6.746]],["name/698",[579,39.039,580,43.361]],["parent/698",[]],["name/699",[581,65.692]],["parent/699",[579,4.588,580,5.095]],["name/700",[2,25.656]],["parent/700",[579,4.588,582,5.095]],["name/701",[578,60.455]],["parent/701",[579,4.588,582,5.095]],["name/702",[583,30.434,584,30.434,585,33.803]],["parent/702",[]],["name/703",[586,65.692]],["parent/703",[583,3.686,584,3.686,585,4.094]],["name/704",[2,25.656]],["parent/704",[583,3.686,584,3.686,587,4.094]],["name/705",[121,52.372]],["parent/705",[583,3.686,584,3.686,587,4.094]],["name/706",[588,60.455]],["parent/706",[]],["name/707",[589,65.692]],["parent/707",[588,6.746]],["name/708",[2,25.656]],["parent/708",[590,6.746]],["name/709",[377,40.506]],["parent/709",[590,6.746]],["name/710",[591,28.326,592,28.326,593,33.803]],["parent/710",[]],["name/711",[594,65.692]],["parent/711",[591,3.43,592,3.43,593,4.094]],["name/712",[2,25.656]],["parent/712",[591,3.43,592,3.43,595,3.686]],["name/713",[596,65.692]],["parent/713",[591,3.43,592,3.43,595,3.686]],["name/714",[377,40.506]],["parent/714",[591,3.43,592,3.43,595,3.686]],["name/715",[597,65.692]],["parent/715",[591,3.43,592,3.43,595,3.686]],["name/716",[598,60.455]],["parent/716",[]],["name/717",[599,65.692]],["parent/717",[598,6.746]],["name/718",[2,25.656]],["parent/718",[600,7.331]],["name/719",[601,60.455]],["parent/719",[]],["name/720",[602,65.692]],["parent/720",[601,6.746]],["name/721",[2,25.656]],["parent/721",[603,6.746]],["name/722",[377,40.506]],["parent/722",[603,6.746]],["name/723",[604,60.455]],["parent/723",[]],["name/724",[605,65.692]],["parent/724",[604,6.746]],["name/725",[2,25.656]],["parent/725",[606,6.746]],["name/726",[377,40.506]],["parent/726",[606,6.746]],["name/727",[607,52.372]],["parent/727",[]],["name/728",[608,65.692]],["parent/728",[607,5.844]],["name/729",[609,65.692]],["parent/729",[607,5.844]],["name/730",[610,65.692]],["parent/730",[607,5.844]],["name/731",[611,65.692]],["parent/731",[607,5.844]],["name/732",[612,60.455]],["parent/732",[]],["name/733",[613,52.372]],["parent/733",[]],["name/734",[190,50.659]],["parent/734",[613,5.844]],["name/735",[2,25.656]],["parent/735",[614,4.183]],["name/736",[615,65.692]],["parent/736",[614,4.183]],["name/737",[616,65.692]],["parent/737",[614,4.183]],["name/738",[617,65.692]],["parent/738",[614,4.183]],["name/739",[195,60.455]],["parent/739",[614,4.183]],["name/740",[197,60.455]],["parent/740",[614,4.183]],["name/741",[121,52.372]],["parent/741",[614,4.183]],["name/742",[618,65.692]],["parent/742",[614,4.183]],["name/743",[619,65.692]],["parent/743",[614,4.183]],["name/744",[620,65.692]],["parent/744",[614,4.183]],["name/745",[621,65.692]],["parent/745",[614,4.183]],["name/746",[622,65.692]],["parent/746",[614,4.183]],["name/747",[623,65.692]],["parent/747",[614,4.183]],["name/748",[624,65.692]],["parent/748",[614,4.183]],["name/749",[625,65.692]],["parent/749",[614,4.183]],["name/750",[626,65.692]],["parent/750",[614,4.183]],["name/751",[627,65.692]],["parent/751",[614,4.183]],["name/752",[628,65.692]],["parent/752",[614,4.183]],["name/753",[629,65.692]],["parent/753",[614,4.183]],["name/754",[630,65.692]],["parent/754",[614,4.183]],["name/755",[631,65.692]],["parent/755",[614,4.183]],["name/756",[632,65.692]],["parent/756",[614,4.183]],["name/757",[633,65.692]],["parent/757",[614,4.183]],["name/758",[634,65.692]],["parent/758",[613,5.844]],["name/759",[635,65.692]],["parent/759",[613,5.844]],["name/760",[188,60.455]],["parent/760",[613,5.844]],["name/761",[636,60.455]],["parent/761",[]],["name/762",[637,57.006]],["parent/762",[636,6.746]],["name/763",[51,43.167]],["parent/763",[638,7.331]],["name/764",[639,57.006]],["parent/764",[640,4.905]],["name/765",[641,57.006]],["parent/765",[640,4.905]],["name/766",[642,57.006]],["parent/766",[640,4.905]],["name/767",[643,57.006]],["parent/767",[640,4.905]],["name/768",[644,57.006]],["parent/768",[640,4.905]],["name/769",[645,57.006]],["parent/769",[640,4.905]],["name/770",[646,57.006]],["parent/770",[640,4.905]],["name/771",[647,57.006]],["parent/771",[640,4.905]],["name/772",[648,57.006]],["parent/772",[640,4.905]],["name/773",[649,57.006]],["parent/773",[640,4.905]],["name/774",[650,57.006]],["parent/774",[640,4.905]],["name/775",[651,57.006]],["parent/775",[640,4.905]],["name/776",[652,60.455]],["parent/776",[]],["name/777",[637,57.006]],["parent/777",[652,6.746]],["name/778",[51,43.167]],["parent/778",[653,7.331]],["name/779",[639,57.006]],["parent/779",[654,4.905]],["name/780",[641,57.006]],["parent/780",[654,4.905]],["name/781",[642,57.006]],["parent/781",[654,4.905]],["name/782",[643,57.006]],["parent/782",[654,4.905]],["name/783",[644,57.006]],["parent/783",[654,4.905]],["name/784",[645,57.006]],["parent/784",[654,4.905]],["name/785",[646,57.006]],["parent/785",[654,4.905]],["name/786",[647,57.006]],["parent/786",[654,4.905]],["name/787",[648,57.006]],["parent/787",[654,4.905]],["name/788",[649,57.006]],["parent/788",[654,4.905]],["name/789",[650,57.006]],["parent/789",[654,4.905]],["name/790",[651,57.006]],["parent/790",[654,4.905]],["name/791",[655,60.455]],["parent/791",[]],["name/792",[637,57.006]],["parent/792",[655,6.746]],["name/793",[51,43.167]],["parent/793",[656,7.331]],["name/794",[639,57.006]],["parent/794",[657,4.905]],["name/795",[641,57.006]],["parent/795",[657,4.905]],["name/796",[642,57.006]],["parent/796",[657,4.905]],["name/797",[643,57.006]],["parent/797",[657,4.905]],["name/798",[644,57.006]],["parent/798",[657,4.905]],["name/799",[645,57.006]],["parent/799",[657,4.905]],["name/800",[646,57.006]],["parent/800",[657,4.905]],["name/801",[647,57.006]],["parent/801",[657,4.905]],["name/802",[648,57.006]],["parent/802",[657,4.905]],["name/803",[649,57.006]],["parent/803",[657,4.905]],["name/804",[650,57.006]],["parent/804",[657,4.905]],["name/805",[651,57.006]],["parent/805",[657,4.905]],["name/806",[658,65.692]],["parent/806",[]],["name/807",[659,65.692]],["parent/807",[]],["name/808",[660,65.692]],["parent/808",[]],["name/809",[661,28.326,662,28.326,663,23.727]],["parent/809",[]],["name/810",[664,60.455]],["parent/810",[661,3.43,662,3.43,663,2.873]],["name/811",[2,25.656]],["parent/811",[661,3.43,662,3.43,665,3.686]],["name/812",[666,65.692]],["parent/812",[661,3.43,662,3.43,665,3.686]],["name/813",[667,65.692]],["parent/813",[661,3.43,662,3.43,665,3.686]],["name/814",[668,65.692]],["parent/814",[661,3.43,662,3.43,665,3.686]],["name/815",[669,46.769]],["parent/815",[]],["name/816",[663,19.441,670,23.21,671,23.21,672,23.21]],["parent/816",[]],["name/817",[673,60.455]],["parent/817",[663,2.401,670,2.867,671,2.867,672,2.867]],["name/818",[2,25.656]],["parent/818",[670,2.867,671,2.867,672,2.867,674,3.08]],["name/819",[675,65.692]],["parent/819",[670,2.867,671,2.867,672,2.867,674,3.08]],["name/820",[676,65.692]],["parent/820",[670,2.867,671,2.867,672,2.867,674,3.08]],["name/821",[677,65.692]],["parent/821",[670,2.867,671,2.867,672,2.867,674,3.08]],["name/822",[663,23.727,678,27.506,679,27.506]],["parent/822",[]],["name/823",[680,60.455]],["parent/823",[663,2.873,678,3.331,679,3.331]],["name/824",[2,25.656]],["parent/824",[678,3.331,679,3.331,681,4.448]],["name/825",[682,60.455]],["parent/825",[663,2.873,678,3.331,679,3.331]],["name/826",[2,25.656]],["parent/826",[678,3.331,679,3.331,683,4.448]],["name/827",[684,60.455]],["parent/827",[663,2.873,678,3.331,679,3.331]],["name/828",[2,25.656]],["parent/828",[678,3.331,679,3.331,685,4.448]],["name/829",[663,23.727,686,30.434,687,22.029]],["parent/829",[]],["name/830",[688,60.455]],["parent/830",[663,2.873,686,3.686,687,2.668]],["name/831",[2,25.656]],["parent/831",[686,3.686,687,2.668,689,4.094]],["name/832",[690,65.692]],["parent/832",[686,3.686,687,2.668,689,4.094]],["name/833",[663,23.727,687,22.029,691,28.326]],["parent/833",[]],["name/834",[692,60.455]],["parent/834",[663,2.873,687,2.668,691,3.43]],["name/835",[2,25.656]],["parent/835",[687,2.668,691,3.43,693,3.686]],["name/836",[331,60.455]],["parent/836",[687,2.668,691,3.43,693,3.686]],["name/837",[332,60.455]],["parent/837",[687,2.668,691,3.43,693,3.686]],["name/838",[329,60.455]],["parent/838",[687,2.668,691,3.43,693,3.686]],["name/839",[663,23.727,687,22.029,694,26.151]],["parent/839",[]],["name/840",[695,60.455]],["parent/840",[663,2.873,687,2.668,694,3.167]],["name/841",[2,25.656]],["parent/841",[687,2.668,694,3.167,696,3.331]],["name/842",[697,65.692]],["parent/842",[687,2.668,694,3.167,696,3.331]],["name/843",[344,57.006]],["parent/843",[687,2.668,694,3.167,696,3.331]],["name/844",[698,65.692]],["parent/844",[687,2.668,694,3.167,696,3.331]],["name/845",[699,65.692]],["parent/845",[687,2.668,694,3.167,696,3.331]],["name/846",[353,60.455]],["parent/846",[687,2.668,694,3.167,696,3.331]],["name/847",[354,57.006]],["parent/847",[687,2.668,694,3.167,696,3.331]],["name/848",[1,60.455]],["parent/848",[11,6.361]],["name/849",[14,57.006]],["parent/849",[11,6.361]],["name/850",[20,60.455]],["parent/850",[23,6.361]],["name/851",[25,60.455]],["parent/851",[23,6.361]],["name/852",[29,60.455]],["parent/852",[63,4.735]],["name/853",[32,60.455]],["parent/853",[63,4.735]],["name/854",[41,60.455]],["parent/854",[63,4.735]],["name/855",[37,60.455]],["parent/855",[63,4.735]],["name/856",[47,60.455]],["parent/856",[63,4.735]],["name/857",[50,60.455]],["parent/857",[63,4.735]],["name/858",[54,60.455]],["parent/858",[63,4.735]],["name/859",[62,60.455]],["parent/859",[63,4.735]],["name/860",[66,60.455]],["parent/860",[63,4.735]],["name/861",[69,60.455]],["parent/861",[63,4.735]],["name/862",[76,60.455]],["parent/862",[63,4.735]],["name/863",[79,60.455]],["parent/863",[63,4.735]],["name/864",[80,60.455]],["parent/864",[63,4.735]],["name/865",[82,60.455]],["parent/865",[88,6.074]],["name/866",[86,60.455]],["parent/866",[88,6.074]],["name/867",[90,60.455]],["parent/867",[88,6.074]],["name/868",[93,60.455]],["parent/868",[133,4.396]],["name/869",[120,60.455]],["parent/869",[133,4.396]],["name/870",[125,60.455]],["parent/870",[133,4.396]],["name/871",[124,50.659]],["parent/871",[133,4.396]],["name/872",[132,60.455]],["parent/872",[133,4.396]],["name/873",[135,54.429]],["parent/873",[133,4.396]],["name/874",[140,60.455]],["parent/874",[133,4.396]],["name/875",[144,60.455]],["parent/875",[133,4.396]],["name/876",[113,57.006]],["parent/876",[133,4.396]],["name/877",[148,60.455]],["parent/877",[133,4.396]],["name/878",[150,57.006]],["parent/878",[133,4.396]],["name/879",[156,60.455]],["parent/879",[133,4.396]],["name/880",[162,54.429]],["parent/880",[133,4.396]],["name/881",[176,60.455]],["parent/881",[133,4.396]],["name/882",[183,60.455]],["parent/882",[133,4.396]],["name/883",[191,52.372]],["parent/883",[133,4.396]],["name/884",[190,50.659]],["parent/884",[133,4.396]],["name/885",[204,60.455]],["parent/885",[133,4.396]],["name/886",[210,60.455]],["parent/886",[206,5.49]],["name/887",[237,57.006]],["parent/887",[206,5.49]],["name/888",[240,60.455]],["parent/888",[206,5.49]],["name/889",[124,50.659]],["parent/889",[206,5.49]],["name/890",[239,47.909]],["parent/890",[206,5.49]],["name/891",[249,60.455]],["parent/891",[206,5.49]],["name/892",[255,60.455]],["parent/892",[289,5.219]],["name/893",[323,60.455]],["parent/893",[289,5.219]],["name/894",[338,60.455]],["parent/894",[289,5.219]],["name/895",[316,60.455]],["parent/895",[289,5.219]],["name/896",[272,60.455]],["parent/896",[289,5.219]],["name/897",[291,60.455]],["parent/897",[289,5.219]],["name/898",[253,57.006]],["parent/898",[289,5.219]],["name/899",[284,60.455]],["parent/899",[289,5.219]],["name/900",[190,50.659]],["parent/900",[612,6.746]],["name/901",[664,60.455]],["parent/901",[669,5.219]],["name/902",[673,60.455]],["parent/902",[669,5.219]],["name/903",[680,60.455]],["parent/903",[669,5.219]],["name/904",[682,60.455]],["parent/904",[669,5.219]],["name/905",[684,60.455]],["parent/905",[669,5.219]],["name/906",[695,60.455]],["parent/906",[669,5.219]],["name/907",[688,60.455]],["parent/907",[669,5.219]],["name/908",[692,60.455]],["parent/908",[669,5.219]]],"invertedIndex":[["0xa686005ce37dce7738436256982c3903f2e4ea8e",{"_index":169,"name":{"170":{}},"parent":{}}],["__type",{"_index":51,"name":{"46":{},"63":{},"93":{},"95":{},"101":{},"108":{},"169":{},"171":{},"288":{},"290":{},"763":{},"778":{},"793":{}},"parent":{}}],["_outbuffer",{"_index":624,"name":{"748":{}},"parent":{}}],["_outbuffercursor",{"_index":625,"name":{"749":{}},"parent":{}}],["_signatureset",{"_index":622,"name":{"746":{}},"parent":{}}],["_workbuffer",{"_index":623,"name":{"747":{}},"parent":{}}],["account",{"_index":425,"name":{"479":{}},"parent":{}}],["account.component",{"_index":485,"name":{"552":{}},"parent":{"553":{}}}],["account.component.createaccountcomponent",{"_index":487,"name":{},"parent":{"554":{},"555":{},"556":{},"557":{},"558":{},"559":{},"560":{},"561":{},"562":{},"563":{},"564":{}}}],["account/create",{"_index":484,"name":{"552":{}},"parent":{"553":{},"554":{},"555":{},"556":{},"557":{},"558":{},"559":{},"560":{},"561":{},"562":{},"563":{},"564":{}}}],["accountaddress",{"_index":426,"name":{"480":{}},"parent":{}}],["accountdetails",{"_index":93,"name":{"86":{},"868":{}},"parent":{}}],["accountdetailscomponent",{"_index":410,"name":{"464":{}},"parent":{}}],["accountindex",{"_index":1,"name":{"1":{},"848":{}},"parent":{}}],["accountinfoform",{"_index":424,"name":{"478":{}},"parent":{}}],["accountinfoformstub",{"_index":441,"name":{"501":{}},"parent":{}}],["accounts",{"_index":341,"name":{"393":{},"482":{},"535":{}},"parent":{}}],["accountscomponent",{"_index":470,"name":{"532":{}},"parent":{}}],["accountsearchcomponent",{"_index":449,"name":{"509":{}},"parent":{}}],["accountslist",{"_index":342,"name":{"394":{}},"parent":{}}],["accountsmodule",{"_index":481,"name":{"550":{}},"parent":{}}],["accountsroutingmodule",{"_index":467,"name":{"529":{}},"parent":{}}],["accountssubject",{"_index":343,"name":{"395":{}},"parent":{}}],["accountstatus",{"_index":427,"name":{"481":{}},"parent":{}}],["accountstype",{"_index":428,"name":{"483":{},"539":{}},"parent":{}}],["accounttypes",{"_index":433,"name":{"490":{},"540":{},"560":{}},"parent":{}}],["action",{"_index":135,"name":{"129":{},"133":{},"573":{},"873":{}},"parent":{}}],["actions",{"_index":344,"name":{"396":{},"574":{},"843":{}},"parent":{}}],["actionslist",{"_index":345,"name":{"397":{}},"parent":{}}],["actionssubject",{"_index":346,"name":{"398":{}},"parent":{}}],["activatedroutestub",{"_index":664,"name":{"810":{},"901":{}},"parent":{}}],["add0x",{"_index":611,"name":{"731":{}},"parent":{}}],["address",{"_index":165,"name":{"165":{},"207":{}},"parent":{}}],["addressof",{"_index":16,"name":{"17":{}},"parent":{}}],["addresssearchform",{"_index":457,"name":{"517":{}},"parent":{}}],["addresssearchformstub",{"_index":462,"name":{"524":{}},"parent":{}}],["addresssearchloading",{"_index":459,"name":{"519":{}},"parent":{}}],["addresssearchsubmitted",{"_index":458,"name":{"518":{}},"parent":{}}],["addtoaccountregistry",{"_index":7,"name":{"6":{}},"parent":{}}],["addtransaction",{"_index":333,"name":{"382":{}},"parent":{}}],["admincomponent",{"_index":494,"name":{"569":{}},"parent":{}}],["adminmodule",{"_index":500,"name":{"585":{}},"parent":{}}],["adminroutingmodule",{"_index":491,"name":{"566":{}},"parent":{}}],["age",{"_index":97,"name":{"89":{}},"parent":{}}],["alg",{"_index":181,"name":{"181":{}},"parent":{}}],["algo",{"_index":128,"name":{"122":{},"270":{},"283":{}},"parent":{}}],["app/_eth",{"_index":11,"name":{"10":{}},"parent":{"848":{},"849":{}}}],["app/_eth/accountindex",{"_index":0,"name":{"0":{}},"parent":{"1":{}}}],["app/_eth/accountindex.accountindex",{"_index":3,"name":{},"parent":{"2":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{}}}],["app/_eth/token",{"_index":12,"name":{"11":{}},"parent":{"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{}}}],["app/_guards",{"_index":23,"name":{"24":{}},"parent":{"850":{},"851":{}}}],["app/_guards/auth.guard",{"_index":19,"name":{"20":{}},"parent":{"21":{}}}],["app/_guards/auth.guard.authguard",{"_index":21,"name":{},"parent":{"22":{},"23":{}}}],["app/_guards/role.guard",{"_index":24,"name":{"25":{}},"parent":{"26":{}}}],["app/_guards/role.guard.roleguard",{"_index":26,"name":{},"parent":{"27":{},"28":{}}}],["app/_helpers",{"_index":63,"name":{"57":{}},"parent":{"852":{},"853":{},"854":{},"855":{},"856":{},"857":{},"858":{},"859":{},"860":{},"861":{},"862":{},"863":{},"864":{}}}],["app/_helpers/array",{"_index":27,"name":{"29":{}},"parent":{"30":{}}}],["app/_helpers/clipboard",{"_index":30,"name":{"31":{}},"parent":{"32":{}}}],["app/_helpers/custom",{"_index":33,"name":{"33":{}},"parent":{"34":{},"35":{},"36":{}}}],["app/_helpers/custom.validator",{"_index":40,"name":{"37":{}},"parent":{"38":{}}}],["app/_helpers/custom.validator.customvalidator",{"_index":43,"name":{},"parent":{"39":{},"40":{},"41":{}}}],["app/_helpers/export",{"_index":45,"name":{"42":{}},"parent":{"43":{}}}],["app/_helpers/global",{"_index":48,"name":{"44":{}},"parent":{"45":{},"46":{},"47":{},"48":{},"49":{},"50":{},"51":{},"52":{},"53":{},"54":{}}}],["app/_helpers/http",{"_index":60,"name":{"55":{}},"parent":{"56":{}}}],["app/_helpers/mock",{"_index":64,"name":{"58":{}},"parent":{"59":{},"60":{},"61":{},"62":{},"63":{},"64":{},"65":{},"66":{}}}],["app/_helpers/read",{"_index":75,"name":{"67":{}},"parent":{"68":{}}}],["app/_helpers/schema",{"_index":77,"name":{"69":{}},"parent":{"70":{},"71":{}}}],["app/_interceptors",{"_index":88,"name":{"80":{}},"parent":{"865":{},"866":{},"867":{}}}],["app/_interceptors/error.interceptor",{"_index":81,"name":{"72":{}},"parent":{"73":{}}}],["app/_interceptors/error.interceptor.errorinterceptor",{"_index":83,"name":{},"parent":{"74":{},"75":{}}}],["app/_interceptors/http",{"_index":84,"name":{"76":{}},"parent":{"77":{},"78":{},"79":{}}}],["app/_interceptors/logging.interceptor",{"_index":89,"name":{"81":{}},"parent":{"82":{}}}],["app/_interceptors/logging.interceptor.logginginterceptor",{"_index":91,"name":{},"parent":{"83":{},"84":{}}}],["app/_models",{"_index":133,"name":{"127":{}},"parent":{"868":{},"869":{},"870":{},"871":{},"872":{},"873":{},"874":{},"875":{},"876":{},"877":{},"878":{},"879":{},"880":{},"881":{},"882":{},"883":{},"884":{},"885":{}}}],["app/_models/account",{"_index":92,"name":{"85":{}},"parent":{"86":{},"114":{},"118":{},"121":{},"126":{}}}],["app/_models/account.accountdetails",{"_index":95,"name":{},"parent":{"87":{},"88":{},"89":{},"90":{},"91":{},"92":{},"93":{},"100":{},"101":{},"105":{},"106":{},"107":{},"108":{}}}],["app/_models/account.accountdetails.__type",{"_index":102,"name":{},"parent":{"94":{},"95":{},"98":{},"99":{},"102":{},"103":{},"104":{},"109":{},"110":{},"111":{},"112":{},"113":{}}}],["app/_models/account.accountdetails.__type.__type",{"_index":104,"name":{},"parent":{"96":{},"97":{}}}],["app/_models/account.meta",{"_index":122,"name":{},"parent":{"115":{},"116":{},"117":{}}}],["app/_models/account.metaresponse",{"_index":126,"name":{},"parent":{"119":{},"120":{}}}],["app/_models/account.signature",{"_index":129,"name":{},"parent":{"122":{},"123":{},"124":{},"125":{}}}],["app/_models/mappings",{"_index":134,"name":{"128":{}},"parent":{"129":{},"135":{},"138":{},"141":{}}}],["app/_models/mappings.action",{"_index":136,"name":{},"parent":{"130":{},"131":{},"132":{},"133":{},"134":{}}}],["app/_models/mappings.areaname",{"_index":142,"name":{},"parent":{"136":{},"137":{}}}],["app/_models/mappings.areatype",{"_index":145,"name":{},"parent":{"139":{},"140":{}}}],["app/_models/mappings.category",{"_index":146,"name":{},"parent":{"142":{},"143":{}}}],["app/_models/settings",{"_index":147,"name":{"144":{}},"parent":{"145":{},"151":{}}}],["app/_models/settings.settings",{"_index":149,"name":{},"parent":{"146":{},"147":{},"148":{},"149":{},"150":{}}}],["app/_models/settings.w3",{"_index":153,"name":{},"parent":{"152":{},"153":{}}}],["app/_models/staff",{"_index":155,"name":{"154":{}},"parent":{"155":{}}}],["app/_models/staff.staff",{"_index":158,"name":{},"parent":{"156":{},"157":{},"158":{},"159":{},"160":{}}}],["app/_models/token",{"_index":161,"name":{"161":{}},"parent":{"162":{}}}],["app/_models/token.token",{"_index":163,"name":{},"parent":{"163":{},"164":{},"165":{},"166":{},"167":{},"168":{},"169":{},"174":{},"175":{}}}],["app/_models/token.token.__type",{"_index":170,"name":{},"parent":{"170":{},"171":{}}}],["app/_models/token.token.__type.__type",{"_index":172,"name":{},"parent":{"172":{},"173":{}}}],["app/_models/transaction",{"_index":175,"name":{"176":{}},"parent":{"177":{},"183":{},"191":{},"200":{},"206":{}}}],["app/_models/transaction.blocksbloom",{"_index":178,"name":{},"parent":{"178":{},"179":{},"180":{},"181":{},"182":{}}}],["app/_models/transaction.conversion",{"_index":185,"name":{},"parent":{"184":{},"185":{},"186":{},"187":{},"188":{},"189":{},"190":{}}}],["app/_models/transaction.transaction",{"_index":193,"name":{},"parent":{"192":{},"193":{},"194":{},"195":{},"196":{},"197":{},"198":{},"199":{}}}],["app/_models/transaction.tx",{"_index":199,"name":{},"parent":{"201":{},"202":{},"203":{},"204":{},"205":{}}}],["app/_models/transaction.txtoken",{"_index":205,"name":{},"parent":{"207":{},"208":{},"209":{}}}],["app/_pgp",{"_index":206,"name":{"210":{}},"parent":{"886":{},"887":{},"888":{},"889":{},"890":{},"891":{}}}],["app/_pgp/pgp",{"_index":207,"name":{"211":{},"265":{}},"parent":{"212":{},"213":{},"214":{},"215":{},"216":{},"217":{},"218":{},"219":{},"220":{},"221":{},"222":{},"223":{},"224":{},"225":{},"226":{},"227":{},"228":{},"229":{},"230":{},"231":{},"232":{},"233":{},"234":{},"235":{},"236":{},"237":{},"238":{},"239":{},"240":{},"241":{},"242":{},"243":{},"244":{},"245":{},"246":{},"247":{},"248":{},"249":{},"250":{},"251":{},"252":{},"253":{},"254":{},"255":{},"256":{},"257":{},"258":{},"259":{},"260":{},"261":{},"262":{},"263":{},"264":{},"266":{},"267":{},"268":{},"269":{},"270":{},"271":{},"272":{},"273":{},"274":{},"275":{},"276":{},"277":{},"278":{},"279":{},"280":{},"281":{},"282":{},"283":{},"284":{},"285":{},"286":{},"287":{},"288":{},"289":{},"290":{},"291":{},"292":{},"293":{},"294":{},"295":{}}}],["app/_services",{"_index":289,"name":{"332":{}},"parent":{"892":{},"893":{},"894":{},"895":{},"896":{},"897":{},"898":{},"899":{}}}],["app/_services/auth.service",{"_index":254,"name":{"296":{}},"parent":{"297":{}}}],["app/_services/auth.service.authservice",{"_index":256,"name":{},"parent":{"298":{},"299":{},"300":{},"301":{},"302":{},"303":{},"304":{},"305":{},"306":{},"307":{},"308":{},"309":{},"310":{},"311":{},"312":{},"313":{},"314":{}}}],["app/_services/block",{"_index":270,"name":{"315":{}},"parent":{"316":{},"317":{},"318":{},"319":{},"320":{},"321":{},"322":{},"323":{},"324":{},"325":{}}}],["app/_services/error",{"_index":282,"name":{"326":{}},"parent":{"327":{},"328":{},"329":{},"330":{},"331":{}}}],["app/_services/location.service",{"_index":290,"name":{"333":{}},"parent":{"334":{}}}],["app/_services/location.service.locationservice",{"_index":292,"name":{},"parent":{"335":{},"336":{},"337":{},"338":{},"339":{}}}],["app/_services/logging.service",{"_index":297,"name":{"340":{}},"parent":{"341":{}}}],["app/_services/logging.service.loggingservice",{"_index":298,"name":{},"parent":{"342":{},"343":{},"344":{},"345":{},"346":{},"347":{},"348":{},"349":{},"350":{},"351":{}}}],["app/_services/registry.service",{"_index":308,"name":{"352":{}},"parent":{"353":{}}}],["app/_services/registry.service.registryservice",{"_index":310,"name":{},"parent":{"354":{},"355":{},"356":{},"357":{},"358":{},"359":{}}}],["app/_services/token.service",{"_index":315,"name":{"360":{}},"parent":{"361":{}}}],["app/_services/token.service.tokenservice",{"_index":317,"name":{},"parent":{"362":{},"363":{},"364":{},"365":{},"366":{},"367":{},"368":{}}}],["app/_services/transaction.service",{"_index":322,"name":{"369":{}},"parent":{"370":{}}}],["app/_services/transaction.service.transactionservice",{"_index":324,"name":{},"parent":{"371":{},"372":{},"373":{},"374":{},"375":{},"376":{},"377":{},"378":{},"379":{},"380":{},"381":{},"382":{},"383":{},"384":{},"385":{}}}],["app/_services/user.service",{"_index":337,"name":{"386":{}},"parent":{"387":{}}}],["app/_services/user.service.userservice",{"_index":339,"name":{},"parent":{"388":{},"389":{},"390":{},"391":{},"392":{},"393":{},"394":{},"395":{},"396":{},"397":{},"398":{},"399":{},"400":{},"401":{},"402":{},"403":{},"404":{},"405":{},"406":{},"407":{},"408":{},"409":{},"410":{},"411":{},"412":{},"413":{},"414":{},"415":{},"416":{},"417":{},"418":{},"419":{}}}],["app/app",{"_index":368,"name":{"420":{}},"parent":{"421":{},"422":{}}}],["app/app.component",{"_index":372,"name":{"423":{}},"parent":{"424":{}}}],["app/app.component.appcomponent",{"_index":374,"name":{},"parent":{"425":{},"426":{},"427":{},"428":{},"429":{},"430":{},"431":{},"432":{},"433":{}}}],["app/app.module",{"_index":381,"name":{"434":{}},"parent":{"435":{}}}],["app/app.module.appmodule",{"_index":383,"name":{},"parent":{"436":{}}}],["app/auth/_directives",{"_index":384,"name":{"437":{}},"parent":{}}],["app/auth/_directives/password",{"_index":385,"name":{"438":{}},"parent":{"439":{},"440":{},"441":{},"442":{},"443":{}}}],["app/auth/auth",{"_index":391,"name":{"444":{}},"parent":{"445":{},"446":{}}}],["app/auth/auth.component",{"_index":394,"name":{"447":{}},"parent":{"448":{}}}],["app/auth/auth.component.authcomponent",{"_index":396,"name":{},"parent":{"449":{},"450":{},"451":{},"452":{},"453":{},"454":{},"455":{},"456":{},"457":{},"458":{},"459":{}}}],["app/auth/auth.module",{"_index":404,"name":{"460":{}},"parent":{"461":{}}}],["app/auth/auth.module.authmodule",{"_index":406,"name":{},"parent":{"462":{}}}],["app/pages/accounts/account",{"_index":407,"name":{"463":{},"508":{}},"parent":{"464":{},"465":{},"466":{},"467":{},"468":{},"469":{},"470":{},"471":{},"472":{},"473":{},"474":{},"475":{},"476":{},"477":{},"478":{},"479":{},"480":{},"481":{},"482":{},"483":{},"484":{},"485":{},"486":{},"487":{},"488":{},"489":{},"490":{},"491":{},"492":{},"493":{},"494":{},"495":{},"496":{},"497":{},"498":{},"499":{},"500":{},"501":{},"502":{},"503":{},"504":{},"505":{},"506":{},"507":{},"509":{},"510":{},"511":{},"512":{},"513":{},"514":{},"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{}}}],["app/pages/accounts/accounts",{"_index":466,"name":{"528":{}},"parent":{"529":{},"530":{}}}],["app/pages/accounts/accounts.component",{"_index":469,"name":{"531":{}},"parent":{"532":{}}}],["app/pages/accounts/accounts.component.accountscomponent",{"_index":471,"name":{},"parent":{"533":{},"534":{},"535":{},"536":{},"537":{},"538":{},"539":{},"540":{},"541":{},"542":{},"543":{},"544":{},"545":{},"546":{},"547":{},"548":{}}}],["app/pages/accounts/accounts.module",{"_index":480,"name":{"549":{}},"parent":{"550":{}}}],["app/pages/accounts/accounts.module.accountsmodule",{"_index":482,"name":{},"parent":{"551":{}}}],["app/pages/accounts/create",{"_index":483,"name":{"552":{}},"parent":{"553":{},"554":{},"555":{},"556":{},"557":{},"558":{},"559":{},"560":{},"561":{},"562":{},"563":{},"564":{}}}],["app/pages/admin/admin",{"_index":490,"name":{"565":{}},"parent":{"566":{},"567":{}}}],["app/pages/admin/admin.component",{"_index":493,"name":{"568":{}},"parent":{"569":{}}}],["app/pages/admin/admin.component.admincomponent",{"_index":495,"name":{},"parent":{"570":{},"571":{},"572":{},"573":{},"574":{},"575":{},"576":{},"577":{},"578":{},"579":{},"580":{},"581":{},"582":{},"583":{}}}],["app/pages/admin/admin.module",{"_index":499,"name":{"584":{}},"parent":{"585":{}}}],["app/pages/admin/admin.module.adminmodule",{"_index":501,"name":{},"parent":{"586":{}}}],["app/pages/pages",{"_index":502,"name":{"587":{}},"parent":{"588":{},"589":{}}}],["app/pages/pages.component",{"_index":505,"name":{"590":{}},"parent":{"591":{}}}],["app/pages/pages.component.pagescomponent",{"_index":507,"name":{},"parent":{"592":{},"593":{}}}],["app/pages/pages.module",{"_index":509,"name":{"594":{}},"parent":{"595":{}}}],["app/pages/pages.module.pagesmodule",{"_index":511,"name":{},"parent":{"596":{}}}],["app/pages/settings/organization/organization.component",{"_index":512,"name":{"597":{}},"parent":{"598":{}}}],["app/pages/settings/organization/organization.component.organizationcomponent",{"_index":514,"name":{},"parent":{"599":{},"600":{},"601":{},"602":{},"603":{},"604":{},"605":{}}}],["app/pages/settings/settings",{"_index":517,"name":{"606":{}},"parent":{"607":{},"608":{}}}],["app/pages/settings/settings.component",{"_index":520,"name":{"609":{}},"parent":{"610":{}}}],["app/pages/settings/settings.component.settingscomponent",{"_index":522,"name":{},"parent":{"611":{},"612":{},"613":{},"614":{},"615":{},"616":{},"617":{},"618":{},"619":{},"620":{},"621":{}}}],["app/pages/settings/settings.module",{"_index":525,"name":{"622":{}},"parent":{"623":{}}}],["app/pages/settings/settings.module.settingsmodule",{"_index":527,"name":{},"parent":{"624":{}}}],["app/pages/tokens/token",{"_index":528,"name":{"625":{}},"parent":{"626":{},"627":{},"628":{},"629":{}}}],["app/pages/tokens/tokens",{"_index":532,"name":{"630":{}},"parent":{"631":{},"632":{}}}],["app/pages/tokens/tokens.component",{"_index":535,"name":{"633":{}},"parent":{"634":{}}}],["app/pages/tokens/tokens.component.tokenscomponent",{"_index":537,"name":{},"parent":{"635":{},"636":{},"637":{},"638":{},"639":{},"640":{},"641":{},"642":{},"643":{},"644":{}}}],["app/pages/tokens/tokens.module",{"_index":541,"name":{"645":{}},"parent":{"646":{}}}],["app/pages/tokens/tokens.module.tokensmodule",{"_index":543,"name":{},"parent":{"647":{}}}],["app/pages/transactions/transaction",{"_index":544,"name":{"648":{}},"parent":{"649":{},"650":{},"651":{},"652":{},"653":{},"654":{},"655":{},"656":{},"657":{},"658":{},"659":{},"660":{}}}],["app/pages/transactions/transactions",{"_index":555,"name":{"661":{}},"parent":{"662":{},"663":{}}}],["app/pages/transactions/transactions.component",{"_index":558,"name":{"664":{}},"parent":{"665":{}}}],["app/pages/transactions/transactions.component.transactionscomponent",{"_index":560,"name":{},"parent":{"666":{},"667":{},"668":{},"669":{},"670":{},"671":{},"672":{},"673":{},"674":{},"675":{},"676":{},"677":{},"678":{},"679":{},"680":{},"681":{},"682":{}}}],["app/pages/transactions/transactions.module",{"_index":564,"name":{"683":{}},"parent":{"684":{}}}],["app/pages/transactions/transactions.module.transactionsmodule",{"_index":566,"name":{},"parent":{"685":{}}}],["app/shared/_directives/menu",{"_index":567,"name":{"686":{},"690":{}},"parent":{"687":{},"688":{},"689":{},"691":{},"692":{},"693":{}}}],["app/shared/_pipes/safe.pipe",{"_index":575,"name":{"694":{}},"parent":{"695":{}}}],["app/shared/_pipes/safe.pipe.safepipe",{"_index":577,"name":{},"parent":{"696":{},"697":{}}}],["app/shared/_pipes/token",{"_index":579,"name":{"698":{}},"parent":{"699":{},"700":{},"701":{}}}],["app/shared/error",{"_index":583,"name":{"702":{}},"parent":{"703":{},"704":{},"705":{}}}],["app/shared/footer/footer.component",{"_index":588,"name":{"706":{}},"parent":{"707":{}}}],["app/shared/footer/footer.component.footercomponent",{"_index":590,"name":{},"parent":{"708":{},"709":{}}}],["app/shared/network",{"_index":591,"name":{"710":{}},"parent":{"711":{},"712":{},"713":{},"714":{},"715":{}}}],["app/shared/shared.module",{"_index":598,"name":{"716":{}},"parent":{"717":{}}}],["app/shared/shared.module.sharedmodule",{"_index":600,"name":{},"parent":{"718":{}}}],["app/shared/sidebar/sidebar.component",{"_index":601,"name":{"719":{}},"parent":{"720":{}}}],["app/shared/sidebar/sidebar.component.sidebarcomponent",{"_index":603,"name":{},"parent":{"721":{},"722":{}}}],["app/shared/topbar/topbar.component",{"_index":604,"name":{"723":{}},"parent":{"724":{}}}],["app/shared/topbar/topbar.component.topbarcomponent",{"_index":606,"name":{},"parent":{"725":{},"726":{}}}],["appcomponent",{"_index":373,"name":{"424":{}},"parent":{}}],["appmodule",{"_index":382,"name":{"435":{}},"parent":{}}],["approutingmodule",{"_index":370,"name":{"421":{}},"parent":{}}],["approval",{"_index":139,"name":{"134":{}},"parent":{}}],["approvalstatus",{"_index":496,"name":{"579":{}},"parent":{}}],["approveaction",{"_index":354,"name":{"406":{},"580":{},"847":{}},"parent":{}}],["area",{"_index":109,"name":{"102":{},"140":{}},"parent":{}}],["area_name",{"_index":110,"name":{"103":{}},"parent":{}}],["area_type",{"_index":111,"name":{"104":{}},"parent":{}}],["areaname",{"_index":140,"name":{"135":{},"874":{}},"parent":{}}],["areanames",{"_index":430,"name":{"485":{},"559":{}},"parent":{}}],["areatype",{"_index":144,"name":{"138":{},"875":{}},"parent":{}}],["areatypes",{"_index":431,"name":{"486":{}},"parent":{}}],["arraysum",{"_index":29,"name":{"30":{},"852":{}},"parent":{}}],["assets/js/ethtx/dist",{"_index":612,"name":{"732":{}},"parent":{"900":{}}}],["assets/js/ethtx/dist/hex",{"_index":607,"name":{"727":{}},"parent":{"728":{},"729":{},"730":{},"731":{}}}],["assets/js/ethtx/dist/tx",{"_index":613,"name":{"733":{}},"parent":{"734":{},"758":{},"759":{},"760":{}}}],["assets/js/ethtx/dist/tx.tx",{"_index":614,"name":{},"parent":{"735":{},"736":{},"737":{},"738":{},"739":{},"740":{},"741":{},"742":{},"743":{},"744":{},"745":{},"746":{},"747":{},"748":{},"749":{},"750":{},"751":{},"752":{},"753":{},"754":{},"755":{},"756":{},"757":{}}}],["authcomponent",{"_index":395,"name":{"448":{}},"parent":{}}],["authguard",{"_index":20,"name":{"21":{},"850":{}},"parent":{}}],["authmodule",{"_index":405,"name":{"461":{}},"parent":{}}],["authroutingmodule",{"_index":392,"name":{"445":{}},"parent":{}}],["authservice",{"_index":255,"name":{"297":{},"892":{}},"parent":{}}],["backend",{"_index":65,"name":{"58":{}},"parent":{"59":{},"62":{}}}],["backend.mockbackendinterceptor",{"_index":67,"name":{},"parent":{"60":{},"61":{}}}],["backend.mockbackendprovider",{"_index":70,"name":{},"parent":{"63":{}}}],["backend.mockbackendprovider.__type",{"_index":72,"name":{},"parent":{"64":{},"65":{},"66":{}}}],["balance",{"_index":99,"name":{"91":{},"173":{}},"parent":{}}],["block",{"_index":198,"name":{"201":{}},"parent":{}}],["blockfilter",{"_index":179,"name":{"179":{}},"parent":{}}],["blocksbloom",{"_index":176,"name":{"177":{},"881":{}},"parent":{}}],["blocksync",{"_index":276,"name":{"320":{}},"parent":{}}],["blocksyncservice",{"_index":272,"name":{"316":{},"896":{}},"parent":{}}],["blocktxfilter",{"_index":180,"name":{"180":{}},"parent":{}}],["bloxberg:8996",{"_index":103,"name":{"96":{}},"parent":{}}],["bloxbergchainid",{"_index":641,"name":{"765":{},"780":{},"795":{}},"parent":{}}],["bloxberglink",{"_index":436,"name":{"495":{}},"parent":{}}],["canactivate",{"_index":22,"name":{"23":{},"28":{}},"parent":{}}],["candebug",{"_index":300,"name":{"344":{}},"parent":{}}],["canonicalorder",{"_index":629,"name":{"753":{}},"parent":{}}],["categories",{"_index":429,"name":{"484":{},"558":{}},"parent":{}}],["category",{"_index":113,"name":{"106":{},"141":{},"876":{}},"parent":{}}],["chainid",{"_index":621,"name":{"745":{}},"parent":{}}],["changeaccountinfo",{"_index":350,"name":{"402":{}},"parent":{}}],["ciccacheurl",{"_index":647,"name":{"771":{},"786":{},"801":{}},"parent":{}}],["cicconvert",{"_index":380,"name":{"433":{}},"parent":{}}],["cicmetaurl",{"_index":645,"name":{"769":{},"784":{},"799":{}},"parent":{}}],["cictransfer",{"_index":379,"name":{"432":{}},"parent":{}}],["cicussdurl",{"_index":649,"name":{"773":{},"788":{},"803":{}},"parent":{}}],["clearkeysinkeyring",{"_index":235,"name":{"237":{},"263":{}},"parent":{}}],["clearsignature",{"_index":633,"name":{"757":{}},"parent":{}}],["columnstodisplay",{"_index":538,"name":{"637":{}},"parent":{}}],["comment",{"_index":157,"name":{"156":{}},"parent":{}}],["config.interceptor",{"_index":85,"name":{"76":{}},"parent":{"77":{}}}],["config.interceptor.httpconfiginterceptor",{"_index":87,"name":{},"parent":{"78":{},"79":{}}}],["constructor",{"_index":2,"name":{"2":{},"13":{},"22":{},"27":{},"35":{},"41":{},"47":{},"50":{},"60":{},"74":{},"78":{},"83":{},"146":{},"213":{},"281":{},"298":{},"317":{},"328":{},"335":{},"342":{},"354":{},"362":{},"371":{},"388":{},"422":{},"425":{},"436":{},"440":{},"446":{},"449":{},"462":{},"465":{},"510":{},"530":{},"533":{},"551":{},"554":{},"567":{},"570":{},"586":{},"589":{},"592":{},"596":{},"599":{},"608":{},"611":{},"624":{},"627":{},"632":{},"635":{},"647":{},"650":{},"663":{},"666":{},"685":{},"688":{},"692":{},"696":{},"700":{},"704":{},"708":{},"712":{},"718":{},"721":{},"725":{},"735":{},"811":{},"818":{},"824":{},"826":{},"828":{},"831":{},"835":{},"841":{}},"parent":{}}],["contract",{"_index":4,"name":{"3":{},"14":{}},"parent":{}}],["contractaddress",{"_index":5,"name":{"4":{},"15":{}},"parent":{}}],["conversion",{"_index":183,"name":{"183":{},"882":{}},"parent":{}}],["copy",{"_index":31,"name":{"31":{}},"parent":{"32":{}}}],["copyaddress",{"_index":446,"name":{"507":{},"660":{}},"parent":{}}],["copytoclipboard",{"_index":32,"name":{"32":{},"853":{}},"parent":{}}],["createaccountcomponent",{"_index":486,"name":{"553":{}},"parent":{}}],["createform",{"_index":488,"name":{"555":{}},"parent":{}}],["createformstub",{"_index":489,"name":{"563":{}},"parent":{}}],["csv",{"_index":46,"name":{"42":{},"67":{}},"parent":{"43":{},"68":{}}}],["customerrorstatematcher",{"_index":37,"name":{"34":{},"855":{}},"parent":{}}],["customvalidator",{"_index":41,"name":{"38":{},"854":{}},"parent":{}}],["data",{"_index":121,"name":{"115":{},"123":{},"271":{},"705":{},"741":{}},"parent":{}}],["datasource",{"_index":472,"name":{"534":{},"571":{},"613":{},"636":{}},"parent":{}}],["date",{"_index":523,"name":{"612":{}},"parent":{}}],["date_registered",{"_index":94,"name":{"87":{}},"parent":{}}],["decimals",{"_index":167,"name":{"167":{}},"parent":{}}],["defaultaccount",{"_index":132,"name":{"126":{},"872":{}},"parent":{}}],["defaultpagesize",{"_index":474,"name":{"537":{},"669":{}},"parent":{}}],["destinationtoken",{"_index":184,"name":{"184":{}},"parent":{}}],["details.component",{"_index":409,"name":{"463":{},"625":{},"648":{}},"parent":{"464":{},"626":{},"649":{}}}],["details.component.accountdetailscomponent",{"_index":411,"name":{},"parent":{"465":{},"466":{},"467":{},"468":{},"469":{},"470":{},"471":{},"472":{},"473":{},"474":{},"475":{},"476":{},"477":{},"478":{},"479":{},"480":{},"481":{},"482":{},"483":{},"484":{},"485":{},"486":{},"487":{},"488":{},"489":{},"490":{},"491":{},"492":{},"493":{},"494":{},"495":{},"496":{},"497":{},"498":{},"499":{},"500":{},"501":{},"502":{},"503":{},"504":{},"505":{},"506":{},"507":{}}}],["details.component.tokendetailscomponent",{"_index":531,"name":{},"parent":{"627":{},"628":{},"629":{}}}],["details.component.transactiondetailscomponent",{"_index":547,"name":{},"parent":{"650":{},"651":{},"652":{},"653":{},"654":{},"655":{},"656":{},"657":{},"658":{},"659":{},"660":{}}}],["details/account",{"_index":408,"name":{"463":{}},"parent":{"464":{},"465":{},"466":{},"467":{},"468":{},"469":{},"470":{},"471":{},"472":{},"473":{},"474":{},"475":{},"476":{},"477":{},"478":{},"479":{},"480":{},"481":{},"482":{},"483":{},"484":{},"485":{},"486":{},"487":{},"488":{},"489":{},"490":{},"491":{},"492":{},"493":{},"494":{},"495":{},"496":{},"497":{},"498":{},"499":{},"500":{},"501":{},"502":{},"503":{},"504":{},"505":{},"506":{},"507":{}}}],["details/token",{"_index":529,"name":{"625":{}},"parent":{"626":{},"627":{},"628":{},"629":{}}}],["details/transaction",{"_index":545,"name":{"648":{}},"parent":{"649":{},"650":{},"651":{},"652":{},"653":{},"654":{},"655":{},"656":{},"657":{},"658":{},"659":{},"660":{}}}],["dgst",{"_index":251,"name":{"284":{}},"parent":{}}],["dialog",{"_index":287,"name":{"330":{}},"parent":{}}],["dialog.component",{"_index":585,"name":{"702":{}},"parent":{"703":{}}}],["dialog.component.errordialogcomponent",{"_index":587,"name":{},"parent":{"704":{},"705":{}}}],["dialog.service",{"_index":283,"name":{"326":{}},"parent":{"327":{}}}],["dialog.service.errordialogservice",{"_index":285,"name":{},"parent":{"328":{},"329":{},"330":{},"331":{}}}],["dialog/error",{"_index":584,"name":{"702":{}},"parent":{"703":{},"704":{},"705":{}}}],["digest",{"_index":130,"name":{"124":{},"267":{},"272":{}},"parent":{}}],["directive",{"_index":672,"name":{"816":{}},"parent":{"817":{},"818":{},"819":{},"820":{},"821":{}}}],["disapproveaction",{"_index":497,"name":{"581":{}},"parent":{}}],["displayedcolumns",{"_index":473,"name":{"536":{},"572":{},"614":{}},"parent":{}}],["dofilter",{"_index":478,"name":{"544":{},"578":{},"619":{},"642":{},"679":{}},"parent":{}}],["dotransactionfilter",{"_index":437,"name":{"497":{}},"parent":{}}],["douserfilter",{"_index":438,"name":{"498":{}},"parent":{}}],["downloadcsv",{"_index":445,"name":{"506":{},"548":{},"583":{},"620":{},"644":{},"682":{}},"parent":{}}],["email",{"_index":115,"name":{"109":{},"157":{}},"parent":{}}],["engine",{"_index":131,"name":{"125":{},"152":{},"269":{},"282":{}},"parent":{}}],["entry",{"_index":17,"name":{"18":{}},"parent":{}}],["env",{"_index":299,"name":{"343":{}},"parent":{}}],["environment",{"_index":637,"name":{"762":{},"777":{},"792":{}},"parent":{}}],["environments/environment",{"_index":655,"name":{"791":{}},"parent":{"792":{}}}],["environments/environment.dev",{"_index":636,"name":{"761":{}},"parent":{"762":{}}}],["environments/environment.dev.environment",{"_index":638,"name":{},"parent":{"763":{}}}],["environments/environment.dev.environment.__type",{"_index":640,"name":{},"parent":{"764":{},"765":{},"766":{},"767":{},"768":{},"769":{},"770":{},"771":{},"772":{},"773":{},"774":{},"775":{}}}],["environments/environment.environment",{"_index":656,"name":{},"parent":{"793":{}}}],["environments/environment.environment.__type",{"_index":657,"name":{},"parent":{"794":{},"795":{},"796":{},"797":{},"798":{},"799":{},"800":{},"801":{},"802":{},"803":{},"804":{},"805":{}}}],["environments/environment.prod",{"_index":652,"name":{"776":{}},"parent":{"777":{}}}],["environments/environment.prod.environment",{"_index":653,"name":{},"parent":{"778":{}}}],["environments/environment.prod.environment.__type",{"_index":654,"name":{},"parent":{"779":{},"780":{},"781":{},"782":{},"783":{},"784":{},"785":{},"786":{},"787":{},"788":{},"789":{},"790":{}}}],["error",{"_index":34,"name":{"33":{},"44":{}},"parent":{"34":{},"35":{},"36":{},"45":{},"46":{},"47":{},"48":{},"49":{},"50":{},"51":{},"52":{},"53":{},"54":{}}}],["errordialogcomponent",{"_index":586,"name":{"703":{}},"parent":{}}],["errordialogservice",{"_index":284,"name":{"327":{},"899":{}},"parent":{}}],["errorinterceptor",{"_index":82,"name":{"73":{},"865":{}},"parent":{}}],["evm",{"_index":101,"name":{"94":{}},"parent":{}}],["expandcollapse",{"_index":498,"name":{"582":{}},"parent":{}}],["exportcsv",{"_index":47,"name":{"43":{},"856":{}},"parent":{}}],["fetcher",{"_index":281,"name":{"325":{}},"parent":{}}],["filegetter",{"_index":312,"name":{"356":{}},"parent":{}}],["filteraccounts",{"_index":443,"name":{"503":{},"546":{}},"parent":{}}],["filterrounds",{"_index":182,"name":{"182":{}},"parent":{}}],["filtertransactions",{"_index":444,"name":{"504":{},"680":{}},"parent":{}}],["fingerprint",{"_index":246,"name":{"276":{},"292":{}},"parent":{}}],["fn",{"_index":116,"name":{"110":{}},"parent":{}}],["footercomponent",{"_index":589,"name":{"707":{}},"parent":{}}],["footerstubcomponent",{"_index":684,"name":{"827":{},"905":{}},"parent":{}}],["from",{"_index":192,"name":{"192":{}},"parent":{}}],["fromhex",{"_index":608,"name":{"728":{}},"parent":{}}],["fromvalue",{"_index":186,"name":{"185":{}},"parent":{}}],["gaslimit",{"_index":617,"name":{"738":{}},"parent":{}}],["gasprice",{"_index":616,"name":{"737":{}},"parent":{}}],["gender",{"_index":96,"name":{"88":{}},"parent":{}}],["genders",{"_index":435,"name":{"492":{},"561":{}},"parent":{}}],["getaccountbyaddress",{"_index":359,"name":{"411":{}},"parent":{}}],["getaccountbyphone",{"_index":360,"name":{"412":{}},"parent":{}}],["getaccountdetailsfrommeta",{"_index":356,"name":{"408":{}},"parent":{}}],["getaccountinfo",{"_index":335,"name":{"384":{}},"parent":{}}],["getaccountstatus",{"_index":348,"name":{"400":{}},"parent":{}}],["getaccounttypes",{"_index":365,"name":{"417":{}},"parent":{}}],["getactionbyid",{"_index":353,"name":{"405":{},"846":{}},"parent":{}}],["getactions",{"_index":352,"name":{"404":{}},"parent":{}}],["getaddresstransactions",{"_index":330,"name":{"379":{}},"parent":{}}],["getalltransactions",{"_index":329,"name":{"378":{},"838":{}},"parent":{}}],["getareanamebylocation",{"_index":294,"name":{"337":{}},"parent":{}}],["getareanames",{"_index":293,"name":{"336":{}},"parent":{}}],["getareatypebyarea",{"_index":296,"name":{"339":{}},"parent":{}}],["getareatypes",{"_index":295,"name":{"338":{}},"parent":{}}],["getbysymbol",{"_index":690,"name":{"832":{}},"parent":{}}],["getcategories",{"_index":363,"name":{"415":{}},"parent":{}}],["getcategorybyproduct",{"_index":364,"name":{"416":{}},"parent":{}}],["getchallenge",{"_index":263,"name":{"306":{}},"parent":{}}],["getencryptkeys",{"_index":219,"name":{"221":{},"247":{}},"parent":{}}],["getfingerprint",{"_index":224,"name":{"226":{},"252":{}},"parent":{}}],["getgenders",{"_index":367,"name":{"419":{}},"parent":{}}],["getkeyid",{"_index":225,"name":{"227":{},"253":{}},"parent":{}}],["getkeysforid",{"_index":227,"name":{"229":{},"255":{}},"parent":{}}],["getlockedaccounts",{"_index":349,"name":{"401":{}},"parent":{}}],["getprivatekey",{"_index":221,"name":{"223":{},"249":{},"314":{}},"parent":{}}],["getprivatekeyforid",{"_index":229,"name":{"231":{},"257":{}},"parent":{}}],["getprivatekeyid",{"_index":226,"name":{"228":{},"254":{}},"parent":{}}],["getprivatekeys",{"_index":220,"name":{"222":{},"248":{}},"parent":{}}],["getpublickeyforid",{"_index":228,"name":{"230":{},"256":{}},"parent":{}}],["getpublickeyforsubkeyid",{"_index":230,"name":{"232":{},"258":{}},"parent":{}}],["getpublickeys",{"_index":216,"name":{"218":{},"244":{},"313":{}},"parent":{}}],["getpublickeysforaddress",{"_index":231,"name":{"233":{},"259":{}},"parent":{}}],["getregistry",{"_index":313,"name":{"358":{}},"parent":{}}],["getter",{"_index":61,"name":{"55":{}},"parent":{"56":{}}}],["gettokenbalance",{"_index":321,"name":{"368":{}},"parent":{}}],["gettokenbysymbol",{"_index":320,"name":{"367":{}},"parent":{}}],["gettokens",{"_index":319,"name":{"366":{}},"parent":{}}],["gettransactiontypes",{"_index":366,"name":{"418":{}},"parent":{}}],["gettrustedactivekeys",{"_index":218,"name":{"220":{},"246":{}},"parent":{}}],["gettrustedkeys",{"_index":217,"name":{"219":{},"245":{}},"parent":{}}],["gettrustedusers",{"_index":269,"name":{"312":{}},"parent":{}}],["getuser",{"_index":699,"name":{"845":{}},"parent":{}}],["getuserbyid",{"_index":698,"name":{"844":{}},"parent":{}}],["getweb3",{"_index":314,"name":{"359":{}},"parent":{}}],["getwithtoken",{"_index":261,"name":{"304":{}},"parent":{}}],["globalerrorhandler",{"_index":54,"name":{"49":{},"858":{}},"parent":{}}],["handleerror",{"_index":57,"name":{"52":{}},"parent":{}}],["handlenetworkchange",{"_index":597,"name":{"715":{}},"parent":{}}],["handler",{"_index":49,"name":{"44":{}},"parent":{"45":{},"49":{}}}],["handler.globalerrorhandler",{"_index":55,"name":{},"parent":{"50":{},"51":{},"52":{},"53":{},"54":{}}}],["handler.httperror",{"_index":52,"name":{},"parent":{"46":{},"47":{},"48":{}}}],["haveaccount",{"_index":8,"name":{"7":{}},"parent":{}}],["headers",{"_index":340,"name":{"389":{}},"parent":{}}],["hextovalue",{"_index":635,"name":{"759":{}},"parent":{}}],["httpconfiginterceptor",{"_index":86,"name":{"77":{},"866":{}},"parent":{}}],["httperror",{"_index":50,"name":{"45":{},"857":{}},"parent":{}}],["httpgetter",{"_index":62,"name":{"56":{},"859":{}},"parent":{}}],["iconid",{"_index":389,"name":{"442":{}},"parent":{}}],["id",{"_index":123,"name":{"116":{},"119":{},"130":{},"441":{}},"parent":{}}],["identities",{"_index":100,"name":{"92":{}},"parent":{}}],["importkeypair",{"_index":213,"name":{"215":{},"241":{}},"parent":{}}],["importprivatekey",{"_index":215,"name":{"217":{},"243":{}},"parent":{}}],["importpublickey",{"_index":214,"name":{"216":{},"242":{}},"parent":{}}],["init",{"_index":259,"name":{"302":{}},"parent":{}}],["intercept",{"_index":68,"name":{"61":{},"75":{},"79":{},"84":{}},"parent":{}}],["isdialogopen",{"_index":286,"name":{"329":{}},"parent":{}}],["isencryptedprivatekey",{"_index":223,"name":{"225":{},"251":{}},"parent":{}}],["iserrorstate",{"_index":39,"name":{"36":{}},"parent":{}}],["isvalidkey",{"_index":222,"name":{"224":{},"250":{}},"parent":{}}],["iswarning",{"_index":58,"name":{"53":{}},"parent":{}}],["key",{"_index":208,"name":{"211":{}},"parent":{"212":{},"213":{},"214":{},"215":{},"216":{},"217":{},"218":{},"219":{},"220":{},"221":{},"222":{},"223":{},"224":{},"225":{},"226":{},"227":{},"228":{},"229":{},"230":{},"231":{},"232":{},"233":{},"234":{},"235":{},"236":{},"237":{},"238":{},"239":{},"240":{},"241":{},"242":{},"243":{},"244":{},"245":{},"246":{},"247":{},"248":{},"249":{},"250":{},"251":{},"252":{},"253":{},"254":{},"255":{},"256":{},"257":{},"258":{},"259":{},"260":{},"261":{},"262":{},"263":{},"264":{}}}],["keyform",{"_index":397,"name":{"450":{}},"parent":{}}],["keyformstub",{"_index":400,"name":{"455":{}},"parent":{}}],["keystore",{"_index":252,"name":{"286":{},"390":{}},"parent":{}}],["last",{"_index":9,"name":{"8":{}},"parent":{}}],["latitude",{"_index":106,"name":{"98":{}},"parent":{}}],["link",{"_index":671,"name":{"816":{}},"parent":{"817":{},"818":{},"819":{},"820":{},"821":{}}}],["linkparams",{"_index":675,"name":{"819":{}},"parent":{}}],["loadaccounts",{"_index":358,"name":{"410":{}},"parent":{}}],["loadevent",{"_index":318,"name":{"365":{}},"parent":{}}],["loading",{"_index":399,"name":{"452":{}},"parent":{}}],["loadkeyring",{"_index":212,"name":{"214":{},"240":{}},"parent":{}}],["location",{"_index":108,"name":{"100":{}},"parent":{}}],["locations",{"_index":143,"name":{"137":{}},"parent":{}}],["locationservice",{"_index":291,"name":{"334":{},"897":{}},"parent":{}}],["logerror",{"_index":59,"name":{"54":{}},"parent":{}}],["logginginterceptor",{"_index":90,"name":{"82":{},"867":{}},"parent":{}}],["loggingservice",{"_index":253,"name":{"291":{},"341":{},"898":{}},"parent":{}}],["loggingurl",{"_index":644,"name":{"768":{},"783":{},"798":{}},"parent":{}}],["login",{"_index":264,"name":{"307":{},"457":{}},"parent":{}}],["loginresponse",{"_index":265,"name":{"308":{}},"parent":{}}],["loginview",{"_index":266,"name":{"309":{}},"parent":{}}],["loglevel",{"_index":642,"name":{"766":{},"781":{},"796":{}},"parent":{}}],["logout",{"_index":268,"name":{"311":{},"621":{}},"parent":{}}],["longitude",{"_index":107,"name":{"99":{}},"parent":{}}],["low",{"_index":177,"name":{"178":{}},"parent":{}}],["m",{"_index":127,"name":{"120":{}},"parent":{}}],["main",{"_index":658,"name":{"806":{}},"parent":{}}],["matcher",{"_index":36,"name":{"33":{},"453":{},"493":{},"520":{},"556":{},"602":{}},"parent":{"34":{}}}],["matcher.customerrorstatematcher",{"_index":38,"name":{},"parent":{"35":{},"36":{}}}],["mediaquery",{"_index":376,"name":{"429":{}},"parent":{}}],["menuselectiondirective",{"_index":569,"name":{"687":{}},"parent":{}}],["menutoggledirective",{"_index":572,"name":{"691":{}},"parent":{}}],["message",{"_index":631,"name":{"755":{}},"parent":{}}],["meta",{"_index":120,"name":{"114":{},"869":{}},"parent":{}}],["metaresponse",{"_index":125,"name":{"118":{},"870":{}},"parent":{}}],["mockbackendinterceptor",{"_index":66,"name":{"59":{},"860":{}},"parent":{}}],["mockbackendprovider",{"_index":69,"name":{"62":{},"861":{}},"parent":{}}],["module",{"_index":679,"name":{"822":{}},"parent":{"823":{},"824":{},"825":{},"826":{},"827":{},"828":{}}}],["multi",{"_index":74,"name":{"66":{}},"parent":{}}],["mutablekeystore",{"_index":237,"name":{"239":{},"301":{},"887":{}},"parent":{}}],["mutablepgpkeystore",{"_index":210,"name":{"212":{},"886":{}},"parent":{}}],["n",{"_index":117,"name":{"111":{}},"parent":{}}],["name",{"_index":141,"name":{"136":{},"139":{},"142":{},"158":{},"163":{},"208":{}},"parent":{}}],["namesearchform",{"_index":451,"name":{"511":{}},"parent":{}}],["namesearchformstub",{"_index":460,"name":{"522":{}},"parent":{}}],["namesearchloading",{"_index":453,"name":{"513":{}},"parent":{}}],["namesearchsubmitted",{"_index":452,"name":{"512":{}},"parent":{}}],["navigatedto",{"_index":676,"name":{"820":{}},"parent":{}}],["networkstatuscomponent",{"_index":594,"name":{"711":{}},"parent":{}}],["newconversionevent",{"_index":279,"name":{"323":{}},"parent":{}}],["newtransferevent",{"_index":278,"name":{"322":{}},"parent":{}}],["ngafterviewinit",{"_index":563,"name":{"681":{}},"parent":{}}],["ngoninit",{"_index":377,"name":{"430":{},"454":{},"496":{},"521":{},"543":{},"562":{},"577":{},"603":{},"618":{},"629":{},"641":{},"655":{},"677":{},"709":{},"714":{},"722":{},"726":{}},"parent":{}}],["nointernetconnection",{"_index":596,"name":{"713":{}},"parent":{}}],["nonce",{"_index":615,"name":{"736":{}},"parent":{}}],["oldchain:1",{"_index":105,"name":{"97":{}},"parent":{}}],["onaddresssearch",{"_index":465,"name":{"527":{}},"parent":{}}],["onclick",{"_index":677,"name":{"821":{}},"parent":{}}],["onmenuselect",{"_index":571,"name":{"689":{}},"parent":{}}],["onmenutoggle",{"_index":574,"name":{"693":{}},"parent":{}}],["onnamesearch",{"_index":463,"name":{"525":{}},"parent":{}}],["onphonesearch",{"_index":464,"name":{"526":{}},"parent":{}}],["onresize",{"_index":378,"name":{"431":{}},"parent":{}}],["onsign",{"_index":243,"name":{"274":{},"287":{}},"parent":{}}],["onsubmit",{"_index":401,"name":{"456":{},"564":{},"605":{}},"parent":{}}],["onverify",{"_index":245,"name":{"275":{},"289":{}},"parent":{}}],["opendialog",{"_index":288,"name":{"331":{}},"parent":{}}],["organizationcomponent",{"_index":513,"name":{"598":{}},"parent":{}}],["organizationform",{"_index":515,"name":{"600":{}},"parent":{}}],["organizationformstub",{"_index":516,"name":{"604":{}},"parent":{}}],["owner",{"_index":174,"name":{"175":{}},"parent":{}}],["pagescomponent",{"_index":506,"name":{"591":{}},"parent":{}}],["pagesizeoptions",{"_index":475,"name":{"538":{},"670":{}},"parent":{}}],["pagesmodule",{"_index":510,"name":{"595":{}},"parent":{}}],["pagesroutingmodule",{"_index":503,"name":{"588":{}},"parent":{}}],["paginator",{"_index":476,"name":{"541":{},"575":{},"616":{},"638":{},"675":{}},"parent":{}}],["parammap",{"_index":667,"name":{"813":{}},"parent":{}}],["passwordmatchvalidator",{"_index":42,"name":{"39":{}},"parent":{}}],["passwordtoggledirective",{"_index":387,"name":{"439":{}},"parent":{}}],["patternvalidator",{"_index":44,"name":{"40":{}},"parent":{}}],["personvalidation",{"_index":79,"name":{"70":{},"863":{}},"parent":{}}],["pgpsigner",{"_index":249,"name":{"280":{},"891":{}},"parent":{}}],["phonesearchform",{"_index":454,"name":{"514":{}},"parent":{}}],["phonesearchformstub",{"_index":461,"name":{"523":{}},"parent":{}}],["phonesearchloading",{"_index":456,"name":{"516":{}},"parent":{}}],["phonesearchsubmitted",{"_index":455,"name":{"515":{}},"parent":{}}],["polyfills",{"_index":659,"name":{"807":{}},"parent":{}}],["prepare",{"_index":247,"name":{"277":{},"293":{}},"parent":{}}],["production",{"_index":639,"name":{"764":{},"779":{},"794":{}},"parent":{}}],["products",{"_index":112,"name":{"105":{},"143":{}},"parent":{}}],["provide",{"_index":71,"name":{"64":{}},"parent":{}}],["provider",{"_index":154,"name":{"153":{}},"parent":{}}],["publickeysurl",{"_index":646,"name":{"770":{},"785":{},"800":{}},"parent":{}}],["r",{"_index":619,"name":{"743":{}},"parent":{}}],["ratio.pipe",{"_index":580,"name":{"698":{}},"parent":{"699":{}}}],["ratio.pipe.tokenratiopipe",{"_index":582,"name":{},"parent":{"700":{},"701":{}}}],["readcsv",{"_index":76,"name":{"68":{},"862":{}},"parent":{}}],["readystate",{"_index":275,"name":{"319":{},"428":{}},"parent":{}}],["readystateprocessor",{"_index":277,"name":{"321":{}},"parent":{}}],["readystatetarget",{"_index":274,"name":{"318":{},"427":{}},"parent":{}}],["recipient",{"_index":196,"name":{"195":{}},"parent":{}}],["recipientbloxberglink",{"_index":549,"name":{"653":{}},"parent":{}}],["refreshpaginator",{"_index":479,"name":{"547":{}},"parent":{}}],["registry",{"_index":13,"name":{"11":{},"149":{},"357":{},"363":{},"377":{},"392":{}},"parent":{"12":{}}}],["registry.tokenregistry",{"_index":15,"name":{},"parent":{"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{}}}],["registryaddress",{"_index":650,"name":{"774":{},"789":{},"804":{}},"parent":{}}],["registryservice",{"_index":309,"name":{"353":{}},"parent":{}}],["removekeysforid",{"_index":232,"name":{"234":{},"260":{}},"parent":{}}],["removepublickey",{"_index":234,"name":{"236":{},"262":{}},"parent":{}}],["removepublickeyforid",{"_index":233,"name":{"235":{},"261":{}},"parent":{}}],["reserveratio",{"_index":173,"name":{"174":{}},"parent":{}}],["reserves",{"_index":168,"name":{"168":{}},"parent":{}}],["resetaccountslist",{"_index":361,"name":{"413":{}},"parent":{}}],["resetpin",{"_index":347,"name":{"399":{},"505":{}},"parent":{}}],["resettransactionslist",{"_index":334,"name":{"383":{}},"parent":{}}],["reversetransaction",{"_index":554,"name":{"659":{}},"parent":{}}],["revokeaction",{"_index":355,"name":{"407":{}},"parent":{}}],["role",{"_index":138,"name":{"132":{}},"parent":{}}],["roleguard",{"_index":25,"name":{"26":{},"851":{}},"parent":{}}],["route",{"_index":662,"name":{"809":{}},"parent":{"810":{},"811":{},"812":{},"813":{},"814":{}}}],["routerlinkdirectivestub",{"_index":673,"name":{"817":{},"902":{}},"parent":{}}],["routing.module",{"_index":369,"name":{"420":{},"444":{},"528":{},"565":{},"587":{},"606":{},"630":{},"661":{}},"parent":{"421":{},"445":{},"529":{},"566":{},"588":{},"607":{},"631":{},"662":{}}}],["routing.module.accountsroutingmodule",{"_index":468,"name":{},"parent":{"530":{}}}],["routing.module.adminroutingmodule",{"_index":492,"name":{},"parent":{"567":{}}}],["routing.module.approutingmodule",{"_index":371,"name":{},"parent":{"422":{}}}],["routing.module.authroutingmodule",{"_index":393,"name":{},"parent":{"446":{}}}],["routing.module.pagesroutingmodule",{"_index":504,"name":{},"parent":{"589":{}}}],["routing.module.settingsroutingmodule",{"_index":519,"name":{},"parent":{"608":{}}}],["routing.module.tokensroutingmodule",{"_index":534,"name":{},"parent":{"632":{}}}],["routing.module.transactionsroutingmodule",{"_index":557,"name":{},"parent":{"663":{}}}],["s",{"_index":620,"name":{"744":{}},"parent":{}}],["safepipe",{"_index":576,"name":{"695":{}},"parent":{}}],["saveinfo",{"_index":442,"name":{"502":{}},"parent":{}}],["scan",{"_index":280,"name":{"324":{}},"parent":{}}],["scanfilter",{"_index":151,"name":{"148":{}},"parent":{}}],["search.component",{"_index":448,"name":{"508":{}},"parent":{"509":{}}}],["search.component.accountsearchcomponent",{"_index":450,"name":{},"parent":{"510":{},"511":{},"512":{},"513":{},"514":{},"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{}}}],["search/account",{"_index":447,"name":{"508":{}},"parent":{"509":{},"510":{},"511":{},"512":{},"513":{},"514":{},"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{}}}],["searchaccountbyname",{"_index":362,"name":{"414":{}},"parent":{}}],["selection.directive",{"_index":568,"name":{"686":{}},"parent":{"687":{}}}],["selection.directive.menuselectiondirective",{"_index":570,"name":{},"parent":{"688":{},"689":{}}}],["senddebuglevelmessage",{"_index":302,"name":{"346":{}},"parent":{}}],["sender",{"_index":194,"name":{"193":{}},"parent":{}}],["senderbloxberglink",{"_index":548,"name":{"652":{}},"parent":{}}],["senderrorlevelmessage",{"_index":306,"name":{"350":{}},"parent":{}}],["sendfatallevelmessage",{"_index":307,"name":{"351":{}},"parent":{}}],["sendinfolevelmessage",{"_index":303,"name":{"347":{}},"parent":{}}],["sendloglevelmessage",{"_index":304,"name":{"348":{}},"parent":{}}],["sendresponse",{"_index":262,"name":{"305":{}},"parent":{}}],["sendtracelevelmessage",{"_index":301,"name":{"345":{}},"parent":{}}],["sendwarnlevelmessage",{"_index":305,"name":{"349":{}},"parent":{}}],["sentencesforwarninglogging",{"_index":56,"name":{"51":{}},"parent":{}}],["serializebytes",{"_index":628,"name":{"752":{}},"parent":{}}],["serializenumber",{"_index":626,"name":{"750":{}},"parent":{}}],["serializerlp",{"_index":630,"name":{"754":{}},"parent":{}}],["serverloglevel",{"_index":643,"name":{"767":{},"782":{},"797":{}},"parent":{}}],["service",{"_index":687,"name":{"829":{},"833":{},"839":{}},"parent":{"830":{},"831":{},"832":{},"834":{},"835":{},"836":{},"837":{},"838":{},"840":{},"841":{},"842":{},"843":{},"844":{},"845":{},"846":{},"847":{}}}],["sessionlogincount",{"_index":258,"name":{"300":{}},"parent":{}}],["sessiontoken",{"_index":257,"name":{"299":{}},"parent":{}}],["setconversion",{"_index":332,"name":{"381":{},"837":{}},"parent":{}}],["setkey",{"_index":267,"name":{"310":{}},"parent":{}}],["setparammap",{"_index":668,"name":{"814":{}},"parent":{}}],["setsignature",{"_index":632,"name":{"756":{}},"parent":{}}],["setstate",{"_index":260,"name":{"303":{}},"parent":{}}],["settings",{"_index":148,"name":{"145":{},"877":{}},"parent":{}}],["settingscomponent",{"_index":521,"name":{"610":{}},"parent":{}}],["settingsmodule",{"_index":526,"name":{"623":{}},"parent":{}}],["settingsroutingmodule",{"_index":518,"name":{"607":{}},"parent":{}}],["settransaction",{"_index":331,"name":{"380":{},"836":{}},"parent":{}}],["sharedmodule",{"_index":599,"name":{"717":{}},"parent":{}}],["sidebarcomponent",{"_index":602,"name":{"720":{}},"parent":{}}],["sidebarstubcomponent",{"_index":680,"name":{"823":{},"903":{}},"parent":{}}],["sign",{"_index":236,"name":{"238":{},"264":{},"279":{},"295":{}},"parent":{}}],["signable",{"_index":240,"name":{"266":{},"888":{}},"parent":{}}],["signature",{"_index":124,"name":{"117":{},"121":{},"268":{},"285":{},"871":{},"889":{}},"parent":{}}],["signer",{"_index":239,"name":{"265":{},"273":{},"391":{},"890":{}},"parent":{"266":{},"268":{},"273":{},"280":{}}}],["signer.pgpsigner",{"_index":250,"name":{},"parent":{"281":{},"282":{},"283":{},"284":{},"285":{},"286":{},"287":{},"288":{},"289":{},"290":{},"291":{},"292":{},"293":{},"294":{},"295":{}}}],["signer.signable",{"_index":241,"name":{},"parent":{"267":{}}}],["signer.signature",{"_index":242,"name":{},"parent":{"269":{},"270":{},"271":{},"272":{}}}],["signer.signer",{"_index":244,"name":{},"parent":{"274":{},"275":{},"276":{},"277":{},"278":{},"279":{}}}],["signeraddress",{"_index":6,"name":{"5":{},"16":{}},"parent":{}}],["sort",{"_index":477,"name":{"542":{},"576":{},"617":{},"639":{},"676":{}},"parent":{}}],["sourcetoken",{"_index":187,"name":{"186":{}},"parent":{}}],["staff",{"_index":156,"name":{"155":{},"879":{}},"parent":{}}],["state",{"_index":35,"name":{"33":{}},"parent":{"34":{},"35":{},"36":{}}}],["status",{"_index":53,"name":{"48":{}},"parent":{}}],["status.component",{"_index":593,"name":{"710":{}},"parent":{"711":{}}}],["status.component.networkstatuscomponent",{"_index":595,"name":{},"parent":{"712":{},"713":{},"714":{},"715":{}}}],["status/network",{"_index":592,"name":{"710":{}},"parent":{"711":{},"712":{},"713":{},"714":{},"715":{}}}],["store",{"_index":209,"name":{"211":{}},"parent":{"212":{},"239":{}}}],["store.mutablekeystore",{"_index":238,"name":{},"parent":{"240":{},"241":{},"242":{},"243":{},"244":{},"245":{},"246":{},"247":{},"248":{},"249":{},"250":{},"251":{},"252":{},"253":{},"254":{},"255":{},"256":{},"257":{},"258":{},"259":{},"260":{},"261":{},"262":{},"263":{},"264":{}}}],["store.mutablepgpkeystore",{"_index":211,"name":{},"parent":{"213":{},"214":{},"215":{},"216":{},"217":{},"218":{},"219":{},"220":{},"221":{},"222":{},"223":{},"224":{},"225":{},"226":{},"227":{},"228":{},"229":{},"230":{},"231":{},"232":{},"233":{},"234":{},"235":{},"236":{},"237":{},"238":{}}}],["stringtovalue",{"_index":634,"name":{"758":{}},"parent":{}}],["strip0x",{"_index":610,"name":{"730":{}},"parent":{}}],["stub",{"_index":663,"name":{"809":{},"816":{},"822":{},"829":{},"833":{},"839":{}},"parent":{"810":{},"817":{},"823":{},"825":{},"827":{},"830":{},"834":{},"840":{}}}],["stub.activatedroutestub",{"_index":665,"name":{},"parent":{"811":{},"812":{},"813":{},"814":{}}}],["stub.footerstubcomponent",{"_index":685,"name":{},"parent":{"828":{}}}],["stub.routerlinkdirectivestub",{"_index":674,"name":{},"parent":{"818":{},"819":{},"820":{},"821":{}}}],["stub.sidebarstubcomponent",{"_index":681,"name":{},"parent":{"824":{}}}],["stub.tokenservicestub",{"_index":689,"name":{},"parent":{"831":{},"832":{}}}],["stub.topbarstubcomponent",{"_index":683,"name":{},"parent":{"826":{}}}],["stub.transactionservicestub",{"_index":693,"name":{},"parent":{"835":{},"836":{},"837":{},"838":{}}}],["stub.userservicestub",{"_index":696,"name":{},"parent":{"841":{},"842":{},"843":{},"844":{},"845":{},"846":{},"847":{}}}],["subject",{"_index":666,"name":{"812":{}},"parent":{}}],["submitted",{"_index":398,"name":{"451":{},"494":{},"557":{},"601":{}},"parent":{}}],["success",{"_index":200,"name":{"202":{}},"parent":{}}],["sum",{"_index":28,"name":{"29":{}},"parent":{"30":{}}}],["supply",{"_index":166,"name":{"166":{}},"parent":{}}],["switchwindows",{"_index":402,"name":{"458":{}},"parent":{}}],["symbol",{"_index":164,"name":{"164":{},"209":{}},"parent":{}}],["sync.service",{"_index":271,"name":{"315":{}},"parent":{"316":{}}}],["sync.service.blocksyncservice",{"_index":273,"name":{},"parent":{"317":{},"318":{},"319":{},"320":{},"321":{},"322":{},"323":{},"324":{},"325":{}}}],["tag",{"_index":159,"name":{"159":{}},"parent":{}}],["tel",{"_index":118,"name":{"112":{}},"parent":{}}],["test",{"_index":660,"name":{"808":{}},"parent":{}}],["testing",{"_index":669,"name":{"815":{}},"parent":{"901":{},"902":{},"903":{},"904":{},"905":{},"906":{},"907":{},"908":{}}}],["testing/activated",{"_index":661,"name":{"809":{}},"parent":{"810":{},"811":{},"812":{},"813":{},"814":{}}}],["testing/router",{"_index":670,"name":{"816":{}},"parent":{"817":{},"818":{},"819":{},"820":{},"821":{}}}],["testing/shared",{"_index":678,"name":{"822":{}},"parent":{"823":{},"824":{},"825":{},"826":{},"827":{},"828":{}}}],["testing/token",{"_index":686,"name":{"829":{}},"parent":{"830":{},"831":{},"832":{}}}],["testing/transaction",{"_index":691,"name":{"833":{}},"parent":{"834":{},"835":{},"836":{},"837":{},"838":{}}}],["testing/user",{"_index":694,"name":{"839":{}},"parent":{"840":{},"841":{},"842":{},"843":{},"844":{},"845":{},"846":{},"847":{}}}],["timestamp",{"_index":201,"name":{"203":{}},"parent":{}}],["title",{"_index":375,"name":{"426":{}},"parent":{}}],["to",{"_index":195,"name":{"194":{},"739":{}},"parent":{}}],["toggle.directive",{"_index":386,"name":{"438":{},"690":{}},"parent":{"439":{},"691":{}}}],["toggle.directive.menutoggledirective",{"_index":573,"name":{},"parent":{"692":{},"693":{}}}],["toggle.directive.passwordtoggledirective",{"_index":388,"name":{},"parent":{"440":{},"441":{},"442":{},"443":{}}}],["toggledisplay",{"_index":403,"name":{"459":{}},"parent":{}}],["togglepasswordvisibility",{"_index":390,"name":{"443":{}},"parent":{}}],["tohex",{"_index":609,"name":{"729":{}},"parent":{}}],["token",{"_index":162,"name":{"162":{},"196":{},"628":{},"880":{}},"parent":{}}],["tokendetailscomponent",{"_index":530,"name":{"626":{}},"parent":{}}],["tokenratiopipe",{"_index":581,"name":{"699":{}},"parent":{}}],["tokenregistry",{"_index":14,"name":{"12":{},"364":{},"849":{}},"parent":{}}],["tokens",{"_index":539,"name":{"640":{}},"parent":{}}],["tokenscomponent",{"_index":536,"name":{"634":{}},"parent":{}}],["tokenservice",{"_index":316,"name":{"361":{},"895":{}},"parent":{}}],["tokenservicestub",{"_index":688,"name":{"830":{},"907":{}},"parent":{}}],["tokensmodule",{"_index":542,"name":{"646":{}},"parent":{}}],["tokensroutingmodule",{"_index":533,"name":{"631":{}},"parent":{}}],["topbarcomponent",{"_index":605,"name":{"724":{}},"parent":{}}],["topbarstubcomponent",{"_index":682,"name":{"825":{},"904":{}},"parent":{}}],["totalaccounts",{"_index":10,"name":{"9":{}},"parent":{}}],["totaltokens",{"_index":18,"name":{"19":{}},"parent":{}}],["tovalue",{"_index":188,"name":{"187":{},"760":{}},"parent":{}}],["trader",{"_index":189,"name":{"188":{}},"parent":{}}],["traderbloxberglink",{"_index":550,"name":{"654":{}},"parent":{}}],["transaction",{"_index":191,"name":{"191":{},"487":{},"651":{},"672":{},"883":{}},"parent":{}}],["transactiondatasource",{"_index":561,"name":{"667":{}},"parent":{}}],["transactiondetailscomponent",{"_index":546,"name":{"649":{}},"parent":{}}],["transactiondisplayedcolumns",{"_index":562,"name":{"668":{}},"parent":{}}],["transactionlist",{"_index":326,"name":{"373":{}},"parent":{}}],["transactions",{"_index":325,"name":{"372":{},"488":{},"671":{}},"parent":{}}],["transactionscomponent",{"_index":559,"name":{"665":{}},"parent":{}}],["transactionsdatasource",{"_index":412,"name":{"466":{}},"parent":{}}],["transactionsdefaultpagesize",{"_index":414,"name":{"468":{}},"parent":{}}],["transactionsdisplayedcolumns",{"_index":413,"name":{"467":{}},"parent":{}}],["transactionservice",{"_index":323,"name":{"370":{},"893":{}},"parent":{}}],["transactionservicestub",{"_index":692,"name":{"834":{},"908":{}},"parent":{}}],["transactionsmodule",{"_index":565,"name":{"684":{}},"parent":{}}],["transactionspagesizeoptions",{"_index":415,"name":{"469":{}},"parent":{}}],["transactionsroutingmodule",{"_index":556,"name":{"662":{}},"parent":{}}],["transactionssubject",{"_index":327,"name":{"374":{}},"parent":{}}],["transactionstype",{"_index":432,"name":{"489":{},"673":{}},"parent":{}}],["transactionstypes",{"_index":434,"name":{"491":{},"674":{}},"parent":{}}],["transactiontablepaginator",{"_index":416,"name":{"470":{}},"parent":{}}],["transactiontablesort",{"_index":417,"name":{"471":{}},"parent":{}}],["transferrequest",{"_index":336,"name":{"385":{}},"parent":{}}],["transform",{"_index":578,"name":{"697":{},"701":{}},"parent":{}}],["trusteddeclaratoraddress",{"_index":651,"name":{"775":{},"790":{},"805":{}},"parent":{}}],["trustedusers",{"_index":524,"name":{"615":{}},"parent":{}}],["tx",{"_index":190,"name":{"190":{},"197":{},"200":{},"734":{},"884":{},"900":{}},"parent":{}}],["txhash",{"_index":202,"name":{"204":{}},"parent":{}}],["txhelper",{"_index":152,"name":{"150":{}},"parent":{}}],["txindex",{"_index":203,"name":{"205":{}},"parent":{}}],["txtoken",{"_index":204,"name":{"206":{},"885":{}},"parent":{}}],["type",{"_index":98,"name":{"90":{},"199":{}},"parent":{}}],["updatemeta",{"_index":351,"name":{"403":{}},"parent":{}}],["url",{"_index":508,"name":{"593":{}},"parent":{}}],["useclass",{"_index":73,"name":{"65":{}},"parent":{}}],["user",{"_index":137,"name":{"131":{},"189":{}},"parent":{}}],["userdatasource",{"_index":418,"name":{"472":{}},"parent":{}}],["userdisplayedcolumns",{"_index":419,"name":{"473":{}},"parent":{}}],["userid",{"_index":160,"name":{"160":{}},"parent":{}}],["userinfo",{"_index":328,"name":{"375":{}},"parent":{}}],["users",{"_index":697,"name":{"842":{}},"parent":{}}],["usersdefaultpagesize",{"_index":420,"name":{"474":{}},"parent":{}}],["userservice",{"_index":338,"name":{"387":{},"894":{}},"parent":{}}],["userservicestub",{"_index":695,"name":{"840":{},"906":{}},"parent":{}}],["userspagesizeoptions",{"_index":421,"name":{"475":{}},"parent":{}}],["usertablepaginator",{"_index":422,"name":{"476":{}},"parent":{}}],["usertablesort",{"_index":423,"name":{"477":{}},"parent":{}}],["v",{"_index":618,"name":{"742":{}},"parent":{}}],["validation",{"_index":78,"name":{"69":{}},"parent":{"70":{},"71":{}}}],["value",{"_index":197,"name":{"198":{},"740":{}},"parent":{}}],["vcard",{"_index":114,"name":{"107":{}},"parent":{}}],["vcardvalidation",{"_index":80,"name":{"71":{},"864":{}},"parent":{}}],["verify",{"_index":248,"name":{"278":{},"294":{}},"parent":{}}],["version",{"_index":119,"name":{"113":{}},"parent":{}}],["viewaccount",{"_index":440,"name":{"500":{},"545":{}},"parent":{}}],["viewrecipient",{"_index":552,"name":{"657":{}},"parent":{}}],["viewsender",{"_index":551,"name":{"656":{}},"parent":{}}],["viewtoken",{"_index":540,"name":{"643":{}},"parent":{}}],["viewtrader",{"_index":553,"name":{"658":{}},"parent":{}}],["viewtransaction",{"_index":439,"name":{"499":{},"678":{}},"parent":{}}],["w3",{"_index":150,"name":{"147":{},"151":{},"878":{}},"parent":{}}],["web3",{"_index":311,"name":{"355":{},"376":{}},"parent":{}}],["web3provider",{"_index":648,"name":{"772":{},"787":{},"802":{}},"parent":{}}],["weight",{"_index":171,"name":{"172":{}},"parent":{}}],["wrap",{"_index":357,"name":{"409":{}},"parent":{}}],["write",{"_index":627,"name":{"751":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file diff --git a/docs/typedoc/classes/app__models_settings.settings.html b/docs/typedoc/classes/app__models_settings.settings.html index f028c8d..4eed569 100644 --- a/docs/typedoc/classes/app__models_settings.settings.html +++ b/docs/typedoc/classes/app__models_settings.settings.html @@ -68,6 +68,14 @@
              +
              +
              +
              +
              exports
              +
              +
              +
              +

              Hierarchy

                @@ -110,7 +118,7 @@
              • Parameters

                @@ -132,7 +140,7 @@
                registry: any
              @@ -142,7 +150,7 @@
              scanFilter: any
            • @@ -152,17 +160,17 @@
              txHelper: any

              w3

              -
              w3: W3 = ...
              +
              w3: W3 = ...
              @@ -205,8 +213,8 @@ diff --git a/docs/typedoc/classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html b/docs/typedoc/classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html index 2f65583..0e925d8 100644 --- a/docs/typedoc/classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html +++ b/docs/typedoc/classes/app_pages_accounts_account_details_account_details_component.accountdetailscomponent.html @@ -383,7 +383,7 @@

              transactions

              -
              transactions: Transaction[]
              +
              transactions: Transaction[]
              @@ -146,7 +154,7 @@
              gender: string
              @@ -156,7 +164,7 @@
              identities: { evm: { bloxberg:8996: string[]; oldchain:1: string[] }; latitude: number; longitude: number }
              @@ -188,7 +196,7 @@
              location: { area?: string; area_name: string; area_type?: string }
              @@ -212,7 +220,7 @@
              products: string[]
              @@ -222,7 +230,7 @@
              type: string
              @@ -232,7 +240,7 @@
              vcard: { email: [{ value: string }]; fn: [{ value: string }]; n: [{ value: string[] }]; tel: [{ meta: { TYP: string[] }; value: string }]; version: [{ value: string }] }
              diff --git a/docs/typedoc/interfaces/app__models_account.meta.html b/docs/typedoc/interfaces/app__models_account.meta.html index f246aae..4aaa876 100644 --- a/docs/typedoc/interfaces/app__models_account.meta.html +++ b/docs/typedoc/interfaces/app__models_account.meta.html @@ -68,6 +68,14 @@
              +
              +
              +
              +
              exports
              +
              +
              +
              +

              Hierarchy

                @@ -99,7 +107,7 @@
              @@ -109,7 +117,7 @@
              id: string
              @@ -119,7 +127,7 @@
              signature: Signature
              diff --git a/docs/typedoc/interfaces/app__models_account.metaresponse.html b/docs/typedoc/interfaces/app__models_account.metaresponse.html index b876784..476ad93 100644 --- a/docs/typedoc/interfaces/app__models_account.metaresponse.html +++ b/docs/typedoc/interfaces/app__models_account.metaresponse.html @@ -68,6 +68,14 @@
              +
              +
              +
              +
              exports
              +
              +
              +
              +

              Hierarchy

                @@ -98,7 +106,7 @@
                id: string
              @@ -108,7 +116,7 @@
              m: Meta
              diff --git a/docs/typedoc/interfaces/app__models_account.signature.html b/docs/typedoc/interfaces/app__models_account.signature.html index 2c75e0a..2b22055 100644 --- a/docs/typedoc/interfaces/app__models_account.signature.html +++ b/docs/typedoc/interfaces/app__models_account.signature.html @@ -68,6 +68,14 @@
              +
              +
              +
              +
              exports
              +
              +
              +
              +

              Hierarchy

                @@ -100,7 +108,7 @@
                algo: string
              @@ -110,7 +118,7 @@
              data: string
              @@ -120,7 +128,7 @@
              digest: string
              @@ -130,7 +138,7 @@
              engine: string
              diff --git a/docs/typedoc/interfaces/app__models_mappings.action.html b/docs/typedoc/interfaces/app__models_mappings.action.html index dd0d98e..eb7b8f0 100644 --- a/docs/typedoc/interfaces/app__models_mappings.action.html +++ b/docs/typedoc/interfaces/app__models_mappings.action.html @@ -68,6 +68,14 @@
              +
              +
              +
              +
              exports
              +
              +
              +
              +

              Hierarchy

                @@ -101,7 +109,7 @@
                action: string
              @@ -111,7 +119,7 @@
              approval: boolean
              @@ -121,7 +129,7 @@
              id: number
              @@ -131,7 +139,7 @@
              role: string
              @@ -141,7 +149,7 @@
              user: string
              diff --git a/docs/typedoc/interfaces/app__models_mappings.areaname.html b/docs/typedoc/interfaces/app__models_mappings.areaname.html index 1db09b3..2c4b405 100644 --- a/docs/typedoc/interfaces/app__models_mappings.areaname.html +++ b/docs/typedoc/interfaces/app__models_mappings.areaname.html @@ -68,6 +68,14 @@
              +
              +
              +
              +
              exports
              +
              +
              +
              +

              Hierarchy

                @@ -98,7 +106,7 @@
                locations: string[]
              @@ -108,7 +116,7 @@
              name: string
              diff --git a/docs/typedoc/interfaces/app__models_mappings.areatype.html b/docs/typedoc/interfaces/app__models_mappings.areatype.html index ec2c47e..9f5eaae 100644 --- a/docs/typedoc/interfaces/app__models_mappings.areatype.html +++ b/docs/typedoc/interfaces/app__models_mappings.areatype.html @@ -68,6 +68,14 @@
              +
              +
              +
              +
              exports
              +
              +
              +
              +

              Hierarchy

                @@ -98,7 +106,7 @@
                area: string[]
              @@ -108,7 +116,7 @@
              name: string
              diff --git a/docs/typedoc/interfaces/app__models_mappings.category.html b/docs/typedoc/interfaces/app__models_mappings.category.html index 0957ae6..648d0aa 100644 --- a/docs/typedoc/interfaces/app__models_mappings.category.html +++ b/docs/typedoc/interfaces/app__models_mappings.category.html @@ -68,6 +68,14 @@
              +
              +
              +
              +
              exports
              +
              +
              +
              +

              Hierarchy

                @@ -98,7 +106,7 @@
                name: string
              @@ -108,7 +116,7 @@
              products: string[]
              diff --git a/docs/typedoc/classes/app__models_settings.w3.html b/docs/typedoc/interfaces/app__models_settings.w3.html similarity index 70% rename from docs/typedoc/classes/app__models_settings.w3.html rename to docs/typedoc/interfaces/app__models_settings.w3.html index 686501f..02d20f8 100644 --- a/docs/typedoc/classes/app__models_settings.w3.html +++ b/docs/typedoc/interfaces/app__models_settings.w3.html @@ -61,13 +61,21 @@ W3 -

              Class W3

              +

              Interface W3

              +
              +
              +
              +
              exports
              +
              +
              +
              +

              Hierarchy

              -
              -

              Constructors

              -
              - -

              constructor

              -
                -
              • new W3(): W3
              • -
              -
                -
              • - -

                Returns W3

                -
              • -
              -
              -

              Properties

              -
              +

              engine

              engine: any
              -
              +

              provider

              provider: any
              @@ -151,20 +136,17 @@
              @@ -121,7 +129,7 @@
              name: string
              @@ -131,7 +139,7 @@
              tag: number
              @@ -141,7 +149,7 @@
              userid: string
              diff --git a/docs/typedoc/interfaces/app__models_token.token.html b/docs/typedoc/interfaces/app__models_token.token.html index d4a2edc..30aa930 100644 --- a/docs/typedoc/interfaces/app__models_token.token.html +++ b/docs/typedoc/interfaces/app__models_token.token.html @@ -68,6 +68,14 @@
              +
              +
              +
              +
              exports
              +
              +
              +
              +

              Hierarchy

                @@ -104,7 +112,7 @@
                address: string
              @@ -114,7 +122,7 @@
              decimals: string
              @@ -124,7 +132,7 @@
              name: string
              @@ -134,7 +142,7 @@
              owner: string
              @@ -144,7 +152,7 @@
              reserveRatio: string
              @@ -154,7 +162,7 @@
              reserves: { 0xa686005CE37Dce7738436256982C3903f2E4ea8E?: { balance: string; weight: string } }
              @@ -180,7 +188,7 @@
              supply: string
              @@ -190,7 +198,7 @@
              symbol: string
              diff --git a/docs/typedoc/classes/app__models_transaction.blocksbloom.html b/docs/typedoc/interfaces/app__models_transaction.blocksbloom.html similarity index 69% rename from docs/typedoc/classes/app__models_transaction.blocksbloom.html rename to docs/typedoc/interfaces/app__models_transaction.blocksbloom.html index 5976f51..c9392c7 100644 --- a/docs/typedoc/classes/app__models_transaction.blocksbloom.html +++ b/docs/typedoc/interfaces/app__models_transaction.blocksbloom.html @@ -61,13 +61,21 @@ BlocksBloom -

              Class BlocksBloom

              +

              Interface BlocksBloom

              +
              +
              +
              +
              exports
              +
              +
              +
              +

              Hierarchy

              -
              -

              Constructors

              -
              - -

              constructor

              - - -
              -

              Properties

              -
              +

              alg

              alg: string
              + +
              +
              + +

              blockFilter

              +
              blockFilter: string
              -
              - -

              blockFilter

              -
              blockFilter: string
              - -
              -
              +

              blocktxFilter

              blocktxFilter: string
              - -
              -
              - -

              filterRounds

              -
              filterRounds: number
              -
              +
              + +

              filterRounds

              +
              filterRounds: number
              + +
              +

              low

              low: number
              @@ -185,41 +170,38 @@
              @@ -231,17 +213,16 @@

              Legend

              -
                -
              • Class
              • -
              • Constructor
              • -
              • Property
              • -
              • Variable
              • Function
              • Interface
              • +
              • Property
              • +
              +
                +
              • Class
              diff --git a/docs/typedoc/classes/app__models_transaction.conversion.html b/docs/typedoc/interfaces/app__models_transaction.conversion.html similarity index 65% rename from docs/typedoc/classes/app__models_transaction.conversion.html rename to docs/typedoc/interfaces/app__models_transaction.conversion.html index 81eff08..6805354 100644 --- a/docs/typedoc/classes/app__models_transaction.conversion.html +++ b/docs/typedoc/interfaces/app__models_transaction.conversion.html @@ -61,13 +61,21 @@ Conversion -

              Class Conversion

              +

              Interface Conversion

              +
              +
              +
              +
              exports
              +
              +
              +
              +

              Hierarchy

              -
              -

              Constructors

              -
              - -

              constructor

              - - -
              -

              Properties

              -
              +

              destinationToken

              -
              destinationToken: TxToken
              +
              destinationToken: TxToken
              -
              +

              fromValue

              fromValue: number
              -
              +

              sourceToken

              -
              sourceToken: TxToken
              +
              sourceToken: TxToken
              -
              +

              toValue

              toValue: number
              -
              +

              trader

              trader: string
              -
              +

              tx

              -
              tx: Tx
              +
              tx: Tx
              -
              +

              user

              - +
              @@ -205,49 +190,46 @@
              +
              +
              +
              +
              exports
              +
              +
              +
              +

              Hierarchy

              -
              -

              Constructors

              -
              - -

              constructor

              - - -
              -

              Properties

              -
              +

              from

              from: string
              @@ -131,27 +116,27 @@
              -
              +

              recipient

              -
              recipient: AccountDetails
              +
              recipient: AccountDetails
              -
              +

              sender

              - +
              -
              +

              to

              to: string
              @@ -161,27 +146,27 @@
              -
              +

              token

              -
              token: TxToken
              +
              token: TxToken
              -
              +

              tx

              -
              tx: Tx
              +
              tx: Tx
              -
              +

              Optional type

              type: string
              @@ -191,7 +176,7 @@
              -
              +

              value

              value: number
              @@ -216,52 +201,49 @@
              +
              +
              +
              +
              exports
              +
              +
              +
              +

              Hierarchy

              -
              -

              Constructors

              -
              - -

              constructor

              -
                -
              • new Tx(): Tx
              • -
              -
                -
              • - -

                Returns Tx

                -
              • -
              -
              -

              Properties

              -
              +

              block

              block: number
              -
              +

              success

              success: boolean
              -
              +

              timestamp

              timestamp: number
              -
              +

              txHash

              txHash: string
              -
              +

              txIndex

              txIndex: number
              @@ -183,43 +168,40 @@
              +
              +
              +
              +
              exports
              +
              +
              +
              +

              Hierarchy

              -
              -

              Constructors

              -
              - -

              constructor

              - - -
              -

              Properties

              -
              +

              address

              address: string
              -
              +

              name

              name: string
              -
              +

              symbol

              symbol: string
              @@ -161,33 +146,30 @@
              diff --git a/docs/typedoc/modules/app__models_settings.html b/docs/typedoc/modules/app__models_settings.html index 4df7438..8ccc8cf 100644 --- a/docs/typedoc/modules/app__models_settings.html +++ b/docs/typedoc/modules/app__models_settings.html @@ -73,7 +73,12 @@

              Classes

              + +
              +

              Interfaces

              +
              @@ -96,8 +101,8 @@
            • Settings
            • -
            • - W3 +
            • + W3
            • diff --git a/docs/typedoc/modules/app__models_transaction.html b/docs/typedoc/modules/app__models_transaction.html index 67a060e..aa4158a 100644 --- a/docs/typedoc/modules/app__models_transaction.html +++ b/docs/typedoc/modules/app__models_transaction.html @@ -70,13 +70,13 @@
              @@ -96,20 +96,20 @@ diff --git a/src/app/_models/account.ts b/src/app/_models/account.ts index 698e19c..cded1bd 100644 --- a/src/app/_models/account.ts +++ b/src/app/_models/account.ts @@ -1,3 +1,4 @@ +/** Account data interface */ interface AccountDetails { date_registered: number; gender: string; @@ -51,6 +52,7 @@ interface AccountDetails { }; } +/** Meta signature interface */ interface Signature { algo: string; data: string; @@ -58,17 +60,20 @@ interface Signature { engine: string; } +/** Meta object interface */ interface Meta { data: AccountDetails; id: string; signature: Signature; } +/** Meta response interface */ interface MetaResponse { id: string; m: Meta; } +/** Default account data object */ const defaultAccount: AccountDetails = { date_registered: Date.now(), gender: 'other', @@ -116,4 +121,5 @@ const defaultAccount: AccountDetails = { }, }; -export { AccountDetails, Signature, Meta, MetaResponse, defaultAccount }; +/** @exports */ +export { AccountDetails, Meta, MetaResponse, Signature, defaultAccount }; diff --git a/src/app/_models/index.ts b/src/app/_models/index.ts index a6dfb15..a122a05 100644 --- a/src/app/_models/index.ts +++ b/src/app/_models/index.ts @@ -1,6 +1,6 @@ -export * from '@app/_models/transaction'; -export * from '@app/_models/settings'; export * from '@app/_models/account'; +export * from '@app/_models/mappings'; +export * from '@app/_models/settings'; export * from '@app/_models/staff'; export * from '@app/_models/token'; -export * from '@app/_models/mappings'; +export * from '@app/_models/transaction'; diff --git a/src/app/_models/mappings.ts b/src/app/_models/mappings.ts index fcf7b79..94dd390 100644 --- a/src/app/_models/mappings.ts +++ b/src/app/_models/mappings.ts @@ -1,3 +1,4 @@ +/** Action object interface */ interface Action { id: number; user: string; @@ -6,19 +7,23 @@ interface Action { approval: boolean; } -interface Category { - name: string; - products: Array; -} - +/** Area name object interface */ interface AreaName { name: string; locations: Array; } +/** Area type object interface */ interface AreaType { name: string; area: Array; } -export { Action, Category, AreaName, AreaType }; +/** Category object interface */ +interface Category { + name: string; + products: Array; +} + +/** @exports */ +export { Action, AreaName, AreaType, Category }; diff --git a/src/app/_models/settings.ts b/src/app/_models/settings.ts index 77f6896..2f0d666 100644 --- a/src/app/_models/settings.ts +++ b/src/app/_models/settings.ts @@ -1,3 +1,4 @@ +/** Settings class */ class Settings { w3: W3 = { engine: undefined, @@ -12,9 +13,11 @@ class Settings { } } -class W3 { +/** Web3 object interface */ +interface W3 { engine: any; provider: any; } +/** @exports */ export { Settings, W3 }; diff --git a/src/app/_models/staff.ts b/src/app/_models/staff.ts index cb11e42..adbe991 100644 --- a/src/app/_models/staff.ts +++ b/src/app/_models/staff.ts @@ -1,3 +1,4 @@ +/** Staff object interface */ interface Staff { comment: string; email: string; @@ -6,4 +7,5 @@ interface Staff { userid: string; } +/** @exports */ export { Staff }; diff --git a/src/app/_models/token.ts b/src/app/_models/token.ts index 12de380..b7334ee 100644 --- a/src/app/_models/token.ts +++ b/src/app/_models/token.ts @@ -1,3 +1,4 @@ +/** Token object interface */ interface Token { name: string; symbol: string; @@ -14,4 +15,5 @@ interface Token { owner?: string; } +/** @exports */ export { Token }; diff --git a/src/app/_models/transaction.ts b/src/app/_models/transaction.ts index 3b2a78f..963fc5c 100644 --- a/src/app/_models/transaction.ts +++ b/src/app/_models/transaction.ts @@ -1,6 +1,8 @@ +// Application imports import { AccountDetails } from '@app/_models/account'; -class BlocksBloom { +/** BlocksBloom object interface */ +interface BlocksBloom { low: number; blockFilter: string; blocktxFilter: string; @@ -8,21 +10,19 @@ class BlocksBloom { filterRounds: number; } -class TxToken { - address: string; - name: string; - symbol: string; +/** Conversion object interface */ +interface Conversion { + destinationToken: TxToken; + fromValue: number; + sourceToken: TxToken; + toValue: number; + trader: string; + user: AccountDetails; + tx: Tx; } -class Tx { - block: number; - success: boolean; - timestamp: number; - txHash: string; - txIndex: number; -} - -class Transaction { +/** Transaction object interface */ +interface Transaction { from: string; sender: AccountDetails; to: string; @@ -33,14 +33,21 @@ class Transaction { type?: string; } -class Conversion { - destinationToken: TxToken; - fromValue: number; - sourceToken: TxToken; - toValue: number; - trader: string; - user: AccountDetails; - tx: Tx; +/** Transaction data interface */ +interface Tx { + block: number; + success: boolean; + timestamp: number; + txHash: string; + txIndex: number; } -export { BlocksBloom, TxToken, Tx, Transaction, Conversion }; +/** Transaction token object interface */ +interface TxToken { + address: string; + name: string; + symbol: string; +} + +/** @exports */ +export { BlocksBloom, Conversion, Transaction, Tx, TxToken };