From 2bc6dcf0332116916c1836dbc8821418807827ec Mon Sep 17 00:00:00 2001 From: Spencer Ofwiti Date: Tue, 11 May 2021 12:05:04 +0300 Subject: [PATCH] Add documentation to eth modules. --- docs/compodoc/classes/AccountIndex.html | 247 ++++++++++++++++-- docs/compodoc/classes/HttpError.html | 5 + docs/compodoc/classes/MutablePgpKeyStore.html | 111 ++++---- docs/compodoc/classes/TokenRegistry.html | 198 ++++++++++++-- docs/compodoc/coverage.html | 48 ++-- .../images/coverage-badge-documentation.svg | 2 +- docs/compodoc/injectables/AuthService.html | 24 +- .../injectables/GlobalErrorHandler.html | 9 +- docs/compodoc/interfaces/MutableKeyStore.html | 106 ++++---- docs/compodoc/js/search/search_index.js | 4 +- docs/compodoc/miscellaneous/variables.html | 24 ++ docs/compodoc/modules/AppModule.html | 40 +-- .../modules/AppModule/dependencies.svg | 40 +-- docs/compodoc/modules/AuthModule.html | 38 +-- .../modules/AuthModule/dependencies.svg | 38 +-- docs/compodoc/modules/TransactionsModule.html | 56 ++-- .../TransactionsModule/dependencies.svg | 56 ++-- docs/typedoc/assets/js/search.js | 2 +- .../app__eth_accountindex.accountindex.html | 126 ++++++++- ...app__eth_token_registry.tokenregistry.html | 104 +++++++- ...obal_error_handler.globalerrorhandler.html | 2 +- ..._pgp_pgp_key_store.mutablepgpkeystore.html | 58 ++-- ...pp__services_auth_service.authservice.html | 18 +- ...pp__pgp_pgp_key_store.mutablekeystore.html | 50 ++-- package.json | 5 +- src/app/_eth/accountIndex.ts | 94 ++++++- src/app/_eth/token-registry.spec.ts | 1 + src/app/_eth/token-registry.ts | 80 +++++- 28 files changed, 1174 insertions(+), 412 deletions(-) diff --git a/docs/compodoc/classes/AccountIndex.html b/docs/compodoc/classes/AccountIndex.html index 004d7cc..064208f 100644 --- a/docs/compodoc/classes/AccountIndex.html +++ b/docs/compodoc/classes/AccountIndex.html @@ -63,9 +63,22 @@ src/app/_eth/accountIndex.ts

+

+

Description

+

+

+

Provides an instance of the accounts registry contract. +Allows querying of accounts that have been registered as valid accounts in the network.

+ +

+

+

Example

+

+
+

Index

@@ -143,12 +156,14 @@ - + +

Create a connection to the deployed account registry contract.

+
Parameters : @@ -157,6 +172,7 @@ + @@ -171,6 +187,12 @@ No + @@ -183,6 +205,12 @@ Yes +
Name Type OptionalDescription
+
    +
  • The deployed account registry contract's address.
  • +
+
+
signerAddress +
    +
  • The account address of the account that deployed the account registry contract.
  • +
+
+
@@ -218,10 +246,16 @@ - + + + +

The instance of the account registry contract.

+
+ + @@ -245,10 +279,16 @@ - + + + +

The deployed account registry contract's address.

+
+ + @@ -272,10 +312,16 @@ - + + + +

The account address of the account that deployed the account registry contract.

+
+ + @@ -311,14 +357,17 @@ - + +

Registers an account to the accounts registry. +Requires availability of the signer address.

+
Parameters : @@ -328,6 +377,7 @@ Name Type Optional + Description @@ -342,18 +392,34 @@ + +
    +
  • The account address to be registered to the accounts registry contract.
  • +
+ +
+ Example : +
+
Prints &quot;true&quot; for registration of &#39;0xc0ffee254729296a45a3885639AC7E10F9d54979&#39;:</p>
+<p>```typescript</p>
+<ul>
+<li>console.log(await addToAccountRegistry(&#39;0xc0ffee254729296a45a3885639AC7E10F9d54979&#39;));</li>
+<li>```</li>
+</ul>
+
Returns : Promise<boolean>
- +

true - If registration is successful or account had already been registered.

+
@@ -384,14 +450,17 @@ - + +

Checks whether a specific account address has been registered in the accounts registry. +Returns "true" for available and "false" otherwise.

+
Parameters : @@ -401,6 +470,7 @@ Name Type Optional + Description @@ -415,18 +485,34 @@ + +
    +
  • The account address to be validated.
  • +
+ +
+ Example : +
+
Prints &quot;true&quot; or &quot;false&quot; depending on whether &#39;0xc0ffee254729296a45a3885639AC7E10F9d54979&#39; has been registered:</p>
+<p>```typescript</p>
+<ul>
+<li>console.log(await haveAccount(&#39;0xc0ffee254729296a45a3885639AC7E10F9d54979&#39;));</li>
+<li>```</li>
+</ul>
+
Returns : Promise<boolean>
- +

true - If the address has been registered in the accounts registry.

+
@@ -457,14 +543,16 @@ - + +

Returns a specified number of the most recently registered accounts.

+
Parameters : @@ -474,6 +562,7 @@ Name Type Optional + Description @@ -488,18 +577,34 @@ + +
    +
  • The number of accounts to return from the accounts registry.
  • +
+ +
+ Example : +
+
Prints an array of accounts:</p>
+<p>```typescript</p>
+<ul>
+<li>console.log(await last(5));</li>
+<li>```</li>
+</ul>
+
Returns : Promise<Array<string>>
- +

An array of registered account addresses.

+
@@ -530,19 +635,36 @@ - + +

Returns the total number of accounts that have been registered in the network.

+
+
+ Example : +
+
Prints the total number of registered accounts:</p>
+<p>```typescript</p>
+<ul>
+<li>console.log(await totalAccounts());</li>
+<li>```</li>
+</ul>
+
+
Returns : Promise<number>
+
+

The total number of registered accounts.

+ +
@@ -557,17 +679,37 @@
-
import {environment} from '@src/environments/environment';
-import Web3 from 'web3';
+        
import Web3 from 'web3';
 
+// Application imports
+import {environment} from '@src/environments/environment';
+
+/** Fetch the account registry contract's ABI. */
 const abi: Array<any> = require('@src/assets/js/block-sync/data/AccountRegistry.json');
+/** Establish a connection to the blockchain network. */
 const web3: Web3 = new Web3(environment.web3Provider);
 
+/**
+ * Provides an instance of the accounts registry contract.
+ * Allows querying of accounts that have been registered as valid accounts in the network.
+ *
+ * @remarks
+ * This is our interface to the accounts registry contract.
+ */
 export class AccountIndex {
-  contractAddress: string;
-  signerAddress: string;
+  /** The instance of the account registry contract. */
   contract: any;
+  /** The deployed account registry contract's address. */
+  contractAddress: string;
+  /** The account address of the account that deployed the account registry contract. */
+  signerAddress: string;
 
+  /**
+   * Create a connection to the deployed account registry contract.
+   *
+   * @param contractAddress - The deployed account registry contract's address.
+   * @param signerAddress - The account address of the account that deployed the account registry contract.
+   */
   constructor(contractAddress: string, signerAddress?: string) {
     this.contractAddress = contractAddress;
     this.contract = new web3.eth.Contract(abi, this.contractAddress);
@@ -578,14 +720,58 @@ export class AccountIndex {
     }
   }
 
-  public async totalAccounts(): Promise<number> {
-    return await this.contract.methods.count().call();
+  /**
+   * Registers an account to the accounts registry.
+   * Requires availability of the signer address.
+   *
+   * @async
+   * @example
+   * Prints "true" for registration of '0xc0ffee254729296a45a3885639AC7E10F9d54979':
+   * ```typescript
+   * console.log(await addToAccountRegistry('0xc0ffee254729296a45a3885639AC7E10F9d54979'));
+   * ```
+   *
+   * @param address - The account address to be registered to the accounts registry contract.
+   * @returns true - If registration is successful or account had already been registered.
+   */
+  public async addToAccountRegistry(address: string): Promise<boolean> {
+    if (!await this.haveAccount(address)) {
+      return await this.contract.methods.add(address).send({from: this.signerAddress});
+    }
+    return true;
   }
 
+  /**
+   * Checks whether a specific account address has been registered in the accounts registry.
+   * Returns "true" for available and "false" otherwise.
+   *
+   * @async
+   * @example
+   * Prints "true" or "false" depending on whether '0xc0ffee254729296a45a3885639AC7E10F9d54979' has been registered:
+   * ```typescript
+   * console.log(await haveAccount('0xc0ffee254729296a45a3885639AC7E10F9d54979'));
+   * ```
+   *
+   * @param address - The account address to be validated.
+   * @returns true - If the address has been registered in the accounts registry.
+   */
   public async haveAccount(address: string): Promise<boolean> {
     return await this.contract.methods.accountIndex(address).call() !== 0;
   }
 
+  /**
+   * Returns a specified number of the most recently registered accounts.
+   *
+   * @async
+   * @example
+   * Prints an array of accounts:
+   * ```typescript
+   * console.log(await last(5));
+   * ```
+   *
+   * @param numberOfAccounts - The number of accounts to return from the accounts registry.
+   * @returns An array of registered account addresses.
+   */
   public async last(numberOfAccounts: number): Promise<Array<string>> {
     const count: number = await this.totalAccounts();
     let lowest: number = count - numberOfAccounts - 1;
@@ -600,11 +786,20 @@ export class AccountIndex {
     return accounts;
   }
 
-  public async addToAccountRegistry(address: string): Promise<boolean> {
-    if (!await this.haveAccount(address)) {
-      return await this.contract.methods.add(address).send({from: this.signerAddress});
-    }
-    return true;
+  /**
+   * Returns the total number of accounts that have been registered in the network.
+   *
+   * @async
+   * @example
+   * Prints the total number of registered accounts:
+   * ```typescript
+   * console.log(await totalAccounts());
+   * ```
+   *
+   * @returns The total number of registered accounts.
+   */
+  public async totalAccounts(): Promise<number> {
+    return await this.contract.methods.count().call();
   }
 }
 
diff --git a/docs/compodoc/classes/HttpError.html b/docs/compodoc/classes/HttpError.html index 2944469..b3789ee 100644 --- a/docs/compodoc/classes/HttpError.html +++ b/docs/compodoc/classes/HttpError.html @@ -269,6 +269,11 @@ export class GlobalErrorHandler extends ErrorHandler { } } + /** + * + * @param errorTraceString + * @private + */ private isWarning(errorTraceString: string): boolean { let isWarning: boolean = true; if (errorTraceString.includes('/src/app/')) { diff --git a/docs/compodoc/classes/MutablePgpKeyStore.html b/docs/compodoc/classes/MutablePgpKeyStore.html index 1e69044..e104585 100644 --- a/docs/compodoc/classes/MutablePgpKeyStore.html +++ b/docs/compodoc/classes/MutablePgpKeyStore.html @@ -72,6 +72,11 @@ MutableKeyStore

+

+

Example

+

+
+

Index

@@ -208,8 +213,8 @@ - + @@ -247,8 +252,8 @@ - + @@ -286,8 +291,8 @@ - + @@ -325,8 +330,8 @@ - + @@ -395,8 +400,8 @@ - + @@ -465,8 +470,8 @@ - + @@ -504,8 +509,8 @@ - + @@ -570,8 +575,8 @@ - + @@ -609,8 +614,8 @@ - + @@ -648,8 +653,8 @@ - + @@ -714,8 +719,8 @@ - + @@ -780,8 +785,8 @@ - + @@ -819,8 +824,8 @@ - + @@ -885,8 +890,8 @@ - + @@ -924,8 +929,8 @@ - + @@ -965,8 +970,8 @@ - + @@ -1049,8 +1054,8 @@ - + @@ -1119,8 +1124,8 @@ - + @@ -1191,8 +1196,8 @@ - + @@ -1263,8 +1268,8 @@ - + @@ -1331,8 +1336,8 @@ - + @@ -1370,8 +1375,8 @@ - + @@ -1436,8 +1441,8 @@ - + @@ -1506,8 +1511,8 @@ - + @@ -1574,8 +1579,8 @@ - + @@ -1633,6 +1638,9 @@ import * as openpgp from 'openpgp'; const keyring = new openpgp.Keyring(); +/** + * @extends + */ interface MutableKeyStore extends KeyStore { loadKeyring(): void; importKeyPair(publicKey: any, privateKey: any): Promise<void>; @@ -1661,6 +1669,9 @@ interface MutableKeyStore extends KeyStore { sign(plainText: string): Promise<any>; } +/** + * @implements + */ class MutablePgpKeyStore implements MutableKeyStore{ async loadKeyring(): Promise<void> { diff --git a/docs/compodoc/classes/TokenRegistry.html b/docs/compodoc/classes/TokenRegistry.html index 230e78f..9cfa02d 100644 --- a/docs/compodoc/classes/TokenRegistry.html +++ b/docs/compodoc/classes/TokenRegistry.html @@ -63,9 +63,22 @@ src/app/_eth/token-registry.ts

+

+

Description

+

+

+

Provides an instance of the token registry contract. +Allows querying of tokens that have been registered as valid tokens in the network.

+ +

+

+

Example

+

+
+

Index

@@ -138,12 +151,14 @@ - + +

Create a connection to the deployed token registry contract.

+
Parameters : @@ -152,6 +167,7 @@ + @@ -166,6 +182,12 @@ No + @@ -178,6 +200,12 @@ Yes +
Name Type OptionalDescription
+
    +
  • The deployed token registry contract's address.
  • +
+
+
signerAddress +
    +
  • The account address of the account that deployed the token registry contract.
  • +
+
+
@@ -213,10 +241,16 @@ - + + + +

The instance of the token registry contract.

+
+ + @@ -240,10 +274,16 @@ - + + + +

The deployed token registry contract's address.

+
+ + @@ -267,10 +307,16 @@ - + + + +

The account address of the account that deployed the token registry contract.

+
+ + @@ -306,14 +352,16 @@ - + +

Returns the address of the token with a given identifier.

+
Parameters : @@ -323,6 +371,7 @@ Name Type Optional + Description @@ -337,18 +386,34 @@ + +
    +
  • The name or identifier of the token to be fetched from the token registry.
  • +
+ +
+ Example : +
+
Prints the address of the token with the identifier &#39;sarafu&#39;:</p>
+<p>```typescript</p>
+<ul>
+<li>console.log(await addressOf(&#39;sarafu&#39;));</li>
+<li>```</li>
+</ul>
+
Returns : Promise<string>
- +

The address of the token assigned the specified identifier in the token registry.

+
@@ -379,14 +444,16 @@ - + +

Returns the address of a token with the given serial in the token registry.

+
Parameters : @@ -396,6 +463,7 @@ Name Type Optional + Description @@ -410,18 +478,34 @@ + +
    +
  • The serial number of the token to be fetched.
  • +
+ +
+ Example : +
+
Prints the address of the token with the serial &#39;2&#39;:</p>
+<p>```typescript</p>
+<ul>
+<li>console.log(await entry(2));</li>
+<li>```</li>
+</ul>
+
Returns : Promise<string>
- +

The address of the token with the specified serial number.

+
@@ -452,19 +536,36 @@ - + +

Returns the total number of tokens that have been registered in the network.

+
+
+ Example : +
+
Prints the total number of registered tokens:</p>
+<p>```typescript</p>
+<ul>
+<li>console.log(await totalTokens());</li>
+<li>```</li>
+</ul>
+
+
Returns : Promise<number>
+
+

The total number of registered tokens.

+ +
@@ -480,16 +581,37 @@
import Web3 from 'web3';
+
+// Application imports
 import {environment} from '@src/environments/environment';
 
+
+/** Fetch the token registry contract's ABI. */
 const abi: Array<any> = require('@src/assets/js/block-sync/data/TokenUniqueSymbolIndex.json');
+/** Establish a connection to the blockchain network. */
 const web3: Web3 = new Web3(environment.web3Provider);
 
+/**
+ * Provides an instance of the token registry contract.
+ * Allows querying of tokens that have been registered as valid tokens in the network.
+ *
+ * @remarks
+ * This is our interface to the token registry contract.
+ */
 export class TokenRegistry {
-  contractAddress: string;
-  signerAddress: string;
+  /** The instance of the token registry contract. */
   contract: any;
+  /** The deployed token registry contract's address. */
+  contractAddress: string;
+  /** The account address of the account that deployed the token registry contract. */
+  signerAddress: string;
 
+  /**
+   * Create a connection to the deployed token registry contract.
+   *
+   * @param contractAddress - The deployed token registry contract's address.
+   * @param signerAddress - The account address of the account that deployed the token registry contract.
+   */
   constructor(contractAddress: string, signerAddress?: string) {
     this.contractAddress = contractAddress;
     this.contract = new web3.eth.Contract(abi, this.contractAddress);
@@ -500,17 +622,55 @@ export class TokenRegistry {
     }
   }
 
-  public async totalTokens(): Promise<number> {
-    return await this.contract.methods.entryCount().call();
+  /**
+   * Returns the address of the token with a given identifier.
+   *
+   * @async
+   * @example
+   * Prints the address of the token with the identifier 'sarafu':
+   * ```typescript
+   * console.log(await addressOf('sarafu'));
+   * ```
+   *
+   * @param identifier - The name or identifier of the token to be fetched from the token registry.
+   * @returns The address of the token assigned the specified identifier in the token registry.
+   */
+  public async addressOf(identifier: string): Promise<string> {
+    const id: string = web3.eth.abi.encodeParameter('bytes32', web3.utils.toHex(identifier));
+    return await this.contract.methods.addressOf(id).call();
   }
 
+  /**
+   * Returns the address of a token with the given serial in the token registry.
+   *
+   * @async
+   * @example
+   * Prints the address of the token with the serial '2':
+   * ```typescript
+   * console.log(await entry(2));
+   * ```
+   *
+   * @param serial - The serial number of the token to be fetched.
+   * @return The address of the token with the specified serial number.
+   */
   public async entry(serial: number): Promise<string> {
     return await this.contract.methods.entry(serial).call();
   }
 
-  public async addressOf(identifier: string): Promise<string> {
-    const id: string = web3.eth.abi.encodeParameter('bytes32', web3.utils.toHex(identifier));
-    return await this.contract.methods.addressOf(id).call();
+  /**
+   * Returns the total number of tokens that have been registered in the network.
+   *
+   * @async
+   * @example
+   * Prints the total number of registered tokens:
+   * ```typescript
+   * console.log(await totalTokens());
+   * ```
+   *
+   * @returns The total number of registered tokens.
+   */
+  public async totalTokens(): Promise<number> {
+    return await this.contract.methods.entryCount().call();
   }
 }
 
diff --git a/docs/compodoc/coverage.html b/docs/compodoc/coverage.html index 3a0deb8..a5984b4 100644 --- a/docs/compodoc/coverage.html +++ b/docs/compodoc/coverage.html @@ -64,76 +64,76 @@ - + src/app/_eth/accountIndex.ts class AccountIndex - - 0 % - (0/9) + + 100 % + (9/9) - + src/app/_eth/accountIndex.ts variable abi - - 0 % - (0/1) + + 100 % + (1/1) - + src/app/_eth/accountIndex.ts variable web3 - - 0 % - (0/1) + + 100 % + (1/1) - + src/app/_eth/token-registry.ts class TokenRegistry - - 0 % - (0/8) + + 100 % + (8/8) - + src/app/_eth/token-registry.ts variable abi - - 0 % - (0/1) + + 100 % + (1/1) - + src/app/_eth/token-registry.ts variable web3 - - 0 % - (0/1) + + 100 % + (1/1) diff --git a/docs/compodoc/images/coverage-badge-documentation.svg b/docs/compodoc/images/coverage-badge-documentation.svg index fe6ebd6..38f5363 100644 --- a/docs/compodoc/images/coverage-badge-documentation.svg +++ b/docs/compodoc/images/coverage-badge-documentation.svg @@ -4,6 +4,6 @@ documentation - 0% + 6% diff --git a/docs/compodoc/injectables/AuthService.html b/docs/compodoc/injectables/AuthService.html index 39697b0..5a96413 100644 --- a/docs/compodoc/injectables/AuthService.html +++ b/docs/compodoc/injectables/AuthService.html @@ -289,8 +289,8 @@ - + @@ -330,8 +330,8 @@ - + @@ -369,8 +369,8 @@ - + @@ -638,8 +638,8 @@ - + @@ -749,8 +749,8 @@ - + @@ -1109,6 +1109,10 @@ export class AuthService { this.setState('Click button to log in with PGP key ' + this.mutableKeyStore.getPrivateKeyId()); } + /** + * @throws + * @param privateKeyArmored + */ async setKey(privateKeyArmored): Promise<boolean> { try { const isValidKeyCheck = await this.mutableKeyStore.isValidKey(privateKeyArmored); diff --git a/docs/compodoc/injectables/GlobalErrorHandler.html b/docs/compodoc/injectables/GlobalErrorHandler.html index 74a4101..b656e57 100644 --- a/docs/compodoc/injectables/GlobalErrorHandler.html +++ b/docs/compodoc/injectables/GlobalErrorHandler.html @@ -278,8 +278,8 @@ - + @@ -502,6 +502,11 @@ export class GlobalErrorHandler extends ErrorHandler { } } + /** + * + * @param errorTraceString + * @private + */ private isWarning(errorTraceString: string): boolean { let isWarning: boolean = true; if (errorTraceString.includes('/src/app/')) { diff --git a/docs/compodoc/interfaces/MutableKeyStore.html b/docs/compodoc/interfaces/MutableKeyStore.html index d104a55..f06107f 100644 --- a/docs/compodoc/interfaces/MutableKeyStore.html +++ b/docs/compodoc/interfaces/MutableKeyStore.html @@ -193,8 +193,8 @@ - + @@ -232,8 +232,8 @@ - + @@ -271,8 +271,8 @@ - + @@ -310,8 +310,8 @@ - + @@ -380,8 +380,8 @@ - + @@ -450,8 +450,8 @@ - + @@ -489,8 +489,8 @@ - + @@ -559,8 +559,8 @@ - + @@ -598,8 +598,8 @@ - + @@ -637,8 +637,8 @@ - + @@ -707,8 +707,8 @@ - + @@ -777,8 +777,8 @@ - + @@ -816,8 +816,8 @@ - + @@ -886,8 +886,8 @@ - + @@ -925,8 +925,8 @@ - + @@ -964,8 +964,8 @@ - + @@ -1046,8 +1046,8 @@ - + @@ -1116,8 +1116,8 @@ - + @@ -1186,8 +1186,8 @@ - + @@ -1256,8 +1256,8 @@ - + @@ -1326,8 +1326,8 @@ - + @@ -1365,8 +1365,8 @@ - + @@ -1435,8 +1435,8 @@ - + @@ -1505,8 +1505,8 @@ - + @@ -1575,8 +1575,8 @@ - + @@ -1634,6 +1634,9 @@ import * as openpgp from 'openpgp'; const keyring = new openpgp.Keyring(); +/** + * @extends + */ interface MutableKeyStore extends KeyStore { loadKeyring(): void; importKeyPair(publicKey: any, privateKey: any): Promise<void>; @@ -1662,6 +1665,9 @@ interface MutableKeyStore extends KeyStore { sign(plainText: string): Promise<any>; } +/** + * @implements + */ class MutablePgpKeyStore implements MutableKeyStore{ async loadKeyring(): Promise<void> { diff --git a/docs/compodoc/js/search/search_index.js b/docs/compodoc/js/search/search_index.js index 343861b..c1bc622 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.169,1,2.027]],["body/interfaces/AccountDetails.html",[0,1.973,1,3.58,2,1.906,3,0.113,4,0.091,5,0.08,6,2.794,7,0.343,8,1.069,9,1.314,10,5.297,11,4.02,12,3.552,13,5.186,14,4.631,15,5.186,16,4.209,17,3.867,18,0.698,19,4.03,20,1.493,21,0.011,22,2.047,23,5.353,24,4.049,25,4.049,26,4.049,27,3.815,28,3.815,29,2.047,30,4.049,31,3.17,32,3.616,33,2.099,34,4.049,35,4.049,36,4.049,37,3.718,38,4.049,39,3.616,40,3.85,41,2.648,42,2.602,43,2.648,44,2.406,45,2.433,46,3.815,47,2.304,48,0.976,49,3.616,50,2.794,51,2.602,52,2.794,53,3.815,54,3.616,55,2.965,56,0.113,57,0.005,58,0.007,59,0.005]],["title/classes/AccountIndex.html",[60,0.005,61,3.393]],["body/classes/AccountIndex.html",[3,0.117,4,0.093,5,0.082,7,0.353,8,1.09,9,1.181,18,0.639,20,1.454,21,0.011,22,1.922,48,1.65,51,1.962,54,4.179,56,0.117,57,0.005,58,0.007,59,0.005,60,0.005,61,4.773,62,1.72,63,3.528,64,6.663,65,7.142,66,1.001,67,4.362,68,3.515,69,5.979,70,5.979,71,5.979,72,7.26,73,0.951,74,5.252,75,0.973,76,5.979,77,1.287,78,0.679,79,3.528,80,4.42,81,4.42,82,5.979,83,4.42,84,2.256,85,1.216,86,3.068,87,5.979,88,4.42,89,5.979,90,4.42,91,5.979,92,4.42,93,0.363,94,1.896,95,2.276,96,4.478,97,3.052,98,1.668,99,3.528,100,3.882,101,1.946,102,3.264,103,5.252,104,3.882,105,3.882,106,5.952,107,3.882,108,1.87,109,3.354,110,4.42,111,4.42,112,5.952,113,4.42,114,6.776,115,3.688,116,1.524,117,4.42,118,4.42,119,2.877,120,4.42,121,4.42,122,1.618]],["title/components/AccountSearchComponent.html",[123,0.692,124,1.383]],["body/components/AccountSearchComponent.html",[3,0.074,4,0.06,5,0.052,7,0.225,8,0.787,9,0.458,18,0.611,21,0.011,22,1.491,33,1.766,56,0.074,57,0.003,58,0.005,59,0.003,60,0.003,66,0.723,68,2.779,73,0.929,75,0.981,77,0.499,78,0.594,84,2.395,85,0.986,86,2.221,93,0.423,94,1.209,95,1.451,101,1.405,108,1.651,109,2.525,116,2.711,119,3.831,122,2.451,123,0.854,124,1.915,125,1.581,126,1.031,127,1.169,128,1.063,129,1.001,130,7.246,131,6.092,132,2.475,133,1.291,134,2.414,135,0.891,136,1.792,137,1.792,138,2.853,139,3.077,140,4.789,141,1.792,142,5.251,143,1.792,144,4.318,145,5.251,146,5.251,147,5.251,148,3.877,149,5.251,150,5.251,151,5.251,152,5.251,153,5.251,154,5.251,155,2.706,156,5.886,157,5.886,158,5.886,159,3.189,160,5.251,161,5.251,162,5.251,163,2.249,164,4.944,165,4.299,166,3.74,167,4.318,168,2.818,169,1.451,170,2.818,171,2.818,172,2.818,173,5.147,174,2.818,175,2.387,176,2.204,177,3.441,178,2.818,179,2.818,180,3.914,181,2.818,182,2.818,183,2.818,184,2.818,185,2.818,186,2.818,187,2.818,188,2.818,189,2.818,190,2.818,191,2.818,192,2.818,193,1.169,194,0.337,195,2.081,196,1.512,197,1.395,198,1.395,199,1.001,200,2.081,201,2.081,202,1.66,203,2.818,204,3.877,205,3.877,206,2.818,207,2.475,208,2.818,209,2.818,210,2.818,211,2.818,212,2.818,213,2.818,214,4.318,215,2.818,216,2.818,217,2.818,218,4.318,219,2.818,220,4.318,221,3.831,222,2.982,223,4.318,224,4.318,225,3.447,226,2.818,227,2.818,228,4.318,229,2.818,230,2.138,231,4.358,232,4.065,233,4.318,234,0.797,235,1.63,236,1.63,237,0.819,238,2.221,239,1.063,240,0.944,241,1.981,242,0.917,243,1.063,244,1.063,245,0.917,246,1.063,247,0.944,248,1.063,249,0.917,250,1.063,251,0.917,252,1.001,253,1.063,254,0.917,255,0.714,256,1.063,257,0.944,258,1.63,259,1.001,260,0.917,261,1.063,262,0.917,263,1.063,264,0.917,265,1.063,266,0.944,267,1.63,268,1.001,269,0.917,270,0.734,271,0.917,272,1.063,273,0.944,274,1.63,275,1.001,276,0.944,277,0.775,278,0.917,279,0.944,280,0.917,281,0.917,282,1.063,283,0.917,284,1.063,285,0.917,286,1.063,287,0.972,288,1.031,289,1.063]],["title/components/AccountsComponent.html",[123,0.692,242,1.383]],["body/components/AccountsComponent.html",[1,1.391,3,0.077,4,0.062,5,0.054,7,0.233,8,0.808,9,0.873,11,3.358,16,3.358,18,0.633,20,1.079,21,0.011,22,1.518,33,1.72,56,0.142,57,0.003,58,0.005,59,0.003,60,0.003,66,0.742,68,2.487,73,0.954,75,0.974,77,0.951,78,0.711,85,1.136,86,1.673,93,0.468,94,1.251,95,1.502,98,2.743,101,0.949,109,1.902,116,2.222,119,5.207,123,0.873,124,0.949,125,1.623,126,1.067,127,1.21,128,1.101,129,1.036,133,1.325,134,2.755,135,0.922,136,1.84,137,1.84,138,2.864,139,3.09,140,3.696,141,1.84,143,1.84,155,2.755,165,4.186,166,3.786,169,1.872,176,2.038,193,1.21,194,0.349,197,1.444,198,1.444,199,1.036,200,2.154,201,2.154,202,1.696,221,1.898,230,2.195,231,3.9,234,0.825,235,1.673,236,1.673,237,0.848,238,2.261,239,1.101,240,0.977,241,2.024,242,1.95,243,1.101,244,1.101,245,0.949,246,1.101,247,0.977,248,1.101,249,0.949,250,1.101,251,0.949,252,1.036,253,1.101,254,0.949,255,1.359,256,1.101,257,0.977,258,1.673,259,1.036,260,0.949,261,1.101,262,0.949,263,1.101,264,0.949,265,1.101,266,0.977,267,1.673,268,1.036,269,0.949,270,0.759,271,0.949,272,1.101,273,0.977,274,1.673,275,1.036,276,0.977,277,0.802,278,0.949,279,0.977,280,0.949,281,0.949,282,1.101,283,0.949,284,1.101,285,0.949,286,1.101,287,1.006,288,1.067,289,1.101,290,2.562,291,5.363,292,4.434,293,5.363,294,3.704,295,3.704,296,4.711,297,4.281,298,4.711,299,3.704,300,3.704,301,3.062,302,4.138,303,5.992,304,5.992,305,4.434,306,2.562,307,2.928,308,4.434,309,3.062,310,2.917,311,2.917,312,2.917,313,2.917,314,2.917,315,4.434,316,2.917,317,2.917,318,2.917,319,2.917,320,3.704,321,2.917,322,4.138,323,2.917,324,4.783,325,2.917,326,3.539,327,3.894,328,2.734,329,2.917,330,3.704,331,2.886,332,3.062,333,2.917,334,3.704,335,3.062,336,2.014,337,1.502,338,1.565,339,1.565,340,1.799,341,1.635,342,1.444,343,1.898,344,2.154,345,1.565,346,2.917,347,2.562,348,2.917,349,2.328,350,2.917,351,2.562,352,2.562,353,2.562,354,4.434,355,2.154,356,2.917,357,3.96,358,3.062,359,2.154,360,2.014,361,4.434,362,2.154,363,2.014,364,2.917,365,4.434,366,4.434,367,2.917,368,2.917,369,2.917,370,2.917,371,3.894,372,3.539,373,3.062,374,4.434,375,4.434,376,4.434,377,3.062,378,4.434,379,2.886,380,4.434]],["title/modules/AccountsModule.html",[381,1.138,382,3.139]],["body/modules/AccountsModule.html",[3,0.124,4,0.099,5,0.087,21,0.011,56,0.124,57,0.006,58,0.007,59,0.006,60,0.006,93,0.54,116,1.62,124,2.589,131,3.469,194,0.562,196,2.521,234,1.328,240,2.665,242,2.589,251,2.589,337,2.419,338,2.521,339,2.521,381,1.257,382,6.475,383,1.719,384,2.326,385,3.75,386,2.419,387,2.521,388,1.887,389,4.126,390,4.126,391,4.126,392,5.495,393,4.098,394,5.495,395,3.342,396,2.521,397,2.24,398,4.697,399,2.585,400,2.585,401,3.656,402,2.633,403,4.697,404,2.757,405,4.126,406,2.897,407,4.126,408,3.75,409,3.244,410,4.972,411,2.757,412,3.469,413,4.126,414,3.469,415,4.126,416,4.054,417,4.301,418,4.599,419,3.469,420,4.301,421,3.841,422,2.897,423,4.054,424,3.057,425,3.057,426,3.841,427,2.897,428,3.841,429,2.897,430,4.054,431,3.057,432,4.301,433,3.244,434,4.697,435,6.228,436,4.697,437,4.301,438,3.057,439,6.228,440,4.697,441,4.697,442,4.972,443,4.126,444,5.471,445,3.75,446,3.244]],["title/modules/AccountsRoutingModule.html",[381,1.138,392,2.936]],["body/modules/AccountsRoutingModule.html",[3,0.153,4,0.123,5,0.108,21,0.011,45,2.411,48,1.321,56,0.153,57,0.007,58,0.009,59,0.007,60,0.007,93,0.511,123,1.31,124,2.321,131,4.29,140,3.584,194,0.695,199,2.064,240,2.389,242,2.321,251,2.321,252,2.064,383,2.127,388,2.334,392,4.927,399,2.411,400,2.961,405,5.103,407,6.266,408,4.638,409,4.013,413,5.103,414,4.29,415,5.103,443,5.103,447,5.81,448,3.41,449,3.976,450,3.999,451,4.851,452,4.013,453,4.013,454,3.781,455,3.584]],["title/interfaces/Action.html",[0,1.169,456,2.281]],["body/interfaces/Action.html",[0,2.213,2,2.574,3,0.153,4,0.123,5,0.108,7,0.463,8,1.299,12,3.528,17,2.986,18,0.66,20,1.474,21,0.011,22,1.955,29,2.765,45,3.339,56,0.153,57,0.007,58,0.009,59,0.007,78,0.722,98,2.911,175,2.371,456,4.571,457,4.005,458,4.723,459,4.723,460,3.132,461,4.182,462,3.774,463,4.395]],["title/classes/ActivatedRouteStub.html",[60,0.005,464,3.393]],["body/classes/ActivatedRouteStub.html",[3,0.132,4,0.106,5,0.093,7,0.4,8,1.184,9,1.056,18,0.519,21,0.011,33,2.052,56,0.132,57,0.006,58,0.008,59,0.006,60,0.006,62,1.948,66,1.087,73,1.077,75,0.912,77,1.151,78,0.608,79,5.182,85,0.838,93,0.394,101,2.345,169,1.601,176,2.053,199,1.777,202,2.279,464,5.182,465,6.941,466,4.429,467,2.805,468,5.004,469,6.492,470,6.492,471,6.492,472,8.675,473,3.912,474,5.321,475,7.626,476,4.794,477,5.182,478,4.963,479,7.206,480,6.33,481,6.492,482,7.339,483,5.702,484,5.004,485,6.492,486,5.004,487,6.492,488,7.626,489,6.492,490,4.395,491,4.794,492,6.492,493,5.004,494,2.386,495,4.395,496,4.395,497,6.492,498,5.004,499,5.004,500,5.004,501,5.004]],["title/components/AdminComponent.html",[123,0.692,245,1.383]],["body/components/AdminComponent.html",[3,0.079,4,0.063,5,0.055,7,0.239,8,0.824,9,1.115,18,0.62,20,1.091,21,0.011,33,1.145,51,1.327,56,0.144,57,0.004,58,0.005,59,0.004,60,0.004,66,0.756,73,0.972,75,0.962,77,1.215,78,0.745,85,1.191,93,0.455,98,2.29,101,0.973,108,1.343,115,1.844,116,1.558,123,0.886,124,0.973,125,1.653,126,1.094,127,1.241,128,1.128,129,1.062,133,1.35,134,2.504,135,0.945,136,1.875,137,1.875,138,2.872,139,3.1,140,2.786,141,1.875,143,1.875,155,2.79,165,4.226,169,1.94,175,1.674,176,0.945,193,1.241,194,0.358,197,1.48,198,1.48,202,1.428,230,2.237,234,0.845,235,1.705,236,1.705,237,0.869,238,2.29,239,1.128,240,1.001,241,2.055,242,0.973,243,1.128,244,1.128,245,1.974,246,1.128,247,1.001,248,1.128,249,0.973,250,1.128,251,0.973,252,1.062,253,1.128,254,0.973,255,0.758,256,1.128,257,1.001,258,1.705,259,1.062,260,0.973,261,1.128,262,0.973,263,1.128,264,0.973,265,1.128,266,1.001,267,1.705,268,1.062,269,0.973,270,0.778,271,0.973,272,1.128,273,1.001,274,1.705,275,1.062,276,1.001,277,0.822,278,0.973,279,1.001,280,0.973,281,0.973,282,1.128,283,0.973,284,1.128,285,0.973,286,1.128,287,1.031,288,1.094,289,1.128,295,3.76,297,4.346,299,3.76,300,3.76,301,3.12,302,4.191,306,2.626,307,2.953,309,3.12,320,3.76,330,3.76,331,2.94,332,3.12,334,3.76,335,3.12,336,2.065,337,1.539,338,1.604,339,1.604,340,1.844,341,1.675,342,1.48,355,2.207,357,2.207,358,2.065,359,2.207,360,2.065,362,2.207,363,2.065,373,3.12,456,4.385,458,2.651,459,4.022,460,1.758,502,2.626,503,3.562,504,5.445,505,4.517,506,4.63,507,4.517,508,3.606,509,4.517,510,4.517,511,4.517,512,4.517,513,2.989,514,4.3,515,4.517,516,2.989,517,4.517,518,2.989,519,2.989,520,2.989,521,4.517,522,2.989,523,2.989,524,2.989,525,2.989,526,2.989,527,2.989,528,6.068,529,6.852,530,2.989,531,2.989,532,2.989,533,1.946,534,2.626,535,2.989,536,2.626,537,2.626,538,2.386,539,2.989,540,2.989,541,2.989,542,4.517,543,2.989,544,2.989,545,4.517,546,2.989,547,2.989,548,2.626,549,2.989,550,2.989,551,2.989,552,2.989,553,2.989,554,2.989,555,2.989,556,5.445,557,2.989,558,2.989,559,2.989,560,2.626,561,2.626,562,2.989,563,2.989,564,4.517,565,2.989,566,2.989,567,4.517,568,2.989,569,6.068,570,6.068,571,6.068,572,6.068,573,4.517,574,2.532,575,3.336,576,4.517,577,2.626,578,2.207,579,2.989]],["title/modules/AdminModule.html",[381,1.138,580,3.139]],["body/modules/AdminModule.html",[3,0.144,4,0.115,5,0.101,21,0.011,56,0.144,57,0.007,58,0.008,59,0.007,60,0.007,93,0.534,194,0.653,234,1.544,245,2.695,337,2.812,338,2.93,339,2.93,381,1.461,383,1.998,384,2.704,385,4.029,386,2.812,387,2.93,388,2.194,393,4.266,395,3.684,396,2.93,397,2.604,399,2.849,400,2.849,401,4.029,402,3.06,404,3.205,406,3.368,416,4.467,417,4.74,420,4.74,421,4.234,422,3.368,423,4.467,424,3.554,425,3.554,426,4.234,427,3.368,428,4.234,429,3.368,430,4.467,431,3.554,437,4.74,438,3.554,580,6.381,581,4.796,582,4.796,583,4.796,584,5.721,585,5.46,586,5.46,587,4.796]],["title/modules/AdminRoutingModule.html",[381,1.138,584,2.936]],["body/modules/AdminRoutingModule.html",[3,0.168,4,0.134,5,0.118,21,0.011,48,1.444,56,0.168,57,0.008,58,0.009,59,0.008,60,0.008,93,0.487,123,1.033,194,0.76,199,2.256,245,2.45,383,2.325,388,2.552,399,2.637,400,3.125,448,3.729,449,4.132,450,4.22,451,3.729,455,3.918,584,5.2,587,5.58,588,6.353]],["title/components/AppComponent.html",[123,0.692,247,1.424]],["body/components/AppComponent.html",[3,0.089,4,0.071,5,0.062,7,0.268,8,0.897,9,0.801,18,0.546,20,0.562,21,0.011,22,1.628,33,1.628,48,1.625,51,2.185,56,0.089,57,0.004,58,0.006,59,0.004,60,0.004,66,0.824,67,1.728,68,2.42,73,1.059,75,0.907,77,0.872,78,0.64,85,0.562,86,1.857,93,0.354,109,2.934,116,1.697,123,0.948,124,1.092,125,1.802,126,1.228,127,1.392,128,1.266,129,1.191,135,1.061,136,2.043,137,2.043,138,2.906,139,3.142,141,2.043,143,2.043,169,1.214,176,2.031,193,1.392,194,0.401,198,1.661,202,2.031,234,0.948,235,1.857,236,1.857,237,0.975,238,2.424,239,1.266,240,1.123,241,2.2,242,1.092,243,1.266,244,1.266,245,1.092,246,1.266,247,2.151,248,1.266,249,1.092,250,1.266,251,1.092,252,1.191,253,1.266,254,1.092,255,1.628,256,1.266,257,1.123,258,1.857,259,1.191,260,1.092,261,1.266,262,1.092,263,1.266,264,1.092,265,1.266,266,1.123,267,1.857,268,1.191,269,1.092,270,0.874,271,1.092,272,1.266,273,1.123,274,1.857,275,1.191,276,1.123,277,1.354,278,1.092,279,1.123,280,1.092,281,1.092,282,1.266,283,1.092,284,1.266,285,1.092,286,1.266,287,1.157,288,1.228,289,1.266,307,3.066,328,3.036,342,1.661,344,4.305,345,1.8,349,2.678,351,4.323,460,1.306,578,3.635,589,2.947,590,2.535,591,5.83,592,4.922,593,5.121,594,5.121,595,5.121,596,5.83,597,4.922,598,4.323,599,4.922,600,4.922,601,2.678,602,4.409,603,4.557,604,4.808,605,4.922,606,4.922,607,5.127,608,3.355,609,6.423,610,3.355,611,3.355,612,3.355,613,4.922,614,3.355,615,2.183,616,4.922,617,4.323,618,4.323,619,3.355,620,3.399,621,3.355,622,4.305,623,3.355,624,2.947,625,2.947,626,2.947,627,4.922,628,3.355,629,3.355,630,5.121,631,4.305,632,4.323,633,4.922,634,4.922,635,4.922,636,3.929,637,4.922,638,3.399,639,3.355,640,2.477,641,3.355,642,2.678,643,3.355,644,3.355,645,3.355,646,2.947,647,3.355,648,3.355,649,3.355,650,2.069,651,4.026,652,2.678,653,2.477,654,2.678,655,2.678,656,2.678,657,2.947,658,2.947,659,3.355,660,4.323,661,2.947,662,4.323,663,2.947,664,3.355,665,3.355,666,3.355,667,3.355,668,4.922,669,3.355,670,3.355,671,3.355,672,1.728,673,3.355]],["title/modules/AppModule.html",[381,1.138,674,3.139]],["body/modules/AppModule.html",[3,0.124,4,0.099,5,0.087,21,0.011,56,0.124,57,0.006,58,0.007,59,0.006,60,0.006,93,0.527,94,2.012,95,2.415,122,2.555,177,2.012,194,0.561,197,2.322,234,1.326,247,2.863,337,2.415,381,1.255,383,1.717,384,2.322,385,3.747,386,3.596,387,3.747,388,1.884,393,4.096,395,3.339,396,2.517,397,2.236,399,2.582,400,2.582,404,2.753,406,2.893,410,4.967,411,2.753,412,3.463,416,4.049,674,6.491,675,4.12,676,4.12,677,4.12,678,4.12,679,4.12,680,5.493,681,5.493,682,5.282,683,5.493,684,5.493,685,4.69,686,6.222,687,4.967,688,2.753,689,4.967,690,4.69,691,4.69,692,6.222,693,4.69,694,5.936,695,6.222,696,2.415,697,4.594,698,4.297,699,4.12,700,4.69,701,3.744,702,3.744,703,4.69,704,4.049,705,4.12,706,4.69,707,4.69,708,4.69,709,4.12,710,4.69,711,4.69,712,4.69,713,4.69,714,5.491,715,5.936,716,5.573]],["title/modules/AppRoutingModule.html",[381,1.138,680,2.936]],["body/modules/AppRoutingModule.html",[3,0.159,4,0.127,5,0.112,21,0.011,48,1.366,56,0.159,57,0.007,58,0.009,59,0.007,60,0.007,93,0.476,194,0.719,199,2.134,383,2.199,388,2.414,399,2.494,400,3.022,448,3.527,449,4.035,450,4.081,451,4.599,452,4.15,453,4.15,454,3.911,680,5.029,698,5.029,699,5.278,717,6.008,718,7.282,719,5.278,720,6.396,721,6.008,722,6.008,723,6.008,724,6.008,725,4.796,726,6.008,727,6.008]],["title/interfaces/AreaName.html",[0,1.169,461,2.495]],["body/interfaces/AreaName.html",[0,2.245,2,2.683,3,0.16,4,0.128,5,0.112,7,0.483,8,1.332,12,3.619,17,3.113,18,0.584,20,1.451,21,0.011,22,1.532,29,2.882,45,2.509,56,0.16,57,0.007,58,0.009,59,0.007,78,0.795,98,3.153,175,1.858,456,4.216,457,4.175,458,3.548,459,3.548,460,2.353,461,4.611,462,5.312,463,4.508]],["title/interfaces/AreaType.html",[0,1.169,463,2.622]],["body/interfaces/AreaType.html",[0,2.245,2,2.683,3,0.16,4,0.128,5,0.112,7,0.483,8,1.332,12,3.619,17,3.113,18,0.584,20,1.451,21,0.011,22,1.532,29,3.891,45,2.509,56,0.16,57,0.007,58,0.009,59,0.007,78,0.795,98,3.153,175,1.858,456,4.216,457,4.175,458,3.548,459,3.548,460,2.353,461,4.29,462,3.934,463,4.845]],["title/components/AuthComponent.html",[123,0.692,249,1.383]],["body/components/AuthComponent.html",[3,0.085,4,0.068,5,0.06,7,0.258,8,0.873,9,0.779,18,0.563,20,0.541,21,0.011,33,1.445,37,1.6,48,1.434,56,0.085,57,0.004,58,0.006,59,0.004,60,0.004,66,0.802,68,2.927,73,1.031,75,0.946,77,0.849,78,0.63,85,1.128,86,2.38,93,0.409,101,1.558,108,1.181,109,2.447,116,1.651,122,1.753,123,0.928,124,1.051,125,1.753,126,1.183,127,1.341,128,1.219,129,1.148,133,1.431,134,2.623,135,1.022,136,1.987,137,1.987,138,2.895,139,3.129,141,1.987,143,1.987,148,4.212,155,2.9,159,3.536,164,5.391,166,3.918,169,1.739,173,4.212,175,1.939,176,1.804,177,2.89,180,4.154,193,1.341,194,0.387,195,2.386,196,1.734,197,1.6,198,1.6,199,1.148,202,2.579,204,2.386,205,2.386,222,3.307,230,2.371,232,3.307,234,0.914,235,1.807,236,2.152,237,0.939,238,2.38,239,1.219,240,1.082,241,2.152,242,1.051,243,1.219,244,1.219,245,1.051,246,1.219,247,1.082,248,1.219,249,2.052,250,1.219,251,1.051,252,1.148,253,1.219,254,1.051,255,1.213,256,1.219,257,1.082,258,1.807,259,1.148,260,1.051,261,1.219,262,1.051,263,1.219,264,1.051,265,1.219,266,1.082,267,1.807,268,1.148,269,1.051,270,0.841,271,1.051,272,1.219,273,1.082,274,1.807,275,1.148,276,1.082,277,0.889,278,1.051,279,1.082,280,1.051,281,1.051,282,1.219,283,1.051,284,1.219,285,1.051,286,1.219,287,1.114,288,1.183,289,1.219,345,1.734,477,5.035,534,4.206,601,2.579,602,4.351,622,3.536,626,2.838,651,3.307,719,4.206,728,2.838,729,5.704,730,4.788,731,5.704,732,5.01,733,4.553,734,6.196,735,5.035,736,6.308,737,4.788,738,5.704,739,4.788,740,3.231,741,3.231,742,3.231,743,3.231,744,4.788,745,3.231,746,3.231,747,3.231,748,3.231,749,3.231,750,3.231,751,3.231,752,4.038,753,3.231,754,2.838,755,3.231,756,3.231,757,2.579,758,3.231,759,4.788,760,3.231,761,2.838,762,2.386,763,2.838,764,3.231,765,3.231,766,2.103,767,3.231,768,2.386,769,2.232,770,2.838,771,3.231,772,3.231,773,3.231,774,3.231,775,3.231,776,3.231,777,3.231,778,3.231,779,3.231,780,3.231,781,2.684,782,4.788,783,2.386,784,2.953,785,4.788]],["title/guards/AuthGuard.html",[698,2.936,786,2.936]],["body/guards/AuthGuard.html",[3,0.15,4,0.12,5,0.105,7,0.453,9,1.143,18,0.561,21,0.011,56,0.15,57,0.007,58,0.008,59,0.007,60,0.007,66,1.176,73,1.22,75,0.841,77,1.245,78,0.657,85,0.949,86,2.651,93,0.463,108,1.732,122,2.074,133,1.694,166,4.487,175,2.16,177,2.431,194,0.678,199,2.013,466,3.937,473,3.78,494,2.702,533,4.969,590,2.918,698,4.852,725,6.55,787,4.524,788,4.978,789,4.524,790,5.667,791,4.978,792,7.011,793,7.011,794,5.667,795,6.706,796,2.221,797,3.041,798,4.185,799,4.978,800,4.978]],["title/modules/AuthModule.html",[381,1.138,801,3.139]],["body/modules/AuthModule.html",[3,0.147,4,0.118,5,0.104,21,0.011,56,0.147,57,0.007,58,0.008,59,0.007,60,0.007,93,0.529,194,0.668,196,2.996,234,1.578,249,2.71,285,2.71,381,1.494,383,2.043,384,2.764,385,4.07,386,2.875,387,2.996,388,2.243,395,3.735,396,2.996,397,2.662,399,2.888,400,2.888,401,4.085,402,3.129,404,3.277,421,4.293,422,3.443,426,4.293,427,3.443,428,4.293,429,3.443,432,4.807,433,3.855,437,4.807,438,3.633,442,5.556,801,6.403,802,4.903,803,4.903,804,4.903,805,5.753,806,5.582,807,5.582,808,4.903,809,5.582,810,4.903]],["title/modules/AuthRoutingModule.html",[381,1.138,805,2.936]],["body/modules/AuthRoutingModule.html",[3,0.165,4,0.132,5,0.116,21,0.011,48,1.417,56,0.165,57,0.007,58,0.009,59,0.007,60,0.007,93,0.483,123,1.014,194,0.746,199,2.214,249,2.422,383,2.282,388,2.505,399,2.587,400,3.09,448,3.659,449,4.099,450,4.173,451,4.37,452,4.305,453,4.305,454,4.057,455,3.845,805,5.141,808,5.475,811,6.234]],["title/injectables/AuthService.html",[602,2.622,796,1.344]],["body/injectables/AuthService.html",[0,0.712,3,0.068,4,0.055,5,0.048,7,0.207,8,0.737,9,0.993,18,0.587,20,0.433,21,0.011,22,1.025,23,2.793,33,0.656,48,1.73,51,1.795,56,0.068,57,0.003,58,0.005,59,0.003,60,0.003,66,0.677,68,3.202,73,0.87,75,0.96,77,1.082,78,0.571,85,1.292,86,2.774,93,0.436,94,1.111,95,1.333,98,0.977,101,2.275,108,1.902,109,3,122,1.48,169,1.813,175,1.53,176,0.819,177,1.735,194,0.31,202,1.93,222,2.793,255,1.821,270,0.674,307,2.805,344,4.154,345,3.275,347,2.274,349,4.491,397,1.234,411,1.519,474,1.911,491,3.675,574,1.451,577,4.372,590,1.333,602,2.494,604,4.399,615,4.399,632,2.274,636,2.066,696,1.333,704,2.632,705,2.274,734,4.941,752,3.346,754,3.552,763,2.274,769,1.788,781,1.451,783,3.675,796,1.279,797,1.389,799,2.274,812,1.389,813,2.274,814,3.797,815,4.977,816,4.977,817,5.626,818,4.491,819,4.491,820,5.626,821,5.626,822,5.626,823,4.044,824,5.626,825,4.941,826,4.044,827,4.044,828,1.911,829,4.777,830,4.044,831,2.589,832,2.589,833,2.589,834,2.589,835,2.589,836,2.589,837,2.589,838,4.044,839,2.589,840,4.044,841,2.589,842,2.589,843,4.044,844,2.589,845,4.044,846,4.044,847,2.589,848,4.044,849,4.044,850,2.589,851,3.552,852,2.589,853,2.589,854,2.589,855,2.589,856,2.589,857,2.589,858,2.589,859,1.451,860,2.589,861,2.589,862,2.793,863,2.589,864,4.044,865,2.589,866,2.589,867,2.589,868,2.589,869,3.552,870,6.469,871,2.589,872,2.589,873,4.977,874,6.469,875,4.977,876,3.228,877,4.977,878,5.626,879,4.977,880,4.044,881,2.274,882,4.044,883,4.044,884,4.044,885,2.17,886,4.044,887,4.044,888,5.626,889,4.372,890,4.491,891,2.589,892,2.589,893,4.044,894,4.977,895,4.977,896,4.977,897,2.589,898,2.589,899,4.977,900,2.589,901,2.274,902,2.274,903,2.589,904,4.044,905,2.589,906,2.589,907,2.589,908,2.589,909,2.589,910,2.589,911,2.589,912,2.589,913,2.589,914,2.589,915,4.044,916,2.589,917,2.589,918,2.589,919,4.044,920,4.372,921,2.589,922,2.589,923,2.589,924,2.589,925,2.274,926,2.589,927,2.589,928,2.589,929,2.589,930,1.788,931,3.228,932,2.274,933,4.977,934,2.373,935,2.274,936,1.911,937,2.589,938,1.519,939,2.274,940,2.066,941,2.066,942,2.589,943,2.274,944,2.589,945,2.589,946,2.589,947,2.589,948,2.589,949,2.589,950,2.589,951,1.911,952,2.589,953,4.044,954,2.589,955,4.044,956,2.589,957,2.589,958,2.589,959,4.044,960,2.589,961,2.589,962,1.333,963,2.589,964,2.589,965,3.552,966,2.589,967,4.044,968,4.044,969,2.589,970,2.589,971,2.589,972,3.552,973,2.589,974,2.589,975,2.589,976,2.589,977,2.589,978,2.589,979,2.589,980,2.589,981,2.589,982,2.589]],["title/injectables/BlockSyncService.html",[796,1.344,983,3.139]],["body/injectables/BlockSyncService.html",[3,0.084,4,0.067,5,0.059,7,0.253,8,0.861,9,1.18,18,0.609,20,1.248,21,0.011,22,2.186,33,1.429,47,2.533,48,1.694,51,2.774,56,0.084,57,0.004,58,0.006,59,0.004,60,0.004,66,0.79,68,2.773,73,1.016,75,0.912,77,1.286,78,0.679,84,2.643,85,1.173,86,2.358,93,0.452,94,1.36,95,1.632,101,2.426,108,1.164,169,1.789,176,1.783,194,0.379,202,1.783,221,3.072,277,1.298,307,3.011,328,2.911,341,1.777,342,1.57,343,2.063,590,1.632,594,4.954,595,4.954,603,4.32,796,1.493,797,1.701,812,1.701,859,1.777,885,1.701,983,3.485,984,6.811,985,2.784,986,4.72,987,4.72,988,4.72,989,4.72,990,4.72,991,4.72,992,3.17,993,4.722,994,4.72,995,4.72,996,5.951,997,5.357,998,3.17,999,4.164,1000,4.72,1001,4.592,1002,5.64,1003,3.17,1004,4.72,1005,3.17,1006,3.353,1007,4.72,1008,3.17,1009,4.72,1010,6.248,1011,3.17,1012,4.72,1013,6.248,1014,6.248,1015,6.248,1016,7.455,1017,6.248,1018,6.248,1019,3.17,1020,3.671,1021,3.17,1022,3.17,1023,1.701,1024,3.17,1025,2.53,1026,3.17,1027,3.17,1028,3.17,1029,4.164,1030,5.64,1031,3.17,1032,3.17,1033,2.784,1034,4.72,1035,3.17,1036,3.17,1037,3.17,1038,3.17,1039,3.17,1040,3.17,1041,3.17,1042,3.17,1043,4.72,1044,3.17,1045,3.17,1046,3.17,1047,3.17,1048,3.17,1049,4.72,1050,4.72,1051,3.17,1052,3.768,1053,4.72,1054,3.17,1055,3.17,1056,4.72,1057,3.17,1058,4.72,1059,3.17,1060,4.72,1061,4.72,1062,3.17,1063,3.17,1064,4.146,1065,3.17,1066,2.784,1067,3.17,1068,3.17,1069,3.17,1070,3.17,1071,3.17,1072,3.17,1073,3.17,1074,4.72,1075,3.17,1076,3.17,1077,3.768,1078,4.72,1079,3.17,1080,3.17,1081,3.17,1082,4.72,1083,3.17,1084,3.17,1085,3.17,1086,3.17,1087,3.17,1088,3.17,1089,3.17]],["title/classes/BlocksBloom.html",[60,0.005,1090,2.622]],["body/classes/BlocksBloom.html",[1,3.736,3,0.142,4,0.114,5,0.1,7,0.43,8,1.24,18,0.659,20,1.472,21,0.011,22,2.185,33,1.364,56,0.142,57,0.006,58,0.008,59,0.006,60,0.01,62,2.095,75,0.967,78,0.504,84,2.031,93,0.327,175,1.654,270,1.401,277,1.871,460,2.095,672,3.503,781,3.016,1006,4.429,1090,4.6,1091,3.503,1092,5.15,1093,5.15,1094,5.15,1095,5.15,1096,5.15,1097,5.382,1098,5.382,1099,5.382,1100,5.382,1101,5.382,1102,3.717,1103,4.984,1104,2.566,1105,3.503,1106,3.503,1107,3.717,1108,3.717,1109,3.319,1110,3.159,1111,3.717,1112,3.717,1113,3.717,1114,3.503,1115,3.503]],["title/interfaces/Category.html",[0,1.169,12,2.105]],["body/interfaces/Category.html",[0,2.245,2,2.683,3,0.16,4,0.128,5,0.112,7,0.483,8,1.332,12,3.89,17,4.203,18,0.584,20,1.451,21,0.011,22,1.532,29,2.882,45,2.509,56,0.16,57,0.007,58,0.009,59,0.007,78,0.795,98,3.153,175,1.858,456,4.216,457,4.175,458,3.548,459,3.548,460,2.353,461,4.29,462,3.934,463,4.508]],["title/classes/Conversion.html",[60,0.005,672,2.189]],["body/classes/Conversion.html",[1,3.824,3,0.139,4,0.111,5,0.097,7,0.419,8,1.221,18,0.674,20,1.455,21,0.011,22,2.176,33,1.33,56,0.139,57,0.006,58,0.008,59,0.006,60,0.01,62,2.043,75,0.997,78,0.491,84,1.981,93,0.319,175,1.614,270,1.367,277,1.842,460,2.869,672,3.796,781,2.942,1006,4.572,1090,4.129,1091,3.417,1092,3.625,1093,3.625,1094,3.625,1095,3.625,1096,3.625,1102,3.625,1103,5.14,1104,2.503,1105,3.417,1106,3.417,1107,3.625,1108,3.625,1109,3.238,1110,3.081,1111,5.091,1112,5.091,1113,5.091,1114,4.798,1115,4.798,1116,5.25,1117,5.25,1118,5.25,1119,5.25,1120,5.25,1121,5.25,1122,5.25]],["title/components/CreateAccountComponent.html",[123,0.692,251,1.383]],["body/components/CreateAccountComponent.html",[3,0.079,4,0.064,5,0.056,7,0.24,8,0.827,9,0.489,12,3.529,14,4.395,16,3.66,18,0.629,21,0.011,22,1.939,29,2.162,33,1.149,45,2.525,56,0.079,57,0.004,58,0.005,59,0.004,60,0.004,66,0.759,73,0.976,75,0.93,77,0.533,78,0.569,85,0.759,93,0.417,98,2.768,101,1.475,108,1.118,116,2.747,119,2.951,122,1.1,123,0.888,124,0.978,125,1.66,126,1.1,127,1.247,128,1.134,129,1.067,133,1.355,134,2.511,135,0.95,136,1.882,137,1.882,138,2.873,139,3.102,141,1.882,143,1.882,148,4.033,155,2.797,159,3.348,163,2.398,164,5.069,165,4.395,169,1.5,173,4.033,175,1.394,176,1.434,177,2.343,180,4.027,193,1.247,194,0.359,195,2.218,196,1.612,197,1.488,198,1.488,202,1.727,204,2.218,205,5.65,207,2.639,221,3.959,230,2.245,231,4.468,232,5.781,234,0.849,235,1.711,236,1.711,237,0.873,238,2.295,239,1.134,240,1.006,241,2.061,242,0.978,243,1.134,244,1.134,245,0.978,246,1.134,247,1.006,248,1.134,249,0.978,250,1.134,251,1.979,252,2.798,253,1.134,254,0.978,255,0.761,256,1.134,257,1.006,258,1.711,259,1.067,260,0.978,261,1.134,262,0.978,263,1.134,264,0.978,265,1.134,266,1.006,267,1.711,268,1.067,269,0.978,270,0.782,271,0.978,272,1.134,273,1.006,274,1.711,275,1.067,276,1.006,277,0.826,278,0.978,279,1.006,280,0.978,281,0.978,282,1.134,283,0.978,284,1.134,285,0.978,286,1.134,287,1.036,288,1.1,289,1.134,294,3.772,341,1.684,342,1.488,343,1.955,352,2.639,353,2.639,371,4.797,372,5.48,414,5.816,460,1.765,461,1.763,733,4.359,735,4.856,757,3.619,1123,6.919,1124,2.639,1125,5.461,1126,4.534,1127,4.033,1128,4.033,1129,5.461,1130,4.033,1131,5.461,1132,5.262,1133,4.534,1134,3.004,1135,3.004,1136,3.004,1137,3.004,1138,3.004,1139,3.004,1140,3.004,1141,3.004,1142,3.004,1143,3.004,1144,3.004,1145,3.004,1146,3.004,1147,5.461,1148,3.004,1149,6.529,1150,3.004,1151,3.004,1152,3.004,1153,3.004,1154,3.004,1155,3.004,1156,3.004,1157,3.004,1158,3.004,1159,3.004,1160,5.343,1161,4.534,1162,3.983,1163,4.534,1164,5.343,1165,5.343,1166,4.492,1167,4.534,1168,3.983]],["title/classes/CustomErrorStateMatcher.html",[60,0.005,180,2.622]],["body/classes/CustomErrorStateMatcher.html",[3,0.152,4,0.122,5,0.107,7,0.46,9,0.936,18,0.46,21,0.011,48,1.308,56,0.152,57,0.007,58,0.008,59,0.007,60,0.007,62,2.24,66,1.187,75,0.689,77,1.02,78,0.539,85,0.963,93,0.43,108,1.419,133,2.12,175,2.363,180,4.374,196,3.088,255,1.797,438,3.745,533,4.616,999,6.197,1169,6.229,1170,5.054,1171,7.687,1172,7.092,1173,7.092,1174,8.024,1175,7.048,1176,8.024,1177,8.024,1178,5.754,1179,5.661,1180,7.092,1181,5.754,1182,5.754,1183,5.754,1184,5.754]],["title/classes/CustomValidator.html",[60,0.005,1185,3.393]],["body/classes/CustomValidator.html",[3,0.144,4,0.115,5,0.101,7,0.436,9,1.117,18,0.548,20,1.257,21,0.011,48,1.706,56,0.144,57,0.007,58,0.008,59,0.007,60,0.007,62,2.125,66,1.149,75,0.821,77,1.217,78,0.642,85,1.149,93,0.331,108,1.851,122,1.998,169,1.693,175,1.678,196,2.93,255,1.996,752,2.704,962,3.535,999,5.816,1179,5.479,1185,5.479,1186,4.796,1187,8.284,1188,6.864,1189,6.864,1190,6.864,1191,8.116,1192,5.46,1193,6.864,1194,7.507,1195,8.284,1196,5.46,1197,5.46,1198,5.46,1199,6.864,1200,5.46,1201,5.46,1202,5.46,1203,5.46,1204,6.029,1205,5.46]],["title/components/ErrorDialogComponent.html",[123,0.692,254,1.383]],["body/components/ErrorDialogComponent.html",[3,0.12,4,0.096,5,0.085,7,0.364,8,1.112,9,0.741,18,0.487,21,0.011,42,3.263,56,0.12,57,0.005,58,0.007,59,0.005,60,0.005,67,3.543,73,0.98,75,0.73,77,0.807,78,0.688,93,0.37,116,2.104,123,1.119,124,1.482,125,2.233,126,1.667,127,1.89,128,1.719,129,1.618,135,1.44,136,2.532,137,2.532,138,2.981,139,3.237,141,2.532,143,2.532,193,1.89,194,0.545,234,1.288,235,2.302,236,2.302,237,1.324,238,2.773,239,1.719,240,1.525,241,2.596,242,1.482,243,1.719,244,1.719,245,1.482,246,1.719,247,1.525,248,1.719,249,1.482,250,1.719,251,1.482,252,1.618,253,1.719,254,2.391,255,2.075,256,1.719,257,1.525,258,2.302,259,1.618,260,1.482,261,1.719,262,1.482,263,1.719,264,1.482,265,1.719,266,1.525,267,2.302,268,1.618,269,1.482,270,1.186,271,1.482,272,1.719,273,1.525,274,2.302,275,1.618,276,1.525,277,1.253,278,1.482,279,1.525,280,1.482,281,1.482,282,1.719,283,1.482,284,1.719,285,1.482,286,1.719,287,1.57,288,1.667,289,1.719,331,2.964,514,3.581,934,2.909,1206,6.043,1207,5.08,1208,4,1209,5.359,1210,6.88,1211,6.101,1212,4.554,1213,4.554,1214,4.554,1215,4.554,1216,4.554,1217,4.554,1218,3.636,1219,4.554,1220,6.101,1221,6.101]],["title/injectables/ErrorDialogService.html",[604,2.767,796,1.344]],["body/injectables/ErrorDialogService.html",[3,0.144,4,0.115,5,0.101,7,0.435,8,1.249,9,1.114,18,0.599,21,0.011,33,1.379,42,3.04,48,1.236,56,0.144,57,0.006,58,0.008,59,0.006,60,0.006,66,1.147,67,4.262,73,1.474,75,0.941,77,1.214,78,0.641,85,0.911,93,0.455,108,1.342,122,1.991,175,2.105,176,1.72,177,3.375,194,0.651,254,1.77,578,4.017,590,2.802,604,4.457,796,2.166,797,2.92,812,2.92,1207,4.017,1209,6.909,1218,4.343,1222,7.121,1223,4.779,1224,7.495,1225,6.848,1226,5.44,1227,8.107,1228,6.848,1229,6.848,1230,5.44,1231,5.44,1232,6.848,1233,4.779,1234,4.779,1235,7.495,1236,5.44,1237,5.44,1238,5.44,1239,5.44]],["title/interceptors/ErrorInterceptor.html",[681,2.936,766,2.767]],["body/interceptors/ErrorInterceptor.html",[3,0.13,4,0.104,5,0.091,7,0.392,9,1.042,18,0.512,20,0.821,21,0.011,56,0.13,57,0.006,58,0.008,59,0.006,60,0.006,66,1.073,73,1.379,75,0.767,77,1.136,78,0.6,85,0.821,93,0.489,108,1.76,133,1.466,166,4.403,194,0.587,198,2.429,199,1.742,202,2.257,255,1.918,307,3.405,342,2.429,460,1.909,473,3.747,478,4.645,494,2.339,604,5.242,625,4.309,681,4.426,696,2.526,768,3.622,796,2.026,889,4.309,930,3.388,932,4.309,934,2.339,965,4.309,1023,2.632,1029,3.622,1240,3.622,1241,4.309,1242,4.732,1243,4.905,1244,4.905,1245,4.732,1246,5.588,1247,5.588,1248,4.905,1249,3.622,1250,3.622,1251,4.732,1252,5.115,1253,4.309,1254,4.905,1255,4.905,1256,7.137,1257,4.905,1258,4.905,1259,4.905,1260,6.408,1261,4.905,1262,4.905,1263,6.408,1264,6.408,1265,4.905,1266,4.426,1267,4.171,1268,5.115,1269,4.309,1270,4.905,1271,4.905,1272,4.905,1273,6.408,1274,4.905,1275,4.905,1276,4.309,1277,5.115,1278,4.905,1279,4.905,1280,6.408,1281,4.905,1282,4.905,1283,4.905,1284,4.309,1285,4.905,1286,4.905]],["title/components/FooterComponent.html",[123,0.692,257,1.424]],["body/components/FooterComponent.html",[3,0.126,4,0.101,5,0.088,7,0.38,21,0.01,56,0.126,57,0.006,58,0.007,59,0.006,60,0.006,66,1.052,73,1.513,75,0.752,78,0.658,85,0.797,93,0.289,116,2.166,123,1.144,124,1.548,125,2.299,126,1.741,127,1.974,128,1.795,129,1.69,133,1.877,134,3.233,135,1.504,136,2.607,137,2.607,138,2.99,139,3.249,141,2.607,143,2.607,155,3.438,169,1.549,193,1.974,194,0.569,234,1.345,235,2.37,236,2.37,237,1.383,238,2.822,239,1.795,240,1.593,241,2.653,242,1.548,243,1.795,244,1.795,245,1.548,246,1.795,247,1.593,248,1.795,249,1.548,250,1.795,251,1.548,252,1.69,253,1.795,254,1.548,255,1.205,256,1.795,257,2.504,258,2.37,259,1.69,260,1.548,261,1.795,262,1.548,263,1.795,264,1.548,265,1.795,266,1.593,267,2.37,268,1.69,269,1.548,270,1.239,271,1.548,272,1.795,273,1.593,274,2.37,275,1.69,276,1.593,277,1.309,278,1.548,279,1.593,280,1.548,281,1.548,282,1.795,283,1.548,284,1.795,285,1.548,286,1.795,287,1.64,288,1.741,289,1.795,940,5.013,941,5.013,1287,4.179,1288,4.638,1289,7.031,1290,6.281,1291,4.757,1292,4.757,1293,6.281]],["title/components/FooterStubComponent.html",[123,0.692,259,1.51]],["body/components/FooterStubComponent.html",[3,0.132,4,0.106,5,0.093,21,0.01,56,0.19,57,0.006,58,0.008,59,0.006,60,0.009,78,0.675,93,0.304,116,2.241,123,1.057,124,1.631,125,2.379,126,2.64,128,1.891,129,1.78,135,1.585,138,2.997,139,3.271,194,0.6,234,1.417,235,2.452,236,2.452,237,1.457,238,2.879,239,1.891,240,1.679,241,2.721,242,1.631,243,1.891,244,1.891,245,1.631,246,1.891,247,1.679,248,1.891,249,1.631,250,1.891,251,1.631,252,1.78,253,1.891,254,1.631,255,1.27,256,1.891,257,1.679,258,2.452,259,2.71,260,1.631,261,1.891,262,1.631,263,1.891,264,1.631,265,1.891,266,1.679,267,2.452,268,2.308,269,1.631,270,1.305,271,1.631,272,1.891,273,1.679,274,2.452,275,2.308,276,1.679,277,1.379,278,1.631,279,1.679,280,1.631,281,1.631,282,1.891,283,1.631,284,1.891,285,1.631,286,1.891,287,1.728,288,1.834,289,1.891,381,1.341,467,2.809,650,3.091,1288,4.799,1294,3.701,1295,5.757,1296,3.701]],["title/injectables/GlobalErrorHandler.html",[682,2.767,796,1.344]],["body/injectables/GlobalErrorHandler.html",[3,0.109,4,0.087,5,0.076,7,0.329,8,1.038,9,1.146,18,0.611,20,1.339,21,0.011,22,1.443,33,1.043,48,1.602,56,0.15,57,0.005,58,0.007,59,0.005,60,0.007,66,0.954,67,2.12,73,1.226,75,0.885,77,1.249,78,0.659,85,1.093,93,0.428,98,2.149,101,1.339,108,1.015,122,2.084,166,4.21,169,1.738,175,2.166,176,1.302,177,1.766,194,0.493,199,1.462,202,2.528,255,2.251,307,3.176,466,4.289,514,3.833,642,3.286,682,3.707,689,5.212,696,2.12,796,1.801,812,2.209,859,2.307,862,3.933,890,3.286,930,4.51,931,3.286,934,1.963,1252,4.546,1266,2.843,1267,2.679,1297,6.108,1298,3.286,1299,4.822,1300,5.736,1301,5.695,1302,7.023,1303,5.695,1304,3.615,1305,5.695,1306,5.002,1307,4.116,1308,5.002,1309,4.116,1310,5.002,1311,5.002,1312,4.116,1313,3.615,1314,5.002,1315,3.615,1316,3.615,1317,3.615,1318,3.615,1319,3.615,1320,3.615,1321,5.002,1322,3.615,1323,3.286,1324,3.615,1325,3.615,1326,3.615,1327,3.615,1328,3.615,1329,3.615,1330,3.615,1331,3.615,1332,3.615,1333,3.615,1334,3.615,1335,5.002,1336,5.002,1337,3.286,1338,3.615,1339,3.615,1340,3.615,1341,3.615,1342,3.615,1343,3.615]],["title/interceptors/HttpConfigInterceptor.html",[683,2.936,766,2.767]],["body/interceptors/HttpConfigInterceptor.html",[3,0.152,4,0.122,5,0.107,7,0.46,9,0.936,18,0.46,20,0.963,21,0.011,48,1.308,56,0.152,57,0.007,58,0.008,59,0.007,60,0.007,66,1.187,73,1.654,75,0.849,77,1.02,78,0.539,85,0.963,93,0.467,108,1.419,133,1.72,194,0.689,270,2.002,473,3.806,478,5.003,494,2.744,683,4.898,696,2.963,796,2.243,869,5.054,881,5.054,1240,4.249,1242,5.237,1245,5.237,1246,5.925,1247,5.925,1249,5.237,1250,4.249,1251,5.237,1344,6.752,1345,5.054,1346,5.754,1347,5.754,1348,5.754,1349,5.754,1350,4.593]],["title/classes/HttpError.html",[60,0.005,862,2.936]],["body/classes/HttpError.html",[3,0.118,4,0.095,5,0.083,7,0.358,8,1.101,9,0.73,18,0.545,20,1.366,21,0.011,22,1.932,48,1.66,56,0.16,57,0.005,58,0.007,59,0.005,60,0.007,62,1.746,67,3.516,73,1.3,75,0.723,77,0.795,78,0.42,93,0.443,98,1.693,101,1.46,108,1.106,122,2.211,166,3.664,169,1.489,175,2.099,177,1.925,194,0.537,199,1.593,202,2.31,255,2.246,307,2.834,466,4.401,514,4.71,642,3.581,682,2.92,689,4.821,696,2.31,796,1.91,859,2.514,862,4.716,890,3.581,930,4.716,931,3.581,934,2.88,1252,4.821,1266,3.098,1267,2.92,1297,5.45,1298,3.581,1299,5.042,1300,3.94,1302,6.898,1306,3.94,1308,3.94,1310,3.94,1311,3.94,1313,3.94,1314,5.305,1315,5.305,1316,3.94,1317,3.94,1318,3.94,1319,3.94,1320,3.94,1321,5.305,1322,3.94,1323,3.581,1324,3.94,1325,3.94,1326,3.94,1327,3.94,1328,3.94,1329,3.94,1330,3.94,1331,3.94,1332,3.94,1333,3.94,1334,3.94,1335,5.305,1336,5.305,1337,3.581,1338,3.94,1339,3.94,1340,3.94,1341,3.94,1342,3.94,1343,3.94,1351,6.04]],["title/injectables/LocationService.html",[796,1.344,1132,3.139]],["body/injectables/LocationService.html",[3,0.142,4,0.114,5,0.1,7,0.431,9,1.214,16,3.022,18,0.596,20,1.383,21,0.011,29,2.571,56,0.142,57,0.006,58,0.008,59,0.006,60,0.006,66,1.14,73,1.466,75,0.967,77,1.323,78,0.699,85,1.313,93,0.491,94,2.313,95,2.777,108,1.933,194,0.645,202,1.705,341,3.022,342,2.669,473,4.239,494,2.571,590,2.777,696,2.777,796,2.153,797,2.893,812,2.893,828,3.981,829,6.097,1132,5.028,1352,4.736,1353,5.981,1354,6.887,1355,5.981,1356,6.887,1357,5.391,1358,6.809,1359,5.391,1360,5.391,1361,6.809,1362,5.391,1363,5.391,1364,5.391,1365,5.391,1366,5.391,1367,5.391]],["title/interceptors/LoggingInterceptor.html",[684,2.936,766,2.767]],["body/interceptors/LoggingInterceptor.html",[3,0.136,4,0.109,5,0.096,7,0.412,9,1.077,18,0.529,20,1.109,21,0.011,22,1.678,48,1.662,50,4.309,56,0.136,57,0.006,58,0.008,59,0.006,60,0.006,66,1.109,73,1.425,75,0.792,77,1.174,78,0.62,85,0.864,93,0.484,108,1.633,133,1.542,194,0.617,202,1.631,255,1.307,307,3.388,342,2.554,473,3.62,478,4.759,494,2.46,514,4.683,607,4.118,684,4.573,696,2.657,796,2.094,859,2.892,920,4.531,930,3.563,934,2.46,1240,3.809,1242,4.889,1245,4.889,1246,5.696,1247,5.696,1249,4.889,1250,3.809,1251,4.889,1304,4.531,1350,4.118,1368,4.531,1369,5.159,1370,5.159,1371,5.816,1372,6.621,1373,5.159,1374,5.159,1375,6.621,1376,5.159,1377,5.159,1378,6.621,1379,5.159,1380,5.159,1381,5.159,1382,5.159]],["title/injectables/LoggingService.html",[307,1.764,796,1.344]],["body/injectables/LoggingService.html",[3,0.117,4,0.186,5,0.082,7,0.354,8,1.092,9,1.324,18,0.666,20,1.003,21,0.011,56,0.117,57,0.005,58,0.007,59,0.005,60,0.005,66,1.003,73,0.954,75,0.997,77,1.442,78,0.761,85,1.34,93,0.364,169,2.115,175,1.842,194,0.53,255,2.24,307,2.487,590,2.283,701,3.539,702,5.417,796,1.895,797,2.379,798,3.273,812,2.379,934,3.815,1383,3.894,1384,6.787,1385,5.961,1386,5.991,1387,5.991,1388,5.991,1389,5.991,1390,5.991,1391,5.991,1392,5.991,1393,4.433,1394,7.269,1395,5.991,1396,5.991,1397,4.433,1398,5.991,1399,4.433,1400,5.991,1401,4.433,1402,5.991,1403,4.433,1404,5.991,1405,4.433,1406,5.991,1407,4.433,1408,5.991,1409,4.433,1410,4.433,1411,5.991,1412,4.433,1413,4.433,1414,4.433,1415,3.894,1416,4.433,1417,4.433,1418,4.433,1419,4.433,1420,4.433,1421,4.433,1422,4.433]],["title/directives/MenuSelectionDirective.html",[237,1.236,281,1.383]],["body/directives/MenuSelectionDirective.html",[3,0.147,4,0.118,5,0.103,7,0.445,9,0.906,18,0.445,21,0.011,48,1.803,56,0.147,57,0.007,58,0.008,59,0.007,60,0.007,66,1.164,73,1.496,75,0.832,77,0.988,78,0.521,85,0.933,93,0.338,135,1.762,138,2.328,169,1.714,194,0.667,202,2.198,237,2.021,280,1.813,281,2.262,578,4.114,593,4.894,617,4.894,618,4.894,650,3.437,651,5.233,652,4.448,653,4.114,654,4.448,655,4.448,656,4.448,657,4.894,658,4.894,660,4.894,661,4.894,662,4.894,663,4.894,1423,6.048,1424,4.894,1425,6.952,1426,7.934,1427,4.448,1428,6.646,1429,6.048,1430,6.333,1431,5.572,1432,5.572,1433,4.448,1434,4.114,1435,5.572,1436,5.572]],["title/directives/MenuToggleDirective.html",[237,1.236,283,1.383]],["body/directives/MenuToggleDirective.html",[3,0.151,4,0.121,5,0.106,7,0.458,9,0.932,18,0.458,21,0.011,48,1.744,56,0.151,57,0.007,58,0.008,59,0.007,60,0.007,66,1.185,73,1.523,75,0.847,77,1.016,78,0.536,85,0.96,93,0.348,135,1.813,138,2.369,169,1.745,194,0.686,202,2.237,237,2.057,280,1.865,283,2.302,536,5.035,650,3.535,651,5.3,652,4.576,653,4.233,654,4.576,655,4.576,656,4.576,1423,6.126,1427,4.576,1428,6.693,1429,6.126,1430,6.397,1433,4.576,1434,4.233,1437,4.576,1438,7.075,1439,8.014,1440,5.732,1441,5.732,1442,5.732,1443,5.035,1444,5.732,1445,5.732,1446,5.732]],["title/interfaces/Meta.html",[0,1.169,37,2.105]],["body/interfaces/Meta.html",[0,2.05,1,3.799,2,2.095,3,0.125,4,0.1,5,0.088,6,3.072,7,0.377,8,1.139,10,3.485,11,2.645,12,2.337,13,4.315,14,3.853,15,4.315,16,3.502,17,3.218,18,0.595,19,3.353,20,1.488,21,0.011,22,1.889,24,4.315,25,4.315,26,4.315,27,4.066,28,4.066,29,2.25,30,4.315,31,3.485,32,3.853,33,2.137,34,4.315,35,4.315,36,4.315,37,3.945,38,4.315,39,3.853,40,4.481,41,2.911,42,3.442,43,2.911,44,2.645,45,3.218,46,4.066,47,2.533,48,1.073,49,3.853,50,3.072,51,2.774,52,3.072,53,4.066,54,3.853,55,3.259,56,0.125,57,0.006,58,0.007,59,0.006]],["title/interfaces/MetaResponse.html",[0,1.169,46,2.767]],["body/interfaces/MetaResponse.html",[0,2.059,1,3.57,2,2.119,3,0.126,4,0.101,5,0.089,6,3.106,7,0.381,8,1.148,10,3.524,11,2.675,12,2.363,13,4.347,14,3.882,15,4.347,16,3.528,17,3.241,18,0.563,19,3.378,20,1.489,21,0.011,22,1.897,24,4.347,25,4.347,26,4.347,27,4.096,28,4.096,29,2.276,30,4.347,31,3.524,32,3.882,33,2.141,34,4.347,35,4.347,36,4.347,37,4.035,38,4.347,39,3.882,40,4.018,41,2.943,42,2.794,43,2.943,44,2.675,45,3.23,46,4.583,47,4.018,48,1.085,49,3.882,50,3.106,51,2.794,52,3.106,53,4.096,54,3.882,55,3.296,56,0.126,57,0.006,58,0.008,59,0.006]],["title/interceptors/MockBackendInterceptor.html",[766,2.767,1447,3.139]],["body/interceptors/MockBackendInterceptor.html",[3,0.036,4,0.029,5,0.025,7,0.109,9,0.222,11,2.407,12,1.179,17,3.438,18,0.109,20,0.399,21,0.011,22,0.604,29,1.806,42,0.607,45,1.957,47,0.734,48,1.664,52,2.06,56,0.063,57,0.002,58,0.003,59,0.002,60,0.002,66,0.399,75,0.164,77,0.242,78,0.748,84,1.779,85,0.229,93,0.261,94,0.586,98,2.416,108,1.948,115,1.952,122,1.572,129,0.486,133,0.409,176,0.432,177,1.358,194,0.164,231,2.06,255,0.346,270,0.986,279,0.458,294,0.944,322,0.944,328,0.843,342,0.677,343,0.89,446,0.944,456,3.146,458,2.975,459,2.767,460,2.282,461,1.398,462,3.947,463,1.469,466,0.766,473,3.59,476,4.93,478,2.06,491,1.009,494,0.652,503,1.398,506,0.89,508,1.901,514,1.858,574,0.766,620,0.944,694,1.901,696,0.704,697,1.009,714,1.009,715,1.091,716,1.091,769,1.645,783,2.337,784,1.469,786,0.944,796,0.753,934,1.136,936,1.759,938,0.802,1020,0.89,1052,1.901,1104,2.248,1127,1.009,1128,1.009,1130,1.009,1166,1.009,1240,1.009,1242,1.759,1245,1.759,1246,2.796,1247,2.796,1249,1.759,1250,1.009,1251,1.759,1253,2.092,1266,0.944,1268,1.901,1276,1.201,1277,5.226,1323,1.091,1350,1.091,1353,2.092,1354,2.092,1355,2.092,1356,2.092,1371,2.092,1447,2.337,1448,1.901,1449,1.091,1450,1.367,1451,2.382,1452,2.382,1453,2.382,1454,1.367,1455,1.091,1456,3.023,1457,1.091,1458,2.337,1459,1.091,1460,1.091,1461,1.901,1462,1.091,1463,0.944,1464,1.091,1465,1.091,1466,1.091,1467,1.009,1468,1.091,1469,1.009,1470,1.091,1471,0.944,1472,0.843,1473,1.201,1474,1.009,1475,1.201,1476,3.763,1477,3.256,1478,1.201,1479,3.763,1480,3.763,1481,3.763,1482,2.78,1483,1.201,1484,2.092,1485,3.171,1486,5.15,1487,3.428,1488,3.171,1489,3.772,1490,2.092,1491,1.201,1492,2.092,1493,1.201,1494,1.201,1495,1.201,1496,2.092,1497,1.201,1498,1.201,1499,1.201,1500,2.092,1501,1.201,1502,1.201,1503,1.201,1504,2.092,1505,2.78,1506,2.092,1507,2.092,1508,1.201,1509,1.201,1510,1.201,1511,1.201,1512,1.091,1513,1.201,1514,1.201,1515,1.201,1516,1.201,1517,1.201,1518,1.201,1519,1.201,1520,1.201,1521,1.201,1522,1.201,1523,1.201,1524,1.201,1525,1.201,1526,1.201,1527,1.201,1528,1.201,1529,1.201,1530,1.201,1531,1.201,1532,1.091,1533,1.201,1534,1.201,1535,1.201,1536,1.201,1537,1.201,1538,1.201,1539,1.201,1540,1.201,1541,1.201,1542,1.201,1543,1.201,1544,1.201,1545,1.201,1546,1.201,1547,1.201,1548,1.201,1549,2.092,1550,3.326,1551,1.201,1552,1.201,1553,1.201,1554,1.201,1555,1.201,1556,1.201,1557,1.201,1558,1.201,1559,1.201,1560,1.201,1561,1.201,1562,1.201,1563,1.201,1564,1.201,1565,1.201,1566,1.201,1567,1.201,1568,1.201,1569,1.201,1570,1.201,1571,1.201,1572,1.201,1573,1.201,1574,2.092,1575,1.201,1576,1.201,1577,1.201,1578,1.009,1579,1.201,1580,1.201,1581,1.201,1582,1.201,1583,1.201,1584,1.201,1585,1.201,1586,1.201,1587,1.201,1588,1.201,1589,1.201,1590,1.201,1591,1.201,1592,1.201,1593,1.201,1594,1.201,1595,1.201,1596,1.201,1597,1.201,1598,1.201,1599,1.201,1600,1.201,1601,1.201,1602,1.201,1603,1.201,1604,1.201,1605,1.201,1606,1.201,1607,1.201,1608,1.201,1609,2.092,1610,1.201,1611,1.201,1612,1.201,1613,1.201,1614,1.201,1615,1.201,1616,1.201,1617,1.201,1618,2.092,1619,1.201,1620,1.091,1621,1.201,1622,1.201,1623,1.201,1624,1.201,1625,1.201,1626,1.201,1627,1.201,1628,1.201,1629,1.201,1630,2.092,1631,1.201,1632,1.201,1633,1.201,1634,1.201,1635,1.201,1636,1.201,1637,1.201,1638,1.201,1639,1.201,1640,1.201,1641,1.201,1642,1.201,1643,1.201,1644,1.201,1645,1.201,1646,1.201,1647,1.201,1648,2.092,1649,1.901,1650,1.201,1651,1.201,1652,1.201,1653,1.201,1654,1.201,1655,1.201,1656,1.201,1657,1.201,1658,1.201,1659,1.201,1660,1.201,1661,1.201,1662,1.201,1663,1.201,1664,1.201,1665,1.201,1666,1.201,1667,1.201,1668,1.201,1669,1.091,1670,1.201,1671,1.201,1672,1.201,1673,1.201,1674,1.201,1675,1.201,1676,1.201,1677,1.201,1678,1.201,1679,1.201,1680,1.201,1681,1.201,1682,1.201,1683,1.201,1684,1.201,1685,1.201,1686,1.201,1687,1.201,1688,1.091,1689,1.201,1690,1.201,1691,1.201,1692,1.201,1693,1.201,1694,1.201,1695,1.201,1696,1.201,1697,1.201,1698,1.201,1699,1.201,1700,1.201,1701,1.201,1702,1.201,1703,1.201,1704,1.201,1705,1.201,1706,1.201,1707,2.092,1708,1.201,1709,1.201,1710,1.201,1711,1.201,1712,1.201,1713,1.201,1714,1.201,1715,1.091,1716,1.201,1717,1.091,1718,1.201,1719,1.201,1720,1.201,1721,1.201,1722,1.201,1723,1.091,1724,1.201,1725,1.201,1726,1.201,1727,1.201,1728,1.201,1729,1.201,1730,1.201,1731,1.201,1732,1.091,1733,1.201,1734,1.201,1735,1.901,1736,1.201,1737,1.201,1738,1.201,1739,1.201,1740,1.201,1741,1.091,1742,1.201,1743,1.091,1744,1.201,1745,1.201,1746,1.901,1747,1.201,1748,1.201,1749,1.201,1750,1.201,1751,2.092,1752,1.201,1753,1.201,1754,1.201,1755,1.201,1756,1.201,1757,1.201,1758,1.201,1759,1.201,1760,1.201,1761,1.201,1762,1.201,1763,1.201,1764,1.201,1765,1.201,1766,1.201,1767,1.201,1768,1.201,1769,1.201,1770,1.201,1771,1.201,1772,1.201,1773,1.201,1774,1.201,1775,1.201,1776,1.201,1777,1.201,1778,1.201,1779,1.201,1780,1.201,1781,1.201,1782,1.201,1783,1.201,1784,1.201,1785,1.201,1786,1.201,1787,1.201,1788,1.201,1789,1.201,1790,1.201,1791,1.201,1792,1.201,1793,1.201,1794,1.201,1795,2.092,1796,1.201,1797,1.201,1798,1.201,1799,1.201,1800,1.201,1801,1.201,1802,1.201,1803,1.201,1804,1.201,1805,1.201,1806,1.201,1807,1.201,1808,1.201,1809,1.201,1810,1.201,1811,1.201,1812,1.201,1813,2.78,1814,1.201,1815,1.201,1816,1.201,1817,1.201,1818,1.201,1819,1.201,1820,1.201,1821,1.201,1822,1.201,1823,1.201,1824,1.201,1825,1.201,1826,1.201,1827,1.201,1828,1.201,1829,1.201,1830,1.201,1831,1.201,1832,1.201,1833,1.201,1834,1.201,1835,1.201,1836,1.201,1837,1.201,1838,1.201,1839,1.201,1840,1.201,1841,1.201,1842,1.201,1843,1.201,1844,1.201,1845,1.201,1846,1.201,1847,1.201,1848,1.201,1849,1.201,1850,1.201,1851,1.201,1852,1.201,1853,1.201,1854,1.201,1855,1.201,1856,1.201,1857,1.201,1858,1.201,1859,1.201,1860,1.201,1861,1.201,1862,1.201,1863,1.201,1864,1.201,1865,1.201,1866,1.201,1867,1.201,1868,1.201,1869,1.201,1870,1.201,1871,1.201,1872,1.201,1873,1.201,1874,1.201,1875,1.201,1876,1.201,1877,1.201,1878,1.201,1879,1.201,1880,1.201,1881,1.201,1882,1.201,1883,1.201,1884,1.201,1885,1.201,1886,1.201,1887,1.201,1888,1.201,1889,1.201,1890,1.201,1891,1.201,1892,1.201,1893,1.201,1894,1.201,1895,1.201,1896,1.201,1897,1.201,1898,1.201,1899,1.201,1900,1.201,1901,1.201,1902,2.092,1903,1.201,1904,1.901,1905,1.201,1906,1.201,1907,1.201,1908,1.201,1909,1.201,1910,1.201,1911,1.201,1912,1.201,1913,1.201,1914,1.201,1915,1.201,1916,1.201,1917,1.201,1918,1.201,1919,1.201,1920,1.201,1921,1.091,1922,1.201,1923,1.201,1924,1.201,1925,1.201,1926,1.201,1927,1.201,1928,1.201,1929,1.201,1930,1.201,1931,1.201,1932,1.201,1933,2.092,1934,2.092,1935,1.201,1936,1.901,1937,1.201,1938,1.201,1939,1.201,1940,1.201,1941,1.201,1942,1.901,1943,1.201,1944,1.201,1945,1.201,1946,1.201,1947,1.201,1948,1.201,1949,1.201,1950,1.201,1951,1.201,1952,1.201,1953,1.201,1954,1.201,1955,1.201,1956,1.201,1957,1.201,1958,1.201,1959,1.201,1960,1.201,1961,1.201,1962,1.201,1963,1.201,1964,1.091,1965,1.091,1966,1.201,1967,1.201,1968,1.201,1969,2.092,1970,1.201,1971,1.201,1972,1.201,1973,1.201,1974,1.201,1975,1.201,1976,1.201,1977,2.092,1978,1.201,1979,1.201,1980,1.201,1981,1.201,1982,1.201,1983,1.201,1984,1.201,1985,1.201,1986,1.201,1987,1.201,1988,1.201,1989,1.201,1990,1.201,1991,1.201,1992,1.201,1993,1.201,1994,1.201,1995,1.201,1996,1.201,1997,1.201,1998,1.201,1999,1.201,2000,1.201,2001,1.201,2002,1.201,2003,1.201,2004,1.091,2005,1.201,2006,1.201,2007,1.201,2008,1.201,2009,1.201,2010,1.901,2011,1.201,2012,1.201,2013,1.201,2014,1.201,2015,1.201,2016,1.201,2017,1.201,2018,1.091,2019,1.201,2020,1.201,2021,1.201,2022,1.201,2023,1.201,2024,1.201,2025,1.201,2026,1.201,2027,1.201,2028,1.201,2029,1.201,2030,1.201,2031,1.201,2032,1.201,2033,1.201,2034,1.201,2035,1.201,2036,1.201,2037,1.201,2038,1.201,2039,1.201,2040,1.201,2041,1.201,2042,1.201,2043,1.201,2044,1.201,2045,1.201,2046,1.201,2047,1.201,2048,1.201,2049,1.201,2050,1.201,2051,1.201,2052,1.201,2053,1.201,2054,1.201,2055,1.201,2056,1.201,2057,1.201,2058,1.201,2059,1.201,2060,1.201,2061,1.201,2062,1.201,2063,1.201,2064,1.201,2065,1.201,2066,1.201,2067,1.201,2068,1.201,2069,1.901,2070,2.092,2071,3.326,2072,1.201,2073,1.201,2074,1.201,2075,1.201,2076,1.201,2077,1.201,2078,1.201,2079,1.201,2080,1.201,2081,1.201,2082,1.201,2083,1.201,2084,1.201,2085,1.201,2086,1.201,2087,2.092,2088,1.201,2089,1.201,2090,2.092,2091,1.201,2092,1.201,2093,1.201,2094,2.78,2095,2.78,2096,1.201,2097,1.201,2098,2.092,2099,2.092,2100,2.092,2101,1.201,2102,1.201,2103,1.201,2104,1.201,2105,1.201,2106,1.201,2107,1.201,2108,1.201,2109,1.201,2110,1.201,2111,1.201,2112,1.201,2113,1.201,2114,1.201,2115,1.201,2116,1.201,2117,1.201,2118,1.201,2119,1.201,2120,1.201,2121,1.201,2122,1.201,2123,1.201,2124,1.201,2125,1.201,2126,1.201,2127,1.201,2128,1.201,2129,1.201,2130,1.201,2131,1.201,2132,1.201,2133,1.201,2134,2.092,2135,1.201,2136,1.201,2137,1.201,2138,1.201,2139,1.201,2140,1.201,2141,1.201,2142,1.201,2143,1.201,2144,1.201,2145,1.201,2146,1.201,2147,2.092,2148,1.201,2149,1.201,2150,1.201,2151,2.092,2152,1.201,2153,1.201,2154,1.201,2155,1.201,2156,1.201,2157,1.201,2158,1.201,2159,1.201,2160,1.201,2161,1.201,2162,1.201,2163,1.201,2164,1.201,2165,1.201,2166,1.201,2167,1.201,2168,1.201,2169,1.201,2170,1.201,2171,1.201,2172,1.201,2173,1.201,2174,1.201,2175,1.201,2176,1.201,2177,1.201,2178,2.78,2179,1.201,2180,1.201,2181,1.201,2182,1.201,2183,1.201,2184,1.201,2185,1.201,2186,1.201,2187,1.201,2188,1.201,2189,1.201,2190,1.201,2191,1.201,2192,2.092,2193,1.201,2194,1.201,2195,1.201,2196,1.201,2197,1.201,2198,1.201,2199,1.201,2200,2.092,2201,1.201,2202,1.201,2203,1.201,2204,1.201,2205,1.201,2206,1.091,2207,1.201,2208,1.201,2209,1.201,2210,1.201,2211,0.843,2212,1.201,2213,1.201,2214,1.201,2215,1.201,2216,1.201,2217,1.201,2218,1.201,2219,2.092,2220,1.201,2221,1.201,2222,2.092,2223,1.201,2224,1.201,2225,1.201,2226,1.201,2227,1.201,2228,1.201,2229,1.201,2230,1.201,2231,1.201,2232,1.201,2233,1.201,2234,1.201,2235,1.201,2236,1.201,2237,1.201,2238,1.201,2239,2.78,2240,1.201,2241,1.201,2242,1.201,2243,1.201,2244,1.201,2245,1.201,2246,1.201,2247,1.201,2248,1.201,2249,1.201,2250,1.201,2251,1.201,2252,1.201,2253,1.201,2254,1.201,2255,1.201,2256,1.201,2257,1.201,2258,2.092,2259,1.201,2260,1.201,2261,1.201,2262,1.201,2263,1.201,2264,1.201,2265,1.201,2266,1.201,2267,1.201,2268,1.201,2269,1.201,2270,1.201,2271,1.201,2272,1.201,2273,1.201,2274,1.201,2275,1.201,2276,2.092,2277,1.201,2278,1.201,2279,1.201,2280,1.201,2281,2.78,2282,2.78,2283,1.201,2284,2.092,2285,1.201,2286,1.201,2287,1.201,2288,1.201,2289,1.201,2290,1.201,2291,1.201,2292,1.201,2293,1.201,2294,1.201,2295,1.201,2296,1.201,2297,1.201,2298,1.201,2299,2.78,2300,1.201,2301,1.201,2302,1.201,2303,1.201,2304,1.201,2305,1.201,2306,1.201,2307,1.201,2308,1.201,2309,1.201,2310,1.201,2311,1.201,2312,1.201,2313,1.201,2314,1.201,2315,1.201,2316,1.201,2317,1.201,2318,1.091,2319,2.092,2320,2.092,2321,1.201,2322,1.201,2323,1.091,2324,1.201,2325,1.201,2326,1.201,2327,1.201,2328,1.091,2329,1.091,2330,1.091,2331,1.367,2332,1.367,2333,1.367,2334,1.367,2335,1.091,2336,1.367,2337,2.382,2338,1.201,2339,1.201,2340,1.367,2341,1.367,2342,1.367,2343,1.367,2344,1.367,2345,1.367,2346,5.66,2347,1.367,2348,1.367,2349,2.382,2350,2.382,2351,2.092,2352,1.367,2353,1.367,2354,2.092,2355,1.367,2356,2.092,2357,1.367,2358,2.382,2359,1.367,2360,2.382,2361,1.367,2362,1.367,2363,1.367,2364,1.367,2365,1.367,2366,2.382,2367,1.367,2368,2.382,2369,1.367,2370,2.382,2371,1.201,2372,1.201,2373,1.367,2374,1.367,2375,1.201,2376,1.901,2377,1.367,2378,2.382,2379,2.382,2380,2.382,2381,3.165,2382,1.367,2383,1.367,2384,2.382,2385,1.201,2386,1.367,2387,1.367,2388,1.367,2389,1.367,2390,1.091,2391,2.382,2392,1.367,2393,1.367,2394,1.367,2395,1.367,2396,1.367,2397,1.367,2398,1.367,2399,1.367,2400,1.367,2401,1.367,2402,1.367,2403,1.367,2404,1.367,2405,1.367,2406,1.367,2407,1.367,2408,1.367,2409,1.367,2410,1.367,2411,1.367,2412,1.367,2413,1.367,2414,1.367,2415,1.367,2416,1.367,2417,1.367,2418,1.367,2419,1.367,2420,1.367,2421,1.367,2422,1.367,2423,1.367,2424,1.367,2425,2.382,2426,2.382,2427,1.367,2428,1.367]],["title/interfaces/MutableKeyStore.html",[0,1.169,814,2.495]],["body/interfaces/MutableKeyStore.html",[0,0.734,2,1.185,3,0.071,4,0.056,5,0.05,7,0.213,9,1.291,18,0.634,20,1.443,21,0.011,37,1.322,48,1.649,56,0.071,57,0.003,58,0.005,59,0.003,60,0.003,66,0.694,68,2.719,75,1.006,77,1.407,78,0.743,84,1.007,85,1.408,86,3.022,93,0.251,98,3.162,101,0.869,108,2.039,109,3.113,122,1.858,133,0.798,169,1.742,177,1.145,345,2.724,411,1.567,476,1.971,631,1.971,704,2.696,752,4.228,762,5.217,768,1.971,814,3.357,818,4.942,819,4.942,885,1.433,934,1.273,962,1.375,1023,1.433,1299,3.059,2429,4.954,2430,1.971,2431,3.505,2432,5.438,2433,5.438,2434,5.438,2435,3.638,2436,3.638,2437,3.638,2438,5.438,2439,5.438,2440,3.638,2441,3.638,2442,3.638,2443,5.438,2444,5.438,2445,3.638,2446,3.638,2447,3.638,2448,3.638,2449,3.638,2450,5.438,2451,3.638,2452,3.638,2453,3.638,2454,2.861,2455,2.669,2456,2.669,2457,2.669,2458,4.458,2459,2.669,2460,4.458,2461,2.669,2462,5.755,2463,2.669,2464,4.458,2465,2.669,2466,2.669,2467,2.669,2468,4.458,2469,2.669,2470,4.458,2471,2.669,2472,2.345,2473,2.669,2474,4.458,2475,2.669,2476,2.669,2477,2.669,2478,4.458,2479,2.669,2480,4.458,2481,4.458,2482,2.669,2483,4.458,2484,2.669,2485,4.458,2486,2.669,2487,4.458,2488,2.669,2489,2.669,2490,4.458,2491,2.669,2492,4.458,2493,2.669,2494,4.458,2495,2.669,2496,4.458,2497,2.669,2498,2.345,2499,2.345,2500,2.345,2501,1.844,2502,1.971,2503,2.431,2504,1.971,2505,2.131,2506,2.345,2507,2.345,2508,3.638,2509,3.638,2510,4.458,2511,2.345,2512,4.458,2513,4.458,2514,2.345,2515,2.345,2516,2.345,2517,2.131,2518,2.345,2519,2.345,2520,2.345,2521,2.345,2522,2.345,2523,2.345,2524,2.345,2525,2.345,2526,2.345,2527,2.345,2528,2.345,2529,2.131,2530,2.131,2531,2.345,2532,2.345,2533,2.345,2534,2.345,2535,2.345,2536,2.345,2537,2.345,2538,2.345,2539,3.638,2540,2.345,2541,2.345,2542,2.345,2543,2.131,2544,1.737,2545,2.131,2546,1.844,2547,2.345,2548,1.844,2549,1.844,2550,2.131,2551,2.345,2552,2.345]],["title/classes/MutablePgpKeyStore.html",[60,0.005,704,2.767]],["body/classes/MutablePgpKeyStore.html",[0,0.741,3,0.071,4,0.057,5,0.05,7,0.215,9,1.293,18,0.548,20,1.379,21,0.011,37,1.334,48,1.653,56,0.071,57,0.003,58,0.005,59,0.003,60,0.003,62,1.048,66,0.698,68,3.378,75,1.008,77,1.409,78,0.744,84,1.016,85,1.41,86,3.05,93,0.253,98,3.166,101,0.876,108,2.042,109,3.121,122,1.868,133,1.247,169,1.691,177,1.156,345,2.739,411,1.581,476,1.989,631,1.989,704,3.322,752,4.232,762,5.233,768,1.989,814,3.373,818,4.963,819,4.963,885,1.445,934,1.284,962,1.387,1023,1.445,1299,1.989,2429,4.96,2430,1.989,2431,2.881,2432,5.461,2433,5.461,2434,5.461,2435,3.664,2436,3.664,2437,3.664,2438,5.461,2439,5.461,2440,3.664,2441,3.664,2442,3.664,2443,5.461,2444,5.461,2445,3.664,2446,3.664,2447,3.664,2448,3.664,2449,3.664,2450,5.461,2451,3.664,2452,3.664,2453,3.664,2454,2.881,2458,4.483,2460,4.483,2462,5.776,2464,4.483,2468,4.483,2470,4.483,2472,2.366,2474,4.483,2478,4.483,2480,4.483,2481,4.483,2483,4.483,2485,4.483,2487,4.483,2490,4.483,2492,4.483,2494,4.483,2496,4.483,2498,2.366,2499,2.366,2500,2.366,2501,1.86,2502,1.989,2503,2.448,2504,1.989,2505,2.15,2506,2.366,2507,2.366,2508,3.664,2509,3.664,2510,4.483,2511,2.366,2512,4.483,2513,4.483,2514,2.366,2515,2.366,2516,2.366,2517,2.15,2518,2.366,2519,2.366,2520,2.366,2521,2.366,2522,2.366,2523,2.366,2524,2.366,2525,2.366,2526,2.366,2527,2.366,2528,2.366,2529,2.15,2530,2.15,2531,2.366,2532,2.366,2533,2.366,2534,2.366,2535,2.366,2536,2.366,2537,2.366,2538,2.366,2539,3.664,2540,2.366,2541,2.366,2542,2.366,2543,2.15,2544,1.753,2545,2.15,2546,1.86,2547,2.366,2548,1.86,2549,1.86,2550,2.15,2551,2.366,2552,2.366,2553,2.693,2554,2.693,2555,2.693,2556,2.693,2557,2.693,2558,2.693,2559,2.693,2560,2.693,2561,2.693,2562,2.693,2563,2.693,2564,2.693,2565,2.693,2566,2.693,2567,2.693,2568,2.693,2569,2.693,2570,2.693,2571,2.693,2572,2.693,2573,2.693,2574,2.693,2575,2.693,2576,2.693,2577,2.693]],["title/components/OrganizationComponent.html",[123,0.692,260,1.383]],["body/components/OrganizationComponent.html",[3,0.098,4,0.078,5,0.069,7,0.296,8,0.965,9,0.603,18,0.538,21,0.011,33,1.341,56,0.098,57,0.004,58,0.006,59,0.004,60,0.004,66,0.886,73,1.139,75,0.911,77,0.657,78,0.63,85,0.886,93,0.375,101,1.722,108,1.305,116,1.825,122,1.357,123,1.004,124,1.206,125,1.937,126,1.357,127,1.539,128,1.399,129,1.317,133,1.582,134,2.837,135,1.173,136,2.196,137,2.196,138,2.932,139,3.176,141,2.196,143,2.196,148,4.557,155,3.094,159,3.908,163,2.96,164,5.464,169,1.659,173,4.557,175,1.627,176,2.542,177,2.647,180,4.389,193,1.539,194,0.444,195,2.738,196,1.99,197,1.836,202,1.173,204,2.738,205,3.908,230,2.62,232,4.648,234,1.048,235,1.997,236,1.997,237,1.078,238,2.539,239,1.399,240,1.242,241,2.329,242,1.206,243,1.399,244,1.399,245,1.206,246,1.399,247,1.242,248,1.399,249,1.206,250,1.399,251,1.206,252,1.317,253,1.399,254,1.206,255,0.94,256,1.399,257,1.242,258,1.997,259,1.317,260,2.19,261,1.399,262,1.206,263,1.399,264,1.206,265,1.399,266,1.242,267,1.997,268,1.317,269,1.206,270,0.966,271,1.206,272,1.399,273,1.242,274,1.997,275,1.317,276,1.242,277,1.02,278,1.206,279,1.242,280,1.206,281,1.206,282,1.399,283,1.206,284,1.399,285,1.206,286,1.399,287,1.279,288,1.357,289,1.399,733,4.926,735,5.372,757,4.224,1001,4.147,1168,4.648,1267,4.38,1471,2.561,1578,4.969,2578,3.257,2579,5.255,2580,6.171,2581,5.292,2582,6.171,2583,6.171,2584,5.292,2585,3.708,2586,3.708,2587,3.708,2588,3.708,2589,3.708,2590,3.708,2591,3.708,2592,7.116,2593,4.926,2594,3.708,2595,3.708,2596,3.708,2597,3.708,2598,5.292,2599,5.292,2600,4.648,2601,5.292,2602,5.292,2603,5.292,2604,5.292,2605,4.648,2606,5.292,2607,5.292,2608,5.292,2609,5.292,2610,5.292,2611,5.292]],["title/classes/PGPSigner.html",[60,0.005,2612,2.936]],["body/classes/PGPSigner.html",[0,1.432,3,0.096,4,0.077,5,0.067,7,0.289,8,0.949,9,1.083,18,0.659,20,1.436,21,0.011,33,1.319,40,4.617,41,4.35,42,2.31,43,4.35,44,3.953,47,2.793,48,1.669,51,2.31,56,0.096,57,0.004,58,0.006,59,0.004,60,0.004,62,1.41,66,0.871,67,4.214,68,2.528,73,0.78,75,0.988,77,1.18,78,0.623,85,1.115,86,2.299,93,0.316,108,1.283,109,1.554,122,1.905,133,1.556,169,1.865,175,2.257,176,1.646,255,1.319,307,3.047,345,1.944,615,3.387,638,2.502,640,2.675,688,2.126,752,1.794,814,4.31,859,2.03,934,2.482,951,3.843,962,1.866,2346,4.155,2429,4.883,2431,4.871,2454,3.594,2501,2.502,2503,2.126,2544,2.358,2546,3.594,2548,2.502,2549,2.502,2612,4.207,2613,2.358,2614,4.598,2615,4.862,2616,4.862,2617,4.862,2618,5.63,2619,4.572,2620,4.572,2621,4.155,2622,5.205,2623,4.155,2624,3.623,2625,3.623,2626,3.623,2627,3.623,2628,3.623,2629,3.623,2630,3.623,2631,3.623,2632,4.862,2633,5.071,2634,3.623,2635,2.892,2636,4.862,2637,3.623,2638,4.862,2639,3.623,2640,2.892,2641,2.675,2642,2.892,2643,2.892,2644,4.155,2645,2.892,2646,2.892,2647,2.892,2648,2.892,2649,2.892,2650,2.892,2651,2.892,2652,4.155,2653,2.892,2654,2.892,2655,2.892,2656,4.155,2657,2.892,2658,4.155,2659,2.892,2660,2.892,2661,2.892,2662,2.892,2663,2.892,2664,2.892,2665,2.892,2666,2.892,2667,2.892,2668,2.892,2669,2.892,2670,2.892]],["title/components/PagesComponent.html",[123,0.692,262,1.383]],["body/components/PagesComponent.html",[3,0.126,4,0.101,5,0.088,7,0.381,8,1.146,18,0.381,20,1.053,21,0.01,33,1.207,56,0.126,57,0.006,58,0.008,59,0.006,60,0.006,73,1.514,75,0.752,78,0.659,93,0.289,116,2.168,123,1.145,124,1.55,125,2.301,126,1.744,127,1.977,128,1.798,129,1.692,135,1.507,136,2.609,137,2.609,138,2.99,139,3.249,141,2.609,143,2.609,176,1.507,193,1.977,194,0.57,230,3.113,234,1.347,235,2.372,236,2.372,237,1.385,238,2.824,239,1.798,240,1.596,241,2.655,242,1.55,243,1.798,244,1.798,245,1.55,246,1.798,247,1.596,248,1.798,249,1.55,250,1.798,251,1.55,252,1.692,253,1.798,254,1.55,255,1.207,256,1.798,257,1.596,258,2.372,259,1.692,260,1.55,261,1.798,262,2.435,263,1.798,264,1.55,265,1.798,266,1.596,267,2.372,268,1.692,269,1.55,270,1.241,271,1.55,272,1.798,273,1.596,274,2.372,275,1.692,276,1.596,277,1.311,278,1.55,279,1.596,280,1.55,281,1.55,282,1.798,283,1.55,284,1.798,285,1.55,286,1.798,287,1.643,288,1.744,289,1.798,688,3.69,2330,5.617,2671,4.185,2672,6.287,2673,7.037,2674,6.287,2675,6.287,2676,6.287,2677,5.019,2678,6.287]],["title/modules/PagesModule.html",[381,1.138,2679,3.139]],["body/modules/PagesModule.html",[3,0.147,4,0.118,5,0.103,21,0.011,56,0.147,57,0.007,58,0.008,59,0.007,60,0.007,93,0.529,194,0.667,234,1.575,262,2.709,381,1.491,383,2.039,384,2.759,385,4.066,386,2.87,387,2.99,388,2.239,393,4.288,395,3.731,396,2.99,397,2.657,399,2.885,400,2.885,401,4.08,402,3.123,404,3.271,406,3.437,421,4.288,422,3.437,423,4.525,424,3.627,425,3.627,426,4.288,427,3.437,428,4.288,429,3.437,432,4.801,433,3.848,2679,6.401,2680,4.894,2681,4.894,2682,4.894,2683,5.75,2684,5.572,2685,5.572,2686,5.572,2687,6.952,2688,4.894,2689,4.894]],["title/modules/PagesRoutingModule.html",[381,1.138,2683,2.936]],["body/modules/PagesRoutingModule.html",[3,0.149,4,0.119,5,0.105,21,0.011,48,1.283,56,0.149,57,0.007,58,0.008,59,0.007,60,0.007,93,0.463,119,3.674,123,0.918,194,0.676,199,2.005,230,3.47,262,2.28,383,2.066,388,2.268,399,2.343,400,2.909,448,3.314,449,3.925,450,3.928,451,4.971,452,3.899,453,3.899,454,3.674,455,3.482,503,3.314,720,7.199,1001,3.164,1006,3.03,1472,3.482,2683,4.84,2690,5.646,2691,5.646,2692,5.646,2693,5.646,2694,5.646,2695,5.646,2696,5.646,2697,5.646,2698,5.646,2699,5.646,2700,5.646,2701,5.646]],["title/directives/PasswordToggleDirective.html",[237,1.236,285,1.383]],["body/directives/PasswordToggleDirective.html",[3,0.139,4,0.111,5,0.098,7,0.421,9,0.857,18,0.59,20,1.302,21,0.011,45,3.064,48,1.525,56,0.139,57,0.006,58,0.008,59,0.006,60,0.006,66,1.124,73,1.444,75,0.93,77,0.934,78,0.493,85,0.882,93,0.32,135,1.666,138,2.247,169,1.655,194,0.63,202,2.122,237,1.951,280,1.714,285,2.183,651,4.634,876,4.205,962,3.803,1427,4.205,1428,6.552,1429,5.894,1430,6.206,1433,4.205,1434,3.89,1437,4.205,2702,7.052,2703,6.71,2704,7.774,2705,5.356,2706,7.384,2707,6.71,2708,5.268,2709,5.268,2710,5.452,2711,5.268,2712,5.268,2713,5.268,2714,5.268,2715,7.384,2716,7.384,2717,7.384,2718,6.71,2719,7.774,2720,6.71,2721,6.71]],["title/injectables/RegistryService.html",[796,1.344,993,2.767]],["body/injectables/RegistryService.html",[3,0.141,4,0.113,5,0.099,7,0.427,8,1.235,18,0.594,21,0.011,33,1.883,56,0.141,57,0.006,58,0.008,59,0.006,60,0.006,66,1.134,73,1.6,75,0.986,85,1.134,93,0.489,94,2.292,95,2.752,96,5.161,101,2.681,102,5,108,1.67,176,2.35,194,0.639,197,2.646,590,2.752,796,2.141,797,2.867,812,2.867,885,2.867,993,4.407,1023,2.867,2722,4.693,2723,8.238,2724,5.133,2725,7.815,2726,7.815,2727,5.343,2728,5.343,2729,5.343,2730,5.933,2731,5.343,2732,6.437,2733,6.771,2734,6.771,2735,6.771,2736,6.771,2737,6.771,2738,5.343,2739,5.343,2740,5.343,2741,4.265,2742,4.265,2743,4.693]],["title/guards/RoleGuard.html",[786,2.936,2744,3.393]],["body/guards/RoleGuard.html",[3,0.144,4,0.115,5,0.101,7,0.436,9,1.117,18,0.548,21,0.011,48,1.241,56,0.144,57,0.007,58,0.008,59,0.007,60,0.007,66,1.149,73,1.175,75,0.821,77,1.217,78,0.642,85,0.914,86,2.59,93,0.456,108,1.851,115,3.368,122,1.998,133,1.632,166,4.446,175,2.11,177,2.945,194,0.653,199,1.939,466,3.847,473,3.717,494,2.604,533,4.886,590,2.812,725,6.479,787,4.359,789,4.359,791,4.796,792,6.918,793,6.918,795,6.594,796,2.171,797,2.93,798,4.032,800,4.796,2744,5.479,2745,4.796,2746,5.46,2747,5.46,2748,6.864,2749,5.46,2750,5.46,2751,5.46,2752,5.46,2753,5.46,2754,5.46,2755,5.46]],["title/directives/RouterLinkDirectiveStub.html",[237,1.236,287,1.466]],["body/directives/RouterLinkDirectiveStub.html",[3,0.157,4,0.126,5,0.11,7,0.475,8,1.32,18,0.578,21,0.011,33,1.507,56,0.157,57,0.007,58,0.009,59,0.007,60,0.007,75,0.933,93,0.361,135,1.881,138,2.424,169,1.467,176,1.881,194,0.712,237,2.459,280,1.936,287,2.496,288,2.971,467,3.334,483,5.225,598,6.357,624,5.225,999,5.344,1434,5.76,2705,5.777,2710,4.393,2756,7.13,2757,6.479,2758,7.801,2759,5.949,2760,5.225,2761,5.949,2762,5.949,2763,5.949,2764,5.949,2765,5.949,2766,5.949]],["title/pipes/SafePipe.html",[2211,2.622,2767,2.936]],["body/pipes/SafePipe.html",[3,0.161,4,0.129,5,0.113,9,0.993,18,0.488,20,1.321,21,0.011,56,0.161,57,0.007,58,0.009,59,0.007,60,0.007,66,1.022,75,0.731,77,1.082,78,0.738,85,1.022,93,0.446,108,1.506,133,1.825,135,1.931,194,0.731,687,4.874,688,3.584,798,4.509,2069,6.689,2211,4.535,2330,4.874,2767,5.078,2768,4.874,2769,5.364,2770,7.353,2771,5.364,2772,7.353,2773,6.93,2774,6.106,2775,6.459,2776,7.353,2777,6.106,2778,6.106]],["title/classes/Settings.html",[60,0.005,1001,2.383]],["body/classes/Settings.html",[3,0.154,4,0.123,5,0.108,7,0.466,8,1.304,9,0.949,18,0.661,21,0.011,33,1.478,44,4.335,56,0.154,57,0.007,58,0.009,59,0.007,60,0.009,62,2.27,73,1.255,75,0.99,77,1.034,78,0.546,176,1.844,222,5.568,1001,4.335,2724,5.341,2779,4.656,2780,7.267,2781,6.793,2782,6.297,2783,6.281,2784,7.151,2785,5.833,2786,5.833,2787,6.793,2788,5.833,2789,5.123]],["title/components/SettingsComponent.html",[123,0.692,264,1.383]],["body/components/SettingsComponent.html",[3,0.089,4,0.071,5,0.063,7,0.269,8,0.901,9,0.804,18,0.606,20,1.148,21,0.011,32,3.972,33,1.252,45,2.051,48,0.767,56,0.155,57,0.004,58,0.006,59,0.004,60,0.004,66,0.828,73,1.064,75,0.955,77,0.876,78,0.725,85,1.078,93,0.449,98,2.43,101,1.608,116,2.617,123,0.952,124,1.098,125,1.809,126,1.235,127,1.4,128,1.273,129,1.198,133,1.477,134,2.689,135,1.067,136,2.051,137,2.051,138,2.907,139,3.144,140,3.048,141,2.051,143,2.051,155,2.961,169,1.872,176,1.067,193,1.4,194,0.404,197,1.67,198,1.67,202,1.067,230,2.447,234,0.954,235,1.865,236,1.865,237,0.981,238,2.43,239,1.273,240,1.13,241,2.207,242,1.098,243,1.273,244,1.273,245,1.098,246,1.273,247,1.13,248,1.273,249,1.098,250,1.273,251,1.098,252,1.198,253,1.273,254,1.098,255,0.855,256,1.273,257,1.13,258,1.865,259,1.198,260,1.098,261,1.273,262,1.098,263,1.273,264,2.095,265,1.273,266,1.13,267,1.865,268,1.198,269,1.098,270,0.878,271,1.098,272,1.273,273,1.13,274,1.865,275,1.198,276,1.13,277,0.928,278,1.098,279,1.13,280,1.098,281,1.098,282,1.273,283,1.098,284,1.273,285,1.098,286,1.273,287,1.163,288,1.235,289,1.273,295,4.04,297,4.669,299,4.04,300,4.04,301,3.413,302,4.448,309,3.413,320,4.04,330,4.04,331,3.217,332,3.413,334,4.04,335,3.413,336,2.33,337,1.737,338,1.81,339,1.81,340,2.081,355,2.491,357,2.491,358,2.33,359,2.491,360,2.33,362,2.491,363,2.33,373,3.413,377,4.448,460,1.924,503,2.901,574,1.891,601,2.693,602,4.418,630,4.341,784,3.972,825,6.292,962,3.689,972,5.138,1001,4.411,2579,4.755,2790,2.963,2791,5.849,2792,4.942,2793,4.942,2794,3.374,2795,3.374,2796,3.374,2797,3.374,2798,3.374,2799,3.374,2800,4.341,2801,3.374,2802,3.374,2803,3.374,2804,3.374,2805,2.963,2806,3.374,2807,3.374,2808,3.374,2809,3.374,2810,3.374,2811,3.374,2812,4.319,2813,3.374,2814,4.942,2815,4.942,2816,4.942,2817,4.942,2818,4.942,2819,4.942,2820,4.942,2821,5.657,2822,6.44,2823,4.942,2824,4.942,2825,4.942,2826,4.942,2827,4.942,2828,4.942]],["title/modules/SettingsModule.html",[381,1.138,2829,3.139]],["body/modules/SettingsModule.html",[3,0.137,4,0.11,5,0.096,21,0.011,56,0.137,57,0.006,58,0.008,59,0.006,60,0.006,93,0.539,194,0.621,196,2.783,234,1.466,260,2.66,264,2.66,337,2.671,338,2.783,339,2.783,381,1.388,383,1.898,384,2.568,385,3.933,386,2.671,387,2.783,388,2.084,393,4.21,395,3.565,396,2.783,397,2.473,399,2.757,400,2.757,401,3.899,402,2.907,404,3.044,406,3.198,416,4.324,417,4.588,418,4.905,419,3.829,420,4.588,421,4.097,422,3.198,423,4.324,424,3.375,425,3.375,426,4.097,427,3.198,428,4.097,429,3.198,430,4.324,431,3.375,432,4.588,433,3.581,442,5.303,2829,6.405,2830,4.555,2831,4.555,2832,4.555,2833,5.645,2834,5.186,2835,5.186,2836,4.555,2837,4.555,2838,6.643,2839,5.186,2840,6.643,2841,5.186]],["title/modules/SettingsRoutingModule.html",[381,1.138,2833,2.936]],["body/modules/SettingsRoutingModule.html",[3,0.161,4,0.129,5,0.113,21,0.011,48,1.388,56,0.161,57,0.007,58,0.009,59,0.007,60,0.007,93,0.497,123,1.196,194,0.731,199,2.169,260,2.393,264,2.393,383,2.235,388,2.454,399,2.534,400,3.052,448,3.584,449,4.063,450,4.121,451,4.631,452,4.217,453,4.217,454,3.974,455,3.766,2579,4.509,2833,5.078,2836,5.364,2837,5.364,2842,6.106]],["title/modules/SharedModule.html",[381,1.138,393,2.189]],["body/modules/SharedModule.html",[3,0.123,4,0.098,5,0.086,21,0.011,56,0.123,57,0.006,58,0.007,59,0.006,60,0.006,93,0.521,194,0.555,199,1.648,234,1.312,254,2.58,257,2.858,266,2.858,273,2.858,281,2.777,283,2.58,381,1.242,383,1.698,384,2.297,385,3.727,386,2.389,387,2.49,388,2.79,393,4.583,395,3.315,396,2.49,397,2.212,399,1.925,400,2.564,401,3.626,402,2.6,430,4.02,431,3.019,450,3.462,810,4.075,1207,3.426,1218,3.703,1233,4.075,1234,4.075,2767,5.894,2843,4.075,2844,4.075,2845,4.075,2846,5.894,2847,4.639,2848,4.639,2849,4.639,2850,4.639,2851,6.177,2852,4.639,2853,4.639,2854,4.639,2855,6.177,2856,4.639]],["title/components/SidebarComponent.html",[123,0.692,266,1.424]],["body/components/SidebarComponent.html",[3,0.124,4,0.1,5,0.087,7,0.376,21,0.01,56,0.124,57,0.006,58,0.007,59,0.006,60,0.006,66,1.044,73,1.505,75,0.746,78,0.654,85,0.788,93,0.286,116,2.15,119,4.058,123,1.138,124,1.531,125,2.282,126,1.722,127,1.953,128,1.775,129,1.671,133,1.864,134,3.215,135,1.488,136,2.588,137,2.588,138,2.988,139,3.246,141,2.588,143,2.588,155,3.423,169,1.537,193,1.953,194,0.563,234,1.33,235,2.353,236,2.353,237,1.368,238,2.809,239,1.775,240,1.576,241,2.639,242,1.531,243,1.775,244,1.775,245,1.531,246,1.775,247,1.576,248,1.775,249,1.531,250,1.775,251,1.531,252,1.671,253,1.775,254,1.531,255,1.192,256,1.775,257,1.576,258,2.353,259,1.671,260,1.531,261,1.775,262,1.531,263,1.775,264,1.531,265,1.775,266,2.493,267,2.353,268,1.671,269,1.531,270,1.225,271,1.531,272,1.775,273,1.576,274,2.353,275,1.671,276,1.576,277,1.294,278,1.531,279,2.342,280,1.531,281,1.531,282,1.775,283,1.531,284,1.775,285,1.531,286,1.775,287,1.622,288,1.722,289,1.775,503,3.66,622,4.604,650,3.845,1001,3.494,1472,3.845,2857,4.133,2858,6.993,2859,6.235,2860,4.705,2861,4.705,2862,6.235]],["title/components/SidebarStubComponent.html",[123,0.692,268,1.51]],["body/components/SidebarStubComponent.html",[3,0.132,4,0.106,5,0.093,21,0.01,56,0.19,57,0.006,58,0.008,59,0.006,60,0.009,78,0.675,93,0.304,116,2.241,123,1.057,124,1.631,125,2.379,126,2.64,128,1.891,129,1.78,135,1.585,138,2.997,139,3.271,194,0.6,234,1.417,235,2.452,236,2.452,237,1.457,238,2.879,239,1.891,240,1.679,241,2.721,242,1.631,243,1.891,244,1.891,245,1.631,246,1.891,247,1.679,248,1.891,249,1.631,250,1.891,251,1.631,252,1.78,253,1.891,254,1.631,255,1.27,256,1.891,257,1.679,258,2.452,259,2.308,260,1.631,261,1.891,262,1.631,263,1.891,264,1.631,265,1.891,266,1.679,267,2.452,268,2.71,269,1.631,270,1.305,271,1.631,272,1.891,273,1.679,274,2.452,275,2.308,276,1.679,277,1.379,278,1.631,279,1.679,280,1.631,281,1.631,282,1.891,283,1.631,284,1.891,285,1.631,286,1.891,287,1.728,288,1.834,289,1.891,381,1.341,467,2.809,650,4.008,1288,3.701,1294,3.701,1295,5.757,1296,3.701]],["title/interfaces/Signable.html",[0,1.169,2633,2.936]],["body/interfaces/Signable.html",[0,1.653,2,1.977,3,0.118,4,0.094,5,0.083,7,0.356,18,0.356,20,1.429,21,0.011,40,4.605,41,4.195,42,2.668,43,4.833,44,3.812,47,3.225,48,1.781,51,2.668,56,0.118,57,0.005,58,0.007,59,0.005,60,0.005,66,1.006,67,3.75,68,1.848,75,0.533,85,0.746,86,2.268,93,0.365,108,1.482,109,1.91,122,2.199,133,1.331,169,1.932,175,2.338,255,1.523,307,2.823,345,2.39,615,3.911,638,3.075,640,3.288,688,2.614,752,2.205,814,3.993,859,2.496,934,2.865,951,3.288,962,2.293,2429,3.527,2431,4.15,2501,3.075,2503,2.614,2544,2.898,2546,4.15,2548,3.075,2549,3.075,2612,4.15,2613,2.898,2614,4.698,2615,3.554,2616,3.554,2617,3.554,2618,4.797,2621,3.554,2623,3.554,2632,4.797,2633,5.252,2636,4.797,2638,4.797,2640,3.554,2641,3.288,2642,3.554,2643,3.554,2644,4.797,2645,3.554,2646,3.554,2647,3.554,2648,3.554,2649,3.554,2650,3.554,2651,3.554,2652,4.797,2653,3.554,2654,3.554,2655,3.554,2656,4.797,2657,3.554,2658,4.797,2659,3.554,2660,3.554,2661,3.554,2662,3.554,2663,3.554,2664,3.554,2665,3.554,2666,3.554,2667,3.554,2668,3.554,2669,3.554,2670,3.554,2863,4.453]],["title/interfaces/Signature.html",[0,1.169,40,2.281]],["body/interfaces/Signature.html",[0,2.042,1,3.539,2,2.072,3,0.123,4,0.099,5,0.087,6,3.038,7,0.373,8,1.131,10,3.447,11,2.616,12,2.311,13,4.284,14,3.826,15,4.284,16,3.476,17,3.194,18,0.617,19,3.329,20,1.498,21,0.011,22,1.881,24,4.284,25,4.284,26,4.284,27,4.037,28,4.037,29,2.226,30,4.284,31,3.447,32,3.826,33,2.132,34,4.284,35,4.284,36,4.284,37,3.826,38,4.284,39,3.826,40,4.146,41,4.578,42,3.43,43,4.578,44,4.16,45,2.574,46,4.037,47,2.505,48,1.061,49,3.826,50,3.038,51,2.753,52,3.038,53,4.037,54,3.826,55,3.224,56,0.123,57,0.006,58,0.007,59,0.006]],["title/interfaces/Signer.html",[0,1.169,2614,2.936]],["body/interfaces/Signer.html",[0,1.517,2,1.746,3,0.104,4,0.083,5,0.073,7,0.314,9,1.184,18,0.603,20,1.433,21,0.011,40,4.659,41,3.93,42,2.449,43,4.487,44,3.572,47,2.96,48,1.714,51,2.449,56,0.104,57,0.005,58,0.007,59,0.005,60,0.005,66,0.924,67,3.558,68,1.632,75,0.903,77,1.29,78,0.681,85,1.263,86,2.405,93,0.335,108,1.36,109,1.687,122,2.019,133,1.175,169,1.981,175,2.43,255,1.398,307,2.645,345,2.11,615,3.59,638,2.716,640,2.903,688,2.308,752,1.947,814,3.74,859,2.204,934,2.63,951,2.903,962,2.025,2429,4.547,2431,3.81,2454,3.81,2501,2.716,2503,2.308,2544,2.559,2546,3.81,2548,2.716,2549,2.716,2612,3.81,2613,2.559,2614,4.771,2615,3.139,2616,5.087,2617,5.087,2618,5.808,2619,4.845,2620,4.845,2621,3.139,2623,3.139,2632,5.087,2633,5.209,2635,3.139,2636,5.087,2638,5.087,2640,3.139,2641,2.903,2642,4.403,2643,4.403,2644,5.087,2645,3.139,2646,3.139,2647,3.139,2648,3.139,2649,3.139,2650,3.139,2651,3.139,2652,4.403,2653,3.139,2654,3.139,2655,3.139,2656,4.403,2657,3.139,2658,4.403,2659,3.139,2660,3.139,2661,3.139,2662,3.139,2663,3.139,2664,3.139,2665,3.139,2666,3.139,2667,3.139,2668,3.139,2669,3.139,2670,3.139,2864,3.932,2865,3.932,2866,3.932,2867,3.932,2868,3.932,2869,3.932]],["title/interfaces/Staff.html",[0,1.169,574,2.383]],["body/interfaces/Staff.html",[0,1.683,2,2.716,3,0.162,4,0.129,5,0.114,7,0.489,8,1.342,18,0.67,20,1.484,21,0.011,22,2.001,32,5.054,56,0.162,57,0.007,58,0.009,59,0.007,78,0.767,574,4.426,2800,7.198,2870,5.375,2871,8.195,2872,8.195]],["title/interfaces/Token.html",[0,1.169,270,1.107]],["body/interfaces/Token.html",[0,1.553,2,2.506,3,0.149,4,0.119,5,0.105,7,0.451,8,1.278,9,1.297,11,3.164,18,0.694,20,1.505,21,0.011,23,4.84,56,0.149,57,0.007,58,0.008,59,0.007,78,0.746,84,3.008,270,1.985,1104,3.801,1476,4.507,1477,5.505,1479,6.363,1481,6.363,1485,4.169,1487,6.363,1488,5.886,2873,4.959]],["title/components/TokenDetailsComponent.html",[123,0.692,269,1.383]],["body/components/TokenDetailsComponent.html",[3,0.106,4,0.085,5,0.074,7,0.32,8,1.018,9,0.651,18,0.446,21,0.011,56,0.106,57,0.005,58,0.007,59,0.005,60,0.005,66,0.935,73,1.202,75,0.77,77,0.709,78,0.71,84,2.107,85,0.67,93,0.444,116,1.925,123,1.046,124,1.302,125,2.044,126,1.464,127,1.66,128,1.51,129,1.421,133,1.669,134,2.957,135,1.265,136,2.317,137,2.317,138,2.951,139,3.199,141,2.317,143,2.317,155,3.2,169,1.377,193,1.66,194,0.479,198,1.981,199,1.421,202,1.766,221,2.604,230,2.765,234,1.131,235,2.107,236,2.107,237,1.163,238,2.627,239,1.51,240,1.34,241,2.427,242,1.302,243,1.51,244,1.51,245,1.302,246,1.51,247,1.34,248,1.51,249,1.302,250,1.51,251,1.302,252,1.421,253,1.51,254,1.302,255,1.014,256,1.51,257,1.34,258,2.107,259,1.421,260,1.302,261,1.51,262,1.302,263,1.51,264,1.302,265,1.51,266,1.34,267,2.107,268,1.421,269,2.265,270,2.224,271,1.302,272,1.51,273,1.34,274,2.107,275,1.421,276,1.34,277,1.1,278,1.302,279,1.34,280,1.302,281,1.302,282,1.51,283,1.302,284,1.51,285,1.302,286,1.51,287,1.379,288,1.464,289,1.51,341,2.242,342,1.981,379,3.634,466,3.129,482,4.904,538,3.193,575,5.14,1104,2.662,1472,3.444,1474,4.123,1477,3.856,1485,4.123,1488,4.123,1921,4.457,2390,4.457,2874,6.114,2875,5.14,2876,3.193,2877,5.649,2878,4.904,2879,4,2880,6.96,2881,5.375,2882,5.583,2883,4,2884,4,2885,4,2886,4,2887,6.114,2888,4.904,2889,5.583,2890,5.583,2891,5.583,2892,5.583,2893,5.583,2894,5.583,2895,5.583,2896,4.904,2897,5.583,2898,5.583]],["title/pipes/TokenRatioPipe.html",[2211,2.622,2846,2.936]],["body/pipes/TokenRatioPipe.html",[3,0.166,4,0.133,5,0.117,9,1.025,18,0.503,21,0.01,33,1.596,56,0.166,57,0.008,58,0.009,59,0.008,60,0.008,66,1.055,75,0.754,77,1.117,78,0.701,85,1.055,93,0.382,108,1.553,133,1.883,135,1.992,194,0.754,379,4.876,1469,4.651,2211,3.885,2768,5.028,2771,5.533,2773,7.023,2775,6.58,2846,5.174,2899,6.58,2900,5.533,2901,7.491,2902,6.299,2903,6.299,2904,6.299,2905,6.299]],["title/classes/TokenRegistry.html",[60,0.005,2906,2.936]],["body/classes/TokenRegistry.html",[3,0.127,4,0.102,5,0.089,7,0.384,8,1.152,9,1.149,18,0.64,20,1.451,21,0.011,22,1.79,45,1.993,48,1.606,54,4.357,56,0.127,57,0.006,58,0.008,59,0.006,60,0.006,62,1.87,64,6.85,65,7.276,66,1.058,67,4.315,68,3.478,73,1.034,74,5.552,75,0.977,77,1.252,78,0.661,79,3.834,85,1.183,86,3.021,93,0.384,94,2.061,95,2.473,96,4.63,97,3.317,98,1.812,99,3.834,101,2.057,102,3.547,103,5.552,104,4.219,105,4.219,106,5.552,107,4.219,108,1.742,109,3.031,1165,5.552,2906,4.365,2907,6.612,2908,3.834,2909,6.32,2910,7.506,2911,6.32,2912,4.803,2913,4.803,2914,6.32,2915,4.803,2916,4.219,2917,6.32,2918,4.803,2919,4.803,2920,4.803,2921,4.219,2922,4.803,2923,4.803,2924,4.803,2925,4.803,2926,4.803]],["title/injectables/TokenService.html",[796,1.344,2881,2.936]],["body/injectables/TokenService.html",[3,0.124,4,0.099,5,0.087,7,0.375,8,1.134,9,1.136,18,0.635,20,1.359,21,0.011,22,1.188,33,1.188,48,1.414,56,0.124,57,0.006,58,0.007,59,0.006,60,0.006,66,1.042,68,3.42,73,1.339,75,0.971,77,1.238,78,0.653,84,2.348,85,1.169,86,2.92,93,0.493,94,2.012,95,2.415,101,2.272,108,1.722,109,3.19,112,5.465,176,1.483,194,0.561,202,1.967,473,3.457,494,2.236,590,2.415,696,2.415,796,1.967,797,2.517,812,2.517,828,3.463,829,5.873,885,2.517,993,5.282,1023,2.517,1025,3.744,1077,3.744,1104,2.236,2354,6.532,2356,5.465,2724,4.822,2732,5.573,2741,3.744,2742,3.744,2881,4.297,2906,5.493,2927,4.12,2928,6.982,2929,6.222,2930,6.222,2931,6.222,2932,4.69,2933,6.222,2934,4.69,2935,4.69,2936,7.738,2937,4.69,2938,4.69,2939,4.12,2940,4.69,2941,4.12,2942,4.69,2943,4.69,2944,4.69,2945,4.69,2946,4.69,2947,4.69,2948,4.69,2949,4.69,2950,4.69,2951,4.69,2952,4.69,2953,4.69,2954,4.69]],["title/classes/TokenServiceStub.html",[60,0.005,2955,3.393]],["body/classes/TokenServiceStub.html",[3,0.168,4,0.134,5,0.118,7,0.507,9,1.033,18,0.507,20,1.344,21,0.011,56,0.168,57,0.008,58,0.009,59,0.008,60,0.008,62,2.473,66,1.261,75,0.76,77,1.126,78,0.705,85,1.064,108,1.567,467,3.561,938,4.419,1104,3.59,1458,4.691,1474,4.691,2955,6.01,2956,6.613,2957,7.529,2958,7.529,2959,6.353]],["title/components/TokensComponent.html",[123,0.692,271,1.383]],["body/components/TokensComponent.html",[3,0.092,4,0.074,5,0.065,7,0.278,8,0.922,9,0.969,18,0.597,20,0.997,21,0.011,33,1.281,56,0.157,57,0.004,58,0.006,59,0.004,60,0.004,66,0.846,68,3.005,73,1.088,75,0.949,77,1.055,78,0.742,84,2.466,85,1.094,86,2.466,93,0.474,98,2.466,101,1.132,109,2.554,116,1.743,123,0.969,124,1.132,125,1.85,126,1.273,127,1.444,128,1.313,129,1.236,133,1.511,134,2.738,135,1.1,136,2.098,137,2.098,138,2.916,139,3.155,140,3.118,141,2.098,143,2.098,155,3.005,166,4.01,169,1.611,176,1.1,193,1.444,194,0.416,197,1.723,198,1.723,199,1.236,202,1.883,230,2.503,234,0.984,235,1.908,236,1.908,237,1.011,238,2.466,239,1.313,240,1.165,241,2.247,242,1.132,243,1.313,244,1.313,245,1.132,246,1.313,247,1.165,248,1.313,249,1.132,250,1.313,251,1.132,252,1.236,253,1.313,254,1.132,255,0.882,256,1.313,257,1.165,258,1.908,259,1.236,260,1.132,261,1.313,262,1.132,263,1.313,264,1.132,265,1.313,266,1.165,267,1.908,268,1.236,269,1.132,270,1.55,271,2.126,272,1.313,273,1.165,274,1.908,275,1.236,276,1.165,277,0.957,278,1.132,279,1.165,280,1.132,281,1.132,282,1.313,283,1.132,284,1.313,285,1.132,286,1.313,287,1.2,288,1.273,289,1.313,295,4.112,299,4.112,300,4.112,301,3.491,302,4.513,307,3.101,309,3.491,320,4.112,330,4.112,331,3.29,332,3.491,334,4.112,335,3.491,336,2.403,337,1.792,338,1.867,339,1.867,340,2.146,355,2.569,357,2.569,358,2.403,359,2.569,360,2.403,362,2.569,363,2.403,373,3.491,379,3.29,538,2.777,1104,3.116,1472,4.889,1477,4.513,2390,4.035,2881,5.001,2887,4.44,2888,4.44,2896,4.44,2906,2.403,2960,3.056,2961,5.954,2962,5.055,2963,5.954,2964,5.055,2965,3.479,2966,5.055,2967,3.479,2968,3.479,2969,3.479,2970,5.055,2971,3.479,2972,3.479,2973,3.479,2974,3.479,2975,3.479,2976,3.479,2977,3.479,2978,5.055,2979,5.055,2980,3.479,2981,3.479,2982,3.479,2983,3.479]],["title/modules/TokensModule.html",[381,1.138,2984,3.139]],["body/modules/TokensModule.html",[3,0.137,4,0.11,5,0.096,21,0.011,56,0.137,57,0.006,58,0.008,59,0.006,60,0.006,93,0.537,194,0.621,234,1.466,269,2.66,271,2.66,337,2.671,338,2.783,339,2.783,381,1.388,383,1.898,384,2.568,385,3.933,386,2.671,387,2.783,388,2.084,393,4.21,395,3.565,396,2.783,397,2.473,399,2.757,400,2.757,401,3.899,402,2.907,404,3.044,406,3.198,409,3.581,416,4.324,417,4.588,418,4.905,419,3.829,420,4.588,421,4.097,422,3.198,423,4.324,424,3.375,425,3.375,426,4.097,427,3.198,428,4.097,429,3.198,430,4.324,431,3.375,437,4.588,438,3.375,2875,3.829,2984,6.405,2985,4.555,2986,4.555,2987,4.555,2988,5.645,2989,5.186,2990,5.186,2991,4.555,2992,4.555,2993,6.643,2994,6.643,2995,5.186,2996,6.643,2997,5.186]],["title/modules/TokensRoutingModule.html",[381,1.138,2988,2.936]],["body/modules/TokensRoutingModule.html",[3,0.163,4,0.131,5,0.115,21,0.011,45,2.566,48,1.405,56,0.163,57,0.007,58,0.009,59,0.007,60,0.007,93,0.499,123,1.205,194,0.74,199,2.196,269,2.41,271,2.41,383,2.263,388,2.484,399,2.566,400,3.074,409,4.27,448,3.629,449,4.085,450,4.152,451,4.348,455,3.813,2875,4.565,2988,5.116,2991,5.43,2992,5.43,2998,6.182]],["title/components/TopbarComponent.html",[123,0.692,273,1.424]],["body/components/TopbarComponent.html",[3,0.127,4,0.102,5,0.089,7,0.384,21,0.01,56,0.127,57,0.006,58,0.008,59,0.006,60,0.006,66,1.059,73,1.522,75,0.757,78,0.662,85,0.805,93,0.292,116,2.182,123,1.15,124,1.565,125,2.316,126,1.761,127,1.997,128,1.815,129,1.709,133,1.891,134,3.251,135,1.521,136,2.626,137,2.626,138,2.992,139,3.252,141,2.626,143,2.626,155,3.453,169,1.56,193,1.997,194,0.576,234,1.36,235,2.387,236,2.387,237,1.398,238,2.834,239,1.815,240,1.611,241,2.668,242,1.565,243,1.815,244,1.815,245,1.565,246,1.815,247,1.611,248,1.815,249,1.565,250,1.815,251,1.565,252,1.709,253,1.815,254,1.565,255,1.219,256,1.815,257,1.611,258,2.387,259,1.709,260,1.565,261,1.815,262,1.565,263,1.815,264,1.565,265,1.815,266,1.611,267,2.387,268,1.709,269,1.565,270,1.253,271,1.565,272,1.815,273,2.515,274,2.387,275,1.709,276,1.611,277,1.323,278,1.565,279,1.611,280,1.565,281,1.565,282,1.815,283,1.565,284,1.815,285,1.565,286,1.815,287,1.659,288,1.761,289,1.815,1296,4.672,2999,4.226,3000,7.07,3001,6.327,3002,4.811,3003,4.811]],["title/components/TopbarStubComponent.html",[123,0.692,275,1.51]],["body/components/TopbarStubComponent.html",[3,0.132,4,0.106,5,0.093,21,0.01,56,0.19,57,0.006,58,0.008,59,0.006,60,0.009,78,0.675,93,0.304,116,2.241,123,1.057,124,1.631,125,2.379,126,2.64,128,1.891,129,1.78,135,1.585,138,2.997,139,3.271,194,0.6,234,1.417,235,2.452,236,2.452,237,1.457,238,2.879,239,1.891,240,1.679,241,2.721,242,1.631,243,1.891,244,1.891,245,1.631,246,1.891,247,1.679,248,1.891,249,1.631,250,1.891,251,1.631,252,1.78,253,1.891,254,1.631,255,1.27,256,1.891,257,1.679,258,2.452,259,2.308,260,1.631,261,1.891,262,1.631,263,1.891,264,1.631,265,1.891,266,1.679,267,2.452,268,2.308,269,1.631,270,1.305,271,1.631,272,1.891,273,1.679,274,2.452,275,2.71,276,1.679,277,1.379,278,1.631,279,1.679,280,1.631,281,1.631,282,1.891,283,1.631,284,1.891,285,1.631,286,1.891,287,1.728,288,1.834,289,1.891,381,1.341,467,2.809,650,3.091,1288,3.701,1294,3.701,1295,5.757,1296,4.799]],["title/classes/Transaction.html",[60,0.005,277,1.169]],["body/classes/Transaction.html",[1,3.901,3,0.137,4,0.11,5,0.097,7,0.416,8,1.214,9,1.083,18,0.689,20,1.466,21,0.011,22,2.156,33,1.86,56,0.137,57,0.006,58,0.008,59,0.006,60,0.01,62,2.026,75,1.008,78,0.487,84,1.964,93,0.316,175,1.6,270,1.912,277,2.019,460,2.026,672,3.429,781,2.917,1006,4.565,1090,4.106,1091,3.387,1092,3.594,1093,3.594,1094,3.594,1095,3.594,1096,3.594,1102,3.594,1103,5.046,1104,2.481,1105,3.387,1106,3.387,1107,3.594,1108,3.594,1109,4.528,1110,4.309,1111,3.594,1112,3.594,1113,3.594,1114,3.387,1115,3.387,3004,5.204,3005,5.204,3006,5.204,3007,5.204,3008,5.204,3009,5.204,3010,5.204,3011,5.204]],["title/components/TransactionDetailsComponent.html",[123,0.692,276,1.424]],["body/components/TransactionDetailsComponent.html",[3,0.075,4,0.112,5,0.053,7,0.423,8,0.795,9,0.71,18,0.51,20,1.239,21,0.011,53,2.839,56,0.075,57,0.003,58,0.005,59,0.003,60,0.003,66,0.73,68,3.232,73,0.939,75,0.919,77,0.773,78,0.719,84,2.975,85,1.127,86,2.725,93,0.409,109,2.543,116,1.504,123,0.861,124,0.929,125,1.597,126,1.045,127,1.185,128,1.077,129,1.014,133,1.304,134,2.434,135,0.903,136,1.81,137,1.81,138,2.858,139,3.082,141,1.81,143,1.81,155,2.725,166,3.612,169,1.461,193,1.185,194,0.342,197,1.414,198,1.414,199,1.014,200,2.108,201,2.108,202,1.674,234,0.807,235,1.646,236,1.646,237,0.83,238,2.236,239,1.077,240,0.956,241,1.998,242,0.929,243,1.077,244,1.077,245,0.929,246,1.077,247,0.956,248,1.077,249,0.929,250,1.077,251,0.929,252,1.014,253,1.077,254,0.929,255,0.724,256,1.077,257,0.956,258,1.646,259,1.014,260,0.929,261,1.077,262,0.929,263,1.077,264,0.929,265,1.077,266,0.956,267,1.646,268,1.014,269,0.929,270,1.927,271,0.929,272,1.077,273,0.956,274,1.646,275,1.014,276,1.985,277,2.274,278,0.929,279,1.985,280,0.929,281,0.929,282,1.077,283,0.929,284,1.077,285,0.929,286,1.077,287,0.985,288,1.045,289,1.077,377,3.013,379,2.839,445,2.279,446,1.972,575,4.376,603,4.319,672,1.47,781,2.445,789,2.279,1104,3.209,1105,2.839,1106,2.839,1109,4.152,1110,3.951,1115,4.381,2385,2.508,2705,3.482,2710,3.221,2876,2.279,2877,4.65,2878,3.832,3012,6.841,3013,6.217,3014,5.294,3015,5.294,3016,5.294,3017,4.362,3018,5.927,3019,5.927,3020,5.927,3021,5.927,3022,5.294,3023,5.927,3024,4.362,3025,2.855,3026,4.362,3027,2.855,3028,2.855,3029,2.855,3030,2.855,3031,2.855,3032,2.855,3033,2.855,3034,2.855,3035,2.279,3036,2.855,3037,2.855,3038,5.294,3039,2.855,3040,2.855,3041,2.855,3042,2.855,3043,2.855,3044,2.855,3045,2.855,3046,2.855,3047,2.855,3048,2.855,3049,2.855,3050,2.855,3051,2.855,3052,2.855,3053,2.855,3054,2.855,3055,5.294,3056,2.855,3057,2.855,3058,5.927,3059,5.927,3060,4.362,3061,5.912,3062,4.362,3063,4.362,3064,6.731,3065,5.927,3066,3.832,3067,4.362,3068,4.362,3069,4.362,3070,3.832,3071,3.832,3072,4.362,3073,4.362,3074,5.927,3075,5.927,3076,5.927,3077,4.362,3078,4.362,3079,4.362,3080,5.927,3081,4.362,3082,4.362,3083,4.362,3084,4.362,3085,5.927,3086,4.362]],["title/injectables/TransactionService.html",[603,2.622,796,1.344]],["body/injectables/TransactionService.html",[3,0.072,4,0.058,5,0.051,7,0.218,8,0.768,9,1.158,18,0.607,19,1.465,20,1.335,21,0.011,22,2.103,33,1.746,37,1.352,42,1.871,48,1.866,49,3.57,56,0.072,57,0.006,58,0.005,59,0.003,60,0.003,66,0.706,68,3.031,73,0.907,75,0.954,77,1.262,78,0.666,84,1.943,85,1.192,86,2.495,93,0.498,94,1.171,95,1.406,96,4.251,97,1.886,101,2.036,108,1.543,109,2.837,116,0.941,165,4.251,169,1.428,176,1.628,194,0.327,200,2.016,201,2.016,202,2.251,255,1.305,277,1.721,279,1.724,307,2.86,341,1.53,342,1.352,343,1.777,344,3.112,460,1.063,473,3.098,494,1.302,590,1.406,602,4.251,603,2.6,672,2.171,696,1.406,762,2.016,796,1.333,797,1.465,812,1.465,828,2.016,829,4.882,851,3.702,859,1.53,885,2.262,925,2.398,962,1.406,993,4.486,996,4.621,997,4.882,1006,2.262,1023,2.262,1025,2.179,1033,2.398,1077,3.365,1114,1.777,2543,2.179,2544,1.777,2545,2.179,2550,2.179,2724,3.555,2732,4.109,2741,2.179,2742,2.179,2743,2.398,2939,2.398,2941,2.398,3066,2.398,3070,2.398,3071,2.398,3087,2.179,3088,5.148,3089,5.148,3090,5.148,3091,4.215,3092,4.215,3093,4.215,3094,3.702,3095,5.789,3096,3.702,3097,3.702,3098,4.215,3099,4.215,3100,4.215,3101,6.858,3102,2.73,3103,4.215,3104,2.73,3105,4.215,3106,2.73,3107,3.702,3108,2.73,3109,2.73,3110,3.702,3111,2.73,3112,3.702,3113,2.73,3114,4.215,3115,5.789,3116,5.789,3117,2.73,3118,4.215,3119,4.215,3120,2.73,3121,2.73,3122,4.215,3123,2.73,3124,2.73,3125,2.73,3126,2.73,3127,2.73,3128,2.73,3129,2.398,3130,2.73,3131,2.398,3132,2.73,3133,2.73,3134,2.73,3135,2.73,3136,2.73,3137,4.215,3138,2.73,3139,2.398,3140,2.179,3141,2.73,3142,2.73,3143,4.215,3144,4.215,3145,2.73,3146,2.398,3147,5.148,3148,2.73,3149,4.215,3150,5.148,3151,2.73,3152,4.215,3153,3.702,3154,2.73,3155,2.73,3156,2.73,3157,2.73,3158,2.73,3159,2.73,3160,2.73,3161,2.73,3162,4.215,3163,4.215,3164,2.73,3165,2.73,3166,4.215,3167,4.215,3168,2.398,3169,4.215,3170,2.73,3171,2.73,3172,2.73,3173,2.73,3174,2.73,3175,2.73,3176,2.73,3177,2.73,3178,2.73,3179,2.73,3180,2.73,3181,2.73,3182,2.73,3183,2.73,3184,2.73,3185,2.73,3186,2.73,3187,2.73,3188,2.73,3189,2.73,3190,2.73,3191,2.73,3192,2.73,3193,2.73,3194,2.73,3195,2.73,3196,2.73,3197,2.73,3198,2.73,3199,2.73,3200,2.73,3201,2.73,3202,2.73,3203,2.73,3204,2.73,3205,2.73,3206,2.73,3207,2.73,3208,2.73,3209,2.73,3210,2.73,3211,2.73,3212,2.73,3213,2.73,3214,2.73,3215,2.73,3216,2.73]],["title/classes/TransactionServiceStub.html",[60,0.005,3217,3.393]],["body/classes/TransactionServiceStub.html",[3,0.151,4,0.121,5,0.106,7,0.458,9,1.248,18,0.613,21,0.011,22,2.192,56,0.151,57,0.007,58,0.008,59,0.007,60,0.007,62,2.231,66,1.185,75,0.918,77,1.36,78,0.718,85,1.285,93,0.348,108,1.414,169,1.976,277,1.577,467,3.213,473,3.8,494,2.733,672,2.952,938,4.704,996,4.576,997,5.667,2760,5.035,3094,6.214,3096,6.214,3097,6.214,3101,6.741,3107,6.214,3110,6.214,3112,6.214,3217,5.648,3218,7.039,3219,5.732,3220,5.035,3221,5.732,3222,5.732]],["title/components/TransactionsComponent.html",[123,0.692,278,1.383]],["body/components/TransactionsComponent.html",[3,0.079,4,0.063,5,0.055,7,0.238,8,0.821,9,0.883,18,0.661,20,1.089,21,0.011,22,1.14,33,1.897,56,0.143,57,0.004,58,0.005,59,0.004,60,0.004,66,0.754,73,0.969,75,0.984,77,0.962,78,0.64,85,1.145,93,0.444,98,2.76,101,0.968,116,1.552,123,0.883,124,0.968,125,1.647,126,1.089,127,1.234,128,1.122,129,1.056,133,1.345,134,2.496,135,0.941,136,1.868,137,1.868,138,2.87,139,3.098,140,2.776,141,1.868,143,1.868,155,2.783,165,4.381,169,1.938,176,1.914,193,1.234,194,0.356,197,1.473,198,1.473,202,1.717,221,1.936,230,2.228,234,0.841,235,1.698,236,1.698,237,0.865,238,2.284,239,1.122,240,0.996,241,2.048,242,0.968,243,1.122,244,1.122,245,0.968,246,1.122,247,0.996,248,1.122,249,0.968,250,1.122,251,0.968,252,1.056,253,1.122,254,0.968,255,0.754,256,1.122,257,0.996,258,1.698,259,1.056,260,0.968,261,1.122,262,0.968,263,1.122,264,0.968,265,1.122,266,0.996,267,1.698,268,1.056,269,0.968,270,0.775,271,0.968,272,1.122,273,0.996,274,1.698,275,1.056,276,0.996,277,2.059,278,1.969,279,2.632,280,0.968,281,0.968,282,1.122,283,0.968,284,1.122,285,0.968,286,1.122,287,1.026,288,1.089,289,1.122,295,3.749,296,4.768,298,4.768,299,3.749,300,3.749,301,3.108,302,4.18,309,3.108,320,3.749,322,4.18,324,4.831,326,3.592,327,3.953,328,2.776,330,3.749,331,2.929,332,3.108,334,3.749,335,3.108,336,2.054,337,1.532,338,1.596,339,1.596,340,1.835,341,1.667,342,1.473,343,1.936,358,3.108,360,3.108,363,2.054,372,3.592,373,3.108,377,3.108,379,3.939,603,4.381,983,5.05,1109,3.733,1110,3.553,2593,3.592,3146,2.613,3168,3.953,3223,2.613,3224,5.428,3225,5.428,3226,4.5,3227,5.428,3228,5.428,3229,5.428,3230,5.428,3231,6.052,3232,6.052,3233,4.5,3234,2.974,3235,4.5,3236,2.974,3237,2.974,3238,2.974,3239,2.974,3240,2.974,3241,4.5,3242,2.974,3243,2.974,3244,2.974,3245,2.974,3246,2.974,3247,2.974,3248,2.974,3249,2.974,3250,2.974,3251,2.974,3252,2.974,3253,4.5,3254,2.974,3255,2.974,3256,4.5,3257,4.5,3258,2.974,3259,2.974,3260,2.974,3261,2.974,3262,4.5,3263,4.5,3264,2.974,3265,2.974,3266,6.052,3267,4.5,3268,4.5,3269,4.5,3270,4.5,3271,4.5,3272,4.5,3273,4.5]],["title/modules/TransactionsModule.html",[381,1.138,394,2.936]],["body/modules/TransactionsModule.html",[3,0.133,4,0.107,5,0.094,21,0.011,56,0.133,57,0.006,58,0.008,59,0.006,60,0.006,93,0.537,194,0.603,234,1.424,276,2.893,278,2.639,337,2.594,338,2.703,339,2.703,381,1.348,383,1.844,384,2.494,385,3.88,386,2.594,387,2.703,388,2.905,393,4.177,394,5.996,395,3.499,396,2.703,397,2.402,399,2.706,400,2.706,401,3.827,402,2.823,404,2.957,406,3.107,409,3.479,410,5.205,411,2.957,412,3.72,416,4.244,417,4.503,418,4.814,419,3.72,420,4.503,421,4.021,422,3.107,423,4.244,424,3.279,425,3.279,426,4.021,427,3.107,428,4.021,429,3.107,430,4.244,431,3.279,432,4.503,433,3.479,437,4.503,438,3.279,444,5.727,445,4.021,446,3.479,3013,4.021,3274,4.425,3275,4.425,3276,4.425,3277,4.425,3278,5.602,3279,5.037,3280,5.037,3281,4.425,3282,5.037]],["title/modules/TransactionsRoutingModule.html",[381,1.138,3278,2.936]],["body/modules/TransactionsRoutingModule.html",[3,0.168,4,0.134,5,0.118,21,0.011,48,1.444,56,0.168,57,0.008,58,0.009,59,0.008,60,0.008,93,0.487,123,1.033,194,0.76,199,2.256,278,2.45,383,2.325,388,2.552,399,2.637,400,3.125,448,3.729,449,4.132,450,4.22,451,3.729,455,3.918,3278,5.2,3281,5.58,3283,6.353]],["title/classes/Tx.html",[60,0.005,1006,2.281]],["body/classes/Tx.html",[1,3.736,3,0.142,4,0.114,5,0.1,7,0.43,8,1.24,18,0.659,20,1.46,21,0.011,22,2.198,33,1.364,56,0.142,57,0.006,58,0.008,59,0.006,60,0.01,62,2.095,75,0.967,78,0.504,84,2.031,93,0.327,175,2.091,270,1.401,277,1.871,460,2.095,672,3.503,781,4.18,1006,4.498,1090,4.195,1091,3.503,1092,3.717,1093,3.717,1094,3.717,1095,3.717,1096,3.717,1102,3.717,1103,4.984,1104,2.566,1105,4.854,1106,4.854,1107,5.15,1108,5.15,1109,3.319,1110,3.159,1111,3.717,1112,3.717,1113,3.717,1114,3.503,1115,3.503,3284,5.382,3285,5.382,3286,5.382,3287,5.382,3288,5.382]],["title/classes/TxToken.html",[60,0.005,1103,2.622]],["body/classes/TxToken.html",[1,3.771,3,0.146,4,0.117,5,0.102,7,0.441,8,1.26,18,0.632,20,1.476,21,0.011,22,2.159,33,1.399,56,0.146,57,0.007,58,0.008,59,0.007,60,0.01,62,2.149,75,0.903,78,0.706,84,2.847,93,0.335,175,1.697,270,1.438,277,1.901,460,2.149,672,3.559,781,3.094,1006,4.458,1090,4.263,1091,3.593,1092,3.813,1093,3.813,1094,3.813,1095,3.813,1096,3.813,1102,3.813,1103,5.123,1104,3.598,1105,3.593,1106,3.593,1107,3.813,1108,3.813,1109,3.405,1110,3.24,1111,3.813,1112,3.813,1113,3.813,1114,3.593,1115,3.593,3289,5.521,3290,5.521,3291,5.521]],["title/classes/UserServiceStub.html",[60,0.005,3292,3.393]],["body/classes/UserServiceStub.html",[3,0.075,4,0.06,5,0.053,7,0.226,8,0.791,9,0.96,11,4.296,14,4.727,16,1.588,18,0.651,19,1.521,20,1.236,21,0.011,22,1.612,27,1.844,28,1.844,33,1.099,45,3.548,51,2.621,56,0.075,57,0.003,58,0.005,59,0.003,60,0.003,62,1.103,66,0.726,75,0.803,77,1.046,78,0.751,84,2.892,85,0.988,93,0.172,94,1.216,108,1.456,115,4.648,122,2.556,176,1.371,177,2.996,231,5.123,270,1.129,324,6.118,328,3.641,456,4.269,458,4.669,459,4.669,460,3.298,467,1.588,473,2.609,490,2.489,494,1.351,503,2.546,506,3.429,508,3.462,514,4.499,560,6.134,561,5.185,620,4.635,752,1.403,769,2.995,784,3.641,938,4.099,1020,4.368,1455,4.712,1456,6.015,1457,4.712,1458,5.319,1459,3.462,1460,3.462,1461,4.712,1462,3.462,1463,4.077,1464,3.462,1465,3.462,1466,3.462,1467,4.359,1468,3.462,1469,3.203,1470,3.462,1471,2.995,1620,3.462,1715,3.462,1735,3.462,1746,3.462,1904,2.262,1936,3.462,1942,3.462,2010,2.262,2018,4.206,2328,5.575,2329,4.712,2351,3.81,2812,3.891,3220,2.489,3292,3.462,3293,6.134,3294,4.337,3295,4.337,3296,2.834,3297,5.269,3298,5.269,3299,5.269,3300,7.664,3301,5.269,3302,5.269,3303,7.664,3304,7.664,3305,4.337,3306,4.337,3307,4.337,3308,4.337,3309,4.337,3310,4.337,3311,4.337,3312,4.337,3313,4.337,3314,4.337,3315,4.337,3316,4.337,3317,4.337,3318,4.337,3319,4.337,3320,4.337,3321,4.337,3322,4.337,3323,4.337,3324,4.337,3325,4.337,3326,4.337,3327,2.834,3328,4.337,3329,2.834,3330,4.337,3331,2.834,3332,2.834,3333,4.337,3334,2.834,3335,2.834,3336,2.834,3337,2.834,3338,2.834,3339,2.834,3340,2.834,3341,2.834,3342,2.834,3343,2.489,3344,2.834]],["title/classes/W3.html",[60,0.005,2782,3.139]],["body/classes/W3.html",[3,0.164,4,0.132,5,0.115,7,0.497,8,1.356,18,0.594,21,0.011,44,4.618,56,0.164,57,0.007,58,0.009,59,0.007,60,0.009,62,2.421,75,0.89,222,5.135,1001,4.167,2724,4.296,2779,4.966,2780,6.531,2781,5.464,2782,6.219,2783,5.464,2787,7.238,2789,5.464,3345,6.221,3346,6.221]],["title/coverage.html",[3347,4.648]],["body/coverage.html",[0,2.128,1,1.249,5,0.049,6,3.995,12,1.297,18,0.209,19,2.191,21,0.011,37,1.297,40,1.406,46,1.705,49,1.616,51,4.004,57,0.003,58,0.005,59,0.003,60,0.01,61,2.092,63,4.004,94,2.152,96,2.518,97,2.82,101,0.853,123,1.342,124,0.853,130,3.586,131,1.935,132,2.302,165,1.616,180,1.616,237,1.784,240,0.878,242,0.853,245,0.853,247,0.878,249,0.853,251,0.853,254,0.853,255,1.271,257,0.878,259,0.931,260,0.853,262,0.853,264,0.853,266,0.878,268,0.931,269,0.853,270,0.682,271,0.853,273,0.878,275,0.931,276,0.878,277,0.721,278,0.853,281,0.853,283,0.853,285,0.853,287,0.904,290,2.302,294,1.81,307,1.087,340,1.616,381,1.342,408,2.092,414,1.935,456,1.406,457,3.911,461,1.538,463,1.616,464,2.092,465,2.302,466,1.469,467,3.936,502,2.302,506,1.705,533,1.705,574,1.469,589,2.302,602,1.616,603,1.616,604,1.705,672,1.349,681,1.81,682,1.705,683,1.81,684,1.81,697,1.935,698,1.81,704,1.705,728,2.302,752,2.484,766,3.686,786,2.82,788,2.302,796,2.332,813,2.302,814,1.538,862,1.81,938,2.944,983,1.935,984,2.302,985,2.302,993,1.705,1001,1.469,1006,1.406,1090,1.616,1091,3.995,1103,1.616,1123,2.302,1124,2.302,1127,1.935,1128,1.935,1130,1.935,1132,1.935,1169,2.302,1170,2.302,1185,2.092,1186,2.302,1206,2.302,1207,1.935,1208,2.302,1222,2.302,1223,2.302,1241,2.302,1287,2.302,1294,3.704,1297,3.259,1298,3.259,1344,2.302,1345,2.302,1352,2.302,1368,2.302,1383,2.302,1423,3.259,1424,2.302,1437,3.259,1447,1.935,1448,5.888,1449,5.888,1472,1.616,2004,2.092,2211,2.518,2318,2.092,2323,2.092,2346,5.759,2429,3.985,2430,3.704,2503,1.538,2504,1.935,2578,2.302,2612,1.81,2613,3.686,2614,1.81,2633,1.81,2671,2.302,2702,2.302,2722,2.302,2730,2.092,2744,2.092,2745,2.302,2756,2.302,2757,2.092,2767,1.81,2769,2.302,2779,3.259,2782,1.935,2790,2.302,2846,1.81,2857,2.302,2870,2.302,2873,2.302,2874,2.302,2875,1.935,2876,4.004,2881,1.81,2899,2.302,2900,2.302,2906,1.81,2907,4.004,2908,4.004,2916,2.302,2927,2.302,2955,2.092,2956,2.302,2960,2.302,2999,2.302,3012,2.302,3013,2.092,3035,2.092,3087,3.259,3217,2.092,3218,2.302,3223,2.302,3292,2.092,3293,2.302,3347,2.092,3348,2.62,3349,2.62,3350,5.663,3351,8.288,3352,8.634,3353,5.016,3354,8.155,3355,2.302,3356,2.302,3357,2.302,3358,2.302,3359,2.302,3360,5.663,3361,3.586,3362,4.9,3363,2.302,3364,6.789,3365,2.302,3366,2.302,3367,4.004,3368,2.302,3369,2.302,3370,2.302,3371,3.586,3372,3.586,3373,2.302,3374,2.302,3375,6.138,3376,6.138,3377,5.016,3378,4.083,3379,2.62,3380,5.663,3381,4.083,3382,2.62,3383,4.083,3384,3.586,3385,2.62,3386,2.62,3387,2.62,3388,2.62,3389,4.083,3390,2.302,3391,2.302,3392,2.302,3393,2.302,3394,2.62,3395,2.62]],["title/dependencies.html",[384,2.534,3396,3.54]],["body/dependencies.html",[19,2.914,21,0.011,37,2.689,42,2.411,57,0.006,58,0.008,59,0.006,96,3.349,194,0.65,196,2.914,199,1.929,384,2.689,386,2.797,402,3.044,411,3.188,412,4.01,494,2.589,537,4.77,687,5.46,688,4.015,701,4.335,702,4.335,781,3.044,885,4.019,1023,3.671,2503,3.188,2688,4.77,2689,4.77,3129,4.77,3131,4.77,3140,4.335,3397,7.461,3398,5.431,3399,6.84,3400,5.431,3401,5.431,3402,5.431,3403,5.431,3404,5.431,3405,5.431,3406,5.431,3407,5.431,3408,5.431,3409,5.431,3410,5.431,3411,5.431,3412,5.431,3413,5.431,3414,5.431,3415,5.431,3416,6.84,3417,5.431,3418,6.84,3419,6.84,3420,5.431,3421,5.431,3422,5.431,3423,5.431,3424,5.431,3425,5.431,3426,5.431,3427,5.431,3428,5.431,3429,5.431,3430,5.431,3431,5.431,3432,5.431,3433,5.431,3434,5.431,3435,5.431,3436,5.431,3437,5.431,3438,5.431,3439,5.431,3440,5.431,3441,5.431,3442,5.431]],["title/miscellaneous/functions.html",[2376,4.086,3443,2.304]],["body/miscellaneous/functions.html",[7,0.423,9,1.375,18,0.642,19,2.842,20,0.887,21,0.011,22,1.342,42,2.351,57,0.006,58,0.008,59,0.006,77,1.498,78,0.791,85,1.429,86,2.541,98,2.541,169,1.825,175,1.628,340,4.153,876,4.227,2376,4.227,2710,3.911,2730,5.909,3035,5.374,3355,4.652,3356,5.914,3357,5.914,3358,4.652,3359,5.914,3361,4.652,3362,6.561,3363,5.914,3365,4.652,3366,5.914,3367,4.227,3368,5.914,3369,5.914,3371,4.652,3372,6.502,3373,5.914,3374,5.914,3443,3.447,3444,5.296,3445,5.296,3446,6.733,3447,5.296,3448,5.914,3449,6.733,3450,5.296,3451,5.296,3452,5.296,3453,5.296,3454,6.733,3455,6.733,3456,5.296,3457,5.296,3458,5.296,3459,5.296,3460,5.296,3461,5.296,3462,5.296,3463,5.296]],["title/index.html",[7,0.283,3464,3.109,3465,3.109]],["body/index.html",[4,0.103,5,0.132,21,0.008,39,2.996,57,0.006,58,0.008,59,0.006,78,0.706,94,3.446,101,2.072,123,1.156,126,1.778,139,2.331,176,1.536,225,3.878,252,1.725,279,1.627,345,2.607,381,2.19,383,1.778,397,2.316,411,4.714,466,3.569,474,5.245,491,5.931,503,2.851,622,3.587,646,4.267,732,4.267,761,4.267,770,4.267,784,2.996,885,2.607,1023,2.607,1029,3.587,1164,5.593,1267,3.162,1385,5.593,1649,5.67,2335,5.083,2812,3.587,3397,4.267,3466,4.858,3467,4.858,3468,6.367,3469,4.858,3470,7.827,3471,7.444,3472,7.539,3473,5.593,3474,4.858,3475,4.858,3476,5.593,3477,4.858,3478,4.858,3479,4.858,3480,4.858,3481,4.267,3482,4.858,3483,4.267,3484,4.858,3485,7.827,3486,6.875,3487,4.858,3488,4.858,3489,4.267,3490,4.858,3491,7.539,3492,6.411,3493,7.103,3494,6.367,3495,4.858,3496,4.858,3497,5.593,3498,4.858,3499,4.858,3500,4.858,3501,4.858,3502,4.858,3503,4.858,3504,5.593,3505,5.593,3506,6.367,3507,7.539,3508,4.858,3509,5.593,3510,4.858,3511,6.622,3512,4.858,3513,4.858,3514,4.858,3515,4.267,3516,4.858,3517,4.858,3518,4.858,3519,4.858,3520,4.858,3521,4.267,3522,4.858,3523,4.858,3524,4.267,3525,4.267,3526,3.878,3527,4.858,3528,4.858]],["title/license.html",[3464,3.109,3465,3.109,3529,3.109]],["body/license.html",[0,1.076,2,0.982,4,0.159,5,0.03,17,1.139,18,0.128,21,0.002,22,0.406,29,0.418,39,4.125,42,0.982,57,0.002,58,0.002,59,0.002,60,0.001,66,0.147,67,3.445,75,0.105,84,0.331,93,0.053,101,1.273,108,0.216,115,1.96,123,0.517,169,0.216,202,0.277,225,0.7,232,1.886,277,1.076,322,1.527,326,0.7,341,0.898,377,0.606,397,0.418,454,0.571,460,2.199,474,4.883,477,2.18,478,0.571,480,0.77,495,1.407,496,1.407,506,0.571,514,0.515,533,0.571,548,0.77,574,0.492,575,1.183,607,0.7,615,1.043,620,2.195,631,0.648,636,0.7,638,2.195,653,0.648,714,2.347,752,0.434,784,1.96,885,0.471,901,0.77,902,1.407,935,0.77,936,2.347,938,0.94,939,0.77,940,1.279,941,1.279,943,3.134,962,0.452,997,1.183,1020,2.069,1023,0.471,1029,3.113,1064,0.77,1066,1.407,1110,1.603,1160,1.942,1162,1.407,1166,0.648,1175,4.347,1179,2.849,1204,2.398,1267,4.696,1268,0.7,1269,0.77,1277,1.279,1284,1.942,1337,5.214,1415,1.407,1443,0.77,1463,1.527,1467,0.648,1471,2.911,1512,0.7,1532,0.7,1578,1.633,1669,0.7,1688,0.7,1717,0.7,1723,0.7,1732,0.7,1741,6.703,1743,3.775,1964,0.7,1965,2.849,2206,0.7,2335,2.537,2338,1.407,2339,1.407,2371,0.77,2372,2.398,2375,1.942,2454,0.606,2502,4.692,2517,1.279,2529,1.765,2530,1.279,2579,1.183,2593,0.7,2600,2.792,2605,0.77,2635,4.255,2677,1.765,2757,0.7,2805,1.942,2812,3.313,2821,0.77,3061,0.77,3153,1.407,3343,1.407,3347,1.279,3393,0.77,3471,3.703,3473,2.398,3476,0.77,3481,2.398,3483,2.398,3486,0.77,3489,0.77,3497,3.134,3505,1.942,3509,0.77,3511,0.77,3515,1.942,3521,1.407,3524,3.703,3525,3.436,3529,7.422,3530,6.152,3531,0.877,3532,0.877,3533,2.211,3534,7.011,3535,4.215,3536,6.257,3537,6.828,3538,3.569,3539,0.877,3540,0.877,3541,1.602,3542,3.178,3543,6.688,3544,3.178,3545,2.211,3546,5.496,3547,2.211,3548,0.877,3549,0.877,3550,0.877,3551,1.602,3552,5.149,3553,3.569,3554,0.877,3555,3.569,3556,0.877,3557,0.877,3558,4.215,3559,0.877,3560,0.877,3561,0.877,3562,5.496,3563,7.708,3564,5.496,3565,2.211,3566,2.211,3567,1.602,3568,1.602,3569,3.911,3570,3.911,3571,5.496,3572,3.178,3573,0.877,3574,2.731,3575,4.215,3576,1.602,3577,4.215,3578,2.211,3579,0.877,3580,1.602,3581,0.877,3582,2.211,3583,6.152,3584,3.178,3585,1.602,3586,2.731,3587,0.877,3588,0.877,3589,1.602,3590,2.731,3591,2.731,3592,5.149,3593,1.602,3594,3.178,3595,6.354,3596,3.178,3597,1.602,3598,2.731,3599,3.911,3600,3.178,3601,0.877,3602,4.215,3603,3.178,3604,7.118,3605,2.211,3606,3.911,3607,0.877,3608,0.877,3609,4.215,3610,1.602,3611,4.949,3612,4.73,3613,3.178,3614,1.602,3615,0.877,3616,0.877,3617,5.649,3618,1.602,3619,0.877,3620,0.877,3621,5.33,3622,1.602,3623,0.877,3624,2.211,3625,0.877,3626,0.877,3627,0.877,3628,0.877,3629,0.877,3630,0.877,3631,0.877,3632,0.877,3633,0.877,3634,0.877,3635,1.602,3636,0.877,3637,0.877,3638,0.877,3639,1.602,3640,1.602,3641,0.877,3642,0.877,3643,1.602,3644,1.602,3645,5.496,3646,0.877,3647,1.602,3648,1.602,3649,0.877,3650,0.877,3651,1.602,3652,2.211,3653,1.602,3654,2.211,3655,0.877,3656,0.877,3657,3.569,3658,0.877,3659,0.877,3660,3.178,3661,0.877,3662,0.877,3663,2.731,3664,0.877,3665,0.877,3666,1.602,3667,2.211,3668,0.877,3669,5.149,3670,0.877,3671,4.486,3672,0.877,3673,5.496,3674,2.731,3675,3.178,3676,3.569,3677,2.211,3678,0.877,3679,2.211,3680,6.04,3681,1.602,3682,0.877,3683,0.877,3684,0.877,3685,2.211,3686,7.594,3687,4.73,3688,0.877,3689,0.877,3690,1.602,3691,1.602,3692,0.877,3693,4.73,3694,0.877,3695,2.731,3696,4.215,3697,0.877,3698,2.211,3699,2.211,3700,1.602,3701,3.569,3702,7.496,3703,2.211,3704,4.486,3705,2.731,3706,3.911,3707,1.602,3708,0.877,3709,1.602,3710,2.211,3711,4.486,3712,2.731,3713,0.877,3714,1.602,3715,1.602,3716,2.731,3717,2.731,3718,3.941,3719,0.877,3720,2.211,3721,0.877,3722,6.76,3723,1.602,3724,0.877,3725,4.215,3726,0.877,3727,2.211,3728,5.649,3729,2.731,3730,1.602,3731,4.215,3732,4.949,3733,3.569,3734,0.877,3735,0.877,3736,4.215,3737,0.877,3738,1.602,3739,5.33,3740,0.877,3741,1.602,3742,2.211,3743,0.877,3744,2.211,3745,0.877,3746,0.877,3747,0.877,3748,0.877,3749,2.211,3750,2.211,3751,0.877,3752,0.877,3753,0.877,3754,1.602,3755,4.73,3756,1.602,3757,0.877,3758,2.211,3759,2.211,3760,3.569,3761,2.211,3762,2.211,3763,0.877,3764,0.877,3765,3.178,3766,3.569,3767,0.877,3768,0.877,3769,0.877,3770,1.602,3771,0.877,3772,2.211,3773,0.877,3774,0.877,3775,2.211,3776,0.877,3777,0.877,3778,0.877,3779,1.602,3780,0.877,3781,6.532,3782,4.215,3783,0.877,3784,1.602,3785,0.877,3786,0.877,3787,1.602,3788,1.602,3789,0.877,3790,0.877,3791,0.877,3792,0.877,3793,1.602,3794,2.211,3795,0.877,3796,1.602,3797,0.877,3798,0.877,3799,0.877,3800,0.877,3801,4.73,3802,3.911,3803,2.731,3804,0.877,3805,3.178,3806,0.877,3807,1.602,3808,0.877,3809,0.877,3810,2.211,3811,0.877,3812,0.877,3813,0.877,3814,2.211,3815,2.211,3816,3.569,3817,0.877,3818,0.877,3819,1.602,3820,1.602,3821,1.602,3822,0.877,3823,1.602,3824,0.877,3825,0.877,3826,0.877,3827,0.877,3828,0.877,3829,0.877,3830,2.211,3831,0.877,3832,0.877,3833,5.649,3834,0.877,3835,0.877,3836,0.877,3837,3.178,3838,3.178,3839,0.877,3840,0.877,3841,2.211,3842,0.877,3843,0.877,3844,2.731,3845,0.877,3846,1.602,3847,0.877,3848,0.877,3849,0.877,3850,0.877,3851,0.877,3852,1.602,3853,1.602,3854,0.877,3855,2.211,3856,0.877,3857,0.877,3858,1.602,3859,0.877,3860,0.877,3861,0.877,3862,0.877,3863,1.602,3864,1.602,3865,1.602,3866,4.486,3867,1.602,3868,3.569,3869,0.877,3870,0.877,3871,1.602,3872,2.211,3873,2.211,3874,2.731,3875,2.731,3876,2.211,3877,2.731,3878,1.602,3879,0.877,3880,3.178,3881,3.178,3882,0.877,3883,1.602,3884,1.602,3885,3.178,3886,1.602,3887,2.731,3888,2.731,3889,2.211,3890,5.496,3891,3.178,3892,0.877,3893,0.877,3894,0.877,3895,2.211,3896,1.602,3897,1.602,3898,0.877,3899,0.877,3900,0.877,3901,1.602,3902,0.877,3903,0.877,3904,0.877,3905,2.211,3906,0.877,3907,0.877,3908,1.602,3909,2.211,3910,0.877,3911,1.602,3912,0.877,3913,2.211,3914,0.877,3915,0.877,3916,1.602,3917,1.602,3918,3.569,3919,6.354,3920,2.211,3921,1.602,3922,1.602,3923,1.602,3924,1.602,3925,2.731,3926,1.602,3927,0.877,3928,0.877,3929,0.877,3930,0.877,3931,3.569,3932,1.602,3933,0.877,3934,0.877,3935,0.877,3936,0.877,3937,1.602,3938,0.877,3939,1.602,3940,0.877,3941,3.178,3942,2.731,3943,0.877,3944,4.949,3945,0.877,3946,0.877,3947,0.877,3948,0.877,3949,0.877,3950,0.877,3951,0.877,3952,0.877,3953,2.211,3954,3.178,3955,2.731,3956,2.731,3957,1.602,3958,0.877,3959,0.877,3960,1.602,3961,0.877,3962,0.877,3963,0.877,3964,1.602,3965,0.877,3966,0.877,3967,2.731,3968,0.877,3969,1.602,3970,0.877,3971,1.602,3972,0.877,3973,0.877,3974,2.211,3975,0.877,3976,0.877,3977,0.877,3978,0.877,3979,0.877,3980,1.602,3981,0.877,3982,0.877,3983,0.877,3984,0.877,3985,0.877,3986,2.211,3987,0.877,3988,0.877,3989,0.877,3990,0.877,3991,3.178,3992,0.877,3993,0.877,3994,2.731,3995,0.877,3996,0.877,3997,0.877,3998,0.877,3999,0.877,4000,0.877,4001,0.877,4002,1.602,4003,2.211,4004,0.877,4005,0.877,4006,0.877,4007,2.211,4008,0.877,4009,0.877,4010,2.211,4011,0.877,4012,1.602,4013,0.877,4014,0.877,4015,0.877,4016,0.877,4017,0.877,4018,0.877,4019,0.877,4020,0.877,4021,0.877,4022,0.877,4023,1.602,4024,0.877,4025,0.877,4026,0.877,4027,1.602,4028,1.602,4029,0.877,4030,0.877,4031,2.211,4032,0.877,4033,2.211,4034,1.602,4035,0.877,4036,1.602,4037,1.602,4038,0.877,4039,2.211,4040,3.911,4041,0.877,4042,1.602,4043,1.602,4044,0.877,4045,1.602,4046,0.877,4047,0.877,4048,0.877,4049,0.877,4050,0.877,4051,1.602,4052,0.877,4053,2.731,4054,0.877,4055,3.178,4056,0.877,4057,0.877,4058,0.877,4059,0.877,4060,0.877,4061,1.602,4062,1.602,4063,1.602,4064,2.211,4065,0.877,4066,1.602,4067,1.602,4068,0.877,4069,2.211,4070,0.877,4071,1.602,4072,0.877,4073,1.602,4074,0.877,4075,1.602,4076,0.877,4077,0.877,4078,1.602,4079,6.532,4080,1.602,4081,0.877,4082,3.178,4083,4.73,4084,2.211,4085,0.877,4086,0.877,4087,0.877,4088,2.731,4089,0.877,4090,0.877,4091,2.211,4092,1.602,4093,0.877,4094,0.877,4095,0.877,4096,2.731,4097,0.877,4098,0.877,4099,0.877,4100,0.877,4101,0.877,4102,2.731,4103,1.602,4104,1.602,4105,0.877,4106,0.877,4107,2.211,4108,0.877,4109,1.602,4110,2.211,4111,1.602,4112,0.877,4113,0.877,4114,0.877,4115,0.877,4116,1.602,4117,2.211,4118,0.877,4119,0.877,4120,1.602,4121,0.877,4122,0.877,4123,0.877,4124,0.877,4125,0.877,4126,0.877,4127,2.211,4128,1.602,4129,0.877,4130,0.877,4131,2.731,4132,0.877,4133,2.211,4134,0.877,4135,0.877,4136,1.602,4137,0.877,4138,0.877,4139,0.877,4140,2.211,4141,1.602,4142,0.877,4143,3.911,4144,1.602,4145,2.211,4146,2.731,4147,0.877,4148,0.877,4149,0.877,4150,1.602,4151,0.877,4152,2.211,4153,0.877,4154,1.602,4155,0.877,4156,0.877,4157,0.877,4158,0.877,4159,2.211,4160,0.877,4161,1.602,4162,2.211,4163,1.602,4164,0.877,4165,1.602,4166,0.877,4167,0.877,4168,1.602,4169,1.602,4170,0.877,4171,0.877,4172,1.602,4173,0.877,4174,0.877,4175,0.877,4176,0.877,4177,0.877,4178,0.877,4179,0.877,4180,0.877,4181,0.877,4182,0.877,4183,2.731,4184,1.602,4185,2.211,4186,0.877,4187,0.877,4188,0.877,4189,0.877,4190,0.877,4191,1.602,4192,0.877,4193,0.877,4194,0.877,4195,0.877,4196,0.877,4197,0.877,4198,0.877,4199,0.877,4200,0.877,4201,0.877,4202,0.877,4203,0.877,4204,0.877,4205,2.731,4206,0.877,4207,1.602,4208,0.877,4209,0.877,4210,0.877,4211,0.877,4212,0.877,4213,0.877,4214,0.877,4215,0.877,4216,0.877,4217,0.877,4218,2.211,4219,0.877,4220,0.77,4221,0.877,4222,0.877,4223,1.602,4224,0.877,4225,0.877,4226,0.877,4227,0.877,4228,0.877,4229,1.602,4230,1.602,4231,2.211,4232,0.877,4233,1.602,4234,0.877,4235,0.877,4236,0.877,4237,0.877,4238,2.211,4239,1.602,4240,0.877,4241,1.602,4242,1.602,4243,1.602,4244,0.877,4245,0.877,4246,0.877,4247,0.877,4248,0.877,4249,0.877,4250,1.602,4251,0.877,4252,0.877,4253,1.602,4254,0.877,4255,2.211,4256,0.877,4257,0.877,4258,0.877,4259,0.877,4260,0.877,4261,0.877,4262,0.877,4263,0.877,4264,0.877,4265,0.877,4266,0.877,4267,0.877,4268,0.877,4269,0.877,4270,1.602,4271,0.877,4272,0.877,4273,0.877,4274,0.877,4275,0.877,4276,0.877,4277,0.877,4278,0.877,4279,0.877,4280,0.877,4281,0.877,4282,0.877,4283,0.877,4284,0.877,4285,0.877,4286,0.877,4287,0.877,4288,2.211,4289,1.602,4290,0.877,4291,0.877,4292,0.877,4293,0.877,4294,0.877,4295,1.602,4296,0.877,4297,0.877,4298,1.602,4299,1.602,4300,0.877,4301,0.877,4302,0.877,4303,0.877,4304,0.877,4305,0.877,4306,0.877,4307,0.877,4308,0.877,4309,0.877,4310,0.877,4311,0.877,4312,0.877,4313,0.877,4314,0.877,4315,0.877,4316,0.877,4317,0.877,4318,0.877,4319,0.877,4320,0.877,4321,0.877,4322,0.877,4323,0.877,4324,0.877,4325,0.877]],["title/modules.html",[383,2.131]],["body/modules.html",[21,0.009,57,0.007,58,0.009,59,0.007,382,4.375,383,2.169,392,4.092,393,3.051,394,4.092,580,4.375,584,4.092,674,4.375,680,4.092,688,5.106,801,4.375,805,4.092,2677,6.944,2679,4.375,2683,4.092,2829,4.375,2833,4.092,2984,4.375,2988,4.092,3278,4.092,3718,7.585,4326,8.699,4327,8.945,4328,8.636]],["title/overview.html",[3526,4.648]],["body/overview.html",[2,1.671,21,0.011,57,0.004,58,0.006,59,0.004,62,1.465,124,2.025,125,1.378,234,1.064,240,2.084,242,2.025,245,2.025,247,2.562,249,2.025,251,2.025,254,2.025,257,2.562,260,2.025,262,2.025,264,2.025,266,2.562,269,2.025,271,2.025,273,2.562,276,2.562,278,2.025,280,1.225,281,2.489,283,2.025,285,2.025,322,2.599,381,1.007,382,6.254,383,1.378,384,1.864,385,2.02,386,1.938,387,2.02,388,1.512,389,3.306,390,3.306,391,3.306,392,4.297,393,4.545,394,5.691,395,2.87,396,2.02,397,1.795,449,1.938,580,5.773,581,3.306,582,3.306,583,3.306,584,4.297,674,6.285,675,3.306,676,3.306,677,3.306,678,3.306,679,3.306,680,4.297,681,4.297,682,4.05,683,4.297,684,4.297,787,3.005,801,5.773,802,3.306,803,3.306,804,3.306,805,4.297,812,2.02,1020,3.481,1463,2.599,1480,3.005,2679,5.773,2680,3.306,2681,3.306,2682,3.306,2683,4.297,2767,5.283,2768,3.005,2829,5.956,2830,3.306,2831,3.306,2832,3.306,2833,4.297,2843,3.306,2844,3.306,2845,3.306,2846,5.283,2984,5.956,2985,3.306,2986,3.306,2987,3.306,2988,4.297,3274,3.306,3275,3.306,3276,3.306,3277,3.306,3278,4.297,3526,3.005,4220,3.306,4329,3.764,4330,3.764,4331,3.764]],["title/routes.html",[449,2.999]],["body/routes.html",[21,0.009,57,0.008,58,0.009,59,0.008,449,3.6]],["title/miscellaneous/typealiases.html",[3443,2.304,4332,5.118]],["body/miscellaneous/typealiases.html",[7,0.544,18,0.627,21,0.009,23,4.707,40,4.21,57,0.008,58,0.009,59,0.008,2429,4.001,2613,5.106,3443,4.436,4333,6.816,4334,5.987]],["title/miscellaneous/variables.html",[3443,2.304,3492,4.086]],["body/miscellaneous/variables.html",[1,0.687,6,0.937,7,0.115,11,2.486,13,0.995,14,0.888,15,0.995,16,0.807,17,3.555,18,0.574,19,2.38,21,0.011,22,0.365,23,0.995,24,0.995,25,0.995,26,0.995,27,0.937,28,0.937,29,1.871,30,0.995,32,0.888,33,1.95,34,0.995,35,0.995,36,0.995,37,0.713,38,0.995,39,0.888,42,0.639,45,2.015,47,0.773,49,1.537,50,0.937,51,1.462,52,2.555,53,1.622,54,1.537,55,0.995,57,0.002,58,0.003,59,0.002,63,1.15,78,0.752,84,1.832,94,2.235,96,2.995,97,2.711,98,2.262,99,1.989,100,1.265,101,1.072,102,1.84,115,0.888,122,1.623,129,0.511,176,2.344,177,1.903,231,2.144,270,0.649,279,0.482,294,1.721,328,0.888,446,0.995,456,2.606,458,2.85,459,2.85,460,2.333,462,4.029,503,1.463,506,1.622,574,0.807,620,0.995,694,1.15,697,1.84,709,2.893,714,1.063,715,1.15,716,1.15,752,1.234,769,0.995,783,2.432,784,1.537,786,0.995,936,1.84,938,0.845,1020,0.937,1052,1.989,1104,2.315,1127,1.84,1128,1.84,1130,1.84,1166,1.063,1266,0.995,1447,1.063,1448,1.15,1449,4.784,1455,1.15,1456,3.133,1457,1.15,1458,2.432,1459,1.15,1460,1.15,1461,1.989,1462,1.15,1463,0.995,1464,1.15,1465,1.15,1466,1.15,1467,1.063,1468,1.15,1469,1.063,1470,1.15,1471,0.995,1472,1.537,1473,1.265,1474,1.063,1475,1.265,1476,3.876,1477,3.354,1478,1.265,1479,3.876,1480,3.876,1481,3.876,1482,2.893,1483,1.265,1484,2.189,1485,3.275,1486,5.264,1487,3.54,1488,3.275,1489,3.896,1490,2.189,1491,1.265,1492,2.189,1493,1.265,1494,1.265,1495,1.265,1496,2.189,1497,1.265,1498,1.265,1499,1.265,1500,2.189,1501,1.265,1502,1.265,1503,1.265,1504,2.189,1505,2.893,1506,2.189,1507,2.189,1508,1.265,1509,1.265,1510,1.265,1511,1.265,1512,1.15,1513,1.265,1514,1.265,1515,1.265,1516,1.265,1517,1.265,1518,1.265,1519,1.265,1520,1.265,1521,1.265,1522,1.265,1523,1.265,1524,1.265,1525,1.265,1526,1.265,1527,1.265,1528,1.265,1529,1.265,1530,1.265,1531,1.265,1532,1.15,1533,1.265,1534,1.265,1535,1.265,1536,1.265,1537,1.265,1538,1.265,1539,1.265,1540,1.265,1541,1.265,1542,1.265,1543,1.265,1544,1.265,1545,1.265,1546,1.265,1547,1.265,1548,1.265,1549,2.189,1550,3.448,1551,1.265,1552,1.265,1553,1.265,1554,1.265,1555,1.265,1556,1.265,1557,1.265,1558,1.265,1559,1.265,1560,1.265,1561,1.265,1562,1.265,1563,1.265,1564,1.265,1565,1.265,1566,1.265,1567,1.265,1568,1.265,1569,1.265,1570,1.265,1571,1.265,1572,1.265,1573,1.265,1574,2.189,1575,1.265,1576,1.265,1577,1.265,1578,1.063,1579,1.265,1580,1.265,1581,1.265,1582,1.265,1583,1.265,1584,1.265,1585,1.265,1586,1.265,1587,1.265,1588,1.265,1589,1.265,1590,1.265,1591,1.265,1592,1.265,1593,1.265,1594,1.265,1595,1.265,1596,1.265,1597,1.265,1598,1.265,1599,1.265,1600,1.265,1601,1.265,1602,1.265,1603,1.265,1604,1.265,1605,1.265,1606,1.265,1607,1.265,1608,1.265,1609,2.189,1610,1.265,1611,1.265,1612,1.265,1613,1.265,1614,1.265,1615,1.265,1616,1.265,1617,1.265,1618,2.189,1619,1.265,1620,1.15,1621,1.265,1622,1.265,1623,1.265,1624,1.265,1625,1.265,1626,1.265,1627,1.265,1628,1.265,1629,1.265,1630,2.189,1631,1.265,1632,1.265,1633,1.265,1634,1.265,1635,1.265,1636,1.265,1637,1.265,1638,1.265,1639,1.265,1640,1.265,1641,1.265,1642,1.265,1643,1.265,1644,1.265,1645,1.265,1646,1.265,1647,1.265,1648,2.189,1649,1.989,1650,1.265,1651,1.265,1652,1.265,1653,1.265,1654,1.265,1655,1.265,1656,1.265,1657,1.265,1658,1.265,1659,1.265,1660,1.265,1661,1.265,1662,1.265,1663,1.265,1664,1.265,1665,1.265,1666,1.265,1667,1.265,1668,1.265,1669,1.15,1670,1.265,1671,1.265,1672,1.265,1673,1.265,1674,1.265,1675,1.265,1676,1.265,1677,1.265,1678,1.265,1679,1.265,1680,1.265,1681,1.265,1682,1.265,1683,1.265,1684,1.265,1685,1.265,1686,1.265,1687,1.265,1688,1.15,1689,1.265,1690,1.265,1691,1.265,1692,1.265,1693,1.265,1694,1.265,1695,1.265,1696,1.265,1697,1.265,1698,1.265,1699,1.265,1700,1.265,1701,1.265,1702,1.265,1703,1.265,1704,1.265,1705,1.265,1706,1.265,1707,2.189,1708,1.265,1709,1.265,1710,1.265,1711,1.265,1712,1.265,1713,1.265,1714,1.265,1715,1.15,1716,1.265,1717,1.15,1718,1.265,1719,1.265,1720,1.265,1721,1.265,1722,1.265,1723,1.15,1724,1.265,1725,1.265,1726,1.265,1727,1.265,1728,1.265,1729,1.265,1730,1.265,1731,1.265,1732,1.15,1733,1.265,1734,1.265,1735,1.989,1736,1.265,1737,1.265,1738,1.265,1739,1.265,1740,1.265,1741,1.15,1742,1.265,1743,1.15,1744,1.265,1745,1.265,1746,1.989,1747,1.265,1748,1.265,1749,1.265,1750,1.265,1751,2.189,1752,1.265,1753,1.265,1754,1.265,1755,1.265,1756,1.265,1757,1.265,1758,1.265,1759,1.265,1760,1.265,1761,1.265,1762,1.265,1763,1.265,1764,1.265,1765,1.265,1766,1.265,1767,1.265,1768,1.265,1769,1.265,1770,1.265,1771,1.265,1772,1.265,1773,1.265,1774,1.265,1775,1.265,1776,1.265,1777,1.265,1778,1.265,1779,1.265,1780,1.265,1781,1.265,1782,1.265,1783,1.265,1784,1.265,1785,1.265,1786,1.265,1787,1.265,1788,1.265,1789,1.265,1790,1.265,1791,1.265,1792,1.265,1793,1.265,1794,1.265,1795,2.189,1796,1.265,1797,1.265,1798,1.265,1799,1.265,1800,1.265,1801,1.265,1802,1.265,1803,1.265,1804,1.265,1805,1.265,1806,1.265,1807,1.265,1808,1.265,1809,1.265,1810,1.265,1811,1.265,1812,1.265,1813,2.893,1814,1.265,1815,1.265,1816,1.265,1817,1.265,1818,1.265,1819,1.265,1820,1.265,1821,1.265,1822,1.265,1823,1.265,1824,1.265,1825,1.265,1826,1.265,1827,1.265,1828,1.265,1829,1.265,1830,1.265,1831,1.265,1832,1.265,1833,1.265,1834,1.265,1835,1.265,1836,1.265,1837,1.265,1838,1.265,1839,1.265,1840,1.265,1841,1.265,1842,1.265,1843,1.265,1844,1.265,1845,1.265,1846,1.265,1847,1.265,1848,1.265,1849,1.265,1850,1.265,1851,1.265,1852,1.265,1853,1.265,1854,1.265,1855,1.265,1856,1.265,1857,1.265,1858,1.265,1859,1.265,1860,1.265,1861,1.265,1862,1.265,1863,1.265,1864,1.265,1865,1.265,1866,1.265,1867,1.265,1868,1.265,1869,1.265,1870,1.265,1871,1.265,1872,1.265,1873,1.265,1874,1.265,1875,1.265,1876,1.265,1877,1.265,1878,1.265,1879,1.265,1880,1.265,1881,1.265,1882,1.265,1883,1.265,1884,1.265,1885,1.265,1886,1.265,1887,1.265,1888,1.265,1889,1.265,1890,1.265,1891,1.265,1892,1.265,1893,1.265,1894,1.265,1895,1.265,1896,1.265,1897,1.265,1898,1.265,1899,1.265,1900,1.265,1901,1.265,1902,2.189,1903,1.265,1904,1.989,1905,1.265,1906,1.265,1907,1.265,1908,1.265,1909,1.265,1910,1.265,1911,1.265,1912,1.265,1913,1.265,1914,1.265,1915,1.265,1916,1.265,1917,1.265,1918,1.265,1919,1.265,1920,1.265,1921,1.15,1922,1.265,1923,1.265,1924,1.265,1925,1.265,1926,1.265,1927,1.265,1928,1.265,1929,1.265,1930,1.265,1931,1.265,1932,1.265,1933,2.189,1934,2.189,1935,1.265,1936,1.989,1937,1.265,1938,1.265,1939,1.265,1940,1.265,1941,1.265,1942,1.989,1943,1.265,1944,1.265,1945,1.265,1946,1.265,1947,1.265,1948,1.265,1949,1.265,1950,1.265,1951,1.265,1952,1.265,1953,1.265,1954,1.265,1955,1.265,1956,1.265,1957,1.265,1958,1.265,1959,1.265,1960,1.265,1961,1.265,1962,1.265,1963,1.265,1964,1.15,1965,1.15,1966,1.265,1967,1.265,1968,1.265,1969,2.189,1970,1.265,1971,1.265,1972,1.265,1973,1.265,1974,1.265,1975,1.265,1976,1.265,1977,2.189,1978,1.265,1979,1.265,1980,1.265,1981,1.265,1982,1.265,1983,1.265,1984,1.265,1985,1.265,1986,1.265,1987,1.265,1988,1.265,1989,1.265,1990,1.265,1991,1.265,1992,1.265,1993,1.265,1994,1.265,1995,1.265,1996,1.265,1997,1.265,1998,1.265,1999,1.265,2000,1.265,2001,1.265,2002,1.265,2003,1.265,2004,1.15,2005,1.265,2006,1.265,2007,1.265,2008,1.265,2009,1.265,2010,1.989,2011,1.265,2012,1.265,2013,1.265,2014,1.265,2015,1.265,2016,1.265,2017,1.265,2018,1.15,2019,1.265,2020,1.265,2021,1.265,2022,1.265,2023,1.265,2024,1.265,2025,1.265,2026,1.265,2027,1.265,2028,1.265,2029,1.265,2030,1.265,2031,1.265,2032,1.265,2033,1.265,2034,1.265,2035,1.265,2036,1.265,2037,1.265,2038,1.265,2039,1.265,2040,1.265,2041,1.265,2042,1.265,2043,1.265,2044,1.265,2045,1.265,2046,1.265,2047,1.265,2048,1.265,2049,1.265,2050,1.265,2051,1.265,2052,1.265,2053,1.265,2054,1.265,2055,1.265,2056,1.265,2057,1.265,2058,1.265,2059,1.265,2060,1.265,2061,1.265,2062,1.265,2063,1.265,2064,1.265,2065,1.265,2066,1.265,2067,1.265,2068,1.265,2069,1.989,2070,2.189,2071,3.448,2072,1.265,2073,1.265,2074,1.265,2075,1.265,2076,1.265,2077,1.265,2078,1.265,2079,1.265,2080,1.265,2081,1.265,2082,1.265,2083,1.265,2084,1.265,2085,1.265,2086,1.265,2087,2.189,2088,1.265,2089,1.265,2090,2.189,2091,1.265,2092,1.265,2093,1.265,2094,2.893,2095,2.893,2096,1.265,2097,1.265,2098,2.189,2099,2.189,2100,2.189,2101,1.265,2102,1.265,2103,1.265,2104,1.265,2105,1.265,2106,1.265,2107,1.265,2108,1.265,2109,1.265,2110,1.265,2111,1.265,2112,1.265,2113,1.265,2114,1.265,2115,1.265,2116,1.265,2117,1.265,2118,1.265,2119,1.265,2120,1.265,2121,1.265,2122,1.265,2123,1.265,2124,1.265,2125,1.265,2126,1.265,2127,1.265,2128,1.265,2129,1.265,2130,1.265,2131,1.265,2132,1.265,2133,1.265,2134,2.189,2135,1.265,2136,1.265,2137,1.265,2138,1.265,2139,1.265,2140,1.265,2141,1.265,2142,1.265,2143,1.265,2144,1.265,2145,1.265,2146,1.265,2147,2.189,2148,1.265,2149,1.265,2150,1.265,2151,2.189,2152,1.265,2153,1.265,2154,1.265,2155,1.265,2156,1.265,2157,1.265,2158,1.265,2159,1.265,2160,1.265,2161,1.265,2162,1.265,2163,1.265,2164,1.265,2165,1.265,2166,1.265,2167,1.265,2168,1.265,2169,1.265,2170,1.265,2171,1.265,2172,1.265,2173,1.265,2174,1.265,2175,1.265,2176,1.265,2177,1.265,2178,2.893,2179,1.265,2180,1.265,2181,1.265,2182,1.265,2183,1.265,2184,1.265,2185,1.265,2186,1.265,2187,1.265,2188,1.265,2189,1.265,2190,1.265,2191,1.265,2192,2.189,2193,1.265,2194,1.265,2195,1.265,2196,1.265,2197,1.265,2198,1.265,2199,1.265,2200,2.189,2201,1.265,2202,1.265,2203,1.265,2204,1.265,2205,1.265,2206,1.15,2207,1.265,2208,1.265,2209,1.265,2210,1.265,2211,0.888,2212,1.265,2213,1.265,2214,1.265,2215,1.265,2216,1.265,2217,1.265,2218,1.265,2219,2.189,2220,1.265,2221,1.265,2222,2.189,2223,1.265,2224,1.265,2225,1.265,2226,1.265,2227,1.265,2228,1.265,2229,1.265,2230,1.265,2231,1.265,2232,1.265,2233,1.265,2234,1.265,2235,1.265,2236,1.265,2237,1.265,2238,1.265,2239,2.893,2240,1.265,2241,1.265,2242,1.265,2243,1.265,2244,1.265,2245,1.265,2246,1.265,2247,1.265,2248,1.265,2249,1.265,2250,1.265,2251,1.265,2252,1.265,2253,1.265,2254,1.265,2255,1.265,2256,1.265,2257,1.265,2258,2.189,2259,1.265,2260,1.265,2261,1.265,2262,1.265,2263,1.265,2264,1.265,2265,1.265,2266,1.265,2267,1.265,2268,1.265,2269,1.265,2270,1.265,2271,1.265,2272,1.265,2273,1.265,2274,1.265,2275,1.265,2276,2.189,2277,1.265,2278,1.265,2279,1.265,2280,1.265,2281,2.893,2282,2.893,2283,1.265,2284,2.189,2285,1.265,2286,1.265,2287,1.265,2288,1.265,2289,1.265,2290,1.265,2291,1.265,2292,1.265,2293,1.265,2294,1.265,2295,1.265,2296,1.265,2297,1.265,2298,1.265,2299,2.893,2300,1.265,2301,1.265,2302,1.265,2303,1.265,2304,1.265,2305,1.265,2306,1.265,2307,1.265,2308,1.265,2309,1.265,2310,1.265,2311,1.265,2312,1.265,2313,1.265,2314,1.265,2315,1.265,2316,1.265,2317,1.265,2318,1.989,2319,2.189,2320,2.189,2321,1.265,2322,1.265,2323,1.989,2324,1.265,2325,1.265,2326,1.265,2327,1.265,2328,1.15,2329,1.15,2429,1.463,2430,1.84,2502,2.898,2503,1.463,2504,1.84,2505,1.15,2613,1.622,2641,1.063,2907,1.15,2908,2.629,2921,1.265,3087,1.15,3139,2.189,3140,1.989,3362,1.989,3367,1.15,3370,2.189,3384,1.265,3390,1.265,3391,1.265,3392,1.265,3443,0.937,3448,1.265,3492,1.15,3504,2.893,4334,2.189,4335,2.492,4336,2.492,4337,5.768,4338,1.44,4339,1.44,4340,1.44,4341,1.44,4342,1.44,4343,1.44,4344,3.293,4345,3.293,4346,3.293,4347,3.293,4348,3.293,4349,3.293,4350,3.293,4351,3.293,4352,3.293,4353,2.492,4354,2.492,4355,3.293,4356,3.293,4357,3.293,4358,2.492,4359,2.492,4360,3.293,4361,3.293,4362,3.293,4363,1.44,4364,3.293,4365,3.293,4366,1.44,4367,1.44,4368,1.44,4369,1.44,4370,1.44,4371,1.44,4372,1.44]]],"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/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/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/typealiases.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/Signer.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["0.0",{"_index":554,"title":{},"body":{"components/AdminComponent.html":{}}}],["0.0.7",{"_index":3412,"title":{},"body":{"dependencies.html":{}}}],["0.1.0",{"_index":3427,"title":{},"body":{"dependencies.html":{}}}],["0.1.4",{"_index":3411,"title":{},"body":{"dependencies.html":{}}}],["0.10.2",{"_index":3442,"title":{},"body":{"dependencies.html":{}}}],["0.2",{"_index":555,"title":{},"body":{"components/AdminComponent.html":{}}}],["0.2.4",{"_index":3407,"title":{},"body":{"dependencies.html":{}}}],["0/1",{"_index":3352,"title":{},"body":{"coverage.html":{}}}],["0/10",{"_index":3382,"title":{},"body":{"coverage.html":{}}}],["0/11",{"_index":3375,"title":{},"body":{"coverage.html":{}}}],["0/12",{"_index":3389,"title":{},"body":{"coverage.html":{}}}],["0/14",{"_index":3379,"title":{},"body":{"coverage.html":{}}}],["0/15",{"_index":3388,"title":{},"body":{"coverage.html":{}}}],["0/16",{"_index":3383,"title":{},"body":{"coverage.html":{}}}],["0/17",{"_index":3387,"title":{},"body":{"coverage.html":{}}}],["0/18",{"_index":3381,"title":{},"body":{"coverage.html":{}}}],["0/2",{"_index":3360,"title":{},"body":{"coverage.html":{}}}],["0/26",{"_index":3378,"title":{},"body":{"coverage.html":{}}}],["0/3",{"_index":3354,"title":{},"body":{"coverage.html":{}}}],["0/33",{"_index":3385,"title":{},"body":{"coverage.html":{}}}],["0/4",{"_index":3376,"title":{},"body":{"coverage.html":{}}}],["0/43",{"_index":3386,"title":{},"body":{"coverage.html":{}}}],["0/5",{"_index":3377,"title":{},"body":{"coverage.html":{}}}],["0/6",{"_index":3364,"title":{},"body":{"coverage.html":{}}}],["0/7",{"_index":3380,"title":{},"body":{"coverage.html":{}}}],["0/8",{"_index":3353,"title":{},"body":{"coverage.html":{}}}],["0/9",{"_index":3350,"title":{},"body":{"coverage.html":{}}}],["04/02/2020",{"_index":3308,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["05/28/2020",{"_index":3319,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["08/16/2020",{"_index":3301,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0px",{"_index":543,"title":{},"body":{"components/AdminComponent.html":{}}}],["0x3da99aad2d9ca01d131efc3b17444b832b31ff4a",{"_index":1489,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x4a6fa6bc3bfe4c9661bc692d9798425350c9e3d4",{"_index":1503,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x51d3c8e2e421604e2b644117a362d589c5434739",{"_index":3338,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0x6ca3cb14aa6f761712e1c18646afba4d5ae249e8",{"_index":4370,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0x8fa4101ef19d0a078239d035659e92b278bd083c",{"_index":1499,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x9ced86089f7abb5a97b40eb0e7521e7aa308d354",{"_index":1491,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x9d7c284907acbd4a0ce2ddd0aa69147a921a573d",{"_index":3339,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0xa686005ce37dce7738436256982c3903f2e4ea8e",{"_index":1476,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["0xaf1b487491073c2d49136db3fd87e293302cf839",{"_index":4366,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0xc63cfa91a3bff41ce31ff436f67d3acbc977db95",{"_index":1495,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0xc80d6aff8194114c52aecd84c9f15fd5c8abb187",{"_index":1483,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0xc86ff893ac40d3950b4d5f94a9b837258b0a9865",{"_index":3300,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0xea6225212005e86a4490018ded4bf37f3e772161",{"_index":4363,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0xeb3907ecad74a0013c259d5874ae7f22dcbcc95c",{"_index":4365,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1",{"_index":115,"title":{},"body":{"classes/AccountIndex.html":{},"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["1.0.0",{"_index":3416,"title":{},"body":{"dependencies.html":{}}}],["1.10.22",{"_index":3419,"title":{},"body":{"dependencies.html":{}}}],["1.16.1",{"_index":3432,"title":{},"body":{"dependencies.html":{}}}],["1.3.0",{"_index":3440,"title":{},"body":{"dependencies.html":{}}}],["10",{"_index":322,"title":{},"body":{"components/AccountsComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TransactionsComponent.html":{},"license.html":{},"overview.html":{}}}],["10.2.0",{"_index":3397,"title":{},"body":{"dependencies.html":{},"index.html":{}}}],["10.2.7",{"_index":3399,"title":{},"body":{"dependencies.html":{}}}],["10/10/2020",{"_index":3324,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["100",{"_index":328,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{},"injectables/BlockSyncService.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["100)).subscribe(async",{"_index":220,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["1000",{"_index":1462,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["1000000",{"_index":1486,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["1000000000000000001014",{"_index":1492,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["1000000001000000000000000000",{"_index":1478,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["100990",{"_index":1504,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["11",{"_index":3846,"title":{},"body":{"license.html":{}}}],["11/16/2020",{"_index":3314,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["12987",{"_index":3302,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["13",{"_index":4220,"title":{},"body":{"license.html":{},"overview.html":{}}}],["15",{"_index":4042,"title":{},"body":{"license.html":{}}}],["151.002995",{"_index":3342,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["1595537208",{"_index":3336,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["16",{"_index":4043,"title":{},"body":{"license.html":{}}}],["17",{"_index":4329,"title":{},"body":{"overview.html":{}}}],["18",{"_index":1480,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["1996",{"_index":3851,"title":{},"body":{"license.html":{}}}],["2",{"_index":1020,"title":{},"body":{"injectables/BlockSyncService.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"license.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["2.0.0",{"_index":3436,"title":{},"body":{"dependencies.html":{}}}],["2.1.4",{"_index":3434,"title":{},"body":{"dependencies.html":{}}}],["2.10.0",{"_index":3439,"title":{},"body":{"dependencies.html":{}}}],["2.4.2",{"_index":3428,"title":{},"body":{"dependencies.html":{}}}],["2.5.4",{"_index":3404,"title":{},"body":{"dependencies.html":{}}}],["2.9.4",{"_index":3410,"title":{},"body":{"dependencies.html":{}}}],["20",{"_index":326,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["200",{"_index":769,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["2007",{"_index":3533,"title":{},"body":{"license.html":{}}}],["2020",{"_index":1293,"title":{},"body":{"components/FooterComponent.html":{}}}],["2021",{"_index":4295,"title":{},"body":{"license.html":{}}}],["21",{"_index":4330,"title":{},"body":{"overview.html":{}}}],["22.430670",{"_index":3341,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25412341234",{"_index":3307,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25412345678",{"_index":3299,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25462518374",{"_index":3323,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25498765432",{"_index":3313,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25498769876",{"_index":3318,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["28",{"_index":4201,"title":{},"body":{"license.html":{}}}],["29",{"_index":3531,"title":{},"body":{"license.html":{}}}],["3",{"_index":620,"title":{},"body":{"components/AppComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.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":3423,"title":{},"body":{"dependencies.html":{}}}],["3/5",{"_index":3394,"title":{},"body":{"coverage.html":{}}}],["30",{"_index":4098,"title":{},"body":{"license.html":{}}}],["3000",{"_index":3057,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["300px",{"_index":1238,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["32",{"_index":3207,"title":{},"body":{"injectables/TransactionService.html":{}}}],["4",{"_index":1463,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"license.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["4.10.10",{"_index":3430,"title":{},"body":{"dependencies.html":{}}}],["4.2.1",{"_index":3429,"title":{},"body":{"dependencies.html":{}}}],["4.5.3",{"_index":3408,"title":{},"body":{"dependencies.html":{}}}],["400",{"_index":2424,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["401",{"_index":889,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["401/403",{"_index":767,"title":{},"body":{"components/AuthComponent.html":{}}}],["403",{"_index":932,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["450",{"_index":3315,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["5",{"_index":1467,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["5.0.31",{"_index":3421,"title":{},"body":{"dependencies.html":{}}}],["50",{"_index":327,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{}}}],["51",{"_index":4331,"title":{},"body":{"overview.html":{}}}],["56",{"_index":2205,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["5621",{"_index":3320,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["56281",{"_index":3309,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["6",{"_index":1469,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"pipes/TokenRatioPipe.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["6.6.0",{"_index":3433,"title":{},"body":{"dependencies.html":{}}}],["60",{"_index":3393,"title":{},"body":{"coverage.html":{},"license.html":{}}}],["6b",{"_index":3938,"title":{},"body":{"license.html":{}}}],["6d",{"_index":3962,"title":{},"body":{"license.html":{}}}],["6rem",{"_index":579,"title":{},"body":{"components/AdminComponent.html":{}}}],["7",{"_index":3878,"title":{},"body":{"license.html":{}}}],["768px",{"_index":618,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["8",{"_index":3181,"title":{},"body":{"injectables/TransactionService.html":{}}}],["8.2.1",{"_index":3425,"title":{},"body":{"dependencies.html":{}}}],["8000000",{"_index":3195,"title":{},"body":{"injectables/TransactionService.html":{}}}],["817",{"_index":3325,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["8996",{"_index":4345,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9.0.2",{"_index":3405,"title":{},"body":{"dependencies.html":{}}}],["99000",{"_index":1496,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["9981",{"_index":1500,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["99999999999999998976",{"_index":1484,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["_eth",{"_index":2976,"title":{},"body":{"components/TokensComponent.html":{}}}],["_key",{"_index":2518,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["_key.err",{"_index":2520,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["_models",{"_index":538,"title":{},"body":{"components/AdminComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["abi",{"_index":97,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"injectables/TransactionService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["abicoder",{"_index":3182,"title":{},"body":{"injectables/TransactionService.html":{}}}],["abicoder.encode(['address",{"_index":3184,"title":{},"body":{"injectables/TransactionService.html":{}}}],["ability",{"_index":4009,"title":{},"body":{"license.html":{}}}],["above",{"_index":2375,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["absence",{"_index":3879,"title":{},"body":{"license.html":{}}}],["absolute",{"_index":4277,"title":{},"body":{"license.html":{}}}],["absolutely",{"_index":4307,"title":{},"body":{"license.html":{}}}],["abstractcontrol",{"_index":1191,"title":{},"body":{"classes/CustomValidator.html":{}}}],["abuse",{"_index":3638,"title":{},"body":{"license.html":{}}}],["academy",{"_index":1537,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["accept",{"_index":4103,"title":{},"body":{"license.html":{}}}],["acceptance",{"_index":4102,"title":{},"body":{"license.html":{}}}],["acces",{"_index":1982,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["access",{"_index":943,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["accessible",{"_index":4171,"title":{},"body":{"license.html":{}}}],["accessors",{"_index":159,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["accompanied",{"_index":3920,"title":{},"body":{"license.html":{}}}],["accompanies",{"_index":4281,"title":{},"body":{"license.html":{}}}],["accord",{"_index":3877,"title":{},"body":{"license.html":{}}}],["according",{"_index":4272,"title":{},"body":{"license.html":{}}}],["accordingly",{"_index":1261,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["account",{"_index":116,"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":{},"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":{}}}],["account'},{'name",{"_index":253,"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/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":415,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["account.component.html",{"_index":1126,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.scss",{"_index":1125,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts",{"_index":1124,"title":{},"body":{"components/CreateAccountComponent.html":{},"coverage.html":{}}}],["account.component.ts:15",{"_index":1139,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:16",{"_index":1140,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:17",{"_index":1141,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:18",{"_index":1138,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:19",{"_index":1137,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:20",{"_index":1136,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:21",{"_index":1133,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:29",{"_index":1134,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:48",{"_index":1143,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:50",{"_index":1135,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.type",{"_index":368,"title":{},"body":{"components/AccountsComponent.html":{}}}],["account/create",{"_index":414,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/CreateAccountComponent.html":{},"coverage.html":{}}}],["accountant",{"_index":1622,"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":240,"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/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":3169,"title":{},"body":{"injectables/TransactionService.html":{}}}],["accountinfo.vcard",{"_index":3171,"title":{},"body":{"injectables/TransactionService.html":{}}}],["accounts",{"_index":119,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"modules/PagesRoutingModule.html":{},"components/SidebarComponent.html":{}}}],["accounts'},{'name",{"_index":243,"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/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":292,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounts.component.scss",{"_index":291,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounts.push(account",{"_index":118,"title":{},"body":{"classes/AccountIndex.html":{}}}],["accountscomponent",{"_index":242,"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/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":124,"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/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":382,"title":{"modules/AccountsModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules.html":{},"overview.html":{}}}],["accountsroutingmodule",{"_index":392,"title":{"modules/AccountsRoutingModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["accountstype",{"_index":293,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounttype",{"_index":371,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{}}}],["accounttypes",{"_index":294,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["achieve",{"_index":4287,"title":{},"body":{"license.html":{}}}],["acknowledges",{"_index":3812,"title":{},"body":{"license.html":{}}}],["acquired",{"_index":4150,"title":{},"body":{"license.html":{}}}],["action",{"_index":456,"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":571,"title":{},"body":{"components/AdminComponent.html":{}}}],["action.approval",{"_index":576,"title":{},"body":{"components/AdminComponent.html":{}}}],["action.id",{"_index":2380,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["action.role",{"_index":570,"title":{},"body":{"components/AdminComponent.html":{}}}],["action.user",{"_index":569,"title":{},"body":{"components/AdminComponent.html":{}}}],["actions",{"_index":506,"title":{},"body":{"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["actions.find(action",{"_index":2379,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["activatedroute",{"_index":2880,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["activatedroutesnapshot",{"_index":792,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["activatedroutestub",{"_index":464,"title":{"classes/ActivatedRouteStub.html":{}},"body":{"classes/ActivatedRouteStub.html":{},"coverage.html":{}}}],["activateroute",{"_index":469,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["activities",{"_index":3720,"title":{},"body":{"license.html":{}}}],["activity",{"_index":4197,"title":{},"body":{"license.html":{}}}],["actual",{"_index":4176,"title":{},"body":{"license.html":{}}}],["actual_component",{"_index":289,"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/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":3985,"title":{},"body":{"license.html":{}}}],["adapt",{"_index":3692,"title":{},"body":{"license.html":{}}}],["add",{"_index":477,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"components/AuthComponent.html":{},"license.html":{}}}],["add0x",{"_index":3132,"title":{},"body":{"injectables/TransactionService.html":{}}}],["add0x(tohex(tx.serializerlp",{"_index":3212,"title":{},"body":{"injectables/TransactionService.html":{}}}],["added",{"_index":3876,"title":{},"body":{"license.html":{}}}],["additional",{"_index":3890,"title":{},"body":{"license.html":{}}}],["address",{"_index":84,"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":{},"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":3689,"title":{},"body":{"license.html":{}}}],["addressof",{"_index":2909,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressof(identifier",{"_index":2914,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressreturned",{"_index":1043,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["addresssearchform",{"_index":145,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addresssearchformstub",{"_index":162,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addresssearchloading",{"_index":146,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addresssearchsubmitted",{"_index":147,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["addtoaccountregistry",{"_index":69,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addtoaccountregistry(address",{"_index":82,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addtransaction",{"_index":3091,"title":{},"body":{"injectables/TransactionService.html":{}}}],["addtransaction(transaction",{"_index":3100,"title":{},"body":{"injectables/TransactionService.html":{}}}],["admin",{"_index":503,"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":246,"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/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":505,"title":{},"body":{"components/AdminComponent.html":{}}}],["admin.component.scss",{"_index":504,"title":{},"body":{"components/AdminComponent.html":{}}}],["admin_reserve",{"_index":2818,"title":{},"body":{"components/SettingsComponent.html":{}}}],["admincomponent",{"_index":245,"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/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":580,"title":{"modules/AdminModule.html":{}},"body":{"modules/AdminModule.html":{},"modules.html":{},"overview.html":{}}}],["adminroutingmodule",{"_index":584,"title":{"modules/AdminRoutingModule.html":{}},"body":{"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["adopted",{"_index":3849,"title":{},"body":{"license.html":{}}}],["adversely",{"_index":4017,"title":{},"body":{"license.html":{}}}],["advised",{"_index":4267,"title":{},"body":{"license.html":{}}}],["affects",{"_index":4018,"title":{},"body":{"license.html":{}}}],["affero",{"_index":4218,"title":{},"body":{"license.html":{}}}],["affirmed",{"_index":4132,"title":{},"body":{"license.html":{}}}],["affirms",{"_index":3808,"title":{},"body":{"license.html":{}}}],["afterviewinit",{"_index":3224,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["again",{"_index":637,"title":{},"body":{"components/AppComponent.html":{}}}],["against",{"_index":3865,"title":{},"body":{"license.html":{}}}],["age",{"_index":10,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["agent",{"_index":1620,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["aggregate",{"_index":3905,"title":{},"body":{"license.html":{}}}],["agree",{"_index":4213,"title":{},"body":{"license.html":{}}}],["agreed",{"_index":4254,"title":{},"body":{"license.html":{}}}],["agreement",{"_index":4162,"title":{},"body":{"license.html":{}}}],["agrovet",{"_index":1905,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["aim",{"_index":3634,"title":{},"body":{"license.html":{}}}],["airtime",{"_index":1985,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["alert('access",{"_index":1282,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["alert('account",{"_index":224,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["alg",{"_index":1092,"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/Signer.html":{}}}],["aliases",{"_index":4333,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["alleging",{"_index":4139,"title":{},"body":{"license.html":{}}}],["allow",{"_index":3658,"title":{},"body":{"license.html":{}}}],["allowed",{"_index":1284,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"license.html":{}}}],["along",{"_index":3881,"title":{},"body":{"license.html":{}}}],["alpha.3",{"_index":3417,"title":{},"body":{"dependencies.html":{}}}],["alpha.6",{"_index":3413,"title":{},"body":{"dependencies.html":{}}}],["already",{"_index":4149,"title":{},"body":{"license.html":{}}}],["alternative",{"_index":3934,"title":{},"body":{"license.html":{}}}],["although",{"_index":3630,"title":{},"body":{"license.html":{}}}],["amani",{"_index":2096,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["amount",{"_index":3064,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["ancillary",{"_index":4105,"title":{},"body":{"license.html":{}}}],["and/or",{"_index":3613,"title":{},"body":{"license.html":{}}}],["andshow",{"_index":4311,"title":{},"body":{"license.html":{}}}],["angular",{"_index":411,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AppModule.html":{},"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"modules/TransactionsModule.html":{},"dependencies.html":{},"index.html":{}}}],["angular/animations",{"_index":537,"title":{},"body":{"components/AdminComponent.html":{},"dependencies.html":{}}}],["angular/cdk",{"_index":3398,"title":{},"body":{"dependencies.html":{}}}],["angular/cli",{"_index":3475,"title":{},"body":{"index.html":{}}}],["angular/common",{"_index":402,"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":696,"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":3400,"title":{},"body":{"dependencies.html":{}}}],["angular/core",{"_index":194,"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/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":196,"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":3401,"title":{},"body":{"dependencies.html":{}}}],["angular/material/button",{"_index":427,"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":429,"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":419,"title":{},"body":{"modules/AccountsModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/core",{"_index":438,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"classes/CustomErrorStateMatcher.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/dialog",{"_index":1218,"title":{},"body":{"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{}}}],["angular/material/form",{"_index":424,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/icon",{"_index":431,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/input",{"_index":422,"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":2841,"title":{},"body":{"modules/SettingsModule.html":{}}}],["angular/material/paginator",{"_index":338,"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":440,"title":{},"body":{"modules/AccountsModule.html":{}}}],["angular/material/radio",{"_index":2839,"title":{},"body":{"modules/SettingsModule.html":{}}}],["angular/material/select",{"_index":433,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/sidenav",{"_index":2995,"title":{},"body":{"modules/TokensModule.html":{}}}],["angular/material/snack",{"_index":445,"title":{},"body":{"modules/AccountsModule.html":{},"components/TransactionDetailsComponent.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/sort",{"_index":339,"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":337,"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":436,"title":{},"body":{"modules/AccountsModule.html":{}}}],["angular/material/toolbar",{"_index":2997,"title":{},"body":{"modules/TokensModule.html":{}}}],["angular/platform",{"_index":687,"title":{},"body":{"modules/AppModule.html":{},"pipes/SafePipe.html":{},"dependencies.html":{}}}],["angular/router",{"_index":199,"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":{}}}],["animate",{"_index":532,"title":{},"body":{"components/AdminComponent.html":{}}}],["animate('225ms",{"_index":551,"title":{},"body":{"components/AdminComponent.html":{}}}],["animations",{"_index":539,"title":{},"body":{"components/AdminComponent.html":{}}}],["anti",{"_index":3836,"title":{},"body":{"license.html":{}}}],["anyone",{"_index":3888,"title":{},"body":{"license.html":{}}}],["anything",{"_index":3705,"title":{},"body":{"license.html":{}}}],["api",{"_index":2336,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["app",{"_index":139,"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/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":592,"title":{},"body":{"components/AppComponent.html":{}}}],["app.component.scss",{"_index":591,"title":{},"body":{"components/AppComponent.html":{}}}],["app.module",{"_index":3490,"title":{},"body":{"index.html":{}}}],["app/_eth",{"_index":2940,"title":{},"body":{"injectables/TokenService.html":{}}}],["app/_guards",{"_index":699,"title":{},"body":{"modules/AppModule.html":{},"modules/AppRoutingModule.html":{}}}],["app/_helpers",{"_index":197,"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":863,"title":{},"body":{"injectables/AuthService.html":{}}}],["app/_interceptors",{"_index":703,"title":{},"body":{"modules/AppModule.html":{}}}],["app/_models",{"_index":343,"title":{},"body":{"components/AccountsComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["app/_models/account",{"_index":1102,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["app/_models/staff",{"_index":2804,"title":{},"body":{"components/SettingsComponent.html":{}}}],["app/_pgp",{"_index":705,"title":{},"body":{"modules/AppModule.html":{},"injectables/AuthService.html":{}}}],["app/_pgp/pgp",{"_index":2640,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["app/_services",{"_index":198,"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":3138,"title":{},"body":{"injectables/TransactionService.html":{}}}],["app/_services/error",{"_index":860,"title":{},"body":{"injectables/AuthService.html":{}}}],["app/_services/logging.service",{"_index":859,"title":{},"body":{"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{}}}],["app/_services/registry.service",{"_index":1025,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["app/_services/transaction.service",{"_index":1024,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["app/_services/user.service",{"_index":3127,"title":{},"body":{"injectables/TransactionService.html":{}}}],["app/app",{"_index":690,"title":{},"body":{"modules/AppModule.html":{}}}],["app/app.component",{"_index":691,"title":{},"body":{"modules/AppModule.html":{}}}],["app/auth/_directives/password",{"_index":809,"title":{},"body":{"modules/AuthModule.html":{}}}],["app/auth/auth",{"_index":807,"title":{},"body":{"modules/AuthModule.html":{}}}],["app/auth/auth.component",{"_index":808,"title":{},"body":{"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{}}}],["app/shared/_directives/menu",{"_index":2851,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/_pipes/safe.pipe",{"_index":2856,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/_pipes/token",{"_index":2853,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/error",{"_index":1233,"title":{},"body":{"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{}}}],["app/shared/footer/footer.component",{"_index":2849,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/shared.module",{"_index":406,"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":2850,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/topbar/topbar.component",{"_index":2848,"title":{},"body":{"modules/SharedModule.html":{}}}],["appcomponent",{"_index":247,"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/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":3711,"title":{},"body":{"license.html":{}}}],["application/json",{"_index":883,"title":{},"body":{"injectables/AuthService.html":{}}}],["applications",{"_index":4320,"title":{},"body":{"license.html":{}}}],["applied",{"_index":3665,"title":{},"body":{"license.html":{}}}],["applies",{"_index":3567,"title":{},"body":{"license.html":{}}}],["apply",{"_index":3571,"title":{},"body":{"license.html":{}}}],["appmenuselection",{"_index":1425,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["appmenuselection]'},{'name",{"_index":282,"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/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":1438,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["appmenutoggle]'},{'name",{"_index":284,"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/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":674,"title":{"modules/AppModule.html":{}},"body":{"modules/AppModule.html":{},"modules.html":{},"overview.html":{}}}],["apppasswordtoggle",{"_index":2703,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["apppasswordtoggle]'},{'name",{"_index":286,"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/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":3731,"title":{},"body":{"license.html":{}}}],["appropriately",{"_index":3870,"title":{},"body":{"license.html":{}}}],["approutingmodule",{"_index":680,"title":{"modules/AppRoutingModule.html":{}},"body":{"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["approval",{"_index":458,"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":507,"title":{},"body":{"components/AdminComponent.html":{}}}],["approvalstatus(action.approval",{"_index":572,"title":{},"body":{"components/AdminComponent.html":{}}}],["approvalstatus(status",{"_index":512,"title":{},"body":{"components/AdminComponent.html":{}}}],["approve",{"_index":529,"title":{},"body":{"components/AdminComponent.html":{}}}],["approveaction",{"_index":508,"title":{},"body":{"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{}}}],["approveaction(action",{"_index":515,"title":{},"body":{"components/AdminComponent.html":{}}}],["approveaction(id",{"_index":3326,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["approved",{"_index":560,"title":{},"body":{"components/AdminComponent.html":{},"classes/UserServiceStub.html":{}}}],["approximates",{"_index":4276,"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":461,"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":2407,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areaname.name",{"_index":2403,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areanamelist",{"_index":2401,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areanames",{"_index":1127,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["areanames.find(areaname",{"_index":2406,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areanames.map(areaname",{"_index":2402,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatype",{"_index":463,"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":2415,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatype.name",{"_index":2411,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatypelist",{"_index":2409,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatypes",{"_index":2318,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["areatypes.find(areatype",{"_index":2414,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatypes.map(areatype",{"_index":2410,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["args",{"_index":2773,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{}}}],["arguments",{"_index":606,"title":{},"body":{"components/AppComponent.html":{}}}],["arise",{"_index":3646,"title":{},"body":{"license.html":{}}}],["arising",{"_index":4258,"title":{},"body":{"license.html":{}}}],["arr",{"_index":3451,"title":{},"body":{"miscellaneous/functions.html":{}}}],["arrange",{"_index":4172,"title":{},"body":{"license.html":{}}}],["arrangement",{"_index":4185,"title":{},"body":{"license.html":{}}}],["array",{"_index":98,"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({length",{"_index":2948,"title":{},"body":{"injectables/TokenService.html":{}}}],["arraybuffer",{"_index":911,"title":{},"body":{"injectables/AuthService.html":{}}}],["arraydata",{"_index":3456,"title":{},"body":{"miscellaneous/functions.html":{}}}],["arraysum",{"_index":3357,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["arraysum(arr",{"_index":3450,"title":{},"body":{"miscellaneous/functions.html":{}}}],["article",{"_index":3845,"title":{},"body":{"license.html":{}}}],["artifacts",{"_index":3499,"title":{},"body":{"index.html":{}}}],["artisan",{"_index":1730,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["artist",{"_index":1619,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["askari",{"_index":1621,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["asking",{"_index":3588,"title":{},"body":{"license.html":{}}}],["assert",{"_index":3608,"title":{},"body":{"license.html":{}}}],["assets",{"_index":4122,"title":{},"body":{"license.html":{}}}],["assets/js/block",{"_index":2736,"title":{},"body":{"injectables/RegistryService.html":{}}}],["associated",{"_index":3789,"title":{},"body":{"license.html":{}}}],["assume",{"_index":4249,"title":{},"body":{"license.html":{}}}],["assumption",{"_index":4280,"title":{},"body":{"license.html":{}}}],["assumptions",{"_index":4063,"title":{},"body":{"license.html":{}}}],["assures",{"_index":3668,"title":{},"body":{"license.html":{}}}],["async",{"_index":68,"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/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["atomic",{"_index":868,"title":{},"body":{"injectables/AuthService.html":{}}}],["attach",{"_index":4289,"title":{},"body":{"license.html":{}}}],["attempt",{"_index":4077,"title":{},"body":{"license.html":{}}}],["attributed",{"_index":3625,"title":{},"body":{"license.html":{}}}],["attributions",{"_index":4046,"title":{},"body":{"license.html":{}}}],["auth",{"_index":719,"title":{},"body":{"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{}}}],["auth'},{'name",{"_index":250,"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/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":730,"title":{},"body":{"components/AuthComponent.html":{}}}],["auth.component.scss",{"_index":729,"title":{},"body":{"components/AuthComponent.html":{}}}],["authcomponent",{"_index":249,"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/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":915,"title":{},"body":{"injectables/AuthService.html":{}}}],["authentication",{"_index":2823,"title":{},"body":{"components/SettingsComponent.html":{}}}],["authguard",{"_index":698,"title":{"guards/AuthGuard.html":{}},"body":{"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"coverage.html":{}}}],["authheader",{"_index":913,"title":{},"body":{"injectables/AuthService.html":{}}}],["authmodule",{"_index":801,"title":{"modules/AuthModule.html":{}},"body":{"modules/AuthModule.html":{},"modules.html":{},"overview.html":{}}}],["author",{"_index":4045,"title":{},"body":{"license.html":{}}}],["authorization",{"_index":3996,"title":{},"body":{"license.html":{}}}],["authorized",{"_index":935,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["authorizes",{"_index":4144,"title":{},"body":{"license.html":{}}}],["authorizing",{"_index":4189,"title":{},"body":{"license.html":{}}}],["authors",{"_index":3570,"title":{},"body":{"license.html":{}}}],["authroutingmodule",{"_index":805,"title":{"modules/AuthRoutingModule.html":{}},"body":{"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["authservice",{"_index":602,"title":{"injectables/AuthService.html":{}},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"components/SettingsComponent.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["automatic",{"_index":4114,"title":{},"body":{"license.html":{}}}],["automatically",{"_index":3481,"title":{},"body":{"index.html":{},"license.html":{}}}],["automerge",{"_index":886,"title":{},"body":{"injectables/AuthService.html":{}}}],["available",{"_index":3718,"title":{},"body":{"license.html":{},"modules.html":{}}}],["avocado",{"_index":1747,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["avoid",{"_index":3662,"title":{},"body":{"license.html":{}}}],["await",{"_index":109,"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/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["away",{"_index":3557,"title":{},"body":{"license.html":{}}}],["b",{"_index":3766,"title":{},"body":{"license.html":{}}}],["baby",{"_index":1526,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["babycare",{"_index":1525,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["backend",{"_index":1263,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["backend.ts",{"_index":1449,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["backend.ts:240",{"_index":1450,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["bag",{"_index":1943,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bajia",{"_index":1749,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["baker",{"_index":1623,"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":2259,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["banana",{"_index":1755,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bananas",{"_index":1756,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bangla",{"_index":2241,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bangladesh",{"_index":2242,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bar",{"_index":446,"title":{},"body":{"modules/AccountsModule.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TransactionDetailsComponent.html":{},"modules/TransactionsModule.html":{},"miscellaneous/variables.html":{}}}],["barafu",{"_index":1900,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["barakoa",{"_index":1907,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["barber",{"_index":1626,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["based",{"_index":3701,"title":{},"body":{"license.html":{}}}],["basic",{"_index":3800,"title":{},"body":{"license.html":{}}}],["bead",{"_index":1944,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beadwork",{"_index":1624,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beans",{"_index":1752,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bearer",{"_index":881,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/HttpConfigInterceptor.html":{}}}],["beautician",{"_index":1738,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beauty",{"_index":1625,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beba",{"_index":2012,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bebabeba",{"_index":2013,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bed",{"_index":1948,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bedding",{"_index":1946,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["behalf",{"_index":3824,"title":{},"body":{"license.html":{}}}],["behaviorsubject",{"_index":2939,"title":{},"body":{"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["behaviorsubject(this.transactions",{"_index":3119,"title":{},"body":{"injectables/TransactionService.html":{}}}],["being",{"_index":3960,"title":{},"body":{"license.html":{}}}],["believe",{"_index":4181,"title":{},"body":{"license.html":{}}}],["below",{"_index":3831,"title":{},"body":{"license.html":{}}}],["belt",{"_index":1945,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["benefit",{"_index":4175,"title":{},"body":{"license.html":{}}}],["best",{"_index":4286,"title":{},"body":{"license.html":{}}}],["between",{"_index":3798,"title":{},"body":{"license.html":{}}}],["beyond",{"_index":3907,"title":{},"body":{"license.html":{}}}],["bezier(0.4",{"_index":553,"title":{},"body":{"components/AdminComponent.html":{}}}],["bhajia",{"_index":1748,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biashara",{"_index":1666,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bicycle",{"_index":2015,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bike",{"_index":2014,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bio",{"_index":3304,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["biogas",{"_index":2044,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biringanya",{"_index":1754,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biscuits",{"_index":1753,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bit",{"_index":1010,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["block",{"_index":781,"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":{}}}],["blockfilter",{"_index":1093,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["blockfilterbinstr",{"_index":1072,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blockfilterbinstr.charcodeat(i",{"_index":1079,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocksbloom",{"_index":1090,"title":{"classes/BlocksBloom.html":{}},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{}}}],["blocksync",{"_index":986,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocksync(address",{"_index":995,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocksyncservice",{"_index":983,"title":{"injectables/BlockSyncService.html":{}},"body":{"injectables/BlockSyncService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["blocktxfilter",{"_index":1094,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["blocktxfilterbinstr",{"_index":1080,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocktxfilterbinstr.charcodeat(i",{"_index":1085,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomblockbytes",{"_index":1015,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomblocktxbytes",{"_index":1017,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomrounds",{"_index":1018,"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":4344,"title":{},"body":{"miscellaneous/variables.html":{}}}],["boda",{"_index":2017,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bodaboda",{"_index":2018,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["body",{"_index":1268,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["body.approval",{"_index":2384,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["bofu",{"_index":1751,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bombolulu",{"_index":2263,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bomet",{"_index":2304,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bone",{"_index":1074,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bone.map((e",{"_index":1076,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["book",{"_index":1508,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["boolean",{"_index":175,"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/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"miscellaneous/functions.html":{}}}],["bootstrap",{"_index":386,"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":3618,"title":{},"body":{"license.html":{}}}],["botique",{"_index":1950,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["boutique",{"_index":1951,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["box",{"_index":4314,"title":{},"body":{"license.html":{}}}],["bread",{"_index":1840,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["break",{"_index":1280,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["brewer",{"_index":1745,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bricks",{"_index":1720,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["browse",{"_index":4327,"title":{},"body":{"modules.html":{}}}],["browser",{"_index":688,"title":{},"body":{"modules/AppModule.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"pipes/SafePipe.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"dependencies.html":{},"modules.html":{}}}],["browser/animations",{"_index":693,"title":{},"body":{"modules/AppModule.html":{}}}],["browseranimationsmodule",{"_index":692,"title":{},"body":{"modules/AppModule.html":{}}}],["browsermodule",{"_index":686,"title":{},"body":{"modules/AppModule.html":{}}}],["btwo",{"_index":1082,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["btwo.map((e",{"_index":1084,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["buck",{"_index":3306,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["build",{"_index":3491,"title":{},"body":{"index.html":{}}}],["build:dev",{"_index":3498,"title":{},"body":{"index.html":{}}}],["build:prod",{"_index":3502,"title":{},"body":{"index.html":{}}}],["bungoma",{"_index":2306,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["buru",{"_index":2219,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["busaa",{"_index":1827,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["busia",{"_index":2285,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["business",{"_index":1166,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["businesscategory",{"_index":1150,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["butcher",{"_index":1780,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["butchery",{"_index":1781,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["button",{"_index":577,"title":{},"body":{"components/AdminComponent.html":{},"injectables/AuthService.html":{}}}],["c",{"_index":3535,"title":{},"body":{"license.html":{}}}],["cabbages",{"_index":1829,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cachedtx.tx.txhash",{"_index":3144,"title":{},"body":{"injectables/TransactionService.html":{}}}],["cachesize",{"_index":3101,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["cafe",{"_index":1960,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cake",{"_index":1767,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["call",{"_index":2337,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["called",{"_index":3699,"title":{},"body":{"license.html":{}}}],["can't",{"_index":2516,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["can\\'t",{"_index":634,"title":{},"body":{"components/AppComponent.html":{}}}],["canactivate",{"_index":725,"title":{},"body":{"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["canactivate(route",{"_index":791,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["candebug",{"_index":1384,"title":{},"body":{"injectables/LoggingService.html":{}}}],["candy",{"_index":1956,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["capenter",{"_index":1632,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["car",{"_index":1630,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["card",{"_index":2601,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["care",{"_index":1527,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["caretaker",{"_index":1629,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carpenter",{"_index":1642,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carrier",{"_index":2020,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carry",{"_index":3883,"title":{},"body":{"license.html":{}}}],["cart",{"_index":2019,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carwash",{"_index":1638,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["case",{"_index":1277,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["cases",{"_index":3980,"title":{},"body":{"license.html":{}}}],["cashier",{"_index":2321,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cassava",{"_index":1766,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["casual",{"_index":1627,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["catch",{"_index":349,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{},"injectables/AuthService.html":{}}}],["catch((e",{"_index":2669,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["catcherror",{"_index":625,"title":{},"body":{"components/AppComponent.html":{},"interceptors/ErrorInterceptor.html":{}}}],["catcherror((err",{"_index":1255,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["categories",{"_index":1128,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["categories.find(category",{"_index":2398,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["categories.map(category",{"_index":2394,"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":2395,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["category.products.includes(stringfromurl",{"_index":2399,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["categorylist",{"_index":2393,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["catering",{"_index":1635,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cause",{"_index":3911,"title":{},"body":{"license.html":{}}}],["cease",{"_index":4081,"title":{},"body":{"license.html":{}}}],["cement",{"_index":1949,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cereal",{"_index":1761,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cereals",{"_index":1768,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["certain",{"_index":3591,"title":{},"body":{"license.html":{}}}],["cessation",{"_index":4093,"title":{},"body":{"license.html":{}}}],["chai",{"_index":1764,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chakula",{"_index":1758,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["challenge",{"_index":899,"title":{},"body":{"injectables/AuthService.html":{}}}],["chama",{"_index":1935,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["changamwe",{"_index":2253,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["change",{"_index":784,"title":{},"body":{"components/AuthComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/SettingsComponent.html":{},"classes/UserServiceStub.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["changed",{"_index":3623,"title":{},"body":{"license.html":{}}}],["changedetection",{"_index":136,"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/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":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/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":137,"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/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":{}}}],["changing",{"_index":3548,"title":{},"body":{"license.html":{}}}],["chapati",{"_index":1760,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chapo",{"_index":1763,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["characterized",{"_index":4006,"title":{},"body":{"license.html":{}}}],["charcoal",{"_index":2046,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["charcol",{"_index":2045,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["charge",{"_index":3575,"title":{},"body":{"license.html":{}}}],["charging",{"_index":1690,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chart.js",{"_index":3409,"title":{},"body":{"dependencies.html":{}}}],["charts",{"_index":2689,"title":{},"body":{"modules/PagesModule.html":{},"dependencies.html":{}}}],["chartsmodule",{"_index":2687,"title":{},"body":{"modules/PagesModule.html":{}}}],["check",{"_index":761,"title":{},"body":{"components/AuthComponent.html":{},"index.html":{}}}],["chef",{"_index":1634,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chemicals",{"_index":1909,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chemist",{"_index":1908,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chibuga",{"_index":2097,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chicken",{"_index":1772,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chidzivuni",{"_index":2109,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chidzuvini",{"_index":2108,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chief",{"_index":1576,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigale",{"_index":2103,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigato",{"_index":2102,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigojoni",{"_index":2100,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikole",{"_index":2104,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikomani",{"_index":2098,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikomeni",{"_index":2107,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikuyu",{"_index":2110,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["children",{"_index":1546,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chilongoni",{"_index":2099,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chilumani",{"_index":2105,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chinguluni",{"_index":2101,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chipo",{"_index":1762,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chips",{"_index":1765,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chizingo",{"_index":2111,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chizini",{"_index":2106,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choma",{"_index":1823,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choo",{"_index":1590,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choose",{"_index":4233,"title":{},"body":{"license.html":{}}}],["choosing",{"_index":4237,"title":{},"body":{"license.html":{}}}],["christine",{"_index":1459,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["chumvi",{"_index":1828,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["church",{"_index":1570,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chv",{"_index":1910,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cic",{"_index":885,"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":622,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/SidebarComponent.html":{},"index.html":{}}}],["ciccacheurl",{"_index":4355,"title":{},"body":{"miscellaneous/variables.html":{}}}],["cicconvert(event",{"_index":671,"title":{},"body":{"components/AppComponent.html":{}}}],["cicmetaurl",{"_index":4350,"title":{},"body":{"miscellaneous/variables.html":{}}}],["cicregistry",{"_index":2732,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["cicregistry(this.web3",{"_index":2733,"title":{},"body":{"injectables/RegistryService.html":{}}}],["cictransfer(event",{"_index":667,"title":{},"body":{"components/AppComponent.html":{}}}],["cicussdurl",{"_index":4360,"title":{},"body":{"miscellaneous/variables.html":{}}}],["circumstances",{"_index":3829,"title":{},"body":{"license.html":{}}}],["circumvention",{"_index":3837,"title":{},"body":{"license.html":{}}}],["civil",{"_index":4279,"title":{},"body":{"license.html":{}}}],["claim",{"_index":4136,"title":{},"body":{"license.html":{}}}],["claims",{"_index":4146,"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/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/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":1603,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cleaning",{"_index":1596,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clear",{"_index":3947,"title":{},"body":{"license.html":{}}}],["clearkeysinkeyring",{"_index":2432,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["clearly",{"_index":3615,"title":{},"body":{"license.html":{}}}],["cles",{"_index":3317,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["cli",{"_index":3470,"title":{},"body":{"index.html":{}}}],["click",{"_index":1434,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["client",{"_index":1023,"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":1922,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clinical",{"_index":1923,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["close",{"_index":3055,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["closely",{"_index":4275,"title":{},"body":{"license.html":{}}}],["cloth",{"_index":1957,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["club",{"_index":2005,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clues",{"_index":1270,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["cluster_accountsmodule",{"_index":389,"title":{},"body":{"modules/AccountsModule.html":{},"overview.html":{}}}],["cluster_accountsmodule_declarations",{"_index":390,"title":{},"body":{"modules/AccountsModule.html":{},"overview.html":{}}}],["cluster_accountsmodule_imports",{"_index":391,"title":{},"body":{"modules/AccountsModule.html":{},"overview.html":{}}}],["cluster_adminmodule",{"_index":581,"title":{},"body":{"modules/AdminModule.html":{},"overview.html":{}}}],["cluster_adminmodule_declarations",{"_index":582,"title":{},"body":{"modules/AdminModule.html":{},"overview.html":{}}}],["cluster_adminmodule_imports",{"_index":583,"title":{},"body":{"modules/AdminModule.html":{},"overview.html":{}}}],["cluster_appmodule",{"_index":675,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_bootstrap",{"_index":679,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_declarations",{"_index":678,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_imports",{"_index":677,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_providers",{"_index":676,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_authmodule",{"_index":802,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_authmodule_declarations",{"_index":804,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_authmodule_imports",{"_index":803,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_pagesmodule",{"_index":2680,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_pagesmodule_declarations",{"_index":2682,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_pagesmodule_imports",{"_index":2681,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_settingsmodule",{"_index":2830,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_settingsmodule_declarations",{"_index":2832,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_settingsmodule_imports",{"_index":2831,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_sharedmodule",{"_index":2843,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_sharedmodule_declarations",{"_index":2845,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_sharedmodule_exports",{"_index":2844,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_tokensmodule",{"_index":2985,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_tokensmodule_declarations",{"_index":2987,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_tokensmodule_imports",{"_index":2986,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule",{"_index":3274,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_declarations",{"_index":3277,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_exports",{"_index":3276,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_imports",{"_index":3275,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["coach",{"_index":1509,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cobbler",{"_index":1637,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cobler",{"_index":1636,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["coconut",{"_index":1759,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["code",{"_index":1267,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"components/OrganizationComponent.html":{},"index.html":{},"license.html":{}}}],["coffee",{"_index":1771,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["collapsed",{"_index":550,"title":{},"body":{"components/AdminComponent.html":{}}}],["collect",{"_index":4215,"title":{},"body":{"license.html":{}}}],["collection",{"_index":1605,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["college",{"_index":1519,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["columnstodisplay",{"_index":2963,"title":{},"body":{"components/TokensComponent.html":{}}}],["combination",{"_index":4222,"title":{},"body":{"license.html":{}}}],["combine",{"_index":4219,"title":{},"body":{"license.html":{}}}],["combined",{"_index":3901,"title":{},"body":{"license.html":{}}}],["comes",{"_index":2530,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["command",{"_index":3527,"title":{},"body":{"index.html":{}}}],["commands",{"_index":3742,"title":{},"body":{"license.html":{}}}],["comment",{"_index":2871,"title":{},"body":{"interfaces/Staff.html":{}}}],["commercial",{"_index":3990,"title":{},"body":{"license.html":{}}}],["commitment",{"_index":4163,"title":{},"body":{"license.html":{}}}],["common",{"_index":3984,"title":{},"body":{"license.html":{}}}],["commonmodule",{"_index":401,"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":3796,"title":{},"body":{"license.html":{}}}],["community",{"_index":1921,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["compilation",{"_index":3897,"title":{},"body":{"license.html":{}}}],["compilation's",{"_index":3906,"title":{},"body":{"license.html":{}}}],["compilations",{"_index":4199,"title":{},"body":{"license.html":{}}}],["compiler",{"_index":3778,"title":{},"body":{"license.html":{}}}],["complete",{"_index":1465,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["compliance",{"_index":4119,"title":{},"body":{"license.html":{}}}],["comply",{"_index":3822,"title":{},"body":{"license.html":{}}}],["component",{"_index":123,"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/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":{},"modules/AuthRoutingModule.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"modules/PagesRoutingModule.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":1295,"title":{},"body":{"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{}}}],["component_template",{"_index":239,"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/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":125,"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/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":3714,"title":{},"body":{"license.html":{}}}],["computers",{"_index":3661,"title":{},"body":{"license.html":{}}}],["concerning",{"_index":4221,"title":{},"body":{"license.html":{}}}],["concerns",{"_index":4227,"title":{},"body":{"license.html":{}}}],["conditioned",{"_index":4194,"title":{},"body":{"license.html":{}}}],["conditions",{"_index":3673,"title":{},"body":{"license.html":{}}}],["conductor",{"_index":2025,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["config.interceptor.ts",{"_index":1345,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"coverage.html":{}}}],["config.interceptor.ts:11",{"_index":1346,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["config.interceptor.ts:15",{"_index":1347,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["confirm('approve",{"_index":562,"title":{},"body":{"components/AdminComponent.html":{}}}],["confirm('create",{"_index":1159,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["confirm('disapprove",{"_index":565,"title":{},"body":{"components/AdminComponent.html":{}}}],["confirm('set",{"_index":2597,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["confirmpassword",{"_index":1199,"title":{},"body":{"classes/CustomValidator.html":{}}}],["congo",{"_index":2189,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["connection",{"_index":4183,"title":{},"body":{"license.html":{}}}],["consequence",{"_index":4107,"title":{},"body":{"license.html":{}}}],["consequential",{"_index":4257,"title":{},"body":{"license.html":{}}}],["conservation",{"_index":1588,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consider",{"_index":4318,"title":{},"body":{"license.html":{}}}],["considered",{"_index":4065,"title":{},"body":{"license.html":{}}}],["consistent",{"_index":4154,"title":{},"body":{"license.html":{}}}],["console.log('here",{"_index":3334,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["conspicuously",{"_index":3869,"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/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"modules/TokensRoutingModule.html":{},"injectables/TransactionService.html":{},"modules/TransactionsRoutingModule.html":{}}}],["constantly",{"_index":3656,"title":{},"body":{"license.html":{}}}],["constitutes",{"_index":3811,"title":{},"body":{"license.html":{}}}],["construction",{"_index":1633,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["constructor",{"_index":73,"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/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":1219,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["constructor(authservice",{"_index":601,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/SettingsComponent.html":{}}}],["constructor(blocksyncservice",{"_index":3234,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["constructor(contractaddress",{"_index":74,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["constructor(data",{"_index":1212,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["constructor(dialog",{"_index":1226,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["constructor(elementref",{"_index":1427,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["constructor(errordialogservice",{"_index":1243,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["constructor(formbuilder",{"_index":163,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["constructor(httpclient",{"_index":828,"title":{},"body":{"injectables/AuthService.html":{},"injectables/LocationService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["constructor(initialparams",{"_index":481,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["constructor(keystore",{"_index":2621,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["constructor(logger",{"_index":1393,"title":{},"body":{"injectables/LoggingService.html":{}}}],["constructor(loggingservice",{"_index":1304,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"interceptors/LoggingInterceptor.html":{}}}],["constructor(message",{"_index":1315,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["constructor(private",{"_index":798,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/LoggingService.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{}}}],["constructor(route",{"_index":2879,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["constructor(router",{"_index":789,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"components/TransactionDetailsComponent.html":{}}}],["constructor(scanfilter",{"_index":2783,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["constructor(tokenservice",{"_index":2965,"title":{},"body":{"components/TokensComponent.html":{}}}],["constructor(transactionservice",{"_index":992,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["constructor(userservice",{"_index":306,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{}}}],["construed",{"_index":4203,"title":{},"body":{"license.html":{}}}],["consult",{"_index":1518,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consultant",{"_index":1517,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consumer",{"_index":3967,"title":{},"body":{"license.html":{}}}],["contact",{"_index":4300,"title":{},"body":{"license.html":{}}}],["contain",{"_index":1269,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"license.html":{}}}],["contained",{"_index":3514,"title":{},"body":{"index.html":{}}}],["containing",{"_index":4048,"title":{},"body":{"license.html":{}}}],["contains",{"_index":3521,"title":{},"body":{"index.html":{},"license.html":{}}}],["content",{"_index":653,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"license.html":{}}}],["content?.classlist.add('active",{"_index":663,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["content?.classlist.contains('active",{"_index":662,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["content?.classlist.remove('active",{"_index":665,"title":{},"body":{"components/AppComponent.html":{}}}],["content?.classlist.toggle('active",{"_index":1445,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["contents",{"_index":4158,"title":{},"body":{"license.html":{}}}],["context",{"_index":3771,"title":{},"body":{"license.html":{}}}],["continue",{"_index":4012,"title":{},"body":{"license.html":{}}}],["continued",{"_index":3998,"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":{}}}],["contractaddress",{"_index":64,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["contracts",{"_index":1045,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["contractual",{"_index":4062,"title":{},"body":{"license.html":{}}}],["contradict",{"_index":4209,"title":{},"body":{"license.html":{}}}],["contrast",{"_index":3559,"title":{},"body":{"license.html":{}}}],["contributor",{"_index":4143,"title":{},"body":{"license.html":{}}}],["contributor's",{"_index":4145,"title":{},"body":{"license.html":{}}}],["control",{"_index":1179,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"license.html":{}}}],["control.dirty",{"_index":1183,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["control.get('confirmpassword').seterrors",{"_index":1201,"title":{},"body":{"classes/CustomValidator.html":{}}}],["control.get('confirmpassword').value",{"_index":1200,"title":{},"body":{"classes/CustomValidator.html":{}}}],["control.get('password').value",{"_index":1198,"title":{},"body":{"classes/CustomValidator.html":{}}}],["control.invalid",{"_index":1182,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["control.touched",{"_index":1184,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["control.value",{"_index":1203,"title":{},"body":{"classes/CustomValidator.html":{}}}],["controlled",{"_index":4148,"title":{},"body":{"license.html":{}}}],["convenient",{"_index":3734,"title":{},"body":{"license.html":{}}}],["conversion",{"_index":672,"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":3157,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.recipient",{"_index":3163,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.sender",{"_index":3162,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.tovalue",{"_index":3159,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.tx.txhash",{"_index":3155,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.type",{"_index":3156,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversions",{"_index":2324,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["converttoparammap",{"_index":493,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["convey",{"_index":3722,"title":{},"body":{"license.html":{}}}],["conveyance",{"_index":4187,"title":{},"body":{"license.html":{}}}],["conveyed",{"_index":4007,"title":{},"body":{"license.html":{}}}],["conveying",{"_index":3728,"title":{},"body":{"license.html":{}}}],["conveys",{"_index":4061,"title":{},"body":{"license.html":{}}}],["cook",{"_index":1769,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["copied",{"_index":3054,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copies",{"_index":3546,"title":{},"body":{"license.html":{}}}],["copy",{"_index":3543,"title":{},"body":{"license.html":{}}}],["copy.ts",{"_index":3359,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["copyaddress",{"_index":3017,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copyaddress(address",{"_index":3026,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copying",{"_index":3674,"title":{},"body":{"license.html":{}}}],["copyleft",{"_index":3550,"title":{},"body":{"license.html":{}}}],["copyright",{"_index":3534,"title":{},"body":{"license.html":{}}}],["copyrightable",{"_index":3684,"title":{},"body":{"license.html":{}}}],["copyrighted",{"_index":3826,"title":{},"body":{"license.html":{}}}],["copytoclipboard",{"_index":3035,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["copytoclipboard(address",{"_index":3052,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copytoclipboard(text",{"_index":3452,"title":{},"body":{"miscellaneous/functions.html":{}}}],["corn",{"_index":1770,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["correction",{"_index":4252,"title":{},"body":{"license.html":{}}}],["corresponding",{"_index":3781,"title":{},"body":{"license.html":{}}}],["cosmetics",{"_index":1929,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cost",{"_index":3932,"title":{},"body":{"license.html":{}}}],["counsellor",{"_index":1550,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["count",{"_index":112,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/TokenService.html":{}}}],["counterclaim",{"_index":4137,"title":{},"body":{"license.html":{}}}],["counties",{"_index":2300,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["countries",{"_index":3719,"title":{},"body":{"license.html":{}}}],["country",{"_index":1578,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["countrycode",{"_index":2594,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["county",{"_index":1579,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["course",{"_index":4312,"title":{},"body":{"license.html":{}}}],["court",{"_index":4208,"title":{},"body":{"license.html":{}}}],["courts",{"_index":4274,"title":{},"body":{"license.html":{}}}],["covenant",{"_index":4166,"title":{},"body":{"license.html":{}}}],["coverage",{"_index":3347,"title":{"coverage.html":{}},"body":{"coverage.html":{},"license.html":{}}}],["covered",{"_index":3702,"title":{},"body":{"license.html":{}}}],["create",{"_index":252,"title":{},"body":{"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/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":{}}}],["createaccountcomponent",{"_index":251,"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/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":324,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{}}}],["createform",{"_index":1129,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["createformstub",{"_index":1131,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["credentials",{"_index":2816,"title":{},"body":{"components/SettingsComponent.html":{}}}],["credit",{"_index":1940,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["crisps",{"_index":1757,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["criterion",{"_index":3747,"title":{},"body":{"license.html":{}}}],["cross",{"_index":1532,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["csv.ts",{"_index":3362,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["cubic",{"_index":552,"title":{},"body":{"components/AdminComponent.html":{}}}],["cure",{"_index":4097,"title":{},"body":{"license.html":{}}}],["currency",{"_index":2890,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["currentuser",{"_index":2748,"title":{},"body":{"guards/RoleGuard.html":{}}}],["customarily",{"_index":3923,"title":{},"body":{"license.html":{}}}],["customer",{"_index":3928,"title":{},"body":{"license.html":{}}}],["customerrorstatematcher",{"_index":180,"title":{"classes/CustomErrorStateMatcher.html":{}},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"components/OrganizationComponent.html":{},"coverage.html":{}}}],["customevent",{"_index":609,"title":{},"body":{"components/AppComponent.html":{}}}],["customevent('cic_convert",{"_index":1065,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["customevent('cic_transfer",{"_index":1063,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["customvalidator",{"_index":1185,"title":{"classes/CustomValidator.html":{}},"body":{"classes/CustomValidator.html":{},"coverage.html":{}}}],["cyber",{"_index":1540,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["d",{"_index":2805,"title":{},"body":{"components/SettingsComponent.html":{},"license.html":{}}}],["d.getdate()}/${d.getmonth()}/${d.getfullyear",{"_index":2807,"title":{},"body":{"components/SettingsComponent.html":{}}}],["dagaa",{"_index":1773,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dagoreti",{"_index":2193,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dagoretti",{"_index":2235,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["daktari",{"_index":1912,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["damages",{"_index":4255,"title":{},"body":{"license.html":{}}}],["dandora",{"_index":2194,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["danger",{"_index":3664,"title":{},"body":{"license.html":{}}}],["danish",{"_index":1557,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dashboard",{"_index":2862,"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/Signer.html":{},"injectables/TransactionService.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["data.message",{"_index":1220,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["data?.status",{"_index":1221,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["datafile",{"_index":4372,"title":{},"body":{"miscellaneous/variables.html":{}}}],["datasource",{"_index":295,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["datasource.filter",{"_index":3261,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["datatables",{"_index":412,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AppModule.html":{},"modules/TransactionsModule.html":{},"dependencies.html":{}}}],["datatables.net",{"_index":3418,"title":{},"body":{"dependencies.html":{}}}],["datatablesmodule",{"_index":410,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AppModule.html":{},"modules/TransactionsModule.html":{}}}],["date",{"_index":377,"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":3335,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["dawa",{"_index":1913,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["daycare",{"_index":1524,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["days",{"_index":4092,"title":{},"body":{"license.html":{}}}],["debug",{"_index":1414,"title":{},"body":{"injectables/LoggingService.html":{}}}],["december",{"_index":3850,"title":{},"body":{"license.html":{}}}],["decide",{"_index":4235,"title":{},"body":{"license.html":{}}}],["decimals",{"_index":1479,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["declarations",{"_index":385,"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":4054,"title":{},"body":{"license.html":{}}}],["decorators",{"_index":331,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/ErrorDialogComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["deemed",{"_index":3839,"title":{},"body":{"license.html":{}}}],["default",{"_index":176,"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/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":296,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{}}}],["defective",{"_index":4248,"title":{},"body":{"license.html":{}}}],["defenses",{"_index":4206,"title":{},"body":{"license.html":{}}}],["define",{"_index":945,"title":{},"body":{"injectables/AuthService.html":{}}}],["defined",{"_index":75,"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/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":{},"license.html":{}}}],["definition",{"_index":3788,"title":{},"body":{"license.html":{}}}],["definitions",{"_index":3678,"title":{},"body":{"license.html":{}}}],["delay",{"_index":1451,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["delayed",{"_index":2333,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["delimiter",{"_index":3455,"title":{},"body":{"miscellaneous/functions.html":{}}}],["dematerialize",{"_index":1452,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["demo",{"_index":1482,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["denied",{"_index":4014,"title":{},"body":{"license.html":{}}}],["denominated",{"_index":4164,"title":{},"body":{"license.html":{}}}],["deny",{"_index":3628,"title":{},"body":{"license.html":{}}}],["denying",{"_index":3587,"title":{},"body":{"license.html":{}}}],["dependencies",{"_index":384,"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":{}}}],["deprive",{"_index":4173,"title":{},"body":{"license.html":{}}}],["dera",{"_index":1973,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dereva",{"_index":2024,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["description",{"_index":468,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["design",{"_index":1641,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["designated",{"_index":3940,"title":{},"body":{"license.html":{}}}],["designed",{"_index":3555,"title":{},"body":{"license.html":{}}}],["destination",{"_index":3082,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["destinationtoken",{"_index":1111,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["detached",{"_index":2549,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["detail",{"_index":1064,"title":{},"body":{"injectables/BlockSyncService.html":{},"license.html":{}}}],["details",{"_index":575,"title":{},"body":{"components/AdminComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{},"license.html":{}}}],["details'},{'name",{"_index":241,"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/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":409,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{}}}],["details.component.html",{"_index":2878,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["details.component.scss",{"_index":2877,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["details.component.ts",{"_index":2876,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{},"coverage.html":{}}}],["details.component.ts:14",{"_index":2882,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["details.component.ts:15",{"_index":3025,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:16",{"_index":3034,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:17",{"_index":3033,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:18",{"_index":3024,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:26",{"_index":3028,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:27",{"_index":2883,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["details.component.ts:35",{"_index":3031,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:39",{"_index":3030,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:43",{"_index":3032,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:47",{"_index":3029,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:56",{"_index":3027,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.the",{"_index":4309,"title":{},"body":{"license.html":{}}}],["details/account",{"_index":408,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"coverage.html":{}}}],["details/token",{"_index":2875,"title":{},"body":{"components/TokenDetailsComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"coverage.html":{}}}],["details/transaction",{"_index":3013,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"modules/TransactionsModule.html":{},"coverage.html":{}}}],["detergent",{"_index":1971,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["detergents",{"_index":1972,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["determining",{"_index":3978,"title":{},"body":{"license.html":{}}}],["dev",{"_index":3478,"title":{},"body":{"index.html":{}}}],["develop",{"_index":4283,"title":{},"body":{"license.html":{}}}],["developers",{"_index":3605,"title":{},"body":{"license.html":{}}}],["development",{"_index":3476,"title":{},"body":{"index.html":{},"license.html":{}}}],["devices",{"_index":3627,"title":{},"body":{"license.html":{}}}],["dgst",{"_index":2615,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["dhobi",{"_index":1639,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dialog",{"_index":1209,"title":{},"body":{"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{}}}],["dialog'},{'name",{"_index":256,"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/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":1234,"title":{},"body":{"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{}}}],["dialog.component.html",{"_index":1211,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.scss",{"_index":1210,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.ts",{"_index":1208,"title":{},"body":{"components/ErrorDialogComponent.html":{},"coverage.html":{}}}],["dialog.component.ts:10",{"_index":1213,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.ts:12",{"_index":1215,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.service",{"_index":861,"title":{},"body":{"injectables/AuthService.html":{}}}],["dialog.service.ts",{"_index":1223,"title":{},"body":{"injectables/ErrorDialogService.html":{},"coverage.html":{}}}],["dialog.service.ts:12",{"_index":1231,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog.service.ts:15",{"_index":1230,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog.service.ts:9",{"_index":1228,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog/error",{"_index":1207,"title":{},"body":{"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{},"coverage.html":{}}}],["dialogref",{"_index":1236,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialogref.afterclosed().subscribe",{"_index":1239,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["diani",{"_index":2257,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["diesel",{"_index":2068,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["differ",{"_index":4226,"title":{},"body":{"license.html":{}}}],["different",{"_index":3942,"title":{},"body":{"license.html":{}}}],["differently",{"_index":4041,"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/Signer.html":{}}}],["direction",{"_index":3825,"title":{},"body":{"license.html":{}}}],["directions",{"_index":3948,"title":{},"body":{"license.html":{}}}],["directive",{"_index":237,"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/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":280,"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/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":3487,"title":{},"body":{"index.html":{}}}],["directly",{"_index":3707,"title":{},"body":{"license.html":{}}}],["directory",{"_index":1164,"title":{},"body":{"components/CreateAccountComponent.html":{},"index.html":{}}}],["directoryentry",{"_index":1148,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["disableconsolelogging",{"_index":713,"title":{},"body":{"modules/AppModule.html":{}}}],["disapprove",{"_index":573,"title":{},"body":{"components/AdminComponent.html":{}}}],["disapproveaction",{"_index":509,"title":{},"body":{"components/AdminComponent.html":{}}}],["disapproveaction(action",{"_index":517,"title":{},"body":{"components/AdminComponent.html":{}}}],["disburse",{"_index":1457,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["disbursement",{"_index":2592,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["disbursements",{"_index":2325,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["disclaim",{"_index":3861,"title":{},"body":{"license.html":{}}}],["disclaimer",{"_index":4238,"title":{},"body":{"license.html":{}}}],["disclaiming",{"_index":4038,"title":{},"body":{"license.html":{}}}],["discriminatory",{"_index":4191,"title":{},"body":{"license.html":{}}}],["dispensary",{"_index":1906,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["display",{"_index":3896,"title":{},"body":{"license.html":{}}}],["displayed",{"_index":4047,"title":{},"body":{"license.html":{}}}],["displayedcolumns",{"_index":297,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{}}}],["displays",{"_index":3730,"title":{},"body":{"license.html":{}}}],["dist",{"_index":3501,"title":{},"body":{"index.html":{}}}],["distinguishing",{"_index":4228,"title":{},"body":{"license.html":{}}}],["distribute",{"_index":3544,"title":{},"body":{"license.html":{}}}],["distributed",{"_index":4296,"title":{},"body":{"license.html":{}}}],["distributing",{"_index":4195,"title":{},"body":{"license.html":{}}}],["distribution",{"_index":3675,"title":{},"body":{"license.html":{}}}],["divone",{"_index":774,"title":{},"body":{"components/AuthComponent.html":{}}}],["divtwo",{"_index":776,"title":{},"body":{"components/AuthComponent.html":{}}}],["doctor",{"_index":1911,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["document",{"_index":3547,"title":{},"body":{"license.html":{}}}],["document.getelementbyid('content",{"_index":654,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["document.getelementbyid('one",{"_index":775,"title":{},"body":{"components/AuthComponent.html":{}}}],["document.getelementbyid('one').style.display",{"_index":949,"title":{},"body":{"injectables/AuthService.html":{}}}],["document.getelementbyid('sidebar",{"_index":652,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["document.getelementbyid('sidebarcollapse",{"_index":656,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["document.getelementbyid('state').innerhtml",{"_index":872,"title":{},"body":{"injectables/AuthService.html":{}}}],["document.getelementbyid('two",{"_index":777,"title":{},"body":{"components/AuthComponent.html":{}}}],["document.getelementbyid('two').style.display",{"_index":950,"title":{},"body":{"injectables/AuthService.html":{}}}],["document.getelementbyid(this.iconid",{"_index":2714,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["document.getelementbyid(this.id",{"_index":2712,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["documentation",{"_index":3348,"title":{},"body":{"coverage.html":{}}}],["documented",{"_index":4024,"title":{},"body":{"license.html":{}}}],["doe",{"_index":3298,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["doesn\\'t",{"_index":961,"title":{},"body":{"injectables/AuthService.html":{}}}],["dofilter",{"_index":301,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["dofilter(value",{"_index":309,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["doing",{"_index":2531,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["dom",{"_index":128,"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/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":3648,"title":{},"body":{"license.html":{}}}],["domsanitizer",{"_index":2776,"title":{},"body":{"pipes/SafePipe.html":{}}}],["don't",{"_index":3496,"title":{},"body":{"index.html":{}}}],["donald",{"_index":3312,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["donholm",{"_index":2192,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donhom",{"_index":2196,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donor",{"_index":1573,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donut",{"_index":1774,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["doti",{"_index":2112,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["double",{"_index":471,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["doubtful",{"_index":3979,"title":{},"body":{"license.html":{}}}],["dough",{"_index":1775,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["downloadcsv",{"_index":302,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["downstream",{"_index":4116,"title":{},"body":{"license.html":{}}}],["driver",{"_index":2023,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dt",{"_index":3420,"title":{},"body":{"dependencies.html":{}}}],["duka",{"_index":1963,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["durable",{"_index":3922,"title":{},"body":{"license.html":{}}}],["duration",{"_index":3056,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["dwelling",{"_index":3977,"title":{},"body":{"license.html":{}}}],["dynamic",{"_index":3402,"title":{},"body":{"dependencies.html":{}}}],["dynamically",{"_index":3791,"title":{},"body":{"license.html":{}}}],["dzivani",{"_index":2114,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dzovuni",{"_index":2115,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dzugwe",{"_index":2113,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["e",{"_index":615,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["e.matches",{"_index":659,"title":{},"body":{"components/AppComponent.html":{}}}],["e2e",{"_index":3512,"title":{},"body":{"index.html":{}}}],["each",{"_index":3687,"title":{},"body":{"license.html":{}}}],["earlier",{"_index":3700,"title":{},"body":{"license.html":{}}}],["east",{"_index":2229,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["economics",{"_index":941,"title":{},"body":{"injectables/AuthService.html":{},"components/FooterComponent.html":{},"license.html":{}}}],["education",{"_index":1507,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["educator",{"_index":1548,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["effect",{"_index":4271,"title":{},"body":{"license.html":{}}}],["effected",{"_index":3859,"title":{},"body":{"license.html":{}}}],["effective",{"_index":3840,"title":{},"body":{"license.html":{}}}],["effectively",{"_index":3666,"title":{},"body":{"license.html":{}}}],["efforts",{"_index":4130,"title":{},"body":{"license.html":{}}}],["egg",{"_index":1865,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["eimu",{"_index":1529,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["elapsedtime",{"_index":1378,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["elder",{"_index":1575,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["eldoret",{"_index":2307,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electrian",{"_index":1628,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electricals",{"_index":1958,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electrician",{"_index":1718,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electronic",{"_index":4301,"title":{},"body":{"license.html":{}}}],["electronics",{"_index":1715,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["element",{"_index":236,"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/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":782,"title":{},"body":{"components/AuthComponent.html":{}}}],["elementref",{"_index":1428,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["elim",{"_index":1528,"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":2227,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["embakassi",{"_index":2226,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["embodied",{"_index":3917,"title":{},"body":{"license.html":{}}}],["emergency",{"_index":1933,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["employer",{"_index":4315,"title":{},"body":{"license.html":{}}}],["enable",{"_index":3768,"title":{},"body":{"license.html":{}}}],["enables",{"_index":3724,"title":{},"body":{"license.html":{}}}],["end",{"_index":3511,"title":{},"body":{"index.html":{},"license.html":{}}}],["endpoint",{"_index":633,"title":{},"body":{"components/AppComponent.html":{}}}],["enforce",{"_index":4165,"title":{},"body":{"license.html":{}}}],["enforcing",{"_index":3864,"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/Signer.html":{},"classes/W3.html":{}}}],["engineer",{"_index":1675,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["enroller",{"_index":1456,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["ensure",{"_index":2338,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["enter",{"_index":785,"title":{},"body":{"components/AuthComponent.html":{}}}],["entered",{"_index":4200,"title":{},"body":{"license.html":{}}}],["entire",{"_index":3887,"title":{},"body":{"license.html":{}}}],["entirely",{"_index":4217,"title":{},"body":{"license.html":{}}}],["entity",{"_index":4120,"title":{},"body":{"license.html":{}}}],["entry",{"_index":1165,"title":{},"body":{"components/CreateAccountComponent.html":{},"classes/TokenRegistry.html":{}}}],["entry(serial",{"_index":2917,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["env",{"_index":1385,"title":{},"body":{"injectables/LoggingService.html":{},"index.html":{}}}],["env.example",{"_index":3516,"title":{},"body":{"index.html":{}}}],["env.ts",{"_index":3494,"title":{},"body":{"index.html":{}}}],["envelope",{"_index":3126,"title":{},"body":{"injectables/TransactionService.html":{}}}],["envelope.fromjson(json.stringify(account)).unwrap().m.data",{"_index":3170,"title":{},"body":{"injectables/TransactionService.html":{}}}],["environment",{"_index":94,"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":878,"title":{},"body":{"injectables/AuthService.html":{}}}],["environment.loggingurl}/api/logs",{"_index":712,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.loglevel",{"_index":708,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.prod.ts",{"_index":3523,"title":{},"body":{"index.html":{}}}],["environment.registryaddress",{"_index":2734,"title":{},"body":{"injectables/RegistryService.html":{}}}],["environment.serverloglevel",{"_index":710,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.ts",{"_index":3522,"title":{},"body":{"index.html":{}}}],["environment.web3provider",{"_index":1031,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["equivalent",{"_index":3814,"title":{},"body":{"license.html":{}}}],["err",{"_index":965,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["err.error",{"_index":1257,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.error.message",{"_index":1262,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.message",{"_index":967,"title":{},"body":{"injectables/AuthService.html":{}}}],["err.status",{"_index":1273,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.statustext",{"_index":968,"title":{},"body":{"injectables/AuthService.html":{}}}],["erroneously",{"_index":3626,"title":{},"body":{"license.html":{}}}],["error",{"_index":255,"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/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.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('login",{"_index":891,"title":{},"body":{"injectables/AuthService.html":{}}}],["error('the",{"_index":955,"title":{},"body":{"injectables/AuthService.html":{}}}],["error(`${res.statustext",{"_index":979,"title":{},"body":{"injectables/AuthService.html":{}}}],["error(message",{"_index":1323,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["error.message",{"_index":1321,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.stack",{"_index":1326,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.status",{"_index":931,"title":{},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.tostring",{"_index":1322,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errordialogcomponent",{"_index":254,"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/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":604,"title":{"injectables/ErrorDialogService.html":{}},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"coverage.html":{}}}],["errorevent",{"_index":1258,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["errorhandler",{"_index":689,"title":{},"body":{"modules/AppModule.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errorinterceptor",{"_index":681,"title":{"interceptors/ErrorInterceptor.html":{}},"body":{"modules/AppModule.html":{},"interceptors/ErrorInterceptor.html":{},"coverage.html":{},"overview.html":{}}}],["errormessage",{"_index":1256,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["errorstatematcher",{"_index":1171,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["errortracestring",{"_index":1310,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errortracestring.includes('/src/app",{"_index":1341,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errortracestring.includes(whitelistsentence",{"_index":1343,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["essential",{"_index":3772,"title":{},"body":{"license.html":{}}}],["eth",{"_index":2606,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ethereum",{"_index":3337,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["ethers",{"_index":3131,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{}}}],["ethiopia",{"_index":2607,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["even",{"_index":2339,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["event",{"_index":607,"title":{},"body":{"components/AppComponent.html":{},"interceptors/LoggingInterceptor.html":{},"license.html":{}}}],["event.detail.tx",{"_index":668,"title":{},"body":{"components/AppComponent.html":{}}}],["eventemitter",{"_index":2936,"title":{},"body":{"injectables/TokenService.html":{}}}],["everyone",{"_index":3541,"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":3697,"title":{},"body":{"license.html":{}}}],["example",{"_index":3594,"title":{},"body":{"license.html":{}}}],["except",{"_index":3712,"title":{},"body":{"license.html":{}}}],["exceptions",{"_index":4028,"title":{},"body":{"license.html":{}}}],["exchange",{"_index":3058,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["excluded",{"_index":3966,"title":{},"body":{"license.html":{}}}],["excluding",{"_index":4204,"title":{},"body":{"license.html":{}}}],["exclusion",{"_index":4292,"title":{},"body":{"license.html":{}}}],["exclusive",{"_index":4155,"title":{},"body":{"license.html":{}}}],["exclusively",{"_index":3820,"title":{},"body":{"license.html":{}}}],["excuse",{"_index":4210,"title":{},"body":{"license.html":{}}}],["executable",{"_index":3759,"title":{},"body":{"license.html":{}}}],["execute",{"_index":3509,"title":{},"body":{"index.html":{},"license.html":{}}}],["executing",{"_index":3713,"title":{},"body":{"license.html":{}}}],["exercise",{"_index":4131,"title":{},"body":{"license.html":{}}}],["exercising",{"_index":3860,"title":{},"body":{"license.html":{}}}],["expand",{"_index":528,"title":{},"body":{"components/AdminComponent.html":{}}}],["expandcollapse",{"_index":510,"title":{},"body":{"components/AdminComponent.html":{}}}],["expandcollapse(row",{"_index":521,"title":{},"body":{"components/AdminComponent.html":{}}}],["expected",{"_index":3988,"title":{},"body":{"license.html":{}}}],["expects",{"_index":3987,"title":{},"body":{"license.html":{}}}],["expert",{"_index":1543,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["explains",{"_index":3616,"title":{},"body":{"license.html":{}}}],["explicitly",{"_index":3807,"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/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/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":340,"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":3453,"title":{},"body":{"miscellaneous/functions.html":{}}}],["exportcsv(this.accounts",{"_index":370,"title":{},"body":{"components/AccountsComponent.html":{}}}],["exportcsv(this.actions",{"_index":568,"title":{},"body":{"components/AdminComponent.html":{}}}],["exportcsv(this.tokens",{"_index":2983,"title":{},"body":{"components/TokensComponent.html":{}}}],["exportcsv(this.transactions",{"_index":3265,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["exportcsv(this.trustedusers",{"_index":2811,"title":{},"body":{"components/SettingsComponent.html":{}}}],["exports",{"_index":388,"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":{},"overview.html":{}}}],["express",{"_index":4161,"title":{},"body":{"license.html":{}}}],["expressed",{"_index":4240,"title":{},"body":{"license.html":{}}}],["expressly",{"_index":4076,"title":{},"body":{"license.html":{}}}],["extend",{"_index":3651,"title":{},"body":{"license.html":{}}}],["extended",{"_index":4190,"title":{},"body":{"license.html":{}}}],["extends",{"_index":1299,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["extensions",{"_index":3900,"title":{},"body":{"license.html":{}}}],["extent",{"_index":3733,"title":{},"body":{"license.html":{}}}],["external",{"_index":3340,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["eye",{"_index":2719,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["f",{"_index":4059,"title":{},"body":{"license.html":{}}}],["facilitator",{"_index":1559,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["facilities",{"_index":3821,"title":{},"body":{"license.html":{}}}],["facing",{"_index":1285,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["fagio",{"_index":1592,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["failed",{"_index":920,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/LoggingInterceptor.html":{}}}],["failedpinattempts",{"_index":3303,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["fails",{"_index":4089,"title":{},"body":{"license.html":{}}}],["failure",{"_index":4265,"title":{},"body":{"license.html":{}}}],["fair",{"_index":3813,"title":{},"body":{"license.html":{}}}],["faith",{"_index":1562,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["false",{"_index":177,"title":{},"body":{"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":3972,"title":{},"body":{"license.html":{}}}],["family/surname",{"_index":1163,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["farm",{"_index":1610,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["farmer",{"_index":1611,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["farming",{"_index":1609,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fashion",{"_index":3694,"title":{},"body":{"license.html":{}}}],["favor",{"_index":3982,"title":{},"body":{"license.html":{}}}],["feature",{"_index":3489,"title":{},"body":{"index.html":{},"license.html":{}}}],["fee",{"_index":3598,"title":{},"body":{"license.html":{}}}],["feels",{"_index":346,"title":{},"body":{"components/AccountsComponent.html":{}}}],["female",{"_index":2329,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["fetch(environment.publickeysurl",{"_index":975,"title":{},"body":{"injectables/AuthService.html":{}}}],["fetcher",{"_index":987,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["fetcher(settings",{"_index":1000,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["fia",{"_index":3322,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["field",{"_index":425,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.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/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/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":{},"index.html":{},"license.html":{}}}],["filegetter",{"_index":2723,"title":{},"body":{"injectables/RegistryService.html":{}}}],["filename",{"_index":3454,"title":{},"body":{"miscellaneous/functions.html":{}}}],["files",{"_index":3483,"title":{},"body":{"index.html":{},"license.html":{}}}],["filter",{"_index":373,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["filter_rounds",{"_index":1071,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["filteraccounts",{"_index":303,"title":{},"body":{"components/AccountsComponent.html":{}}}],["filterrounds",{"_index":1095,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["filters",{"_index":1070,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["filtertransactions",{"_index":3231,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["finalize",{"_index":1372,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["finally",{"_index":3153,"title":{},"body":{"injectables/TransactionService.html":{},"license.html":{}}}],["finance",{"_index":1941,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["find",{"_index":2517,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["fingerprint",{"_index":2618,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["fire",{"_index":2055,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["firewood",{"_index":2056,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["firm",{"_index":1744,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["first",{"_index":341,"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":1784,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fitness",{"_index":4243,"title":{},"body":{"license.html":{}}}],["fix",{"_index":2667,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["fixed",{"_index":3921,"title":{},"body":{"license.html":{}}}],["flag",{"_index":2644,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["flow",{"_index":3797,"title":{},"body":{"license.html":{}}}],["flowers",{"_index":1998,"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":3677,"title":{},"body":{"license.html":{}}}],["following",{"_index":4159,"title":{},"body":{"license.html":{}}}],["foo",{"_index":1490,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["food",{"_index":1746,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["footballer",{"_index":1695,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["footer",{"_index":1288,"title":{},"body":{"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{}}}],["footer'},{'name",{"_index":258,"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/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":1290,"title":{},"body":{"components/FooterComponent.html":{}}}],["footer.component.scss",{"_index":1289,"title":{},"body":{"components/FooterComponent.html":{}}}],["footercomponent",{"_index":257,"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/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":259,"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/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":3858,"title":{},"body":{"license.html":{}}}],["forbidden",{"_index":1281,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["force",{"_index":3817,"title":{},"body":{"license.html":{}}}],["form",{"_index":1175,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"license.html":{}}}],["form.submitted",{"_index":1181,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["format",{"_index":4022,"title":{},"body":{"license.html":{}}}],["formbuilder",{"_index":164,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["formcontrol",{"_index":1174,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["formgroup",{"_index":173,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["formgroupdirective",{"_index":1176,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["forms",{"_index":3912,"title":{},"body":{"license.html":{}}}],["found",{"_index":225,"title":{},"body":{"components/AccountSearchComponent.html":{},"index.html":{},"license.html":{}}}],["foundation",{"_index":3538,"title":{},"body":{"license.html":{}}}],["free",{"_index":3536,"title":{},"body":{"license.html":{}}}],["freedom",{"_index":3558,"title":{},"body":{"license.html":{}}}],["freedoms",{"_index":3601,"title":{},"body":{"license.html":{}}}],["freelance",{"_index":1713,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fromhex",{"_index":3133,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromhex(methodsignature",{"_index":3186,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromhex(strip0x(transferauthaddress",{"_index":3197,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromvalue",{"_index":1112,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["fruit",{"_index":1782,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fruits",{"_index":1783,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fua",{"_index":1664,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuata",{"_index":2223,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuel",{"_index":2049,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuel/energy",{"_index":2041,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fulfilling",{"_index":3843,"title":{},"body":{"license.html":{}}}],["full",{"_index":454,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{},"license.html":{}}}],["function",{"_index":2346,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"coverage.html":{}}}],["functioning",{"_index":3999,"title":{},"body":{"license.html":{}}}],["functions",{"_index":2376,"title":{"miscellaneous/functions.html":{}},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/functions.html":{}}}],["fundamentally",{"_index":3632,"title":{},"body":{"license.html":{}}}],["fundi",{"_index":1643,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["furniture",{"_index":2007,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["further",{"_index":3524,"title":{},"body":{"index.html":{},"license.html":{}}}],["future",{"_index":3653,"title":{},"body":{"license.html":{}}}],["g",{"_index":3474,"title":{},"body":{"index.html":{}}}],["g.e",{"_index":2277,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gandini",{"_index":2130,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["garage",{"_index":1681,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["garbage",{"_index":1591,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gardener",{"_index":1597,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gari",{"_index":2038,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gas",{"_index":2060,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gatina",{"_index":2204,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ge",{"_index":2278,"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":1130,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["general",{"_index":1337,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["generalized",{"_index":1313,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["generally",{"_index":3786,"title":{},"body":{"license.html":{}}}],["generate",{"_index":3486,"title":{},"body":{"index.html":{},"license.html":{}}}],["generated",{"_index":3469,"title":{},"body":{"index.html":{}}}],["ger",{"_index":2608,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["germany",{"_index":2609,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["getaccountinfo",{"_index":3092,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaccountinfo(account",{"_index":3103,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaccounttypes",{"_index":2366,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getactionbyid",{"_index":2351,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{}}}],["getactionbyid(id",{"_index":3328,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getactions",{"_index":2349,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getaddresssearchformstub",{"_index":191,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["getaddresstransactions",{"_index":3093,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaddresstransactions(address",{"_index":3105,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getalltransactions",{"_index":3094,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["getalltransactions(offset",{"_index":3107,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["getareanamebylocation",{"_index":1353,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getareanamebylocation(location",{"_index":1358,"title":{},"body":{"injectables/LocationService.html":{}}}],["getareanames",{"_index":1354,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getareatypebyarea",{"_index":1355,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getareatypebyarea(area",{"_index":1361,"title":{},"body":{"injectables/LocationService.html":{}}}],["getareatypes",{"_index":1356,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getbysymbol",{"_index":2957,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["getbysymbol(symbol",{"_index":2958,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["getcategories",{"_index":2358,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getcategorybyproduct",{"_index":2360,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getchallenge",{"_index":817,"title":{},"body":{"injectables/AuthService.html":{}}}],["getcreateformstub",{"_index":1142,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["getencryptkeys",{"_index":2433,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getfingerprint",{"_index":2434,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getgenders",{"_index":2370,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getkeyformstub",{"_index":749,"title":{},"body":{"components/AuthComponent.html":{}}}],["getkeyid",{"_index":2435,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getkeyid(key",{"_index":2458,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getkeysforid",{"_index":2436,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getkeysforid(keyid",{"_index":2460,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getnamesearchformstub",{"_index":187,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["getorganizationformstub",{"_index":2589,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["getphonesearchformstub",{"_index":189,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["getprivatekey",{"_index":818,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeyforid",{"_index":2437,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeyforid(keyid",{"_index":2464,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeyid",{"_index":2438,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeys",{"_index":2439,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforid",{"_index":2440,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforid(keyid",{"_index":2468,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforsubkeyid",{"_index":2441,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforsubkeyid(subkeyid",{"_index":2470,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeys",{"_index":819,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeysforaddress",{"_index":2442,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeysforaddress(address",{"_index":2474,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getregistry",{"_index":2725,"title":{},"body":{"injectables/RegistryService.html":{}}}],["getter.ts",{"_index":3366,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["getting",{"_index":3464,"title":{"index.html":{},"license.html":{}},"body":{}}],["gettokenbalance",{"_index":2929,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenbalance(address",{"_index":2931,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenbysymbol",{"_index":2356,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"injectables/TokenService.html":{}}}],["gettokenbysymbol(symbol",{"_index":2933,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokens",{"_index":2354,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"injectables/TokenService.html":{}}}],["gettransactiontypes",{"_index":2368,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["gettrustedactivekeys",{"_index":2443,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["gettrustedkeys",{"_index":2444,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["gettrustedusers",{"_index":820,"title":{},"body":{"injectables/AuthService.html":{}}}],["getuser",{"_index":3294,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuser(userkey",{"_index":3330,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuserbyid",{"_index":3295,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuserbyid(id",{"_index":3333,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getweb3",{"_index":2726,"title":{},"body":{"injectables/RegistryService.html":{}}}],["getwithtoken",{"_index":821,"title":{},"body":{"injectables/AuthService.html":{}}}],["giftable",{"_index":1473,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["githeri",{"_index":1785,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["githurai",{"_index":2230,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["give",{"_index":3880,"title":{},"body":{"license.html":{}}}],["given",{"_index":1160,"title":{},"body":{"components/CreateAccountComponent.html":{},"license.html":{}}}],["givenname",{"_index":1146,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["gives",{"_index":3893,"title":{},"body":{"license.html":{}}}],["giving",{"_index":3610,"title":{},"body":{"license.html":{}}}],["globalerrorhandler",{"_index":682,"title":{"injectables/GlobalErrorHandler.html":{}},"body":{"modules/AppModule.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{},"overview.html":{}}}],["gnu",{"_index":3530,"title":{},"body":{"license.html":{}}}],["go",{"_index":770,"title":{},"body":{"components/AuthComponent.html":{},"index.html":{}}}],["goats",{"_index":1790,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gona",{"_index":2128,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["good",{"_index":1869,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["governed",{"_index":4031,"title":{},"body":{"license.html":{}}}],["government",{"_index":1574,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gpl",{"_index":3606,"title":{},"body":{"license.html":{}}}],["grant",{"_index":4055,"title":{},"body":{"license.html":{}}}],["granted",{"_index":3802,"title":{},"body":{"license.html":{}}}],["grants",{"_index":4110,"title":{},"body":{"license.html":{}}}],["graph",{"_index":4328,"title":{},"body":{"modules.html":{}}}],["grassroots",{"_index":940,"title":{},"body":{"injectables/AuthService.html":{},"components/FooterComponent.html":{},"license.html":{}}}],["gratis",{"_index":3597,"title":{},"body":{"license.html":{}}}],["greatest",{"_index":4284,"title":{},"body":{"license.html":{}}}],["grocer",{"_index":1787,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["groceries",{"_index":3310,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["grocery",{"_index":1786,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["groundnuts",{"_index":1776,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["group",{"_index":1936,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["grz",{"_index":1475,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["guarantee",{"_index":3561,"title":{},"body":{"license.html":{}}}],["guard",{"_index":786,"title":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["guards",{"_index":787,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"overview.html":{}}}],["gui",{"_index":4313,"title":{},"body":{"license.html":{}}}],["guitarist",{"_index":1729,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["guro",{"_index":2129,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hair",{"_index":1670,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["halt",{"_index":643,"title":{},"body":{"components/AppComponent.html":{}}}],["handle",{"_index":768,"title":{},"body":{"components/AuthComponent.html":{},"interceptors/ErrorInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["handled",{"_index":2374,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["handleerror",{"_index":1301,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handleerror(error",{"_index":1306,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["handler",{"_index":347,"title":{},"body":{"components/AccountsComponent.html":{},"injectables/AuthService.html":{}}}],["handler.ts",{"_index":1298,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{}}}],["handler.ts:18",{"_index":1305,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:27",{"_index":1307,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:47",{"_index":1312,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:62",{"_index":1309,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:8",{"_index":1351,"title":{},"body":{"classes/HttpError.html":{}}}],["handleroute",{"_index":2347,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["hanje",{"_index":2116,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["happened",{"_index":1340,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["hardware",{"_index":1970,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hash",{"_index":3070,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["hash.tostring('hex').substring(0",{"_index":3180,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction",{"_index":3175,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction.digest",{"_index":3178,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction.update('createrequest(address,address,address,uint256",{"_index":3177,"title":{},"body":{"injectables/TransactionService.html":{}}}],["haveaccount",{"_index":70,"title":{},"body":{"classes/AccountIndex.html":{}}}],["haveaccount(address",{"_index":87,"title":{},"body":{"classes/AccountIndex.html":{}}}],["having",{"_index":3819,"title":{},"body":{"license.html":{}}}],["hawinga",{"_index":2291,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hawker",{"_index":1645,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hawking",{"_index":1644,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hazina",{"_index":2076,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headers",{"_index":2331,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["headmaster",{"_index":1547,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headmistress",{"_index":1538,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headteacher",{"_index":1539,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["health",{"_index":1904,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["heath",{"_index":1920,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["help",{"_index":1649,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["helper",{"_index":2420,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["hera",{"_index":3316,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["herbalist",{"_index":1915,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hereafter",{"_index":4151,"title":{},"body":{"license.html":{}}}],["hi",{"_index":1014,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["hidden",{"_index":546,"title":{},"body":{"components/AdminComponent.html":{}}}],["hoba",{"_index":905,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaparsechallengeheader",{"_index":854,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaparsechallengeheader(authheader",{"_index":916,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaresponseencoded",{"_index":845,"title":{},"body":{"injectables/AuthService.html":{}}}],["holder",{"_index":4083,"title":{},"body":{"license.html":{}}}],["holders",{"_index":4037,"title":{},"body":{"license.html":{}}}],["holel",{"_index":1778,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["homabay",{"_index":2295,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["homaboy",{"_index":2296,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["home",{"_index":230,"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":{}}}],["hope",{"_index":4297,"title":{},"body":{"license.html":{}}}],["hospital",{"_index":1914,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hostlistener",{"_index":624,"title":{},"body":{"components/AppComponent.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["hostlistener('click",{"_index":2763,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["hostlistener('window:cic_convert",{"_index":670,"title":{},"body":{"components/AppComponent.html":{}}}],["hostlistener('window:cic_transfer",{"_index":666,"title":{},"body":{"components/AppComponent.html":{}}}],["hostlisteners",{"_index":598,"title":{},"body":{"components/AppComponent.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["hosts",{"_index":3950,"title":{},"body":{"license.html":{}}}],["hotel",{"_index":1777,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hoteli",{"_index":1779,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["house",{"_index":1648,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["housegirl",{"_index":1650,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["househelp",{"_index":1646,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["household",{"_index":3973,"title":{},"body":{"license.html":{}}}],["hsehelp",{"_index":1647,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["html",{"_index":235,"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/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":651,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["http",{"_index":1314,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["http://localhost:4200",{"_index":3480,"title":{},"body":{"index.html":{}}}],["http://localhost:8000",{"_index":4367,"title":{},"body":{"miscellaneous/variables.html":{}}}],["http://localhost:8000/keys.asc",{"_index":4368,"title":{},"body":{"miscellaneous/variables.html":{}}}],["http_interceptors",{"_index":694,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["httpclient",{"_index":829,"title":{},"body":{"injectables/AuthService.html":{},"injectables/LocationService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["httpclientmodule",{"_index":695,"title":{},"body":{"modules/AppModule.html":{}}}],["httpconfiginterceptor",{"_index":683,"title":{"interceptors/HttpConfigInterceptor.html":{}},"body":{"modules/AppModule.html":{},"interceptors/HttpConfigInterceptor.html":{},"coverage.html":{},"overview.html":{}}}],["httperror",{"_index":862,"title":{"classes/HttpError.html":{}},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{}}}],["httperror(xhr.statustext",{"_index":906,"title":{},"body":{"injectables/AuthService.html":{}}}],["httperrorresponse",{"_index":1252,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["httperrorresponse).status",{"_index":1333,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["httpevent",{"_index":1250,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpgetter",{"_index":2730,"title":{},"body":{"injectables/RegistryService.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["httphandler",{"_index":1247,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpinterceptor",{"_index":1251,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httprequest",{"_index":1246,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpresponse",{"_index":1371,"title":{},"body":{"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["https://blockexplorer.bloxberg.org/address",{"_index":3038,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["https://cache.dev.grassrootseconomics.net",{"_index":4356,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://dashboard.sarafu.network",{"_index":2676,"title":{},"body":{"components/PagesComponent.html":{}}}],["https://dev.grassrootseconomics.net/.well",{"_index":4353,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://fsf.org",{"_index":3540,"title":{},"body":{"license.html":{}}}],["https://meta.dev.grassrootseconomics.net",{"_index":4351,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://ussd.dev.grassrootseconomics.net",{"_index":4361,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://www.gnu.org/licenses",{"_index":4299,"title":{},"body":{"license.html":{}}}],["https://www.gnu.org/licenses/why",{"_index":4324,"title":{},"body":{"license.html":{}}}],["huruma",{"_index":2197,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hustler",{"_index":1665,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hypothetical",{"_index":4310,"title":{},"body":{"license.html":{}}}],["icon",{"_index":2713,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["icon.classlist.add('fa",{"_index":2720,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["icon.classlist.remove('fa",{"_index":2718,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["iconid",{"_index":2706,"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":4179,"title":{},"body":{"license.html":{}}}],["identifier",{"_index":2916,"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":2381,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["idnumber",{"_index":1145,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["iframes",{"_index":2678,"title":{},"body":{"components/PagesComponent.html":{}}}],["ignore",{"_index":2716,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["imam",{"_index":1564,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["immagration",{"_index":1586,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["immigration",{"_index":1587,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["implement",{"_index":3769,"title":{},"body":{"license.html":{}}}],["implementation",{"_index":3770,"title":{},"body":{"license.html":{}}}],["implements",{"_index":133,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.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/OrganizationComponent.html":{},"classes/PGPSigner.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":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["implied",{"_index":4205,"title":{},"body":{"license.html":{}}}],["import",{"_index":93,"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/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/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":721,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["import('@pages/accounts/accounts.module').then(m",{"_index":2696,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/admin/admin.module').then(m",{"_index":2700,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/pages.module').then(m",{"_index":723,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["import('@pages/settings/settings.module').then(m",{"_index":2694,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/tokens/tokens.module').then(m",{"_index":2698,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/transactions/transactions.module').then(m",{"_index":2692,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["imported",{"_index":2521,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["imported.keys",{"_index":2523,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importing",{"_index":4142,"title":{},"body":{"license.html":{}}}],["importkeypair",{"_index":2445,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importkeypair(publickey",{"_index":2478,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importprivatekey",{"_index":2446,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importprivatekey(privatekey",{"_index":2481,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importpublickey",{"_index":2447,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importpublickey(publickey",{"_index":2483,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["imports",{"_index":399,"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":{}}}],["impose",{"_index":4064,"title":{},"body":{"license.html":{}}}],["imposed",{"_index":4207,"title":{},"body":{"license.html":{}}}],["inability",{"_index":4259,"title":{},"body":{"license.html":{}}}],["inaccurate",{"_index":4262,"title":{},"body":{"license.html":{}}}],["inc",{"_index":3539,"title":{},"body":{"license.html":{}}}],["incidental",{"_index":4256,"title":{},"body":{"license.html":{}}}],["include",{"_index":3760,"title":{},"body":{"license.html":{}}}],["included",{"_index":3762,"title":{},"body":{"license.html":{}}}],["includes",{"_index":3717,"title":{},"body":{"license.html":{}}}],["including",{"_index":3782,"title":{},"body":{"license.html":{}}}],["inclusion",{"_index":3910,"title":{},"body":{"license.html":{}}}],["inclusive",{"_index":2889,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["income",{"_index":2894,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["incompatible",{"_index":3633,"title":{},"body":{"license.html":{}}}],["incorporating",{"_index":4316,"title":{},"body":{"license.html":{}}}],["incorporation",{"_index":3976,"title":{},"body":{"license.html":{}}}],["incorrect",{"_index":946,"title":{},"body":{"injectables/AuthService.html":{}}}],["indemnification",{"_index":4060,"title":{},"body":{"license.html":{}}}],["independent",{"_index":3898,"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/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/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/typealiases.html":{},"miscellaneous/variables.html":{}}}],["indicate",{"_index":4113,"title":{},"body":{"license.html":{}}}],["indicating",{"_index":4074,"title":{},"body":{"license.html":{}}}],["individual",{"_index":3908,"title":{},"body":{"license.html":{}}}],["individuals",{"_index":3640,"title":{},"body":{"license.html":{}}}],["industrial",{"_index":2206,"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/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/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":3958,"title":{},"body":{"license.html":{}}}],["information",{"_index":1471,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["infringe",{"_index":4111,"title":{},"body":{"license.html":{}}}],["infringed",{"_index":4140,"title":{},"body":{"license.html":{}}}],["infringement",{"_index":3710,"title":{},"body":{"license.html":{}}}],["init",{"_index":822,"title":{},"body":{"injectables/AuthService.html":{}}}],["initialparams",{"_index":484,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["initiate",{"_index":4134,"title":{},"body":{"license.html":{}}}],["inject",{"_index":1216,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["inject(mat_dialog_data",{"_index":1214,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["injectable",{"_index":796,"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":812,"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":2710,"title":{},"body":{"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/TransactionDetailsComponent.html":{},"miscellaneous/functions.html":{}}}],["input('routerlink",{"_index":2761,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["inputs",{"_index":2705,"title":{},"body":{"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/TransactionDetailsComponent.html":{}}}],["inside",{"_index":3629,"title":{},"body":{"license.html":{}}}],["install",{"_index":3473,"title":{},"body":{"index.html":{},"license.html":{}}}],["installation",{"_index":3994,"title":{},"body":{"license.html":{}}}],["installed",{"_index":4010,"title":{},"body":{"license.html":{}}}],["instanceof",{"_index":930,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{}}}],["instead",{"_index":4322,"title":{},"body":{"license.html":{}}}],["instructor",{"_index":1534,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["insurance",{"_index":1702,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["intact",{"_index":3873,"title":{},"body":{"license.html":{}}}],["intended",{"_index":3560,"title":{},"body":{"license.html":{}}}],["intention",{"_index":3862,"title":{},"body":{"license.html":{}}}],["interaction",{"_index":3727,"title":{},"body":{"license.html":{}}}],["interactive",{"_index":3729,"title":{},"body":{"license.html":{}}}],["intercept",{"_index":1242,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["intercept(request",{"_index":1245,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["interceptor",{"_index":766,"title":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}},"body":{"components/AuthComponent.html":{},"coverage.html":{}}}],["interceptors",{"_index":1240,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["interchange",{"_index":3924,"title":{},"body":{"license.html":{}}}],["interest",{"_index":4128,"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/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{}},"body":{"interfaces/AccountDetails.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/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.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/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"license.html":{},"overview.html":{}}}],["interfered",{"_index":4001,"title":{},"body":{"license.html":{}}}],["intern",{"_index":1554,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["interpretation",{"_index":4269,"title":{},"body":{"license.html":{}}}],["interpreter",{"_index":3780,"title":{},"body":{"license.html":{}}}],["intimate",{"_index":3795,"title":{},"body":{"license.html":{}}}],["invalid",{"_index":956,"title":{},"body":{"injectables/AuthService.html":{}}}],["invalidate",{"_index":3894,"title":{},"body":{"license.html":{}}}],["irrevocable",{"_index":3804,"title":{},"body":{"license.html":{}}}],["isdevmode",{"_index":1411,"title":{},"body":{"injectables/LoggingService.html":{}}}],["isdialogopen",{"_index":1224,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["isencryptedkeycheck",{"_index":959,"title":{},"body":{"injectables/AuthService.html":{}}}],["isencryptedprivatekey",{"_index":2448,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["isencryptedprivatekey(privatekey",{"_index":2485,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["iserrorstate",{"_index":1172,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["iserrorstate(control",{"_index":1173,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["issubmitted",{"_index":1180,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["isvalidkey",{"_index":2449,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["isvalidkey(key",{"_index":2487,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["isvalidkeycheck",{"_index":953,"title":{},"body":{"injectables/AuthService.html":{}}}],["iswarning",{"_index":1302,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["iswarning(errortracestring",{"_index":1308,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["item",{"_index":3745,"title":{},"body":{"license.html":{}}}],["itself",{"_index":4015,"title":{},"body":{"license.html":{}}}],["jack",{"_index":1468,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["jane",{"_index":3305,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["jembe",{"_index":1616,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jewel",{"_index":2003,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jik",{"_index":1947,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jogoo",{"_index":2214,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["john",{"_index":3297,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["jomvu",{"_index":2254,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["journalist",{"_index":1535,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jquery",{"_index":3422,"title":{},"body":{"dependencies.html":{}}}],["js",{"_index":3438,"title":{},"body":{"dependencies.html":{}}}],["json.parse(localstorage.getitem(atob('cicada_user",{"_index":2749,"title":{},"body":{"guards/RoleGuard.html":{}}}],["json.stringify(err.error",{"_index":1274,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["jua",{"_index":1655,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juacali",{"_index":1654,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juakali",{"_index":1652,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jualikali",{"_index":1653,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juice",{"_index":1901,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juja",{"_index":2212,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["junda",{"_index":2269,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["june",{"_index":3532,"title":{},"body":{"license.html":{}}}],["kabete",{"_index":2195,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kabiro",{"_index":2225,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kafuduni",{"_index":2123,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kahawa",{"_index":1818,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kaimati",{"_index":1815,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kajiado",{"_index":2310,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kakamega",{"_index":2308,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kakuma",{"_index":2281,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kalalani",{"_index":2122,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kali",{"_index":1656,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kaloleni",{"_index":2124,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kamba",{"_index":1813,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kambi",{"_index":2074,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kamongo",{"_index":2085,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kangemi",{"_index":2187,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kanisa",{"_index":1571,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kariobangi",{"_index":2207,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["karma",{"_index":3510,"title":{},"body":{"index.html":{}}}],["kasarani",{"_index":2208,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kasemeni",{"_index":2117,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["katundani",{"_index":2118,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kawangware",{"_index":2190,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayaba",{"_index":2072,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayba",{"_index":2073,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayole",{"_index":2209,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kazi",{"_index":1661,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ke",{"_index":2602,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["kebeba",{"_index":2011,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["keccak",{"_index":3128,"title":{},"body":{"injectables/TransactionService.html":{}}}],["keccak(256",{"_index":3176,"title":{},"body":{"injectables/TransactionService.html":{}}}],["keep",{"_index":3872,"title":{},"body":{"license.html":{}}}],["keki",{"_index":1819,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kenya",{"_index":2603,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["kenyatta",{"_index":2201,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kericho",{"_index":2309,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kernel",{"_index":3773,"title":{},"body":{"license.html":{}}}],["kerosene",{"_index":2067,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kerosine",{"_index":2066,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["key",{"_index":752,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{},"classes/CustomValidator.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["key.getkeyid().tohex",{"_index":2528,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["key.isdecrypted",{"_index":2524,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyform",{"_index":731,"title":{},"body":{"components/AuthComponent.html":{}}}],["keyformstub",{"_index":738,"title":{},"body":{"components/AuthComponent.html":{}}}],["keyid",{"_index":2462,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring",{"_index":2504,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["keyring.clear",{"_index":2541,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.getkeysforid(keyid",{"_index":2533,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.load",{"_index":2506,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys",{"_index":2512,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.getforid(keyid",{"_index":2535,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.importkey(privatekey",{"_index":2509,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys",{"_index":2511,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0",{"_index":2513,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0].getkeyid().tohex",{"_index":2532,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0].keypacket",{"_index":2526,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0].keypacket.fingerprint",{"_index":2527,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.getforaddress(address",{"_index":2537,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.getforid(keyid",{"_index":2534,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.getforid(subkeyid",{"_index":2536,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.importkey(publickey",{"_index":2508,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.keys",{"_index":2510,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.removeforid(keyid",{"_index":2539,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.removekeysforid(keyid",{"_index":2538,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.store",{"_index":2507,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keys",{"_index":631,"title":{},"body":{"components/AppComponent.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["keystore",{"_index":2431,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["khaimati",{"_index":1814,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kiambu",{"_index":2314,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibanda",{"_index":1953,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibandaogo",{"_index":2119,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibandaongo",{"_index":2120,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibera",{"_index":2181,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibira",{"_index":2182,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibra",{"_index":2183,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kidzuvini",{"_index":2121,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kikuyu",{"_index":2217,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kilfi",{"_index":2272,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kilibole",{"_index":2125,"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":2094,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kind",{"_index":3723,"title":{},"body":{"license.html":{}}}],["kinds",{"_index":3551,"title":{},"body":{"license.html":{}}}],["kingston",{"_index":2082,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kingstone",{"_index":2084,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kinyozi",{"_index":1660,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kiosk",{"_index":1954,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kirembe",{"_index":2236,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisauni",{"_index":2258,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisii",{"_index":2303,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisumu",{"_index":2289,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitabu",{"_index":1561,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitengela",{"_index":2198,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitui",{"_index":2282,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kizingo",{"_index":2243,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kmoja",{"_index":2228,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["knitting",{"_index":1662,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["know",{"_index":3580,"title":{},"body":{"license.html":{}}}],["knowingly",{"_index":4168,"title":{},"body":{"license.html":{}}}],["knowledge",{"_index":4177,"title":{},"body":{"license.html":{}}}],["known/publickeys",{"_index":4354,"title":{},"body":{"miscellaneous/variables.html":{}}}],["kobo",{"_index":2814,"title":{},"body":{"components/SettingsComponent.html":{}}}],["kokotoni",{"_index":2176,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["korokocho",{"_index":2083,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["korosho",{"_index":1899,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kra",{"_index":1584,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["krcs",{"_index":1556,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kubeba",{"_index":2026,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kufua",{"_index":1663,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kujenga",{"_index":1659,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kuku",{"_index":1817,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kulima",{"_index":1613,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kunde",{"_index":1816,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kuni",{"_index":2047,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kushona",{"_index":1651,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kusumu",{"_index":2298,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kwale",{"_index":2095,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kwangware",{"_index":2191,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kware",{"_index":2224,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lab",{"_index":1926,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["labor",{"_index":1667,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["labour",{"_index":1618,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["landi",{"_index":2231,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["landlord",{"_index":1640,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["langata",{"_index":2232,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["language",{"_index":3756,"title":{},"body":{"license.html":{}}}],["larger",{"_index":3902,"title":{},"body":{"license.html":{}}}],["last",{"_index":71,"title":{},"body":{"classes/AccountIndex.html":{}}}],["last(numberofaccounts",{"_index":89,"title":{},"body":{"classes/AccountIndex.html":{}}}],["later",{"_index":638,"title":{},"body":{"components/AppComponent.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.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":1668,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["law",{"_index":1743,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["laws",{"_index":3681,"title":{},"body":{"license.html":{}}}],["lawsuit",{"_index":4138,"title":{},"body":{"license.html":{}}}],["lazy",{"_index":3488,"title":{},"body":{"index.html":{}}}],["leader",{"_index":1583,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["leaving",{"_index":957,"title":{},"body":{"injectables/AuthService.html":{}}}],["lecturer",{"_index":1521,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["legal",{"_index":3611,"title":{},"body":{"license.html":{}}}],["legend",{"_index":234,"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/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":{}}}],["leso",{"_index":1961,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lesser",{"_index":4321,"title":{},"body":{"license.html":{}}}],["lesso",{"_index":1962,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lesson",{"_index":1536,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["level",{"_index":707,"title":{},"body":{"modules/AppModule.html":{}}}],["lgpl.html",{"_index":4325,"title":{},"body":{"license.html":{}}}],["liability",{"_index":4040,"title":{},"body":{"license.html":{}}}],["liable",{"_index":3709,"title":{},"body":{"license.html":{}}}],["libraries",{"_index":3758,"title":{},"body":{"license.html":{}}}],["library",{"_index":2529,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["license",{"_index":3529,"title":{"license.html":{}},"body":{"license.html":{}}}],["licensed",{"_index":3685,"title":{},"body":{"license.html":{}}}],["licensee",{"_index":3688,"title":{},"body":{"license.html":{}}}],["licensees",{"_index":3690,"title":{},"body":{"license.html":{}}}],["licenses",{"_index":3553,"title":{},"body":{"license.html":{}}}],["licensing",{"_index":4115,"title":{},"body":{"license.html":{}}}],["licensors",{"_index":4053,"title":{},"body":{"license.html":{}}}],["likewise",{"_index":4108,"title":{},"body":{"license.html":{}}}],["likoni",{"_index":2240,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["limit",{"_index":997,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"license.html":{}}}],["limit).pipe(first()).subscribe(res",{"_index":1060,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["limitation",{"_index":4253,"title":{},"body":{"license.html":{}}}],["limited",{"_index":4241,"title":{},"body":{"license.html":{}}}],["limiting",{"_index":4039,"title":{},"body":{"license.html":{}}}],["limuru",{"_index":2233,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lindi",{"_index":2180,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["line",{"_index":4293,"title":{},"body":{"license.html":{}}}],["lines",{"_index":1952,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["link",{"_index":2757,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{},"coverage.html":{},"license.html":{}}}],["linked",{"_index":3792,"title":{},"body":{"license.html":{}}}],["linking",{"_index":4319,"title":{},"body":{"license.html":{}}}],["linkparams",{"_index":2762,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["list",{"_index":3741,"title":{},"body":{"license.html":{}}}],["literal",{"_index":23,"title":{},"body":{"interfaces/AccountDetails.html":{},"injectables/AuthService.html":{},"interfaces/Token.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["litigation",{"_index":4135,"title":{},"body":{"license.html":{}}}],["lo",{"_index":1013,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["load",{"_index":351,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{}}}],["loadchildren",{"_index":720,"title":{},"body":{"modules/AppRoutingModule.html":{},"modules/PagesRoutingModule.html":{}}}],["loaded",{"_index":3518,"title":{},"body":{"index.html":{}}}],["loadevent",{"_index":2928,"title":{},"body":{"injectables/TokenService.html":{}}}],["loading",{"_index":732,"title":{},"body":{"components/AuthComponent.html":{},"index.html":{}}}],["loadkeyring",{"_index":2450,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["loan",{"_index":1937,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["local",{"_index":4270,"title":{},"body":{"license.html":{}}}],["localstorage.getitem(btoa('cicada_private_key",{"_index":799,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{}}}],["localstorage.setitem(btoa('cicada_private_key",{"_index":964,"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":462,"title":{},"body":{"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["locationservice",{"_index":1132,"title":{"injectables/LocationService.html":{}},"body":{"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"coverage.html":{}}}],["log",{"_index":895,"title":{},"body":{"injectables/AuthService.html":{}}}],["logerror",{"_index":1303,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["logerror(error",{"_index":1311,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["logger",{"_index":702,"title":{},"body":{"modules/AppModule.html":{},"injectables/LoggingService.html":{},"dependencies.html":{}}}],["loggermodule",{"_index":700,"title":{},"body":{"modules/AppModule.html":{}}}],["loggermodule.forroot",{"_index":706,"title":{},"body":{"modules/AppModule.html":{}}}],["logginginterceptor",{"_index":684,"title":{"interceptors/LoggingInterceptor.html":{}},"body":{"modules/AppModule.html":{},"interceptors/LoggingInterceptor.html":{},"coverage.html":{},"overview.html":{}}}],["loggingservice",{"_index":307,"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/Signer.html":{},"components/TokensComponent.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["loggingurl",{"_index":4349,"title":{},"body":{"miscellaneous/variables.html":{}}}],["login",{"_index":734,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["loginresponse",{"_index":823,"title":{},"body":{"injectables/AuthService.html":{}}}],["loginresponse(o",{"_index":838,"title":{},"body":{"injectables/AuthService.html":{}}}],["loginview",{"_index":824,"title":{},"body":{"injectables/AuthService.html":{}}}],["loglevel",{"_index":4346,"title":{},"body":{"miscellaneous/variables.html":{}}}],["logout",{"_index":825,"title":{},"body":{"injectables/AuthService.html":{},"components/SettingsComponent.html":{}}}],["long",{"_index":3815,"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":4260,"title":{},"body":{"license.html":{}}}],["losses",{"_index":4263,"title":{},"body":{"license.html":{}}}],["low",{"_index":1096,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["lower",{"_index":2892,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["lowest",{"_index":114,"title":{},"body":{"classes/AccountIndex.html":{}}}],["lunga",{"_index":2090,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lungalunga",{"_index":2086,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lungu",{"_index":2089,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lutsangani",{"_index":2126,"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/Signer.html":{},"miscellaneous/variables.html":{}}}],["m.accountsmodule",{"_index":2697,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.adminmodule",{"_index":2701,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.authmodule",{"_index":722,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["m.pagesmodule",{"_index":724,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["m.settingsmodule",{"_index":2695,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.tokensmodule",{"_index":2699,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.transactionsmodule",{"_index":2693,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["maalim",{"_index":1516,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maandazi",{"_index":1851,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maandzi",{"_index":1894,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabenda",{"_index":1791,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabesheni",{"_index":2147,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabuyu",{"_index":1830,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["machakos",{"_index":2305,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["machine",{"_index":3914,"title":{},"body":{"license.html":{}}}],["machungwa",{"_index":1831,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["made",{"_index":4002,"title":{},"body":{"license.html":{}}}],["madewani",{"_index":2143,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["madrasa",{"_index":1565,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maembe",{"_index":1712,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mafuta",{"_index":2051,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magari",{"_index":2039,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magogoni",{"_index":2268,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magongo",{"_index":2251,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mahamri",{"_index":1859,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maharagwe",{"_index":1857,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mahindi",{"_index":1850,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mail",{"_index":4303,"title":{},"body":{"license.html":{}}}],["mailman",{"_index":1585,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["main",{"_index":1506,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maintain",{"_index":3946,"title":{},"body":{"license.html":{}}}],["maize",{"_index":1844,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majani",{"_index":1711,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majaoni",{"_index":2266,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majengo",{"_index":2170,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maji",{"_index":1903,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["major",{"_index":3765,"title":{},"body":{"license.html":{}}}],["makaa",{"_index":2050,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makadara",{"_index":2199,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makanga",{"_index":2040,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["make",{"_index":3564,"title":{},"body":{"license.html":{}}}],["makes",{"_index":3834,"title":{},"body":{"license.html":{}}}],["makina",{"_index":2184,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["making",{"_index":3696,"title":{},"body":{"license.html":{}}}],["makobeni",{"_index":2142,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makonge",{"_index":1733,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makongeni",{"_index":2275,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makueni",{"_index":2301,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makuluni",{"_index":2140,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makupa",{"_index":2246,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makuti",{"_index":1658,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["male",{"_index":2328,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["mali",{"_index":1969,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["malimali",{"_index":1967,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["management",{"_index":2820,"title":{},"body":{"components/SettingsComponent.html":{}}}],["manager",{"_index":1676,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["managing",{"_index":3467,"title":{},"body":{"index.html":{}}}],["manamba",{"_index":2031,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mandazi",{"_index":1848,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mango",{"_index":1804,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mangwe",{"_index":1979,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["manner",{"_index":4152,"title":{},"body":{"license.html":{}}}],["manufacturer",{"_index":3631,"title":{},"body":{"license.html":{}}}],["manyani",{"_index":2267,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["march",{"_index":4202,"title":{},"body":{"license.html":{}}}],["mariakani",{"_index":2141,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marital",{"_index":1549,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marked",{"_index":3622,"title":{},"body":{"license.html":{}}}],["market",{"_index":2238,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marketing",{"_index":1737,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marks",{"_index":4058,"title":{},"body":{"license.html":{}}}],["marondo",{"_index":1893,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["masai",{"_index":2075,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mask",{"_index":1924,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["masks",{"_index":3683,"title":{},"body":{"license.html":{}}}],["mason",{"_index":1679,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mat_dialog_data",{"_index":1217,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["matatu",{"_index":2016,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matbuttonmodule",{"_index":426,"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":428,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matcheckboxmodule",{"_index":418,"title":{},"body":{"modules/AccountsModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matcher",{"_index":148,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["matcher.ts",{"_index":1170,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"coverage.html":{}}}],["matcher.ts:5",{"_index":1178,"title":{},"body":{"classes/CustomErrorStateMatcher.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/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/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/typealiases.html":{},"miscellaneous/variables.html":{}}}],["matdialog",{"_index":1227,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["matdialogmodule",{"_index":2855,"title":{},"body":{"modules/SharedModule.html":{}}}],["matdialogref",{"_index":1232,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["material",{"_index":2635,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["material.digest",{"_index":2650,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["materialize",{"_index":1453,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["materially",{"_index":4016,"title":{},"body":{"license.html":{}}}],["matformfieldmodule",{"_index":423,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["math.pow(10",{"_index":2905,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["mathare",{"_index":2210,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mathere",{"_index":2234,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maticonmodule",{"_index":430,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matinputmodule",{"_index":421,"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":2840,"title":{},"body":{"modules/SettingsModule.html":{}}}],["matoke",{"_index":1895,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matpaginator",{"_index":330,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["matpaginatormodule",{"_index":420,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matprogressspinnermodule",{"_index":439,"title":{},"body":{"modules/AccountsModule.html":{}}}],["matpseudocheckboxmodule",{"_index":2993,"title":{},"body":{"modules/TokensModule.html":{}}}],["matradiomodule",{"_index":2838,"title":{},"body":{"modules/SettingsModule.html":{}}}],["matress",{"_index":1986,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matripplemodule",{"_index":437,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matselectmodule",{"_index":432,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TransactionsModule.html":{}}}],["matsidenavmodule",{"_index":2994,"title":{},"body":{"modules/TokensModule.html":{}}}],["matsnackbar",{"_index":3023,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["matsnackbarmodule",{"_index":444,"title":{},"body":{"modules/AccountsModule.html":{},"modules/TransactionsModule.html":{}}}],["matsort",{"_index":334,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["matsortmodule",{"_index":417,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["mattabledatasource",{"_index":320,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["mattabledatasource(accounts",{"_index":356,"title":{},"body":{"components/AccountsComponent.html":{}}}],["mattabledatasource(actions",{"_index":558,"title":{},"body":{"components/AdminComponent.html":{}}}],["mattabledatasource(this.tokens",{"_index":2981,"title":{},"body":{"components/TokensComponent.html":{}}}],["mattabledatasource(this.trustedusers",{"_index":2810,"title":{},"body":{"components/SettingsComponent.html":{}}}],["mattabledatasource(transactions",{"_index":3255,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["mattablemodule",{"_index":416,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["mattabsmodule",{"_index":435,"title":{},"body":{"modules/AccountsModule.html":{}}}],["mattoolbarmodule",{"_index":2996,"title":{},"body":{"modules/TokensModule.html":{}}}],["mattress",{"_index":1987,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mattresses",{"_index":1988,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matuga",{"_index":2171,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matunda",{"_index":1803,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mawe",{"_index":1710,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mayai",{"_index":1866,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazera",{"_index":2149,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazeras",{"_index":2148,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazingira",{"_index":1600,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maziwa",{"_index":1824,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbaazi",{"_index":1849,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbao",{"_index":2048,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbata",{"_index":1845,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbenda",{"_index":1792,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbita",{"_index":2287,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbog",{"_index":1826,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mboga",{"_index":1825,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbonga",{"_index":1750,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbuzi",{"_index":1832,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mc",{"_index":3311,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["mchanga",{"_index":1983,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchele",{"_index":1802,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchicha",{"_index":1834,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchuuzi",{"_index":1847,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchuzi",{"_index":1846,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["meaning",{"_index":4068,"title":{},"body":{"license.html":{}}}],["means",{"_index":3680,"title":{},"body":{"license.html":{}}}],["measure",{"_index":3842,"title":{},"body":{"license.html":{}}}],["measures",{"_index":3855,"title":{},"body":{"license.html":{}}}],["meat",{"_index":1853,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mechanic",{"_index":1682,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mediaquery",{"_index":593,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["mediaquery.matches",{"_index":1435,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["mediaquerylist",{"_index":616,"title":{},"body":{"components/AppComponent.html":{}}}],["medicine",{"_index":1925,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["medium",{"_index":3868,"title":{},"body":{"license.html":{}}}],["meet",{"_index":3882,"title":{},"body":{"license.html":{}}}],["meets",{"_index":3746,"title":{},"body":{"license.html":{}}}],["mellon",{"_index":1806,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["melon",{"_index":1805,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["menu",{"_index":1443,"title":{},"body":{"directives/MenuToggleDirective.html":{},"license.html":{}}}],["menuselectiondirective",{"_index":281,"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/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":283,"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/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":4242,"title":{},"body":{"license.html":{}}}],["mere",{"_index":3726,"title":{},"body":{"license.html":{}}}],["mergemap",{"_index":1454,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["merging",{"_index":4124,"title":{},"body":{"license.html":{}}}],["meru",{"_index":2302,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["message",{"_index":934,"title":{},"body":{"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/Signer.html":{}}}],["message:\\n${message}.\\nstack",{"_index":1324,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["met",{"_index":3806,"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":135,"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/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":1740,"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":476,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["methods",{"_index":66,"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/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":3179,"title":{},"body":{"injectables/TransactionService.html":{}}}],["mfugaji",{"_index":1684,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mganga",{"_index":1916,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mgema",{"_index":1694,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mhogo",{"_index":1854,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miatsani",{"_index":2153,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miatsiani",{"_index":2134,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["middle",{"_index":2893,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["mienzeni",{"_index":2135,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mifugo",{"_index":1867,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["migori",{"_index":2297,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miguneni",{"_index":2157,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mihogo",{"_index":1855,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikate",{"_index":1841,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikeka",{"_index":1980,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikindani",{"_index":2177,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["milk",{"_index":1822,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mill",{"_index":1672,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miloeni",{"_index":2146,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["minheight",{"_index":544,"title":{},"body":{"components/AdminComponent.html":{}}}],["minyenzeni",{"_index":2137,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mioleni",{"_index":2139,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miraa",{"_index":1821,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miritini",{"_index":2252,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["misc",{"_index":2178,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miscellaneous",{"_index":3443,"title":{"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}},"body":{"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["misrepresentation",{"_index":4049,"title":{},"body":{"license.html":{}}}],["miti",{"_index":1601,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mitumba",{"_index":1860,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mitungi",{"_index":1968,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miwa",{"_index":1858,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miyani",{"_index":2138,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miyenzeni",{"_index":2133,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjambere",{"_index":2265,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjengo",{"_index":1714,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjenzi",{"_index":1683,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkanyeni",{"_index":2131,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkate",{"_index":1839,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkokoteni",{"_index":2033,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mksiti",{"_index":1572,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkulima",{"_index":1612,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mlola",{"_index":2150,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mlolongo",{"_index":2200,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnarani",{"_index":2276,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnazi",{"_index":1833,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnyenzeni",{"_index":2136,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mocha",{"_index":3424,"title":{},"body":{"dependencies.html":{}}}],["mock",{"_index":487,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["mockbackendinterceptor",{"_index":1447,"title":{"interceptors/MockBackendInterceptor.html":{}},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["mockbackendprovider",{"_index":697,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["mode",{"_index":1415,"title":{},"body":{"injectables/LoggingService.html":{},"license.html":{}}}],["model",{"_index":3929,"title":{},"body":{"license.html":{}}}],["modification",{"_index":3676,"title":{},"body":{"license.html":{}}}],["modifications",{"_index":3749,"title":{},"body":{"license.html":{}}}],["modified",{"_index":3621,"title":{},"body":{"license.html":{}}}],["modifies",{"_index":3886,"title":{},"body":{"license.html":{}}}],["modify",{"_index":3592,"title":{},"body":{"license.html":{}}}],["modifying",{"_index":3715,"title":{},"body":{"license.html":{}}}],["module",{"_index":381,"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":383,"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":1852,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mombasa",{"_index":2239,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["moolb",{"_index":3426,"title":{},"body":{"dependencies.html":{}}}],["more",{"_index":3525,"title":{},"body":{"index.html":{},"license.html":{}}}],["moreover",{"_index":4094,"title":{},"body":{"license.html":{}}}],["moto",{"_index":2052,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["motorbike",{"_index":2036,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["motorist",{"_index":2035,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mover",{"_index":2034,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["movie",{"_index":1981,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpesa",{"_index":1990,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpishi",{"_index":1692,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpsea",{"_index":1989,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ms",{"_index":1381,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["mshomoroni",{"_index":2271,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["msusi",{"_index":1693,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtambo",{"_index":1673,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtopanga",{"_index":2264,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtumba",{"_index":1680,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtwapa",{"_index":2273,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muguka",{"_index":1820,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muhogo",{"_index":1856,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mukuru",{"_index":2070,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["multi",{"_index":716,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["multiple",{"_index":2525,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["mulunguni",{"_index":2152,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mumias",{"_index":2294,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["musician",{"_index":1731,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mutable",{"_index":2500,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["mutablekeystore",{"_index":814,"title":{"interfaces/MutableKeyStore.html":{}},"body":{"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["mutablepgpkeystore",{"_index":704,"title":{"classes/MutablePgpKeyStore.html":{}},"body":{"modules/AppModule.html":{},"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"coverage.html":{}}}],["mutumba",{"_index":1959,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muugano",{"_index":2151,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mvita",{"_index":2247,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mvuvi",{"_index":1709,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwache",{"_index":2154,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwakirunge",{"_index":2270,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwalimu",{"_index":1515,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwangani",{"_index":2155,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwangaraba",{"_index":2144,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwashanga",{"_index":2145,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwea",{"_index":2315,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwehavikonje",{"_index":2156,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwiki",{"_index":2222,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwingi",{"_index":2283,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mworoni",{"_index":2260,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["myenzeni",{"_index":2132,"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":2071,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nakuru",{"_index":2316,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["name",{"_index":78,"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/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":1161,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["names",{"_index":1162,"title":{},"body":{"components/CreateAccountComponent.html":{},"license.html":{}}}],["namesearchform",{"_index":149,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["namesearchformstub",{"_index":160,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["namesearchloading",{"_index":150,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["namesearchsubmitted",{"_index":151,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["nandi",{"_index":2311,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["narok",{"_index":2317,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nature",{"_index":3899,"title":{},"body":{"license.html":{}}}],["navigate",{"_index":3479,"title":{},"body":{"index.html":{}}}],["navigatedto",{"_index":2758,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["nazi",{"_index":1837,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ndizi",{"_index":1811,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["necessary",{"_index":4250,"title":{},"body":{"license.html":{}}}],["need",{"_index":3584,"title":{},"body":{"license.html":{}}}],["needed",{"_index":3654,"title":{},"body":{"license.html":{}}}],["network",{"_index":1029,"title":{},"body":{"injectables/BlockSyncService.html":{},"interceptors/ErrorInterceptor.html":{},"index.html":{},"license.html":{}}}],["new",{"_index":101,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.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":988,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["newconversionevent(tx",{"_index":1004,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["newtransferevent",{"_index":989,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["newtransferevent(tx",{"_index":1007,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["next",{"_index":478,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["next.handle(request",{"_index":1350,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["next.handle(request).pipe",{"_index":1254,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["next.handle(request).pipe(tap(event",{"_index":1376,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["ng",{"_index":3485,"title":{},"body":{"index.html":{}}}],["ng2",{"_index":2688,"title":{},"body":{"modules/PagesModule.html":{},"dependencies.html":{}}}],["ngafterviewinit",{"_index":3232,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["ngano",{"_index":1836,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngform",{"_index":1177,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["ngmodule",{"_index":400,"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":1835,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngombeni",{"_index":2248,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngong",{"_index":2220,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngoninit",{"_index":155,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/FooterComponent.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":1678,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngx",{"_index":701,"title":{},"body":{"modules/AppModule.html":{},"injectables/LoggingService.html":{},"dependencies.html":{}}}],["ngxlogger",{"_index":1394,"title":{},"body":{"injectables/LoggingService.html":{}}}],["ngxloggerlevel.error",{"_index":4347,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ngxloggerlevel.off",{"_index":4348,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ngómbeni",{"_index":2249,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["njugu",{"_index":1812,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["non",{"_index":3671,"title":{},"body":{"license.html":{}}}],["noncommercially",{"_index":3936,"title":{},"body":{"license.html":{}}}],["none",{"_index":783,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nopasswordmatch",{"_index":1202,"title":{},"body":{"classes/CustomValidator.html":{}}}],["normal",{"_index":3763,"title":{},"body":{"license.html":{}}}],["normally",{"_index":3971,"title":{},"body":{"license.html":{}}}],["nothing",{"_index":4109,"title":{},"body":{"license.html":{}}}],["notice",{"_index":3736,"title":{},"body":{"license.html":{}}}],["notices",{"_index":3732,"title":{},"body":{"license.html":{}}}],["notifies",{"_index":4095,"title":{},"body":{"license.html":{}}}],["notify",{"_index":4090,"title":{},"body":{"license.html":{}}}],["notwithstanding",{"_index":4036,"title":{},"body":{"license.html":{}}}],["now",{"_index":958,"title":{},"body":{"injectables/AuthService.html":{}}}],["npm",{"_index":3472,"title":{},"body":{"index.html":{}}}],["null",{"_index":999,"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":3192,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(conversion.fromvalue",{"_index":3158,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(conversion.tovalue",{"_index":3160,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(transaction.value",{"_index":3145,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(value",{"_index":2904,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["numbered",{"_index":4230,"title":{},"body":{"license.html":{}}}],["numberofaccounts",{"_index":91,"title":{},"body":{"classes/AccountIndex.html":{}}}],["nurse",{"_index":1919,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nursery",{"_index":1530,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyalenda",{"_index":2290,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyalgunga",{"_index":2286,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyali",{"_index":2261,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyama",{"_index":1808,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyanya",{"_index":1807,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyanza",{"_index":2284,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyeri",{"_index":2312,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzora",{"_index":2158,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzovuni",{"_index":2159,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzugu",{"_index":1898,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["o",{"_index":840,"title":{},"body":{"injectables/AuthService.html":{}}}],["o.realm",{"_index":927,"title":{},"body":{"injectables/AuthService.html":{}}}],["objcsv",{"_index":3370,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["object",{"_index":2502,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["obligate",{"_index":4214,"title":{},"body":{"license.html":{}}}],["obligated",{"_index":3952,"title":{},"body":{"license.html":{}}}],["obligations",{"_index":3844,"title":{},"body":{"license.html":{}}}],["observable",{"_index":473,"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":492,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["occasionally",{"_index":3935,"title":{},"body":{"license.html":{}}}],["occurred",{"_index":1260,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["occurring",{"_index":4106,"title":{},"body":{"license.html":{}}}],["occurs",{"_index":3639,"title":{},"body":{"license.html":{}}}],["of('hello",{"_index":3221,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["of(new",{"_index":2422,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["of(null",{"_index":2341,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["offer",{"_index":3609,"title":{},"body":{"license.html":{}}}],["offered",{"_index":3961,"title":{},"body":{"license.html":{}}}],["offering",{"_index":3939,"title":{},"body":{"license.html":{}}}],["office",{"_index":1505,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["official",{"_index":3751,"title":{},"body":{"license.html":{}}}],["offset",{"_index":996,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["ohuru",{"_index":2255,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["oil",{"_index":2058,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ok(accounttypes",{"_index":2417,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(actions",{"_index":2377,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(areanamelist",{"_index":2404,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(areatypelist",{"_index":2412,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(categorylist",{"_index":2396,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(genders",{"_index":2419,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(message",{"_index":2386,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedaction",{"_index":2382,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedareaname.name",{"_index":2408,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedareatype.name",{"_index":2416,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedcategory.name",{"_index":2400,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedtoken",{"_index":2392,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(responsebody",{"_index":2421,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(tokens",{"_index":2387,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(transactiontypes",{"_index":2418,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["old",{"_index":2244,"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":2186,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ombeni",{"_index":2250,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["omena",{"_index":1809,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["omeno",{"_index":1896,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["onaddresssearch",{"_index":156,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["once",{"_index":3517,"title":{},"body":{"index.html":{}}}],["onclick",{"_index":2764,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["one",{"_index":3497,"title":{},"body":{"index.html":{},"license.html":{}}}],["oninit",{"_index":134,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/FooterComponent.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":1897,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["onmenuselect",{"_index":1426,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["onmenutoggle",{"_index":1439,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["onnamesearch",{"_index":157,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["onphonesearch",{"_index":158,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["onresize",{"_index":597,"title":{},"body":{"components/AppComponent.html":{}}}],["onresize(e",{"_index":613,"title":{},"body":{"components/AppComponent.html":{}}}],["onsign",{"_index":2616,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["onsign(signature",{"_index":2642,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["onsubmit",{"_index":735,"title":{},"body":{"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["onverify",{"_index":2617,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["onverify(flag",{"_index":2643,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["opendialog",{"_index":1225,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["opendialog(data",{"_index":1229,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["openpgp",{"_index":2503,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["openpgp.cleartext.fromtext(digest",{"_index":2652,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["openpgp.key.readarmored(key",{"_index":2519,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.key.readarmored(privatekey",{"_index":2522,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.keyring",{"_index":2505,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"miscellaneous/variables.html":{}}}],["openpgp.message.fromtext(plaintext",{"_index":2547,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.readkey",{"_index":2515,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.sign(opts",{"_index":2551,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.sign(opts).then((s",{"_index":2662,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["openpgp.signature.readarmored(signature.data).then((sig",{"_index":2651,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["openpgp.verify(opts).then((v",{"_index":2655,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["operate",{"_index":4266,"title":{},"body":{"license.html":{}}}],["operated",{"_index":3943,"title":{},"body":{"license.html":{}}}],["operating",{"_index":3776,"title":{},"body":{"license.html":{}}}],["operation",{"_index":3863,"title":{},"body":{"license.html":{}}}],["option",{"_index":4033,"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/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":3743,"title":{},"body":{"license.html":{}}}],["opts",{"_index":2546,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["oranges",{"_index":1838,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["order",{"_index":4104,"title":{},"body":{"license.html":{}}}],["organisation",{"_index":2598,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organization",{"_index":2579,"title":{},"body":{"components/OrganizationComponent.html":{},"components/SettingsComponent.html":{},"modules/SettingsRoutingModule.html":{},"license.html":{}}}],["organization'},{'name",{"_index":261,"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/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":2581,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organization.component.scss",{"_index":2580,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organizationcomponent",{"_index":260,"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/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":2582,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organizationformstub",{"_index":2583,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organizations",{"_index":3691,"title":{},"body":{"license.html":{}}}],["origin",{"_index":4050,"title":{},"body":{"license.html":{}}}],["original",{"_index":4051,"title":{},"body":{"license.html":{}}}],["others",{"_index":3586,"title":{},"body":{"license.html":{}}}],["otherwise",{"_index":3816,"title":{},"body":{"license.html":{}}}],["out",{"_index":397,"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":{}}}],["output",{"_index":3810,"title":{},"body":{"license.html":{}}}],["outside",{"_index":3827,"title":{},"body":{"license.html":{}}}],["overview",{"_index":3526,"title":{"overview.html":{}},"body":{"index.html":{},"overview.html":{}}}],["owino",{"_index":2091,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["owned",{"_index":4147,"title":{},"body":{"license.html":{}}}],["owner",{"_index":1488,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["package",{"_index":3396,"title":{"dependencies.html":{}},"body":{}}],["packaged",{"_index":3892,"title":{},"body":{"license.html":{}}}],["packaging",{"_index":3764,"title":{},"body":{"license.html":{}}}],["page",{"_index":646,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["pages",{"_index":2672,"title":{},"body":{"components/PagesComponent.html":{}}}],["pages'},{'name",{"_index":263,"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/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":2691,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["pages.component.html",{"_index":2674,"title":{},"body":{"components/PagesComponent.html":{}}}],["pages.component.scss",{"_index":2673,"title":{},"body":{"components/PagesComponent.html":{}}}],["pages/accounts/account",{"_index":407,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["pages/accounts/accounts",{"_index":403,"title":{},"body":{"modules/AccountsModule.html":{}}}],["pages/accounts/accounts.component",{"_index":405,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["pages/accounts/create",{"_index":413,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["pages/admin/admin",{"_index":586,"title":{},"body":{"modules/AdminModule.html":{}}}],["pages/admin/admin.component",{"_index":587,"title":{},"body":{"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{}}}],["pages/pages",{"_index":2685,"title":{},"body":{"modules/PagesModule.html":{}}}],["pages/pages.component",{"_index":2686,"title":{},"body":{"modules/PagesModule.html":{}}}],["pages/settings/organization/organization.component",{"_index":2837,"title":{},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["pages/settings/settings",{"_index":2835,"title":{},"body":{"modules/SettingsModule.html":{}}}],["pages/settings/settings.component",{"_index":2836,"title":{},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["pages/tokens/token",{"_index":2992,"title":{},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{}}}],["pages/tokens/tokens",{"_index":2990,"title":{},"body":{"modules/TokensModule.html":{}}}],["pages/tokens/tokens.component",{"_index":2991,"title":{},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{}}}],["pages/transactions/transaction",{"_index":3282,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["pages/transactions/transactions",{"_index":3280,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["pages/transactions/transactions.component",{"_index":3281,"title":{},"body":{"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["pages/transactions/transactions.module",{"_index":434,"title":{},"body":{"modules/AccountsModule.html":{}}}],["pagescomponent",{"_index":262,"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/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":298,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{}}}],["pagesmodule",{"_index":2679,"title":{"modules/PagesModule.html":{}},"body":{"modules/PagesModule.html":{},"modules.html":{},"overview.html":{}}}],["pagesroutingmodule",{"_index":2683,"title":{"modules/PagesRoutingModule.html":{}},"body":{"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["paginator",{"_index":299,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["painter",{"_index":1685,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pampers",{"_index":1976,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["papa",{"_index":1789,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["paper",{"_index":4302,"title":{},"body":{"license.html":{}}}],["paraffin",{"_index":2061,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["parafin",{"_index":2063,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["paragraph",{"_index":4080,"title":{},"body":{"license.html":{}}}],["paragraphs",{"_index":4160,"title":{},"body":{"license.html":{}}}],["parameters",{"_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":{},"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/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":472,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["params",{"_index":482,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"components/TokenDetailsComponent.html":{}}}],["parrafin",{"_index":2062,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["parsedata",{"_index":3368,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["parsedata(data",{"_index":3459,"title":{},"body":{"miscellaneous/functions.html":{}}}],["parseint(urlparts[urlparts.length",{"_index":2427,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["parser",{"_index":3140,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["part",{"_index":3693,"title":{},"body":{"license.html":{}}}],["particular",{"_index":3755,"title":{},"body":{"license.html":{}}}],["parties",{"_index":3725,"title":{},"body":{"license.html":{}}}],["parts",{"_index":1965,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["party",{"_index":3944,"title":{},"body":{"license.html":{}}}],["party's",{"_index":4126,"title":{},"body":{"license.html":{}}}],["pass",{"_index":2371,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["passphrase",{"_index":947,"title":{},"body":{"injectables/AuthService.html":{}}}],["password",{"_index":962,"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/Signer.html":{},"injectables/TransactionService.html":{},"license.html":{}}}],["password.type",{"_index":2717,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["passwordmatchvalidator",{"_index":1188,"title":{},"body":{"classes/CustomValidator.html":{}}}],["passwordmatchvalidator(control",{"_index":1190,"title":{},"body":{"classes/CustomValidator.html":{}}}],["passwordtoggledirective",{"_index":285,"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/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":1563,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["patent",{"_index":4079,"title":{},"body":{"license.html":{}}}],["patents",{"_index":3657,"title":{},"body":{"license.html":{}}}],["path",{"_index":451,"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":453,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["patience",{"_index":1470,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["pattern",{"_index":3637,"title":{},"body":{"license.html":{}}}],["patternvalidator",{"_index":1189,"title":{},"body":{"classes/CustomValidator.html":{}}}],["patternvalidator(regex",{"_index":1193,"title":{},"body":{"classes/CustomValidator.html":{}}}],["payment",{"_index":4196,"title":{},"body":{"license.html":{}}}],["peanuts",{"_index":1795,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["peddler",{"_index":1697,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["peer",{"_index":3956,"title":{},"body":{"license.html":{}}}],["peers",{"_index":3959,"title":{},"body":{"license.html":{}}}],["peku",{"_index":2127,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["people",{"_index":3495,"title":{},"body":{"index.html":{}}}],["performance",{"_index":4246,"title":{},"body":{"license.html":{}}}],["performing",{"_index":3787,"title":{},"body":{"license.html":{}}}],["perfume",{"_index":1993,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["periurban",{"_index":2320,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["permanently",{"_index":4088,"title":{},"body":{"license.html":{}}}],["permission",{"_index":3612,"title":{},"body":{"license.html":{}}}],["permissions",{"_index":3801,"title":{},"body":{"license.html":{}}}],["permissive",{"_index":3875,"title":{},"body":{"license.html":{}}}],["permit",{"_index":3909,"title":{},"body":{"license.html":{}}}],["permits",{"_index":4070,"title":{},"body":{"license.html":{}}}],["permitted",{"_index":3542,"title":{},"body":{"license.html":{}}}],["perpetuity",{"_index":4005,"title":{},"body":{"license.html":{}}}],["person",{"_index":3462,"title":{},"body":{"miscellaneous/functions.html":{}}}],["personal",{"_index":3969,"title":{},"body":{"license.html":{}}}],["personvalidation",{"_index":3373,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["personvalidation(person",{"_index":3461,"title":{},"body":{"miscellaneous/functions.html":{}}}],["pertinent",{"_index":4212,"title":{},"body":{"license.html":{}}}],["pesa",{"_index":2008,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["petro",{"_index":2065,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["petrol",{"_index":2064,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pgp",{"_index":951,"title":{},"body":{"injectables/AuthService.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["pgp.js",{"_index":858,"title":{},"body":{"injectables/AuthService.html":{}}}],["pgpsigner",{"_index":2612,"title":{"classes/PGPSigner.html":{}},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["pharmacy",{"_index":1928,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["phone",{"_index":231,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["phonenumber",{"_index":207,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/CreateAccountComponent.html":{}}}],["phonesearchform",{"_index":152,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["phonesearchformstub",{"_index":161,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["phonesearchloading",{"_index":153,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["phonesearchsubmitted",{"_index":154,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["photo",{"_index":1739,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["photocopy",{"_index":1696,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["photographer",{"_index":1716,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["physical",{"_index":3918,"title":{},"body":{"license.html":{}}}],["physically",{"_index":3933,"title":{},"body":{"license.html":{}}}],["pieces",{"_index":3579,"title":{},"body":{"license.html":{}}}],["piki",{"_index":2029,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pikipiki",{"_index":2030,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pilau",{"_index":1863,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pipe",{"_index":2211,"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":628,"title":{},"body":{"components/AppComponent.html":{}}}],["pipe(delay(500",{"_index":2344,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(dematerialize",{"_index":2345,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(materialize",{"_index":2343,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(mergemap(handleroute",{"_index":2342,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe({name",{"_index":2903,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["pipes",{"_index":2768,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{},"overview.html":{}}}],["pipetransform",{"_index":2775,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{}}}],["pk",{"_index":2658,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["pk.decrypt(password",{"_index":2661,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["pk.isdecrypted",{"_index":2660,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["place",{"_index":3941,"title":{},"body":{"license.html":{}}}],["plaintext",{"_index":2498,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["plastic",{"_index":1604,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["playstation",{"_index":1994,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["please",{"_index":636,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{},"license.html":{}}}],["plumb",{"_index":1689,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["plus",{"_index":4129,"title":{},"body":{"license.html":{}}}],["pointer",{"_index":4294,"title":{},"body":{"license.html":{}}}],["pojo",{"_index":1788,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["police",{"_index":1577,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pombe",{"_index":1975,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pool",{"_index":1977,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["popper.js",{"_index":3431,"title":{},"body":{"dependencies.html":{}}}],["popperjs/core",{"_index":3403,"title":{},"body":{"dependencies.html":{}}}],["populated",{"_index":3519,"title":{},"body":{"index.html":{}}}],["porridge",{"_index":1862,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["portion",{"_index":3964,"title":{},"body":{"license.html":{}}}],["posho",{"_index":1671,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["possesses",{"_index":3930,"title":{},"body":{"license.html":{}}}],["possession",{"_index":3889,"title":{},"body":{"license.html":{}}}],["possibility",{"_index":4268,"title":{},"body":{"license.html":{}}}],["possible",{"_index":4285,"title":{},"body":{"license.html":{}}}],["post",{"_index":2352,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["potatoes",{"_index":1796,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["poultry",{"_index":1793,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["power",{"_index":3857,"title":{},"body":{"license.html":{}}}],["practical",{"_index":3554,"title":{},"body":{"license.html":{}}}],["practice",{"_index":3644,"title":{},"body":{"license.html":{}}}],["preamble",{"_index":3549,"title":{},"body":{"license.html":{}}}],["precise",{"_index":3672,"title":{},"body":{"license.html":{}}}],["precisely",{"_index":3641,"title":{},"body":{"license.html":{}}}],["predecessor",{"_index":4127,"title":{},"body":{"license.html":{}}}],["preferred",{"_index":3748,"title":{},"body":{"license.html":{}}}],["preloadallmodules",{"_index":718,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["preloadingstrategy",{"_index":727,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["prepare",{"_index":2619,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signer.html":{}}}],["prepare(material",{"_index":2632,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["present",{"_index":4225,"title":{},"body":{"license.html":{}}}],["presents",{"_index":3740,"title":{},"body":{"license.html":{}}}],["preservation",{"_index":4044,"title":{},"body":{"license.html":{}}}],["prevent",{"_index":3585,"title":{},"body":{"license.html":{}}}],["prevented",{"_index":4000,"title":{},"body":{"license.html":{}}}],["previous",{"_index":496,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"license.html":{}}}],["price",{"_index":3574,"title":{},"body":{"license.html":{}}}],["primarily",{"_index":4198,"title":{},"body":{"license.html":{}}}],["primary",{"_index":1522,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["printing",{"_index":1687,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["prior",{"_index":4091,"title":{},"body":{"license.html":{}}}],["private",{"_index":202,"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":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/OrganizationComponent.html":{},"directives/PasswordToggleDirective.html":{},"components/SettingsComponent.html":{},"components/TokenDetailsComponent.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["privatekey",{"_index":762,"title":{},"body":{"components/AuthComponent.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["privatekey.decrypt(password",{"_index":2545,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["privatekey.isdecrypted",{"_index":2543,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["privatekey.keypacket.privateparams.d",{"_index":3205,"title":{},"body":{"injectables/TransactionService.html":{}}}],["privatekeyarmored",{"_index":848,"title":{},"body":{"injectables/AuthService.html":{}}}],["privatekeys",{"_index":2548,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["problems",{"_index":3624,"title":{},"body":{"license.html":{}}}],["procedures",{"_index":3995,"title":{},"body":{"license.html":{}}}],["procuring",{"_index":4186,"title":{},"body":{"license.html":{}}}],["produce",{"_index":3779,"title":{},"body":{"license.html":{}}}],["product",{"_index":3919,"title":{},"body":{"license.html":{}}}],["production",{"_index":3504,"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":1542,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["profile",{"_index":1466,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["program",{"_index":3563,"title":{},"body":{"license.html":{}}}],["program's",{"_index":3867,"title":{},"body":{"license.html":{}}}],["programmer",{"_index":1717,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["programming",{"_index":1688,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["programs",{"_index":3572,"title":{},"body":{"license.html":{}}}],["programsif",{"_index":4282,"title":{},"body":{"license.html":{}}}],["progress...show",{"_index":644,"title":{},"body":{"components/AppComponent.html":{}}}],["prohibit",{"_index":3643,"title":{},"body":{"license.html":{}}}],["prohibiting",{"_index":3853,"title":{},"body":{"license.html":{}}}],["prohibits",{"_index":4193,"title":{},"body":{"license.html":{}}}],["project",{"_index":3468,"title":{},"body":{"index.html":{}}}],["prominent",{"_index":3744,"title":{},"body":{"license.html":{}}}],["prominently",{"_index":3735,"title":{},"body":{"license.html":{}}}],["promise",{"_index":86,"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/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"miscellaneous/functions.html":{}}}],["promise((resolve",{"_index":903,"title":{},"body":{"injectables/AuthService.html":{}}}],["promise(async",{"_index":923,"title":{},"body":{"injectables/AuthService.html":{}}}],["propagate",{"_index":3704,"title":{},"body":{"license.html":{}}}],["propagating",{"_index":4112,"title":{},"body":{"license.html":{}}}],["propagation",{"_index":3716,"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/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"injectables/RegistryService.html":{},"directives/RouterLinkDirectiveStub.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"interfaces/Signature.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":{}}}],["property",{"_index":3970,"title":{},"body":{"license.html":{}}}],["proprietary",{"_index":3667,"title":{},"body":{"license.html":{}}}],["protect",{"_index":3582,"title":{},"body":{"license.html":{}}}],["protecting",{"_index":3635,"title":{},"body":{"license.html":{}}}],["protection",{"_index":3614,"title":{},"body":{"license.html":{}}}],["protocols",{"_index":4021,"title":{},"body":{"license.html":{}}}],["protractor",{"_index":3513,"title":{},"body":{"index.html":{}}}],["prove",{"_index":4247,"title":{},"body":{"license.html":{}}}],["provide",{"_index":714,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["provided",{"_index":3739,"title":{},"body":{"license.html":{}}}],["providedin",{"_index":797,"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":2787,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["providers",{"_index":387,"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":{}}}],["provision",{"_index":3652,"title":{},"body":{"license.html":{}}}],["provisionally",{"_index":4085,"title":{},"body":{"license.html":{}}}],["proxy",{"_index":4234,"title":{},"body":{"license.html":{}}}],["proxy's",{"_index":4236,"title":{},"body":{"license.html":{}}}],["pry",{"_index":1513,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pub",{"_index":2006,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["public",{"_index":67,"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/Signer.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["publicity",{"_index":4052,"title":{},"body":{"license.html":{}}}],["publickey",{"_index":2480,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["publickey.getkeyid().tohex",{"_index":2540,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["publickeys",{"_index":640,"title":{},"body":{"components/AppComponent.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["publickeysurl",{"_index":4352,"title":{},"body":{"miscellaneous/variables.html":{}}}],["publicly",{"_index":4023,"title":{},"body":{"license.html":{}}}],["publish",{"_index":3871,"title":{},"body":{"license.html":{}}}],["published",{"_index":4231,"title":{},"body":{"license.html":{}}}],["pump",{"_index":499,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["purpose",{"_index":3660,"title":{},"body":{"license.html":{}}}],["purposes",{"_index":3974,"title":{},"body":{"license.html":{}}}],["pursuant",{"_index":4182,"title":{},"body":{"license.html":{}}}],["put",{"_index":2499,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["qkvhsu46vknbukqnclzfulnjt046my4wdqpftufjtdphyxjuzxnlbkbob3rtywlslmnvbq0krk46s3vydmkgs3jhbmpjdqpooktyyw5qyztldxj0ozs7dqpuruw7vflqpunftew6njkyntazmzq5ode5ng0kru5eolzdqvjedqo",{"_index":3344,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["qualify",{"_index":4101,"title":{},"body":{"license.html":{}}}],["quality",{"_index":4245,"title":{},"body":{"license.html":{}}}],["queriedaction",{"_index":2378,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedaction.approval",{"_index":2383,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedareaname",{"_index":2405,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedareatype",{"_index":2413,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedcategory",{"_index":2397,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedtoken",{"_index":2388,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queryparams",{"_index":2753,"title":{},"body":{"guards/RoleGuard.html":{}}}],["r",{"_index":925,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["raibai",{"_index":2279,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rangala",{"_index":2292,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ratio.pipe",{"_index":2854,"title":{},"body":{"modules/SharedModule.html":{}}}],["ratio.pipe.ts",{"_index":2900,"title":{},"body":{"pipes/TokenRatioPipe.html":{},"coverage.html":{}}}],["ratio.pipe.ts:5",{"_index":2902,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["rcu",{"_index":2599,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["reached",{"_index":635,"title":{},"body":{"components/AppComponent.html":{}}}],["reactiveformsmodule",{"_index":442,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AuthModule.html":{},"modules/SettingsModule.html":{}}}],["read",{"_index":4323,"title":{},"body":{"license.html":{}}}],["readable",{"_index":3915,"title":{},"body":{"license.html":{}}}],["readcsv",{"_index":3369,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["readcsv(input",{"_index":3460,"title":{},"body":{"miscellaneous/functions.html":{}}}],["readily",{"_index":4170,"title":{},"body":{"license.html":{}}}],["reading",{"_index":4026,"title":{},"body":{"license.html":{}}}],["readonly",{"_index":479,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["ready",{"_index":3650,"title":{},"body":{"license.html":{}}}],["readystate",{"_index":594,"title":{},"body":{"components/AppComponent.html":{},"injectables/BlockSyncService.html":{}}}],["readystateelements",{"_index":1028,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateelements.network",{"_index":1047,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateprocessor",{"_index":990,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateprocessor(settings",{"_index":1009,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystatetarget",{"_index":595,"title":{},"body":{"components/AppComponent.html":{},"injectables/BlockSyncService.html":{}}}],["realm",{"_index":922,"title":{},"body":{"injectables/AuthService.html":{}}}],["reason",{"_index":4180,"title":{},"body":{"license.html":{}}}],["reasonable",{"_index":3931,"title":{},"body":{"license.html":{}}}],["receipt",{"_index":4099,"title":{},"body":{"license.html":{}}}],["receive",{"_index":3577,"title":{},"body":{"license.html":{}}}],["received",{"_index":3602,"title":{},"body":{"license.html":{}}}],["receives",{"_index":4117,"title":{},"body":{"license.html":{}}}],["receiving",{"_index":4188,"title":{},"body":{"license.html":{}}}],["receptionist",{"_index":1686,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["recipient",{"_index":1110,"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":4178,"title":{},"body":{"license.html":{}}}],["recipientaddress",{"_index":3116,"title":{},"body":{"injectables/TransactionService.html":{}}}],["recipientbloxberglink",{"_index":3014,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["recipients",{"_index":3599,"title":{},"body":{"license.html":{}}}],["reclaim",{"_index":1461,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["reclamation",{"_index":2327,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["recognized",{"_index":3752,"title":{},"body":{"license.html":{}}}],["recommend",{"_index":978,"title":{},"body":{"injectables/AuthService.html":{}}}],["recycling",{"_index":1608,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["red",{"_index":1531,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["redcross",{"_index":1555,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["redirectto",{"_index":452,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["redistribute",{"_index":4288,"title":{},"body":{"license.html":{}}}],["reference",{"_index":3528,"title":{},"body":{"index.html":{}}}],["referrer",{"_index":1149,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["referring",{"_index":3573,"title":{},"body":{"license.html":{}}}],["refers",{"_index":3679,"title":{},"body":{"license.html":{}}}],["refrain",{"_index":4216,"title":{},"body":{"license.html":{}}}],["refreshpaginator",{"_index":304,"title":{},"body":{"components/AccountsComponent.html":{}}}],["regard",{"_index":4032,"title":{},"body":{"license.html":{}}}],["regardless",{"_index":3891,"title":{},"body":{"license.html":{}}}],["regenerate",{"_index":3799,"title":{},"body":{"license.html":{}}}],["regex",{"_index":1197,"title":{},"body":{"classes/CustomValidator.html":{}}}],["regex.test(control.value",{"_index":1205,"title":{},"body":{"classes/CustomValidator.html":{}}}],["regexp",{"_index":1194,"title":{},"body":{"classes/CustomValidator.html":{}}}],["registry",{"_index":2724,"title":{},"body":{"injectables/RegistryService.html":{},"classes/Settings.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"classes/W3.html":{}}}],["registry.ts",{"_index":2908,"title":{},"body":{"classes/TokenRegistry.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["registry.ts:10",{"_index":2911,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:22",{"_index":2920,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:26",{"_index":2918,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:30",{"_index":2915,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:8",{"_index":2912,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:9",{"_index":2913,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registryaddress",{"_index":4362,"title":{},"body":{"miscellaneous/variables.html":{}}}],["registryservice",{"_index":993,"title":{"injectables/RegistryService.html":{}},"body":{"injectables/BlockSyncService.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["registryservice.getregistry",{"_index":2941,"title":{},"body":{"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["reinstated",{"_index":4084,"title":{},"body":{"license.html":{}}}],["reject",{"_index":904,"title":{},"body":{"injectables/AuthService.html":{}}}],["reject(error",{"_index":907,"title":{},"body":{"injectables/AuthService.html":{}}}],["rejected",{"_index":892,"title":{},"body":{"injectables/AuthService.html":{}}}],["relationship",{"_index":3828,"title":{},"body":{"license.html":{}}}],["released",{"_index":3568,"title":{},"body":{"license.html":{}}}],["relevant",{"_index":3884,"title":{},"body":{"license.html":{}}}],["relicensing",{"_index":4071,"title":{},"body":{"license.html":{}}}],["religious",{"_index":1567,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["religous",{"_index":1566,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["reload",{"_index":3482,"title":{},"body":{"index.html":{}}}],["relying",{"_index":4169,"title":{},"body":{"license.html":{}}}],["remain",{"_index":3951,"title":{},"body":{"license.html":{}}}],["remains",{"_index":3566,"title":{},"body":{"license.html":{}}}],["removal",{"_index":4035,"title":{},"body":{"license.html":{}}}],["remove",{"_index":4034,"title":{},"body":{"license.html":{}}}],["removekeysforid",{"_index":2451,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removekeysforid(keyid",{"_index":2490,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickey",{"_index":2452,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickey(publickey",{"_index":2492,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickeyforid",{"_index":2453,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickeyforid(keyid",{"_index":2494,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removespecialchar",{"_index":3363,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["removespecialchar(str",{"_index":3457,"title":{},"body":{"miscellaneous/functions.html":{}}}],["rename",{"_index":897,"title":{},"body":{"injectables/AuthService.html":{}}}],["render",{"_index":3670,"title":{},"body":{"license.html":{}}}],["rendered",{"_index":4261,"title":{},"body":{"license.html":{}}}],["renderer",{"_index":1429,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["renderer2",{"_index":1430,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["repair",{"_index":1669,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["replaysubject",{"_index":488,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["represent",{"_index":3992,"title":{},"body":{"license.html":{}}}],["request",{"_index":1249,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["request.clone({headers",{"_index":1348,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["request.headers.set('authorization",{"_index":1349,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["request.method",{"_index":1379,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["request.urlwithparams",{"_index":1380,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["requesting",{"_index":942,"title":{},"body":{"injectables/AuthService.html":{}}}],["requests",{"_index":2373,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["require",{"_index":2600,"title":{},"body":{"components/OrganizationComponent.html":{},"license.html":{}}}],["require('@src/assets/js/block",{"_index":99,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["require('openpgp",{"_index":2641,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"miscellaneous/variables.html":{}}}],["require('vcard",{"_index":3139,"title":{},"body":{"injectables/TransactionService.html":{},"miscellaneous/variables.html":{}}}],["required",{"_index":232,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{},"license.html":{}}}],["requirement",{"_index":3885,"title":{},"body":{"license.html":{}}}],["requirements",{"_index":3954,"title":{},"body":{"license.html":{}}}],["requires",{"_index":3620,"title":{},"body":{"license.html":{}}}],["requiring",{"_index":3695,"title":{},"body":{"license.html":{}}}],["res",{"_index":221,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["res.ok",{"_index":977,"title":{},"body":{"injectables/AuthService.html":{}}}],["res.status",{"_index":980,"title":{},"body":{"injectables/AuthService.html":{}}}],["res.text",{"_index":981,"title":{},"body":{"injectables/AuthService.html":{}}}],["researcher",{"_index":1541,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["resend",{"_index":3074,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reserve",{"_index":1474,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenServiceStub.html":{},"miscellaneous/variables.html":{}}}],["reserveratio",{"_index":1487,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["reserves",{"_index":1481,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["reset",{"_index":396,"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":3095,"title":{},"body":{"injectables/TransactionService.html":{}}}],["resize",{"_index":649,"title":{},"body":{"components/AppComponent.html":{}}}],["resolve",{"_index":924,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolve(false",{"_index":948,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolve(true",{"_index":910,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolved",{"_index":3981,"title":{},"body":{"license.html":{}}}],["resource",{"_index":1283,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["respect",{"_index":3593,"title":{},"body":{"license.html":{}}}],["response",{"_index":1266,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["responsebody",{"_index":2423,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["responsibilities",{"_index":902,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["responsible",{"_index":4118,"title":{},"body":{"license.html":{}}}],["restrict",{"_index":3659,"title":{},"body":{"license.html":{}}}],["restricting",{"_index":3854,"title":{},"body":{"license.html":{}}}],["restriction",{"_index":4069,"title":{},"body":{"license.html":{}}}],["restrictions",{"_index":4066,"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/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/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/typealiases.html":{},"miscellaneous/variables.html":{}}}],["resulting",{"_index":3698,"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/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/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/typealiases.html":{},"miscellaneous/variables.html":{}}}],["retail",{"_index":1974,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["retains",{"_index":4008,"title":{},"body":{"license.html":{}}}],["return",{"_index":108,"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/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":1264,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["returns",{"_index":85,"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/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":2754,"title":{},"body":{"guards/RoleGuard.html":{}}}],["reverse",{"_index":3076,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reversetransaction",{"_index":3018,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reviewing",{"_index":4273,"title":{},"body":{"license.html":{}}}],["revised",{"_index":4223,"title":{},"body":{"license.html":{}}}],["rewards",{"_index":2326,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ribe",{"_index":2280,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["right",{"_index":4003,"title":{},"body":{"license.html":{}}}],["rights",{"_index":3583,"title":{},"body":{"license.html":{}}}],["risk",{"_index":4244,"title":{},"body":{"license.html":{}}}],["road",{"_index":2092,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["role",{"_index":459,"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":{}}}],["roleguard",{"_index":2744,"title":{"guards/RoleGuard.html":{}},"body":{"guards/RoleGuard.html":{},"coverage.html":{}}}],["rom",{"_index":4011,"title":{},"body":{"license.html":{}}}],["root",{"_index":590,"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":248,"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/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":466,"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":2750,"title":{},"body":{"guards/RoleGuard.html":{}}}],["route.data.roles.indexof(currentuser.role",{"_index":2751,"title":{},"body":{"guards/RoleGuard.html":{}}}],["router",{"_index":166,"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":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/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":{}}}],["routerlinkdirectivestub",{"_index":287,"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/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":450,"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":455,"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":726,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["routerstatesnapshot",{"_index":793,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["routes",{"_index":449,"title":{"routes.html":{}},"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":{},"overview.html":{},"routes.html":{}}}],["route}.\\n${error.message",{"_index":1336,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["route}.\\n${error.message}.\\nstatus",{"_index":1332,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["routing.module",{"_index":404,"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":448,"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":523,"title":{},"body":{"components/AdminComponent.html":{}}}],["row.isexpanded",{"_index":567,"title":{},"body":{"components/AdminComponent.html":{}}}],["royalty",{"_index":4133,"title":{},"body":{"license.html":{}}}],["rsv",{"_index":1458,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/TokenServiceStub.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["rubbish",{"_index":1598,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ruben",{"_index":2080,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rueben",{"_index":2081,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ruiru",{"_index":2188,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rules",{"_index":4020,"title":{},"body":{"license.html":{}}}],["run",{"_index":3471,"title":{},"body":{"index.html":{},"license.html":{}}}],["running",{"_index":3505,"title":{},"body":{"index.html":{},"license.html":{}}}],["runs",{"_index":3777,"title":{},"body":{"license.html":{}}}],["rural",{"_index":2299,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rxjs",{"_index":494,"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":342,"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":851,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["s.signature",{"_index":2666,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["sabuni",{"_index":1917,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sad",{"_index":645,"title":{},"body":{"components/AppComponent.html":{}}}],["safe",{"_index":2770,"title":{},"body":{"pipes/SafePipe.html":{}}}],["safepipe",{"_index":2767,"title":{"pipes/SafePipe.html":{}},"body":{"pipes/SafePipe.html":{},"modules/SharedModule.html":{},"coverage.html":{},"overview.html":{}}}],["safest",{"_index":4290,"title":{},"body":{"license.html":{}}}],["sake",{"_index":3619,"title":{},"body":{"license.html":{}}}],["sale",{"_index":4141,"title":{},"body":{"license.html":{}}}],["sales",{"_index":1698,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["salon",{"_index":1691,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["saloon",{"_index":1699,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["samaki",{"_index":1799,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sambusa",{"_index":1873,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["same",{"_index":3600,"title":{},"body":{"license.html":{}}}],["samosa",{"_index":1797,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sanitizer",{"_index":2777,"title":{},"body":{"pipes/SafePipe.html":{}}}],["sarafu",{"_index":53,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"components/TransactionDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["sarafutoken",{"_index":2951,"title":{},"body":{"injectables/TokenService.html":{}}}],["sarafutoken.methods.balanceof(address).call",{"_index":2954,"title":{},"body":{"injectables/TokenService.html":{}}}],["satisfy",{"_index":3953,"title":{},"body":{"license.html":{}}}],["sausages",{"_index":1843,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["savings",{"_index":1934,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["saying",{"_index":3949,"title":{},"body":{"license.html":{}}}],["scaffolding",{"_index":3484,"title":{},"body":{"index.html":{}}}],["scan",{"_index":991,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["scan(settings",{"_index":1012,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["scanfilter",{"_index":2780,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["sch",{"_index":1511,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["schemas",{"_index":3414,"title":{},"body":{"dependencies.html":{}}}],["school",{"_index":1512,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["science",{"_index":1558,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["scope",{"_index":4192,"title":{},"body":{"license.html":{}}}],["scrap",{"_index":1595,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["script",{"_index":3503,"title":{},"body":{"index.html":{}}}],["scripts",{"_index":3783,"title":{},"body":{"license.html":{}}}],["search",{"_index":140,"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":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/FooterStubComponent.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":443,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["search.component.html",{"_index":144,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.scss",{"_index":142,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts",{"_index":132,"title":{},"body":{"components/AccountSearchComponent.html":{},"coverage.html":{}}}],["search.component.ts:16",{"_index":181,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:17",{"_index":183,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:18",{"_index":182,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:19",{"_index":184,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:20",{"_index":186,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:21",{"_index":185,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:22",{"_index":174,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:23",{"_index":179,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:24",{"_index":178,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:25",{"_index":167,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:33",{"_index":168,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:45",{"_index":188,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:46",{"_index":190,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:47",{"_index":192,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:49",{"_index":171,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:57",{"_index":172,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:71",{"_index":170,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search/account",{"_index":131,"title":{},"body":{"components/AccountSearchComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"coverage.html":{}}}],["secondarily",{"_index":3708,"title":{},"body":{"license.html":{}}}],["secondary",{"_index":1523,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["secp256k1",{"_index":3137,"title":{},"body":{"injectables/TransactionService.html":{}}}],["secp256k1.ecdsasign(txmsg",{"_index":3204,"title":{},"body":{"injectables/TransactionService.html":{}}}],["secretary",{"_index":1703,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["section",{"_index":3833,"title":{},"body":{"license.html":{}}}],["sections",{"_index":3913,"title":{},"body":{"license.html":{}}}],["secure",{"_index":2824,"title":{},"body":{"components/SettingsComponent.html":{}}}],["security",{"_index":1701,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["see",{"_index":3515,"title":{},"body":{"index.html":{},"license.html":{}}}],["seedling",{"_index":1606,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["seedlings",{"_index":1607,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["seigei",{"_index":2093,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["selection.directive",{"_index":2852,"title":{},"body":{"modules/SharedModule.html":{}}}],["selection.directive.ts",{"_index":1424,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"coverage.html":{}}}],["selection.directive.ts:20",{"_index":1432,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["selection.directive.ts:6",{"_index":1431,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["selector",{"_index":138,"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/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":4157,"title":{},"body":{"license.html":{}}}],["selling",{"_index":3343,"title":{},"body":{"classes/UserServiceStub.html":{},"license.html":{}}}],["semiconductor",{"_index":3682,"title":{},"body":{"license.html":{}}}],["send",{"_index":763,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["senddebuglevelmessage",{"_index":1386,"title":{},"body":{"injectables/LoggingService.html":{}}}],["senddebuglevelmessage(message",{"_index":1396,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sender",{"_index":1109,"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":3115,"title":{},"body":{"injectables/TransactionService.html":{}}}],["senderbloxberglink",{"_index":3015,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["senderrorlevelmessage",{"_index":1387,"title":{},"body":{"injectables/LoggingService.html":{}}}],["senderrorlevelmessage(message",{"_index":1398,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendfatallevelmessage",{"_index":1388,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendfatallevelmessage(message",{"_index":1400,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendinfolevelmessage",{"_index":1389,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendinfolevelmessage(message",{"_index":1402,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendloglevelmessage",{"_index":1390,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendloglevelmessage(message",{"_index":1404,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendresponse",{"_index":826,"title":{},"body":{"injectables/AuthService.html":{}}}],["sendresponse(hobaresponseencoded",{"_index":843,"title":{},"body":{"injectables/AuthService.html":{}}}],["sendtracelevelmessage",{"_index":1391,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendtracelevelmessage(message",{"_index":1406,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendwarnlevelmessage",{"_index":1392,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendwarnlevelmessage(message",{"_index":1408,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sentencesforwarninglogging",{"_index":1300,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["separable",{"_index":3963,"title":{},"body":{"license.html":{}}}],["separate",{"_index":901,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["separately",{"_index":3895,"title":{},"body":{"license.html":{}}}],["seremala",{"_index":1700,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["serial",{"_index":2919,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["server",{"_index":2335,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"index.html":{},"license.html":{}}}],["serverloggingurl",{"_index":711,"title":{},"body":{"modules/AppModule.html":{}}}],["serverloglevel",{"_index":709,"title":{},"body":{"modules/AppModule.html":{},"miscellaneous/variables.html":{}}}],["serves",{"_index":3767,"title":{},"body":{"license.html":{}}}],["service",{"_index":938,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/TokenServiceStub.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["servicing",{"_index":4251,"title":{},"body":{"license.html":{}}}],["session",{"_index":900,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessionlogincount",{"_index":815,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessionstorage.getitem(btoa('cicada_session_token",{"_index":869,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/HttpConfigInterceptor.html":{}}}],["sessionstorage.removeitem(btoa('cicada_session_token",{"_index":970,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessionstorage.setitem(btoa('cicada_session_token",{"_index":909,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessiontoken",{"_index":816,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessiontokenresult",{"_index":928,"title":{},"body":{"injectables/AuthService.html":{}}}],["set",{"_index":491,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"index.html":{}}}],["setconversion",{"_index":3096,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["setconversion(conversion",{"_index":3110,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["setkey",{"_index":754,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["setkey(privatekeyarmored",{"_index":846,"title":{},"body":{"injectables/AuthService.html":{}}}],["setparammap",{"_index":475,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["setparammap(params",{"_index":489,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["setstate",{"_index":827,"title":{},"body":{"injectables/AuthService.html":{}}}],["setstate(s",{"_index":849,"title":{},"body":{"injectables/AuthService.html":{}}}],["setting",{"_index":866,"title":{},"body":{"injectables/AuthService.html":{}}}],["settings",{"_index":1001,"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":265,"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/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":1027,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.component.html",{"_index":2792,"title":{},"body":{"components/SettingsComponent.html":{}}}],["settings.component.scss",{"_index":2791,"title":{},"body":{"components/SettingsComponent.html":{}}}],["settings.registry",{"_index":1034,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.registry.load",{"_index":1048,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.registry.onload",{"_index":1042,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.scanfilter(settings",{"_index":1086,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper",{"_index":1036,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.onconversion",{"_index":1040,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.ontransfer",{"_index":1038,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.processreceipt(m.data",{"_index":1056,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.w3.engine",{"_index":1032,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.w3.provider",{"_index":1030,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settingscomponent",{"_index":264,"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/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":2829,"title":{"modules/SettingsModule.html":{}},"body":{"modules/SettingsModule.html":{},"modules.html":{},"overview.html":{}}}],["settingsroutingmodule",{"_index":2833,"title":{"modules/SettingsRoutingModule.html":{}},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["settransaction",{"_index":3097,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["settransaction(transaction",{"_index":3112,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["sha256",{"_index":2623,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["sha3",{"_index":3129,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{}}}],["shall",{"_index":3838,"title":{},"body":{"license.html":{}}}],["shamba",{"_index":1617,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shanzu",{"_index":2262,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["share",{"_index":495,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"license.html":{}}}],["shared",{"_index":3790,"title":{},"body":{"license.html":{}}}],["sharedmodule",{"_index":393,"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":1705,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shephard",{"_index":1706,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shepherd",{"_index":1657,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shirt",{"_index":1991,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shoe",{"_index":1704,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shop",{"_index":1942,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["short",{"_index":4305,"title":{},"body":{"license.html":{}}}],["show",{"_index":3603,"title":{},"body":{"license.html":{}}}],["siaya",{"_index":2288,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sickly",{"_index":1932,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["side",{"_index":1259,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["sidebar",{"_index":650,"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":267,"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/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":2859,"title":{},"body":{"components/SidebarComponent.html":{}}}],["sidebar.component.scss",{"_index":2858,"title":{},"body":{"components/SidebarComponent.html":{}}}],["sidebar?.classlist.add('active",{"_index":661,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebar?.classlist.contains('active",{"_index":660,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebar?.classlist.remove('active",{"_index":664,"title":{},"body":{"components/AppComponent.html":{}}}],["sidebar?.classlist.toggle('active",{"_index":1444,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["sidebarcollapse",{"_index":655,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["sidebarcollapse?.classlist.contains('active",{"_index":657,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebarcollapse?.classlist.remove('active",{"_index":658,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebarcollapse?.classlist.toggle('active",{"_index":1446,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["sidebarcomponent",{"_index":266,"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/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":268,"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/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":2654,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["sigei",{"_index":2088,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sign",{"_index":2454,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["sign(digest",{"_index":2636,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["sign(plaintext",{"_index":2496,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["signable",{"_index":2633,"title":{"interfaces/Signable.html":{}},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["signature",{"_index":40,"title":{"interfaces/Signature.html":{}},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{}}}],["signatureobject",{"_index":2550,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["signatureobject.recid",{"_index":3209,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signatureobject.signature",{"_index":2552,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["signatureobject.signature.slice(0",{"_index":3206,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signatureobject.signature.slice(32",{"_index":3208,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signchallenge",{"_index":856,"title":{},"body":{"injectables/AuthService.html":{}}}],["signchallenge(o.challenge",{"_index":926,"title":{},"body":{"injectables/AuthService.html":{}}}],["signed",{"_index":898,"title":{},"body":{"injectables/AuthService.html":{}}}],["signer",{"_index":2614,"title":{"interfaces/Signer.html":{}},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["signer.ts",{"_index":2613,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["signer.ts:18",{"_index":2865,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:19",{"_index":2866,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:20",{"_index":2864,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:21",{"_index":2867,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:22",{"_index":2869,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:23",{"_index":2868,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:28",{"_index":2626,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:29",{"_index":2624,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:30",{"_index":2625,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:31",{"_index":2630,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:32",{"_index":2627,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:33",{"_index":2628,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:34",{"_index":2629,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:35",{"_index":2622,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:43",{"_index":2631,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:47",{"_index":2634,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:52",{"_index":2639,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:7",{"_index":2863,"title":{},"body":{"interfaces/Signable.html":{}}}],["signer.ts:77",{"_index":2637,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signeraddress",{"_index":65,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["significant",{"_index":3993,"title":{},"body":{"license.html":{}}}],["silc",{"_index":1938,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["silver",{"_index":3321,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["sima",{"_index":1870,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["similar",{"_index":3852,"title":{},"body":{"license.html":{}}}],["simsim",{"_index":1861,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["simu",{"_index":1978,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["simulate",{"_index":2334,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["simultaneously",{"_index":4211,"title":{},"body":{"license.html":{}}}],["sinai",{"_index":2087,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["single",{"_index":4184,"title":{},"body":{"license.html":{}}}],["size",{"_index":4371,"title":{},"body":{"miscellaneous/variables.html":{}}}],["slash",{"_index":2721,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["smokie",{"_index":1881,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["smokies",{"_index":1882,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sms",{"_index":3075,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["snackbar",{"_index":3022,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["snacks",{"_index":1874,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soap",{"_index":1918,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["societies",{"_index":2895,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["socks",{"_index":1966,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soda",{"_index":1794,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["software",{"_index":3537,"title":{},"body":{"license.html":{}}}],["soko",{"_index":1798,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["solar",{"_index":2053,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sold",{"_index":3975,"title":{},"body":{"license.html":{}}}],["soldier",{"_index":1580,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sole",{"_index":3818,"title":{},"body":{"license.html":{}}}],["solely",{"_index":3830,"title":{},"body":{"license.html":{}}}],["somehow",{"_index":765,"title":{},"body":{"components/AuthComponent.html":{}}}],["something",{"_index":642,"title":{},"body":{"components/AppComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["sort",{"_index":300,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["soup",{"_index":1879,"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/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/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":1113,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["south",{"_index":2077,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soweto",{"_index":2185,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["spare",{"_index":1964,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["spareparts",{"_index":1955,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["speak",{"_index":939,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["special",{"_index":3663,"title":{},"body":{"license.html":{}}}],["specific",{"_index":3775,"title":{},"body":{"license.html":{}}}],["specifically",{"_index":3794,"title":{},"body":{"license.html":{}}}],["specified",{"_index":3754,"title":{},"body":{"license.html":{}}}],["specifies",{"_index":4229,"title":{},"body":{"license.html":{}}}],["specify",{"_index":4232,"title":{},"body":{"license.html":{}}}],["spinach",{"_index":1880,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["spinner",{"_index":441,"title":{},"body":{"modules/AccountsModule.html":{}}}],["spirit",{"_index":4224,"title":{},"body":{"license.html":{}}}],["src/.../account.ts",{"_index":4338,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../accountindex.ts",{"_index":4335,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../array",{"_index":3444,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../clipboard",{"_index":3445,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../environment.dev.ts",{"_index":4339,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../environment.prod.ts",{"_index":4340,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../environment.ts",{"_index":4341,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../export",{"_index":3446,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../http",{"_index":3447,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../mock",{"_index":4337,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../pgp",{"_index":4334,"title":{},"body":{"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["src/.../read",{"_index":3448,"title":{},"body":{"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["src/.../schema",{"_index":3449,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../token",{"_index":4336,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../transaction.service.ts",{"_index":4342,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../user.service.ts",{"_index":4343,"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:10",{"_index":76,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:22",{"_index":92,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:26",{"_index":88,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:30",{"_index":90,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:44",{"_index":83,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:8",{"_index":80,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/accountindex.ts:9",{"_index":81,"title":{},"body":{"classes/AccountIndex.html":{}}}],["src/app/_eth/token",{"_index":2907,"title":{},"body":{"classes/TokenRegistry.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_guards/auth.guard.ts",{"_index":788,"title":{},"body":{"guards/AuthGuard.html":{},"coverage.html":{}}}],["src/app/_guards/auth.guard.ts:12",{"_index":794,"title":{},"body":{"guards/AuthGuard.html":{}}}],["src/app/_guards/auth.guard.ts:8",{"_index":790,"title":{},"body":{"guards/AuthGuard.html":{}}}],["src/app/_guards/role.guard.ts",{"_index":2745,"title":{},"body":{"guards/RoleGuard.html":{},"coverage.html":{}}}],["src/app/_guards/role.guard.ts:12",{"_index":2747,"title":{},"body":{"guards/RoleGuard.html":{}}}],["src/app/_guards/role.guard.ts:8",{"_index":2746,"title":{},"body":{"guards/RoleGuard.html":{}}}],["src/app/_helpers/array",{"_index":3355,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/clipboard",{"_index":3358,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/custom",{"_index":1169,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"coverage.html":{}}}],["src/app/_helpers/custom.validator.ts",{"_index":1186,"title":{},"body":{"classes/CustomValidator.html":{},"coverage.html":{}}}],["src/app/_helpers/custom.validator.ts:12",{"_index":1196,"title":{},"body":{"classes/CustomValidator.html":{}}}],["src/app/_helpers/custom.validator.ts:4",{"_index":1192,"title":{},"body":{"classes/CustomValidator.html":{}}}],["src/app/_helpers/export",{"_index":3361,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/global",{"_index":1297,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{}}}],["src/app/_helpers/http",{"_index":3365,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/mock",{"_index":1448,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_helpers/read",{"_index":3367,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["src/app/_helpers/schema",{"_index":3371,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_interceptors/error.interceptor.ts",{"_index":1241,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/error.interceptor.ts:14",{"_index":1244,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["src/app/_interceptors/error.interceptor.ts:22",{"_index":1248,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["src/app/_interceptors/http",{"_index":1344,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/logging.interceptor.ts",{"_index":1368,"title":{},"body":{"interceptors/LoggingInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/logging.interceptor.ts:14",{"_index":1369,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["src/app/_interceptors/logging.interceptor.ts:20",{"_index":1370,"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":457,"title":{},"body":{"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"coverage.html":{}}}],["src/app/_models/settings.ts",{"_index":2779,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{},"coverage.html":{}}}],["src/app/_models/settings.ts:16",{"_index":3345,"title":{},"body":{"classes/W3.html":{}}}],["src/app/_models/settings.ts:17",{"_index":3346,"title":{},"body":{"classes/W3.html":{}}}],["src/app/_models/settings.ts:2",{"_index":2788,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:6",{"_index":2786,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:7",{"_index":2785,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:8",{"_index":2784,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/staff.ts",{"_index":2870,"title":{},"body":{"interfaces/Staff.html":{},"coverage.html":{}}}],["src/app/_models/token.ts",{"_index":2873,"title":{},"body":{"interfaces/Token.html":{},"coverage.html":{}}}],["src/app/_models/transaction.ts",{"_index":1091,"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":3289,"title":{},"body":{"classes/TxToken.html":{}}}],["src/app/_models/transaction.ts:13",{"_index":3290,"title":{},"body":{"classes/TxToken.html":{}}}],["src/app/_models/transaction.ts:14",{"_index":3291,"title":{},"body":{"classes/TxToken.html":{}}}],["src/app/_models/transaction.ts:18",{"_index":3284,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:19",{"_index":3285,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:20",{"_index":3286,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:21",{"_index":3287,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:22",{"_index":3288,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:26",{"_index":3004,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:27",{"_index":3006,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:28",{"_index":3007,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:29",{"_index":3005,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:30",{"_index":3008,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:31",{"_index":3009,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:32",{"_index":3011,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:33",{"_index":3010,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:37",{"_index":1116,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:38",{"_index":1117,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:39",{"_index":1118,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:4",{"_index":1101,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_models/transaction.ts:40",{"_index":1119,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:41",{"_index":1120,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:42",{"_index":1122,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:43",{"_index":1121,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:5",{"_index":1098,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_models/transaction.ts:6",{"_index":1099,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_models/transaction.ts:7",{"_index":1097,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_models/transaction.ts:8",{"_index":1100,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_pgp/pgp",{"_index":2429,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["src/app/_services/auth.service.ts",{"_index":813,"title":{},"body":{"injectables/AuthService.html":{},"coverage.html":{}}}],["src/app/_services/auth.service.ts:118",{"_index":839,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:147",{"_index":841,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:15",{"_index":853,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:153",{"_index":847,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:16",{"_index":852,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:17",{"_index":830,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:177",{"_index":842,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:183",{"_index":834,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:189",{"_index":833,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:200",{"_index":832,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:27",{"_index":836,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:38",{"_index":850,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:42",{"_index":835,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:61",{"_index":844,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:84",{"_index":831,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:99",{"_index":837,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/block",{"_index":984,"title":{},"body":{"injectables/BlockSyncService.html":{},"coverage.html":{}}}],["src/app/_services/error",{"_index":1222,"title":{},"body":{"injectables/ErrorDialogService.html":{},"coverage.html":{}}}],["src/app/_services/location.service.ts",{"_index":1352,"title":{},"body":{"injectables/LocationService.html":{},"coverage.html":{}}}],["src/app/_services/location.service.ts:10",{"_index":1357,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:16",{"_index":1360,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:20",{"_index":1359,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:24",{"_index":1363,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:28",{"_index":1362,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/logging.service.ts",{"_index":1383,"title":{},"body":{"injectables/LoggingService.html":{},"coverage.html":{}}}],["src/app/_services/logging.service.ts:18",{"_index":1407,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:22",{"_index":1397,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:26",{"_index":1403,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:30",{"_index":1405,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:34",{"_index":1409,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:38",{"_index":1399,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:42",{"_index":1401,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:8",{"_index":1410,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:9",{"_index":1395,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/registry.service.ts",{"_index":2722,"title":{},"body":{"injectables/RegistryService.html":{},"coverage.html":{}}}],["src/app/_services/registry.service.ts:11",{"_index":2739,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:12",{"_index":2731,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:13",{"_index":2738,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:14",{"_index":2727,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:21",{"_index":2728,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:25",{"_index":2729,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/token.service.ts",{"_index":2927,"title":{},"body":{"injectables/TokenService.html":{},"coverage.html":{}}}],["src/app/_services/token.service.ts:13",{"_index":2937,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:14",{"_index":2938,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:15",{"_index":2930,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:29",{"_index":2935,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:34",{"_index":2934,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:38",{"_index":2932,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/transaction.service.ts",{"_index":3087,"title":{},"body":{"injectables/TransactionService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_services/transaction.service.ts:102",{"_index":3104,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:108",{"_index":3117,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:26",{"_index":3121,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:27",{"_index":3120,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:28",{"_index":3123,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:29",{"_index":3124,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:30",{"_index":3125,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:31",{"_index":3099,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:45",{"_index":3108,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:49",{"_index":3106,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:53",{"_index":3113,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:73",{"_index":3111,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:89",{"_index":3102,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:97",{"_index":3109,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/user.service.ts",{"_index":3384,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/app",{"_index":717,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["src/app/app.component.ts",{"_index":589,"title":{},"body":{"components/AppComponent.html":{},"coverage.html":{}}}],["src/app/app.component.ts:12",{"_index":623,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:13",{"_index":621,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:14",{"_index":619,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:15",{"_index":605,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:43",{"_index":614,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:68",{"_index":612,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:74",{"_index":610,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.module.ts",{"_index":685,"title":{},"body":{"modules/AppModule.html":{}}}],["src/app/auth/_directives/password",{"_index":2702,"title":{},"body":{"directives/PasswordToggleDirective.html":{},"coverage.html":{}}}],["src/app/auth/auth",{"_index":811,"title":{},"body":{"modules/AuthRoutingModule.html":{}}}],["src/app/auth/auth.component.ts",{"_index":728,"title":{},"body":{"components/AuthComponent.html":{},"coverage.html":{}}}],["src/app/auth/auth.component.ts:14",{"_index":746,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:15",{"_index":748,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:16",{"_index":747,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:17",{"_index":739,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:25",{"_index":741,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:36",{"_index":750,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:38",{"_index":742,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:48",{"_index":740,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:59",{"_index":743,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:67",{"_index":745,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.module.ts",{"_index":806,"title":{},"body":{"modules/AuthModule.html":{}}}],["src/app/pages/accounts/account",{"_index":130,"title":{},"body":{"components/AccountSearchComponent.html":{},"coverage.html":{}}}],["src/app/pages/accounts/accounts",{"_index":447,"title":{},"body":{"modules/AccountsRoutingModule.html":{}}}],["src/app/pages/accounts/accounts.component.ts",{"_index":290,"title":{},"body":{"components/AccountsComponent.html":{},"coverage.html":{}}}],["src/app/pages/accounts/accounts.component.ts:20",{"_index":321,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:21",{"_index":317,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:22",{"_index":325,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:23",{"_index":323,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:24",{"_index":329,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:25",{"_index":318,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:26",{"_index":319,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:28",{"_index":333,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:29",{"_index":308,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:48",{"_index":313,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:57",{"_index":310,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:61",{"_index":316,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:65",{"_index":312,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:76",{"_index":314,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:84",{"_index":311,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.module.ts",{"_index":398,"title":{},"body":{"modules/AccountsModule.html":{}}}],["src/app/pages/accounts/create",{"_index":1123,"title":{},"body":{"components/CreateAccountComponent.html":{},"coverage.html":{}}}],["src/app/pages/admin/admin",{"_index":588,"title":{},"body":{"modules/AdminRoutingModule.html":{}}}],["src/app/pages/admin/admin.component.ts",{"_index":502,"title":{},"body":{"components/AdminComponent.html":{},"coverage.html":{}}}],["src/app/pages/admin/admin.component.ts:25",{"_index":527,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:26",{"_index":530,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:27",{"_index":525,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:28",{"_index":526,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:30",{"_index":531,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:31",{"_index":511,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:46",{"_index":524,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:49",{"_index":519,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:53",{"_index":513,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:57",{"_index":516,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:63",{"_index":518,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:69",{"_index":522,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:73",{"_index":520,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.module.ts",{"_index":585,"title":{},"body":{"modules/AdminModule.html":{}}}],["src/app/pages/pages",{"_index":2690,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["src/app/pages/pages.component.ts",{"_index":2671,"title":{},"body":{"components/PagesComponent.html":{},"coverage.html":{}}}],["src/app/pages/pages.component.ts:10",{"_index":2675,"title":{},"body":{"components/PagesComponent.html":{}}}],["src/app/pages/pages.module.ts",{"_index":2684,"title":{},"body":{"modules/PagesModule.html":{}}}],["src/app/pages/settings/organization/organization.component.ts",{"_index":2578,"title":{},"body":{"components/OrganizationComponent.html":{},"coverage.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:12",{"_index":2587,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:13",{"_index":2588,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:14",{"_index":2584,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:20",{"_index":2585,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:28",{"_index":2590,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:30",{"_index":2586,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/settings",{"_index":2842,"title":{},"body":{"modules/SettingsRoutingModule.html":{}}}],["src/app/pages/settings/settings.component.ts",{"_index":2790,"title":{},"body":{"components/SettingsComponent.html":{},"coverage.html":{}}}],["src/app/pages/settings/settings.component.ts:16",{"_index":2799,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:17",{"_index":2798,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:18",{"_index":2801,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:19",{"_index":2803,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:21",{"_index":2802,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:22",{"_index":2793,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:28",{"_index":2797,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:37",{"_index":2794,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:41",{"_index":2795,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:45",{"_index":2796,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.module.ts",{"_index":2834,"title":{},"body":{"modules/SettingsModule.html":{}}}],["src/app/pages/tokens/token",{"_index":2874,"title":{},"body":{"components/TokenDetailsComponent.html":{},"coverage.html":{}}}],["src/app/pages/tokens/tokens",{"_index":2998,"title":{},"body":{"modules/TokensRoutingModule.html":{}}}],["src/app/pages/tokens/tokens.component.ts",{"_index":2960,"title":{},"body":{"components/TokensComponent.html":{},"coverage.html":{}}}],["src/app/pages/tokens/tokens.component.ts:18",{"_index":2973,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:19",{"_index":2972,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:20",{"_index":2974,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:21",{"_index":2975,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:22",{"_index":2966,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:30",{"_index":2969,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:41",{"_index":2967,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:45",{"_index":2971,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:49",{"_index":2968,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.module.ts",{"_index":2989,"title":{},"body":{"modules/TokensModule.html":{}}}],["src/app/pages/transactions/transaction",{"_index":3012,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"coverage.html":{}}}],["src/app/pages/transactions/transactions",{"_index":3283,"title":{},"body":{"modules/TransactionsRoutingModule.html":{}}}],["src/app/pages/transactions/transactions.component.ts",{"_index":3223,"title":{},"body":{"components/TransactionsComponent.html":{},"coverage.html":{}}}],["src/app/pages/transactions/transactions.component.ts:17",{"_index":3247,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:18",{"_index":3248,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:19",{"_index":3243,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:20",{"_index":3244,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:21",{"_index":3249,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:22",{"_index":3246,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:23",{"_index":3250,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:24",{"_index":3251,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:26",{"_index":3245,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:27",{"_index":3235,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:37",{"_index":3240,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:47",{"_index":3242,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:51",{"_index":3236,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:55",{"_index":3238,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:66",{"_index":3239,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:71",{"_index":3237,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.module.ts",{"_index":3279,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["src/app/shared/_directives/menu",{"_index":1423,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"coverage.html":{}}}],["src/app/shared/_pipes/safe.pipe.ts",{"_index":2769,"title":{},"body":{"pipes/SafePipe.html":{},"coverage.html":{}}}],["src/app/shared/_pipes/safe.pipe.ts:11",{"_index":2774,"title":{},"body":{"pipes/SafePipe.html":{}}}],["src/app/shared/_pipes/token",{"_index":2899,"title":{},"body":{"pipes/TokenRatioPipe.html":{},"coverage.html":{}}}],["src/app/shared/error",{"_index":1206,"title":{},"body":{"components/ErrorDialogComponent.html":{},"coverage.html":{}}}],["src/app/shared/footer/footer.component.ts",{"_index":1287,"title":{},"body":{"components/FooterComponent.html":{},"coverage.html":{}}}],["src/app/shared/footer/footer.component.ts:13",{"_index":1292,"title":{},"body":{"components/FooterComponent.html":{}}}],["src/app/shared/footer/footer.component.ts:9",{"_index":1291,"title":{},"body":{"components/FooterComponent.html":{}}}],["src/app/shared/shared.module.ts",{"_index":2847,"title":{},"body":{"modules/SharedModule.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts",{"_index":2857,"title":{},"body":{"components/SidebarComponent.html":{},"coverage.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts:13",{"_index":2861,"title":{},"body":{"components/SidebarComponent.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts:9",{"_index":2860,"title":{},"body":{"components/SidebarComponent.html":{}}}],["src/app/shared/topbar/topbar.component.ts",{"_index":2999,"title":{},"body":{"components/TopbarComponent.html":{},"coverage.html":{}}}],["src/app/shared/topbar/topbar.component.ts:13",{"_index":3003,"title":{},"body":{"components/TopbarComponent.html":{}}}],["src/app/shared/topbar/topbar.component.ts:9",{"_index":3002,"title":{},"body":{"components/TopbarComponent.html":{}}}],["src/assets/js/ethtx/dist",{"_index":3135,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/assets/js/ethtx/dist/hex",{"_index":201,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["src/assets/js/ethtx/dist/tx",{"_index":3136,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/assets/js/hoba",{"_index":857,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/assets/js/hoba.js",{"_index":855,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/environments",{"_index":3520,"title":{},"body":{"index.html":{}}}],["src/environments/environment",{"_index":95,"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":3390,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/environments/environment.prod.ts",{"_index":3391,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/environments/environment.ts",{"_index":3392,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/testing/activated",{"_index":465,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"coverage.html":{}}}],["src/testing/router",{"_index":2756,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{},"coverage.html":{}}}],["src/testing/shared",{"_index":1294,"title":{},"body":{"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{},"coverage.html":{}}}],["src/testing/token",{"_index":2956,"title":{},"body":{"classes/TokenServiceStub.html":{},"coverage.html":{}}}],["src/testing/transaction",{"_index":3218,"title":{},"body":{"classes/TransactionServiceStub.html":{},"coverage.html":{}}}],["src/testing/user",{"_index":3293,"title":{},"body":{"classes/UserServiceStub.html":{},"coverage.html":{}}}],["srf",{"_index":3065,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["stadium",{"_index":2218,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["staff",{"_index":574,"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":944,"title":{},"body":{"injectables/AuthService.html":{}}}],["stand",{"_index":3649,"title":{},"body":{"license.html":{}}}],["standard",{"_index":3750,"title":{},"body":{"license.html":{}}}],["standards",{"_index":3753,"title":{},"body":{"license.html":{}}}],["starehe",{"_index":2221,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["start",{"_index":4291,"title":{},"body":{"license.html":{}}}],["start:dev",{"_index":3477,"title":{},"body":{"index.html":{}}}],["started",{"_index":3465,"title":{"index.html":{},"license.html":{}},"body":{}}],["starts",{"_index":4306,"title":{},"body":{"license.html":{}}}],["starttime",{"_index":1375,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["state",{"_index":533,"title":{},"body":{"components/AdminComponent.html":{},"guards/AuthGuard.html":{},"classes/CustomErrorStateMatcher.html":{},"guards/RoleGuard.html":{},"coverage.html":{},"license.html":{}}}],["state('collapsed",{"_index":541,"title":{},"body":{"components/AdminComponent.html":{}}}],["state('expanded",{"_index":547,"title":{},"body":{"components/AdminComponent.html":{}}}],["state.url",{"_index":2755,"title":{},"body":{"guards/RoleGuard.html":{}}}],["stated",{"_index":3805,"title":{},"body":{"license.html":{}}}],["statement",{"_index":4073,"title":{},"body":{"license.html":{}}}],["statements",{"_index":3349,"title":{},"body":{"coverage.html":{}}}],["states",{"_index":2605,"title":{},"body":{"components/OrganizationComponent.html":{},"license.html":{}}}],["static",{"_index":1187,"title":{},"body":{"classes/CustomValidator.html":{}}}],["stating",{"_index":3874,"title":{},"body":{"license.html":{}}}],["station",{"_index":2002,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["status",{"_index":514,"title":{},"body":{"components/AdminComponent.html":{},"components/ErrorDialogComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"license.html":{}}}],["step",{"_index":2822,"title":{},"body":{"components/SettingsComponent.html":{}}}],["steps",{"_index":3607,"title":{},"body":{"license.html":{}}}],["stima",{"_index":2054,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["storage",{"_index":3904,"title":{},"body":{"license.html":{}}}],["store",{"_index":2501,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["store.ts",{"_index":2430,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["store.ts:10",{"_index":2482,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:100",{"_index":2556,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:104",{"_index":2560,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:109",{"_index":2557,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:11",{"_index":2473,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:113",{"_index":2562,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:117",{"_index":2559,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:12",{"_index":2477,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:121",{"_index":2563,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:125",{"_index":2565,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:129",{"_index":2574,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:13",{"_index":2476,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:133",{"_index":2576,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:137",{"_index":2575,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:14",{"_index":2456,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:142",{"_index":2553,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:146",{"_index":2577,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:15",{"_index":2467,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:16",{"_index":2463,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:17",{"_index":2488,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:18",{"_index":2486,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:19",{"_index":2457,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:20",{"_index":2459,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:21",{"_index":2466,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:22",{"_index":2461,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:23",{"_index":2469,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:24",{"_index":2465,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:25",{"_index":2471,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:26",{"_index":2475,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:27",{"_index":2491,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:28",{"_index":2495,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:29",{"_index":2493,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:30",{"_index":2455,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:31",{"_index":2497,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:36",{"_index":2573,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:41",{"_index":2568,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:46",{"_index":2570,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:50",{"_index":2569,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:54",{"_index":2564,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:58",{"_index":2567,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:62",{"_index":2566,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:66",{"_index":2554,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:7",{"_index":2489,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:70",{"_index":2561,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:74",{"_index":2558,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:78",{"_index":2572,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:8",{"_index":2479,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:84",{"_index":2571,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:9",{"_index":2484,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:94",{"_index":2555,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["stored",{"_index":3500,"title":{},"body":{"index.html":{}}}],["str",{"_index":3458,"title":{},"body":{"miscellaneous/functions.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/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":{},"miscellaneous/functions.html":{}}}],["stringfromurl",{"_index":2391,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["strip0x",{"_index":200,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["strip0x(abi",{"_index":3187,"title":{},"body":{"injectables/TransactionService.html":{}}}],["stub.ts",{"_index":467,"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:11",{"_index":483,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["stub.ts:12",{"_index":3296,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:18",{"_index":486,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["stub.ts:2",{"_index":2959,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["stub.ts:21",{"_index":490,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"classes/UserServiceStub.html":{}}}],["stub.ts:37",{"_index":3331,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:4",{"_index":3220,"title":{},"body":{"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{}}}],["stub.ts:6",{"_index":3219,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["stub.ts:61",{"_index":3329,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:7",{"_index":2759,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["stub.ts:71",{"_index":3327,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:8",{"_index":2760,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{},"classes/TransactionServiceStub.html":{}}}],["student",{"_index":1514,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["style",{"_index":534,"title":{},"body":{"components/AdminComponent.html":{},"components/AuthComponent.html":{}}}],["style({height",{"_index":542,"title":{},"body":{"components/AdminComponent.html":{}}}],["styles",{"_index":127,"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/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":141,"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/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":4123,"title":{},"body":{"license.html":{}}}],["subject",{"_index":480,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"license.html":{}}}],["subkeyid",{"_index":2472,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["sublicenses",{"_index":4153,"title":{},"body":{"license.html":{}}}],["sublicensing",{"_index":3832,"title":{},"body":{"license.html":{}}}],["submit",{"_index":1168,"title":{},"body":{"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["submitted",{"_index":733,"title":{},"body":{"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["subprograms",{"_index":3793,"title":{},"body":{"license.html":{}}}],["subroutine",{"_index":4317,"title":{},"body":{"license.html":{}}}],["subscribe(this.authservice.mutablekeystore.importpublickey",{"_index":639,"title":{},"body":{"components/AppComponent.html":{}}}],["subscribers",{"_index":498,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["subsection",{"_index":3937,"title":{},"body":{"license.html":{}}}],["substantial",{"_index":3989,"title":{},"body":{"license.html":{}}}],["substantially",{"_index":3647,"title":{},"body":{"license.html":{}}}],["succeeded",{"_index":1377,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["success",{"_index":1105,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["successfully",{"_index":2385,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TransactionDetailsComponent.html":{}}}],["such",{"_index":3595,"title":{},"body":{"license.html":{}}}],["sue",{"_index":4167,"title":{},"body":{"license.html":{}}}],["suffice",{"_index":3997,"title":{},"body":{"license.html":{}}}],["sugar",{"_index":1875,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["suger",{"_index":1876,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sukari",{"_index":1878,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sukuma",{"_index":1883,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sum.ts",{"_index":3356,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["super",{"_index":1319,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["super(message",{"_index":1316,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["superadmin",{"_index":1460,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["supplement",{"_index":4027,"title":{},"body":{"license.html":{}}}],["supplier",{"_index":1742,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["supply",{"_index":1477,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"miscellaneous/variables.html":{}}}],["support",{"_index":2677,"title":{},"body":{"components/PagesComponent.html":{},"license.html":{},"modules.html":{}}}],["supports",{"_index":3945,"title":{},"body":{"license.html":{}}}],["supposed",{"_index":2514,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["sure",{"_index":3565,"title":{},"body":{"license.html":{}}}],["surname",{"_index":1147,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["surrender",{"_index":3589,"title":{},"body":{"license.html":{}}}],["survive",{"_index":4072,"title":{},"body":{"license.html":{}}}],["sustained",{"_index":4264,"title":{},"body":{"license.html":{}}}],["svg",{"_index":4326,"title":{},"body":{"modules.html":{}}}],["sweats",{"_index":1872,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sweet",{"_index":1871,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["switch",{"_index":1276,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["switchwindows",{"_index":736,"title":{},"body":{"components/AuthComponent.html":{}}}],["symbol",{"_index":1104,"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":985,"title":{},"body":{"injectables/BlockSyncService.html":{},"coverage.html":{}}}],["sync.service.ts:101",{"_index":1003,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:14",{"_index":1021,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:15",{"_index":994,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:23",{"_index":998,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:46",{"_index":1011,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:68",{"_index":1008,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:76",{"_index":1005,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:84",{"_index":1019,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync/data",{"_index":2737,"title":{},"body":{"injectables/RegistryService.html":{}}}],["sync/data/accountregistry.json",{"_index":100,"title":{},"body":{"classes/AccountIndex.html":{},"miscellaneous/variables.html":{}}}],["sync/data/tokenuniquesymbolindex.json",{"_index":2921,"title":{},"body":{"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["sync/head.js",{"_index":1054,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync/ondemand.js",{"_index":1067,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["syncer",{"_index":3406,"title":{},"body":{"dependencies.html":{}}}],["system",{"_index":936,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["systematic",{"_index":3636,"title":{},"body":{"license.html":{}}}],["taa",{"_index":2059,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["table",{"_index":2004,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["tablesort(document.getelementbyid('coverage",{"_index":3395,"title":{},"body":{"coverage.html":{}}}],["tag",{"_index":2872,"title":{},"body":{"interfaces/Staff.html":{}}}],["tailor",{"_index":1677,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["taka",{"_index":1594,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["takaungu",{"_index":2274,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["take",{"_index":3556,"title":{},"body":{"license.html":{}}}],["talk",{"_index":764,"title":{},"body":{"components/AuthComponent.html":{}}}],["tangible",{"_index":3968,"title":{},"body":{"license.html":{}}}],["tap",{"_index":1373,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["tasia",{"_index":2203,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tassia",{"_index":2202,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["taxi",{"_index":2028,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tea",{"_index":1884,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["teacher",{"_index":1510,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["technician",{"_index":1927,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["technological",{"_index":3841,"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":3737,"title":{},"body":{"license.html":{}}}],["template",{"_index":126,"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/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":143,"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/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":3803,"title":{},"body":{"license.html":{}}}],["terminal",{"_index":4304,"title":{},"body":{"license.html":{}}}],["terminate",{"_index":4078,"title":{},"body":{"license.html":{}}}],["terminated",{"_index":4100,"title":{},"body":{"license.html":{}}}],["terminates",{"_index":4087,"title":{},"body":{"license.html":{}}}],["termination",{"_index":4075,"title":{},"body":{"license.html":{}}}],["terms",{"_index":3604,"title":{},"body":{"license.html":{}}}],["test",{"_index":470,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["test:dev",{"_index":3508,"title":{},"body":{"index.html":{}}}],["testa",{"_index":1497,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["testb",{"_index":1493,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["testc",{"_index":1501,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tests",{"_index":3507,"title":{},"body":{"index.html":{}}}],["tetra",{"_index":2078,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tetrapak",{"_index":2079,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["text",{"_index":876,"title":{},"body":{"injectables/AuthService.html":{},"directives/PasswordToggleDirective.html":{},"miscellaneous/functions.html":{}}}],["then(res",{"_index":976,"title":{},"body":{"injectables/AuthService.html":{}}}],["therefore",{"_index":3590,"title":{},"body":{"license.html":{}}}],["thika",{"_index":2216,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["things",{"_index":3581,"title":{},"body":{"license.html":{}}}],["third",{"_index":3866,"title":{},"body":{"license.html":{}}}],["this.accounts",{"_index":361,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.accounts.filter(account",{"_index":367,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.accountstype",{"_index":365,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.accounttypes",{"_index":353,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{}}}],["this.actions",{"_index":559,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.addresssearchform",{"_index":208,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchform.controls",{"_index":211,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchform.invalid",{"_index":227,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchloading",{"_index":228,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchsubmitted",{"_index":226,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addtransaction(conversion",{"_index":3164,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.addtransaction(transaction",{"_index":3154,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.algo",{"_index":2665,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.areanames",{"_index":1154,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.authservice.getprivatekey",{"_index":771,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.getpublickeys",{"_index":627,"title":{},"body":{"components/AppComponent.html":{}}}],["this.authservice.gettrustedusers",{"_index":2809,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.authservice.init",{"_index":626,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{}}}],["this.authservice.logout",{"_index":2813,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.authservice.mutablekeystore.getprivatekey",{"_index":3203,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.authservice.mutablekeystore.importpublickey(publickeys",{"_index":641,"title":{},"body":{"components/AppComponent.html":{}}}],["this.authservice.privatekey",{"_index":753,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.sessiontoken",{"_index":773,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.setkey(this.authservice.privatekey",{"_index":755,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.setkey(this.keyformstub.key.value",{"_index":760,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.blocksyncservice.blocksync",{"_index":3252,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.categories",{"_index":1152,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.contract",{"_index":104,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["this.contract.methods.accountindex(address).call",{"_index":111,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.accounts(i).call",{"_index":117,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.add(address).send({from",{"_index":121,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.addressof(id).call",{"_index":2926,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["this.contract.methods.count().call",{"_index":110,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.entry(serial).call",{"_index":2923,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["this.contract.methods.entrycount().call",{"_index":2922,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["this.contractaddress",{"_index":103,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["this.createform",{"_index":1144,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.createform.controls",{"_index":1157,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.createform.invalid",{"_index":1158,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.datasource",{"_index":355,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.datasource.data",{"_index":366,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.datasource.filter",{"_index":362,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.datasource.paginator",{"_index":357,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.datasource.sort",{"_index":359,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.date",{"_index":2806,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.dgst",{"_index":2649,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.dialog.open(errordialogcomponent",{"_index":1237,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["this.engine",{"_index":2664,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.errordialogservice.opendialog",{"_index":933,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.errordialogservice.opendialog({message",{"_index":632,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{}}}],["this.fetcher(settings",{"_index":1061,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.filegetter",{"_index":2735,"title":{},"body":{"injectables/RegistryService.html":{}}}],["this.formbuilder.group",{"_index":204,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["this.genders",{"_index":1156,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.getaccountinfo(res.body",{"_index":3150,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.getchallenge",{"_index":921,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.getprivatekey",{"_index":2542,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["this.getwithtoken",{"_index":918,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.haveaccount(address",{"_index":120,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.httpclient.get(`${environment.ciccacheurl}/tokens/${symbol",{"_index":2950,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.httpclient.get(`${environment.ciccacheurl}/tx/${address}/${offset}/${limit",{"_index":3142,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.httpclient.get(`${environment.ciccacheurl}/tx/${offset}/${limit",{"_index":3141,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.httpclient.get(`${environment.cicmetaurl}/areanames",{"_index":1364,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.httpclient.get(`${environment.cicmetaurl}/areanames/${location.tolowercase",{"_index":1365,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.httpclient.get(`${environment.cicmetaurl}/areatypes/${area.tolowercase()}`).pipe(first",{"_index":1367,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.httpclient.get(`${environment.cicmetaurl}/areatypes`).pipe(first",{"_index":1366,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.isdialogopen",{"_index":1235,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["this.iswarning(errortracestring",{"_index":1327,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.keyform",{"_index":751,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.keyform.controls",{"_index":756,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.keyform.invalid",{"_index":758,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.keystore",{"_index":2645,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.keystore.getfingerprint",{"_index":2648,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.keystore.getprivatekey",{"_index":2659,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.keystore.gettrustedkeys",{"_index":2653,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.linkparams",{"_index":2766,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["this.loadevent.next(date.now",{"_index":2946,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.loading",{"_index":759,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.locationservice.getareanames().pipe(first()).subscribe(res",{"_index":1153,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.logerror(error",{"_index":1320,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.logger.debug(message",{"_index":1417,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.error(message",{"_index":1421,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.fatal(message",{"_index":1422,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.info(message",{"_index":1418,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.log(message",{"_index":1419,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.trace(message",{"_index":1416,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.warn(message",{"_index":1420,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.loggingservice.senderrorlevelmessage",{"_index":1331,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loggingservice.senderrorlevelmessage('failed",{"_index":350,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.loggingservice.senderrorlevelmessage('login",{"_index":919,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.loggingservice.senderrorlevelmessage('unable",{"_index":629,"title":{},"body":{"components/AppComponent.html":{}}}],["this.loggingservice.senderrorlevelmessage(`failed",{"_index":966,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.loggingservice.senderrorlevelmessage(`nobody",{"_index":1338,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loggingservice.senderrorlevelmessage(`there",{"_index":1335,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loggingservice.senderrorlevelmessage(e.message",{"_index":2656,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.loggingservice.senderrorlevelmessage(errormessage",{"_index":1275,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["this.loggingservice.senderrorlevelmessage(errortracestring",{"_index":1329,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loggingservice.sendinfolevelmessage(`loaded",{"_index":1044,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.loggingservice.sendinfolevelmessage(`result",{"_index":3214,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.loggingservice.sendinfolevelmessage(`transaction",{"_index":3216,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.loggingservice.sendinfolevelmessage(message",{"_index":1382,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["this.loggingservice.sendinfolevelmessage(request",{"_index":1374,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["this.loggingservice.sendinfolevelmessage(res",{"_index":564,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.loggingservice.sendinfolevelmessage(this.tokens",{"_index":2980,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.loggingservice.sendwarnlevelmessage(errortracestring",{"_index":1328,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loginresponse(o",{"_index":917,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.loginview",{"_index":969,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mediaquery.addlistener(this.onresize",{"_index":647,"title":{},"body":{"components/AppComponent.html":{}}}],["this.mutablekeystore",{"_index":864,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.getprivatekey",{"_index":982,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.getprivatekeyid",{"_index":952,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.getpublickeys().foreach(key",{"_index":973,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.importprivatekey(localstorage.getitem(btoa('cicada_private_key",{"_index":871,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.importprivatekey(privatekeyarmored",{"_index":963,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.isencryptedprivatekey(privatekeyarmored",{"_index":960,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.isvalidkey(privatekeyarmored",{"_index":954,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.loadkeyring",{"_index":865,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.name",{"_index":1318,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.namesearchform",{"_index":203,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.namesearchform.controls",{"_index":209,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.namesearchform.invalid",{"_index":213,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.namesearchloading",{"_index":214,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.namesearchsubmitted",{"_index":212,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.navigatedto",{"_index":2765,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["this.onmenuselect",{"_index":1436,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["this.onmenutoggle",{"_index":1442,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["this.onresize(this.mediaquery",{"_index":648,"title":{},"body":{"components/AppComponent.html":{}}}],["this.onsign",{"_index":2646,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.onsign(this.signature",{"_index":2668,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.onsign(undefined",{"_index":2670,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.onverify",{"_index":2647,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.onverify(false",{"_index":2657,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.organizationform",{"_index":2591,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["this.organizationform.controls",{"_index":2595,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["this.organizationform.invalid",{"_index":2596,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["this.paginator",{"_index":358,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["this.paginator._changepagesize(this.paginator.pagesize",{"_index":369,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.phonesearchform",{"_index":206,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchform.controls",{"_index":210,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchform.invalid",{"_index":217,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchloading",{"_index":218,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.phonesearchsubmitted",{"_index":216,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.readystate",{"_index":1049,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.readystateprocessor(settings",{"_index":1046,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.readystatetarget",{"_index":1050,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.recipientbloxberglink",{"_index":3042,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.registry",{"_index":2742,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["this.registry.addtoken(await",{"_index":2952,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.registry.declaratorhelper.addtrust(environment.trusteddeclaratoraddress",{"_index":2740,"title":{},"body":{"injectables/RegistryService.html":{}}}],["this.registry.getcontractaddressbyname('tokenregistry",{"_index":2945,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.registry.getcontractaddressbyname('transferauthorization",{"_index":3174,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.registry.load",{"_index":2741,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["this.registry.onload",{"_index":2942,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.registryservice.getregistry",{"_index":1035,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.registryservice.getweb3",{"_index":1033,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{}}}],["this.renderer.listen(this.elementref.nativeelement",{"_index":1433,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["this.route.parammap.subscribe((params",{"_index":2884,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["this.router.navigate",{"_index":2752,"title":{},"body":{"guards/RoleGuard.html":{}}}],["this.router.navigate(['/auth",{"_index":800,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["this.router.navigate(['/home",{"_index":772,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.router.navigatebyurl('/auth').then",{"_index":1279,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(account.identities.evm[`bloxberg:${environment.bloxbergchainid}`][0",{"_index":364,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(res.identities.evm[`bloxberg:${environment.bloxbergchainid}`][0",{"_index":223,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(this.transaction.from",{"_index":3044,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(this.transaction.to",{"_index":3045,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(this.transaction.trader",{"_index":3046,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.navigatebyurl(`/tokens/${token.symbol",{"_index":2982,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.router.url",{"_index":1330,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.sanitizer.bypasssecuritytrustresourceurl(url",{"_index":2778,"title":{},"body":{"pipes/SafePipe.html":{}}}],["this.scanfilter",{"_index":2789,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["this.senderbloxberglink",{"_index":3040,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.sendinfolevelmessage('dropping",{"_index":1413,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.sendresponse(r",{"_index":929,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sentencesforwarninglogging.foreach((whitelistsentence",{"_index":1342,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.sessionlogincount",{"_index":893,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sessiontoken",{"_index":870,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.setparammap(initialparams",{"_index":500,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["this.setstate('click",{"_index":894,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.signature",{"_index":2663,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.signeraddress",{"_index":106,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["this.snackbar.open(address",{"_index":3053,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.sort",{"_index":360,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["this.status",{"_index":1317,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.subject.asobservable",{"_index":485,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["this.subject.next(converttoparammap(params",{"_index":501,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["this.submitted",{"_index":757,"title":{},"body":{"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["this.toggledisplay(divone",{"_index":778,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.toggledisplay(divtwo",{"_index":779,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.togglepasswordvisibility",{"_index":2711,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["this.token",{"_index":2886,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["this.tokenregistry",{"_index":2943,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenregistry.entry(0",{"_index":2953,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenregistry.entry(i",{"_index":2949,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenregistry.totaltokens",{"_index":2947,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokens",{"_index":2978,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.tokenservice.gettokenbysymbol(params.get('id')).pipe(first()).subscribe(res",{"_index":2885,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["this.tokenservice.gettokens",{"_index":2979,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.tokenservice.loadevent.subscribe(async",{"_index":2977,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.totalaccounts",{"_index":113,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.traderbloxberglink",{"_index":3037,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction",{"_index":3260,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transaction.from",{"_index":3050,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.to",{"_index":3049,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.token.address",{"_index":3048,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.value",{"_index":3051,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.from",{"_index":3041,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.to",{"_index":3043,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.trader",{"_index":3039,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.type",{"_index":3036,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transactiondatasource",{"_index":3254,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.data",{"_index":3263,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.paginator",{"_index":3256,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.sort",{"_index":3257,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionlist.asobservable",{"_index":3122,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactionlist.next(this.transactions",{"_index":3167,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions",{"_index":3168,"title":{},"body":{"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["this.transactions.filter(transaction",{"_index":3264,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactions.find(cachedtx",{"_index":3143,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions.length",{"_index":3166,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions.unshift(transaction",{"_index":3165,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactionservice.getaddresstransactions(address",{"_index":1062,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.transactionservice.getalltransactions(offset",{"_index":1059,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.transactionservice.resettransactionslist",{"_index":1026,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.transactionservice.setconversion(conversion",{"_index":673,"title":{},"body":{"components/AppComponent.html":{}}}],["this.transactionservice.settransaction(transaction",{"_index":669,"title":{},"body":{"components/AppComponent.html":{}}}],["this.transactionservice.transactionssubject.subscribe(transactions",{"_index":3253,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionservice.transferrequest",{"_index":3047,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transactionstype",{"_index":3262,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionstypes",{"_index":3259,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.trustedusers",{"_index":2808,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.userservice.accountssubject.subscribe(accounts",{"_index":354,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.userservice.actionssubject.subscribe(actions",{"_index":557,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.userservice.approveaction(action.id).pipe(first()).subscribe(res",{"_index":563,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.userservice.getaccountbyaddress(this.addresssearchformstub.address.value",{"_index":229,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.userservice.getaccountbyphone(this.phonesearchformstub.phonenumber.value",{"_index":219,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.userservice.getaccountdetailsfrommeta(await",{"_index":3147,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.userservice.getaccounttypes().pipe(first()).subscribe(res",{"_index":352,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{}}}],["this.userservice.getactions",{"_index":556,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.userservice.getcategories().pipe(first()).subscribe(res",{"_index":1151,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.userservice.getgenders().pipe(first()).subscribe(res",{"_index":1155,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.userservice.gettransactiontypes().pipe(first()).subscribe(res",{"_index":3258,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.userservice.loadaccounts(100",{"_index":348,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.userservice.revokeaction(action.id).pipe(first()).subscribe(res",{"_index":566,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.userservice.searchaccountbyname(this.namesearchformstub.name.value",{"_index":215,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.web3",{"_index":2743,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TransactionService.html":{}}}],["this.web3.eth.getgasprice",{"_index":3193,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.gettransaction(result.transactionhash",{"_index":3215,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.gettransactioncount(senderaddress",{"_index":3190,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.sendsignedtransaction(txwire",{"_index":3213,"title":{},"body":{"injectables/TransactionService.html":{}}}],["those",{"_index":3645,"title":{},"body":{"license.html":{}}}],["though",{"_index":4030,"title":{},"body":{"license.html":{}}}],["threatened",{"_index":3655,"title":{},"body":{"license.html":{}}}],["three",{"_index":3926,"title":{},"body":{"license.html":{}}}],["threw",{"_index":1339,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["through",{"_index":2372,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["throw",{"_index":890,"title":{},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["throwerror",{"_index":1253,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["throwerror(err",{"_index":1286,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["thrown",{"_index":2340,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["thus",{"_index":3823,"title":{},"body":{"license.html":{}}}],["timber",{"_index":2042,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["timberyard",{"_index":2043,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["time",{"_index":4096,"title":{},"body":{"license.html":{}}}],["timestamp",{"_index":1106,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["tissue",{"_index":1995,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["title",{"_index":596,"title":{},"body":{"components/AppComponent.html":{}}}],["titlecase",{"_index":1167,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["todo",{"_index":345,"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/Signer.html":{},"index.html":{}}}],["together",{"_index":867,"title":{},"body":{"injectables/AuthService.html":{}}}],["toggle.directive",{"_index":810,"title":{},"body":{"modules/AuthModule.html":{},"modules/SharedModule.html":{}}}],["toggle.directive.ts",{"_index":1437,"title":{},"body":{"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"coverage.html":{}}}],["toggle.directive.ts:11",{"_index":2707,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggle.directive.ts:18",{"_index":1441,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["toggle.directive.ts:22",{"_index":2709,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggle.directive.ts:6",{"_index":1440,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["toggle.directive.ts:8",{"_index":2708,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggledisplay",{"_index":737,"title":{},"body":{"components/AuthComponent.html":{}}}],["toggledisplay(element",{"_index":744,"title":{},"body":{"components/AuthComponent.html":{}}}],["togglepasswordvisibility",{"_index":2704,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["tohex",{"_index":3134,"title":{},"body":{"injectables/TransactionService.html":{}}}],["toi",{"_index":2237,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["toilet",{"_index":1589,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["token",{"_index":270,"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/OrganizationComponent.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.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":2888,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["token.name",{"_index":2887,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["token.owner",{"_index":2898,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["token.reserveratio",{"_index":2897,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["token.supply",{"_index":2896,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["token.symbol",{"_index":2390,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["tokenaddress",{"_index":3118,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tokenagent",{"_index":2322,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tokendetailscomponent",{"_index":269,"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/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":379,"title":{},"body":{"components/AccountsComponent.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["tokenratiopipe",{"_index":2846,"title":{"pipes/TokenRatioPipe.html":{}},"body":{"modules/SharedModule.html":{},"pipes/TokenRatioPipe.html":{},"coverage.html":{},"overview.html":{}}}],["tokenregistry",{"_index":2906,"title":{"classes/TokenRegistry.html":{}},"body":{"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"coverage.html":{}}}],["tokenregistry(await",{"_index":2944,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokens",{"_index":1472,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"modules/PagesRoutingModule.html":{},"components/SidebarComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["tokens'},{'name",{"_index":272,"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/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":2962,"title":{},"body":{"components/TokensComponent.html":{}}}],["tokens.component.scss",{"_index":2961,"title":{},"body":{"components/TokensComponent.html":{}}}],["tokens.find(token",{"_index":2389,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["tokenscomponent",{"_index":271,"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/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":2881,"title":{"injectables/TokenService.html":{}},"body":{"components/TokenDetailsComponent.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"coverage.html":{}}}],["tokenservicestub",{"_index":2955,"title":{"classes/TokenServiceStub.html":{}},"body":{"classes/TokenServiceStub.html":{},"coverage.html":{}}}],["tokensmodule",{"_index":2984,"title":{"modules/TokensModule.html":{}},"body":{"modules/TokensModule.html":{},"modules.html":{},"overview.html":{}}}],["tokensroutingmodule",{"_index":2988,"title":{"modules/TokensRoutingModule.html":{}},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["tom",{"_index":1455,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["tomato",{"_index":1800,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tomatoes",{"_index":1801,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["toolbox",{"_index":2815,"title":{},"body":{"components/SettingsComponent.html":{}}}],["tools",{"_index":3785,"title":{},"body":{"license.html":{}}}],["topbar",{"_index":1296,"title":{},"body":{"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{}}}],["topbar'},{'name",{"_index":274,"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/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":3001,"title":{},"body":{"components/TopbarComponent.html":{}}}],["topbar.component.scss",{"_index":3000,"title":{},"body":{"components/TopbarComponent.html":{}}}],["topbarcomponent",{"_index":273,"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/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":275,"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/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":{}}}],["totalaccounts",{"_index":72,"title":{},"body":{"classes/AccountIndex.html":{}}}],["totaltokens",{"_index":2910,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["tour",{"_index":2021,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tout",{"_index":1707,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tovalue",{"_index":1114,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"injectables/TransactionService.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["tovalue(value",{"_index":3199,"title":{},"body":{"injectables/TransactionService.html":{}}}],["town",{"_index":2245,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trace",{"_index":1325,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["trace|debug|info|log|warn|error|fatal|off",{"_index":1412,"title":{},"body":{"injectables/LoggingService.html":{}}}],["trade",{"_index":1732,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["trademark",{"_index":4056,"title":{},"body":{"license.html":{}}}],["trademarks",{"_index":4057,"title":{},"body":{"license.html":{}}}],["trader",{"_index":1115,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["traderbloxberglink",{"_index":3016,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["trading",{"_index":2891,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["trainer",{"_index":1551,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["transaction",{"_index":277,"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":{},"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":{}}}],["transaction.destinationtoken.address",{"_index":3083,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.destinationtoken.name",{"_index":3084,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.destinationtoken.symbol",{"_index":3085,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.from",{"_index":3060,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.fromvalue",{"_index":3081,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.recipient",{"_index":3152,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transaction.recipient?.vcard.fn[0].value",{"_index":3062,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sender",{"_index":3149,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transaction.sender?.vcard.fn[0].value",{"_index":3059,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.address",{"_index":3078,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.name",{"_index":3079,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.symbol",{"_index":3080,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.to",{"_index":3063,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.token._address",{"_index":3067,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tovalue",{"_index":3086,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.trader",{"_index":3077,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.block",{"_index":3068,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.success",{"_index":3072,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.timestamp",{"_index":3073,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.txhash",{"_index":3071,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["transaction.tx.txindex",{"_index":3069,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.type",{"_index":3146,"title":{},"body":{"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["transaction.value",{"_index":3066,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["transaction?.recipient?.vcard.fn[0].value",{"_index":3269,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.sender?.vcard.fn[0].value",{"_index":3268,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.tovalue",{"_index":3271,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.tx.timestamp",{"_index":3272,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.type",{"_index":3273,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.value",{"_index":3270,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiondatasource",{"_index":3227,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiondetailscomponent",{"_index":276,"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/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":3228,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactionhelper",{"_index":1022,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionhelper(settings.w3.engine",{"_index":1037,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionlist",{"_index":3088,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transactions",{"_index":279,"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/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":3226,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactions.component.scss",{"_index":3225,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactionscomponent",{"_index":278,"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/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":603,"title":{"injectables/TransactionService.html":{}},"body":{"components/AppComponent.html":{},"injectables/BlockSyncService.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["transactionservicestub",{"_index":3217,"title":{"classes/TransactionServiceStub.html":{}},"body":{"classes/TransactionServiceStub.html":{},"coverage.html":{}}}],["transactionsinfo",{"_index":1002,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.filter_rounds",{"_index":1089,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.high",{"_index":1088,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.low",{"_index":1087,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsmodule",{"_index":394,"title":{"modules/TransactionsModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules/TransactionsModule.html":{},"modules.html":{},"overview.html":{}}}],["transactionsroutingmodule",{"_index":3278,"title":{"modules/TransactionsRoutingModule.html":{}},"body":{"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["transactionssubject",{"_index":3089,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transactionstype",{"_index":3229,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactionstypes",{"_index":3230,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiontype",{"_index":3267,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiontypes",{"_index":2323,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["transfer",{"_index":2593,"title":{},"body":{"components/OrganizationComponent.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["transferauthaddress",{"_index":3173,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferred",{"_index":4004,"title":{},"body":{"license.html":{}}}],["transferrequest",{"_index":3098,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferrequest(tokenaddress",{"_index":3114,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferring",{"_index":4121,"title":{},"body":{"license.html":{}}}],["transfers",{"_index":3266,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transform",{"_index":2771,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{}}}],["transform(url",{"_index":2772,"title":{},"body":{"pipes/SafePipe.html":{}}}],["transform(value",{"_index":2901,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["transition",{"_index":535,"title":{},"body":{"components/AdminComponent.html":{}}}],["transition('expanded",{"_index":549,"title":{},"body":{"components/AdminComponent.html":{}}}],["transmission",{"_index":3957,"title":{},"body":{"license.html":{}}}],["transport",{"_index":2010,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["transpoter",{"_index":2037,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trash",{"_index":1602,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trasportion",{"_index":2032,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["travel",{"_index":2022,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["treated",{"_index":4029,"title":{},"body":{"license.html":{}}}],["treaty",{"_index":3848,"title":{},"body":{"license.html":{}}}],["tree",{"_index":129,"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/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":{},"miscellaneous/variables.html":{}}}],["trigger",{"_index":536,"title":{},"body":{"components/AdminComponent.html":{},"directives/MenuToggleDirective.html":{}}}],["trigger('detailexpand",{"_index":540,"title":{},"body":{"components/AdminComponent.html":{}}}],["true",{"_index":122,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"modules/AppModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"components/CreateAccountComponent.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/Signer.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["trusted",{"_index":630,"title":{},"body":{"components/AppComponent.html":{},"components/SettingsComponent.html":{}}}],["trusteddeclaratoraddress",{"_index":4364,"title":{},"body":{"miscellaneous/variables.html":{}}}],["trustedusers",{"_index":972,"title":{},"body":{"injectables/AuthService.html":{},"components/SettingsComponent.html":{}}}],["trustedusers.push(key.users[0].userid",{"_index":974,"title":{},"body":{"injectables/AuthService.html":{}}}],["try",{"_index":344,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{},"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["ts",{"_index":2715,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["tslib",{"_index":3435,"title":{},"body":{"dependencies.html":{}}}],["tsta",{"_index":1498,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tstb",{"_index":1494,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tstc",{"_index":1502,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tudor",{"_index":2256,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tuition",{"_index":1545,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tuktuk",{"_index":2027,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tution",{"_index":1544,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tv",{"_index":1708,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["two",{"_index":2821,"title":{},"body":{"components/SettingsComponent.html":{},"license.html":{}}}],["tx",{"_index":1006,"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":3188,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.data",{"_index":3200,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.gaslimit",{"_index":3194,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.gasprice",{"_index":3191,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.message",{"_index":3202,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.nonce",{"_index":3189,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.setsignature(r",{"_index":3210,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.to",{"_index":3196,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.value",{"_index":3198,"title":{},"body":{"injectables/TransactionService.html":{}}}],["txhash",{"_index":1107,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["txhelper",{"_index":2781,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["txindex",{"_index":1108,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["txmsg",{"_index":3201,"title":{},"body":{"injectables/TransactionService.html":{}}}],["txtoken",{"_index":1103,"title":{"classes/TxToken.html":{}},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{}}}],["txwire",{"_index":3211,"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/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/Signable.html":{},"interfaces/Signature.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/typealiases.html":{},"miscellaneous/variables.html":{}}}],["typealiases",{"_index":4332,"title":{"miscellaneous/typealiases.html":{}},"body":{}}],["typeerror",{"_index":1334,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["typical",{"_index":3983,"title":{},"body":{"license.html":{}}}],["uchumi",{"_index":2213,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uchuuzi",{"_index":1888,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uchuzi",{"_index":1887,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ug",{"_index":2610,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ugali",{"_index":1886,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uganda",{"_index":2611,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ugoro",{"_index":1877,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uint256",{"_index":3185,"title":{},"body":{"injectables/TransactionService.html":{}}}],["uint8array",{"_index":1016,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["uint8array(blockfilterbinstr.length",{"_index":1075,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["uint8array(blocktxfilterbinstr.length",{"_index":1083,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["ujenzi",{"_index":1734,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uji",{"_index":1885,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ukulima",{"_index":1614,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ukunda",{"_index":2175,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["umena",{"_index":1810,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["umoja",{"_index":2215,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unable",{"_index":937,"title":{},"body":{"injectables/AuthService.html":{}}}],["unacceptable",{"_index":3642,"title":{},"body":{"license.html":{}}}],["unapproved",{"_index":561,"title":{},"body":{"components/AdminComponent.html":{},"classes/UserServiceStub.html":{}}}],["unauthorized",{"_index":1278,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["undefined",{"_index":222,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"classes/Settings.html":{},"classes/W3.html":{}}}],["under",{"_index":3686,"title":{},"body":{"license.html":{}}}],["unga",{"_index":1868,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uniform",{"_index":1997,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unit",{"_index":3506,"title":{},"body":{"index.html":{}}}],["united",{"_index":2604,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["university",{"_index":1520,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unknown",{"_index":2069,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"pipes/SafePipe.html":{},"miscellaneous/variables.html":{}}}],["unless",{"_index":3991,"title":{},"body":{"license.html":{}}}],["unlimited",{"_index":3809,"title":{},"body":{"license.html":{}}}],["unmodified",{"_index":3703,"title":{},"body":{"license.html":{}}}],["unnecessary",{"_index":3835,"title":{},"body":{"license.html":{}}}],["unpacking",{"_index":4025,"title":{},"body":{"license.html":{}}}],["unsuccessful",{"_index":1265,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["until",{"_index":4086,"title":{},"body":{"license.html":{}}}],["update",{"_index":2819,"title":{},"body":{"components/SettingsComponent.html":{}}}],["updates",{"_index":4013,"title":{},"body":{"license.html":{}}}],["uppercase",{"_index":372,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"components/TransactionsComponent.html":{}}}],["urban",{"_index":2319,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["url",{"_index":2330,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/PagesComponent.html":{},"pipes/SafePipe.html":{}}}],["url.endswith('/accounttypes",{"_index":2365,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/actions",{"_index":2348,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/areanames",{"_index":2361,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/areatypes",{"_index":2363,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/categories",{"_index":2357,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/genders",{"_index":2369,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/tokens",{"_index":2353,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/transactiontypes",{"_index":2367,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/actions\\/\\d",{"_index":2350,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/areanames\\/\\w",{"_index":2362,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/areatypes\\/\\w",{"_index":2364,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/categories\\/\\w",{"_index":2359,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/tokens\\/\\w",{"_index":2355,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.split",{"_index":2426,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urlparts",{"_index":2425,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urlparts[urlparts.length",{"_index":2428,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urltree",{"_index":795,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["usafi",{"_index":1599,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["use",{"_index":474,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"injectables/AuthService.html":{},"index.html":{},"license.html":{}}}],["useclass",{"_index":715,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["used",{"_index":3669,"title":{},"body":{"license.html":{}}}],["useful",{"_index":4298,"title":{},"body":{"license.html":{}}}],["user",{"_index":460,"title":{},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.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.email",{"_index":2827,"title":{},"body":{"components/SettingsComponent.html":{}}}],["user.name",{"_index":2826,"title":{},"body":{"components/SettingsComponent.html":{}}}],["user.tokey(conversion.trader)).pipe(first()).subscribe((res",{"_index":3161,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.tokey(transaction.from)).pipe(first()).subscribe((res",{"_index":3148,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.tokey(transaction.to)).pipe(first()).subscribe((res",{"_index":3151,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.userid",{"_index":2828,"title":{},"body":{"components/SettingsComponent.html":{}}}],["user?.balance",{"_index":378,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.date_registered",{"_index":376,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.location.area_name",{"_index":380,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.vcard.fn[0].value",{"_index":374,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.vcard.tel[0].value",{"_index":375,"title":{},"body":{"components/AccountsComponent.html":{}}}],["userid",{"_index":2800,"title":{},"body":{"components/SettingsComponent.html":{},"interfaces/Staff.html":{}}}],["userinfo",{"_index":3090,"title":{},"body":{"injectables/TransactionService.html":{}}}],["userkey",{"_index":3332,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["username",{"_index":2817,"title":{},"body":{"components/SettingsComponent.html":{}}}],["users",{"_index":2812,"title":{},"body":{"components/SettingsComponent.html":{},"classes/UserServiceStub.html":{},"index.html":{},"license.html":{}}}],["userservice",{"_index":165,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/CreateAccountComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["userservicestub",{"_index":3292,"title":{"classes/UserServiceStub.html":{}},"body":{"classes/UserServiceStub.html":{},"coverage.html":{}}}],["uses",{"_index":3986,"title":{},"body":{"license.html":{}}}],["using",{"_index":3955,"title":{},"body":{"license.html":{}}}],["ustadh",{"_index":1568,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ustadhi",{"_index":1569,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utencils",{"_index":2000,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utensils",{"_index":2001,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utils",{"_index":3130,"title":{},"body":{"injectables/TransactionService.html":{}}}],["utils.abicoder",{"_index":3183,"title":{},"body":{"injectables/TransactionService.html":{}}}],["uto",{"_index":1984,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uvuvi",{"_index":1674,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uyoma",{"_index":2293,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["v",{"_index":1077,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["v[i",{"_index":1078,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["valid",{"_index":1204,"title":{},"body":{"classes/CustomValidator.html":{},"license.html":{}}}],["validation.ts",{"_index":3372,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["validationerrors",{"_index":1195,"title":{},"body":{"classes/CustomValidator.html":{}}}],["validator",{"_index":3415,"title":{},"body":{"dependencies.html":{}}}],["validators",{"_index":195,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["validators.required",{"_index":205,"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":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.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":363,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["values",{"_index":497,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["var",{"_index":238,"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/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":3351,"title":{},"body":{"coverage.html":{}}}],["variables",{"_index":3492,"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":3172,"title":{},"body":{"injectables/TransactionService.html":{}}}],["vcards",{"_index":3437,"title":{},"body":{"dependencies.html":{}}}],["vcardvalidation",{"_index":3374,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["vcardvalidation(vcard",{"_index":3463,"title":{},"body":{"miscellaneous/functions.html":{}}}],["vegetable",{"_index":1864,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vendor",{"_index":1735,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["verbatim",{"_index":3545,"title":{},"body":{"license.html":{}}}],["verification",{"_index":2825,"title":{},"body":{"components/SettingsComponent.html":{}}}],["verify",{"_index":2620,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signer.html":{}}}],["verify(digest",{"_index":2638,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["version",{"_index":39,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["versions",{"_index":3562,"title":{},"body":{"license.html":{}}}],["vet",{"_index":1931,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["veterinary",{"_index":1930,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["via",{"_index":3493,"title":{},"body":{"index.html":{}}}],["viatu",{"_index":1727,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["viazi",{"_index":1889,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vidziweni",{"_index":2173,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["view",{"_index":3061,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"license.html":{}}}],["view_in_ar",{"_index":233,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["viewaccount",{"_index":305,"title":{},"body":{"components/AccountsComponent.html":{}}}],["viewaccount(account",{"_index":315,"title":{},"body":{"components/AccountsComponent.html":{}}}],["viewchild",{"_index":336,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["viewchild(matpaginator",{"_index":332,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["viewchild(matsort",{"_index":335,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["viewrecipient",{"_index":3019,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["viewsender",{"_index":3020,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["viewtoken",{"_index":2964,"title":{},"body":{"components/TokensComponent.html":{}}}],["viewtoken(token",{"_index":2970,"title":{},"body":{"components/TokensComponent.html":{}}}],["viewtrader",{"_index":3021,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["viewtransaction",{"_index":3233,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["viewtransaction(transaction",{"_index":3241,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["vigungani",{"_index":2172,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vijana",{"_index":1552,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikapu",{"_index":1996,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikinduni",{"_index":2160,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikolani",{"_index":2161,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["village",{"_index":1581,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vinyunduni",{"_index":2174,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["viogato",{"_index":2163,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["violates",{"_index":4019,"title":{},"body":{"license.html":{}}}],["violation",{"_index":4082,"title":{},"body":{"license.html":{}}}],["visibility",{"_index":545,"title":{},"body":{"components/AdminComponent.html":{}}}],["visible",{"_index":548,"title":{},"body":{"components/AdminComponent.html":{},"license.html":{}}}],["vistangani",{"_index":2165,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitabu",{"_index":1560,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitangani",{"_index":2162,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitenge",{"_index":1999,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitungu",{"_index":1842,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vivian",{"_index":1464,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["void",{"_index":169,"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/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.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":3903,"title":{},"body":{"license.html":{}}}],["volunteer",{"_index":1533,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vsla",{"_index":1939,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vyogato",{"_index":2164,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vyombo",{"_index":2009,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["w",{"_index":1066,"title":{},"body":{"injectables/BlockSyncService.html":{},"license.html":{}}}],["w.onmessage",{"_index":1068,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["w.postmessage",{"_index":1069,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["w3",{"_index":2782,"title":{"classes/W3.html":{}},"body":{"classes/Settings.html":{},"classes/W3.html":{},"coverage.html":{}}}],["w3_provider",{"_index":1058,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["waiter",{"_index":1725,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waitress",{"_index":1726,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waive",{"_index":3856,"title":{},"body":{"license.html":{}}}],["waiver",{"_index":4278,"title":{},"body":{"license.html":{}}}],["wakulima",{"_index":1615,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["want",{"_index":3578,"title":{},"body":{"license.html":{}}}],["ward",{"_index":1582,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["warranties",{"_index":3738,"title":{},"body":{"license.html":{}}}],["warranty",{"_index":3617,"title":{},"body":{"license.html":{}}}],["wash",{"_index":1631,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["washing",{"_index":1719,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waste",{"_index":1593,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["watchlady",{"_index":1736,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["watchman",{"_index":1724,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["water",{"_index":1902,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["way",{"_index":3569,"title":{},"body":{"license.html":{}}}],["ways",{"_index":3916,"title":{},"body":{"license.html":{}}}],["web",{"_index":3466,"title":{},"body":{"index.html":{}}}],["web3",{"_index":96,"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":102,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/RegistryService.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["web3.eth.abi.encodeparameter('bytes32",{"_index":2924,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["web3.eth.accounts[0",{"_index":107,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["web3.eth.contract(abi",{"_index":105,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["web3.utils.tohex(identifier",{"_index":2925,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["web3provider",{"_index":4357,"title":{},"body":{"miscellaneous/variables.html":{}}}],["weight",{"_index":1485,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["welcome",{"_index":4308,"title":{},"body":{"license.html":{}}}],["welder",{"_index":1721,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["welding",{"_index":1722,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["well",{"_index":3721,"title":{},"body":{"license.html":{}}}],["went",{"_index":1271,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["west",{"_index":2179,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["whatever",{"_index":4125,"title":{},"body":{"license.html":{}}}],["wheadsync",{"_index":1051,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["wheadsync.onmessage",{"_index":1055,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["wheadsync.postmessage",{"_index":1057,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["whether",{"_index":3596,"title":{},"body":{"license.html":{}}}],["whole",{"_index":3761,"title":{},"body":{"license.html":{}}}],["wholesaler",{"_index":1992,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["whose",{"_index":3965,"title":{},"body":{"license.html":{}}}],["widely",{"_index":3757,"title":{},"body":{"license.html":{}}}],["width",{"_index":578,"title":{},"body":{"components/AdminComponent.html":{},"components/AppComponent.html":{},"injectables/ErrorDialogService.html":{},"directives/MenuSelectionDirective.html":{}}}],["window",{"_index":3774,"title":{},"body":{"license.html":{}}}],["window.atob(transactionsinfo.block_filter",{"_index":1073,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.atob(transactionsinfo.blocktx_filter",{"_index":1081,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.dispatchevent(this.newconversionevent(transaction",{"_index":1041,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.dispatchevent(this.newtransferevent(transaction",{"_index":1039,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.getcomputedstyle(element).display",{"_index":780,"title":{},"body":{"components/AuthComponent.html":{}}}],["window.location.reload(true",{"_index":971,"title":{},"body":{"injectables/AuthService.html":{}}}],["window.location.search.substring(1",{"_index":879,"title":{},"body":{"injectables/AuthService.html":{}}}],["window.matchmedia('(max",{"_index":617,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["window.prompt('password",{"_index":2544,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{}}}],["window:cic_convert",{"_index":599,"title":{},"body":{"components/AppComponent.html":{}}}],["window:cic_convert(event",{"_index":608,"title":{},"body":{"components/AppComponent.html":{}}}],["window:cic_transfer",{"_index":600,"title":{},"body":{"components/AppComponent.html":{}}}],["window:cic_transfer(event",{"_index":611,"title":{},"body":{"components/AppComponent.html":{}}}],["wine",{"_index":1892,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["wipo",{"_index":3847,"title":{},"body":{"license.html":{}}}],["wish",{"_index":3576,"title":{},"body":{"license.html":{}}}],["within",{"_index":4067,"title":{},"body":{"license.html":{}}}],["without",{"_index":3706,"title":{},"body":{"license.html":{}}}],["wood",{"_index":2057,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["work",{"_index":1741,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["work's",{"_index":3784,"title":{},"body":{"license.html":{}}}],["worker",{"_index":1052,"title":{},"body":{"injectables/BlockSyncService.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["worker('./../assets/js/block",{"_index":1053,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["working",{"_index":1723,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["works",{"_index":3552,"title":{},"body":{"license.html":{}}}],["world",{"_index":3222,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["worldwide",{"_index":4156,"title":{},"body":{"license.html":{}}}],["wote",{"_index":2313,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["wrap",{"_index":2332,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["writing",{"_index":4239,"title":{},"body":{"license.html":{}}}],["written",{"_index":3925,"title":{},"body":{"license.html":{}}}],["wrong",{"_index":1272,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["ws.dev.grassrootseconomics.net",{"_index":4359,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ws://localhost:63546",{"_index":4369,"title":{},"body":{"miscellaneous/variables.html":{}}}],["wss://bloxberg",{"_index":4358,"title":{},"body":{"miscellaneous/variables.html":{}}}],["xhr",{"_index":873,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.addeventlistener('load",{"_index":887,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.getresponseheader('token",{"_index":908,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.getresponseheader('www",{"_index":914,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.onload",{"_index":912,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.open('get",{"_index":877,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.responsetype",{"_index":875,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.send",{"_index":896,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.setrequestheader('authorization",{"_index":880,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.setrequestheader('content",{"_index":882,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.setrequestheader('x",{"_index":884,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.status",{"_index":888,"title":{},"body":{"injectables/AuthService.html":{}}}],["xmlhttprequest",{"_index":874,"title":{},"body":{"injectables/AuthService.html":{}}}],["yapha",{"_index":2166,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yava",{"_index":2167,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["years",{"_index":3927,"title":{},"body":{"license.html":{}}}],["yes",{"_index":79,"title":{},"body":{"classes/AccountIndex.html":{},"classes/ActivatedRouteStub.html":{},"classes/TokenRegistry.html":{}}}],["yoga",{"_index":1728,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yoghurt",{"_index":1890,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yogurt",{"_index":1891,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yourself",{"_index":4174,"title":{},"body":{"license.html":{}}}],["youth",{"_index":1553,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yowani",{"_index":2168,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ziwani",{"_index":2169,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["zone.js",{"_index":3441,"title":{},"body":{"dependencies.html":{}}}],["zoom",{"_index":395,"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 value: string;\n }];\n fn: [{\n value: string;\n }];\n n: [{\n value: string[];\n }];\n tel: [{\n meta: {\n TYP: string[];\n },\n value: string;\n }],\n version: [{\n value: string;\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 value: '',\n }],\n fn: [{\n value: 'Sarafu Contract',\n }],\n n: [{\n value: ['Sarafu', 'Contract'],\n }],\n tel: [{\n meta: {\n TYP: [],\n },\n value: '',\n }],\n version: [{\n value: '3.0',\n }],\n },\n};\n\nexport {\n AccountDetails,\n Signature,\n Meta,\n MetaResponse,\n defaultAccount\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/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\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:10\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n contractAddress\n \n \n string\n \n \n \n No\n \n \n \n \n signerAddress\n \n \n string\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 contract\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/app/_eth/accountIndex.ts:10\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:8\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:9\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:44\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 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: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 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 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: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 numberOfAccounts\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 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:22\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 import {environment} from '@src/environments/environment';\nimport Web3 from 'web3';\n\nconst abi: Array = require('@src/assets/js/block-sync/data/AccountRegistry.json');\nconst web3: Web3 = new Web3(environment.web3Provider);\n\nexport class AccountIndex {\n contractAddress: string;\n signerAddress: string;\n contract: any;\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 public async totalAccounts(): Promise {\n return await this.contract.methods.count().call();\n }\n\n public async haveAccount(address: string): Promise {\n return await this.contract.methods.accountIndex(address).call() !== 0;\n }\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 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 \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:71\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: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 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:57\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:46\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:47\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 { return this.nameSearchForm.controls; }\n get phoneSearchFormStub(): any { return this.phoneSearchForm.controls; }\n get addressSearchFormStub(): any { return this.addressSearchForm.controls; }\n\n onNameSearch(): void {\n this.nameSearchSubmitted = true;\n if (this.nameSearchForm.invalid) { return; }\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) { return; }\n this.phoneSearchLoading = true;\n (await this.userService.getAccountByPhone(this.phoneSearchFormStub.phoneNumber.value, 100)).subscribe(async res => {\n if (res !== undefined) {\n await this.router.navigateByUrl(`/accounts/${strip0x(res.identities.evm[`bloxberg:${environment.bloxbergChainId}`][0])}`);\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) { return; }\n this.addressSearchLoading = true;\n (await this.userService.getAccountByAddress(this.addressSearchFormStub.address.value, 100)).subscribe(async res => {\n if (res !== undefined) {\n await this.router.navigateByUrl(`/accounts/${strip0x(res.identities.evm[`bloxberg:${environment.bloxbergChainId}`][0])}`);\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': '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': '[routerLink]'}];\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:57\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: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 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:65\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:48\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:76\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:61\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 {\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.getAccountTypes().pipe(first()).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(`/accounts/${strip0x(account.identities.evm[`bloxberg:${environment.bloxbergChainId}`][0])}`);\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': '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': '[routerLink]'}];\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\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 {\n Action,\n Category,\n AreaName,\n AreaType\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/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: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 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:57\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:63\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: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 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:73\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:69\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:46\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(\n private userService: UserService,\n private loggingService: LoggingService\n ) {\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\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?')) { return; }\n this.userService.approveAction(action.id).pipe(first()).subscribe(res => this.loggingService.sendInfoLevelMessage(res));\n this.userService.getActions();\n }\n\n disapproveAction(action: any): void {\n if (!confirm('Disapprove action?')) { return; }\n this.userService.revokeAction(action.id).pipe(first()).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': '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': '[routerLink]'}];\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\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\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 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)\n \n \n \n \n Defined in src/app/app.component.ts:15\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 \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:74\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:68\n \n \n\n\n \n \n\n \n \n \n Methods\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:43\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:15\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:14\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:13\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:12\n \n \n\n\n \n \n\n\n\n\n\n \n import {ChangeDetectionStrategy, Component, HostListener} from '@angular/core';\nimport {AuthService, ErrorDialogService, LoggingService, TransactionService} from '@app/_services';\nimport {catchError} from 'rxjs/operators';\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 {\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 ) {\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({message: 'Trusted keys endpoint can\\'t be reached. Please try again later.'});\n // TODO do something to halt user progress...show a sad cicada page 🦗?\n }\n })();\n this.mediaQuery.addListener(this.onResize);\n this.onResize(this.mediaQuery);\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 ./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': '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': '[routerLink]'}];\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 {\n GlobalErrorHandler,\n MockBackendProvider,\n} 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';\n\n@NgModule({\n declarations: [\n AppComponent\n ],\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 ],\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 { path: '', loadChildren: () => \"import('@pages/pages.module').then(m => m.PagesModule)\", canActivate: [AuthGuard] },\n { path: '**', redirectTo: '', pathMatch: 'full' }\n];\n\n@NgModule({\n imports: [RouterModule.forRoot(routes, {\n preloadingStrategy: PreloadAllModules\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 {\n Action,\n Category,\n AreaName,\n AreaType\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/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 {\n Action,\n Category,\n AreaName,\n AreaType\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/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:48\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: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 switchWindows\n \n \n \n \n \n \n \nswitchWindows()\n \n \n\n\n \n \n Defined in src/app/auth/auth.component.ts:59\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:67\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 { return this.keyForm.controls; }\n\n async onSubmit(): Promise {\n this.submitted = true;\n\n if (this.keyForm.invalid) { return; }\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': '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': '[routerLink]'}];\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\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:8\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 \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: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 route\n \n ActivatedRouteSnapshot\n \n\n \n No\n \n\n\n \n \n state\n \n RouterStateSnapshot\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable | Promise | boolean | UrlTree\n\n \n \n \n \n \n \n \n \n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport {CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot, UrlTree, Router} from '@angular/router';\nimport { Observable } from 'rxjs';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class AuthGuard implements CanActivate {\n\n constructor(private router: Router) {}\n\n canActivate(\n route: ActivatedRouteSnapshot,\n state: RouterStateSnapshot): 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 \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\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:200\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:189\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:183\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:99\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: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 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:147\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:177\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:153\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n privateKeyArmored\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 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\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\n async loginResponse(o: { challenge: string, realm: any }): Promise {\n return new Promise(async (resolve, reject) => {\n try {\n const r = await signChallenge(o.challenge,\n o.realm,\n environment.cicMetaUrl,\n this.mutableKeyStore);\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({ message: 'You are not authorized to use this system' });\n }\n if (error.status === 401) {\n this.errorDialogService.openDialog({\n message: '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 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(`Failed to set key: ${err.message || err.statusText}`, this, {error: err});\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(true);\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)\n .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:101\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:76\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:68\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:84\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(settings: Settings, bit: number, address: string, offset: number, limit: number): void {\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.getAllTransactions(offset, limit).pipe(first()).subscribe(res => {\n this.fetcher(settings, res);\n });\n } else {\n this.transactionService.getAddressTransactions(address, offset, limit).pipe(first()).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(settings: Settings, lo: number, hi: number, bloomBlockBytes: Uint8Array, bloomBlocktxBytes: Uint8Array, bloomRounds: any): 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: [\n bloomBlockBytes,\n bloomBlocktxBytes,\n ],\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(settings, transactionsInfo.low, transactionsInfo.high, bOne, bTwo, transactionsInfo.filter_rounds);\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 {\n BlocksBloom,\n TxToken,\n Tx,\n Transaction,\n Conversion\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/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 {\n Action,\n Category,\n AreaName,\n AreaType\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/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 {\n BlocksBloom,\n TxToken,\n Tx,\n Transaction,\n Conversion\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/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:50\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:48\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.getCategories().pipe(first()).subscribe(res => this.categories = res);\n this.locationService.getAreaNames().pipe(first()).subscribe(res => this.areaNames = res);\n this.userService.getAccountTypes().pipe(first()).subscribe(res => this.accountTypes = res);\n this.userService.getGenders().pipe(first()).subscribe(res => this.genders = res);\n }\n\n get createFormStub(): any { return this.createForm.controls; }\n\n onSubmit(): void {\n this.submitted = true;\n if (this.createForm.invalid || !confirm('Create account?')) { return; }\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': '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': '[routerLink]'}];\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\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: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 control\n \n FormControl | null\n \n\n \n No\n \n\n\n \n \n form\n \n FormGroupDirective | NgForm | null\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\n\n \n import {ErrorStateMatcher} from '@angular/material/core';\nimport {FormControl, FormGroupDirective, NgForm} from '@angular/forms';\n\nexport class CustomErrorStateMatcher implements ErrorStateMatcher{\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\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: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 control\n \n AbstractControl\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 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: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 regex\n \n RegExp\n \n\n \n No\n \n\n\n \n \n error\n \n ValidationErrors\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : ValidationErrors | null\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n import {AbstractControl, ValidationErrors} from '@angular/forms';\n\nexport class CustomValidator {\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 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:12\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\n constructor(@Inject(MAT_DIALOG_DATA) public data: any) { }\n\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': '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': '[routerLink]'}];\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:15\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:12\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(\n public dialog: MatDialog,\n ) { }\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\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:14\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n errorDialogService\n \n \n ErrorDialogService\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 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: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 request\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \n next\n \n HttpHandler\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 import {Injectable} from '@angular/core';\nimport {\n HttpRequest,\n HttpHandler,\n HttpEvent,\n HttpInterceptor, HttpErrorResponse\n} from '@angular/common/http';\nimport {Observable, throwError} from 'rxjs';\nimport {catchError} from 'rxjs/operators';\nimport {ErrorDialogService, LoggingService} from '@app/_services';\nimport {Router} from '@angular/router';\n\n@Injectable()\nexport class ErrorInterceptor implements HttpInterceptor {\n\n constructor(\n private errorDialogService: ErrorDialogService,\n private loggingService: LoggingService,\n private router: Router\n ) {}\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(err.error)}`;\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:13\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\n constructor() { }\n\n ngOnInit(): void {\n }\n\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': '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': '[routerLink]'}];\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': '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': '[routerLink]'}];\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 \n Extends\n \n \n ErrorHandler\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:18\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\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 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: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 error\n \n Error\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 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:62\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n errorTraceString\n \n string\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 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:47\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\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 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:18\n \n \n\n\n \n \n\n\n \n\n\n \n import {ErrorHandler, Injectable} from '@angular/core';\nimport {LoggingService} from '@app/_services/logging.service';\nimport {HttpErrorResponse} from '@angular/common/http';\nimport {Router} from '@angular/router';\n\n// A generalized http response error\nexport class HttpError extends Error {\n public status: number;\n constructor(message: string, status: number) {\n super(message);\n this.status = status;\n this.name = 'HttpError';\n }\n}\n\n@Injectable()\nexport class GlobalErrorHandler extends ErrorHandler {\n private sentencesForWarningLogging: Array = [];\n\n constructor(\n private loggingService: LoggingService,\n private router: Router\n ) {\n super();\n }\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 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: ${(error as HttpErrorResponse).status}`,\n this, {error});\n } else if (error instanceof TypeError) {\n this.loggingService.sendErrorLevelMessage(`There was a Type error on route ${route}.\\n${error.message}`, this, {error});\n } else if (error instanceof Error) {\n this.loggingService.sendErrorLevelMessage(`There was a general error on route ${route}.\\n${error.message}`, this, {error});\n } else {\n this.loggingService.sendErrorLevelMessage(`Nobody threw an error but something happened on route ${route}!`, this, {error});\n }\n }\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 \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\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:11\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:15\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n request\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \n next\n \n HttpHandler\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 import { Injectable } from '@angular/core';\nimport {\n HttpRequest,\n HttpHandler,\n HttpEvent,\n HttpInterceptor\n} from '@angular/common/http';\nimport { Observable } from 'rxjs';\n\n@Injectable()\nexport class HttpConfigInterceptor implements HttpInterceptor {\n\n constructor() {}\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 \n Extends\n \n \n Error\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:8\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 \n string\n \n \n \n No\n \n \n \n \n status\n \n \n number\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 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:8\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n \n import {ErrorHandler, Injectable} from '@angular/core';\nimport {LoggingService} from '@app/_services/logging.service';\nimport {HttpErrorResponse} from '@angular/common/http';\nimport {Router} from '@angular/router';\n\n// A generalized http response error\nexport class HttpError extends Error {\n public status: number;\n constructor(message: string, status: number) {\n super(message);\n this.status = status;\n this.name = 'HttpError';\n }\n}\n\n@Injectable()\nexport class GlobalErrorHandler extends ErrorHandler {\n private sentencesForWarningLogging: Array = [];\n\n constructor(\n private loggingService: LoggingService,\n private router: Router\n ) {\n super();\n }\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 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: ${(error as HttpErrorResponse).status}`,\n this, {error});\n } else if (error instanceof TypeError) {\n this.loggingService.sendErrorLevelMessage(`There was a Type error on route ${route}.\\n${error.message}`, this, {error});\n } else if (error instanceof Error) {\n this.loggingService.sendErrorLevelMessage(`There was a general error on route ${route}.\\n${error.message}`, this, {error});\n } else {\n this.loggingService.sendErrorLevelMessage(`Nobody threw an error but something happened on route ${route}!`, this, {error});\n }\n }\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 \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: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 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:16\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: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 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:24\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\n constructor(\n private httpClient: HttpClient,\n ) { }\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.get(`${environment.cicMetaUrl}/areatypes/${area.toLowerCase()}`).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\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:14\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\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 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: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 request\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \n next\n \n HttpHandler\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 import { Injectable } from '@angular/core';\nimport {\n HttpRequest,\n HttpHandler,\n HttpEvent,\n HttpInterceptor,\n HttpResponse\n} from '@angular/common/http';\nimport {Observable} from 'rxjs';\nimport {LoggingService} from '@app/_services/logging.service';\nimport {finalize, tap} from 'rxjs/operators';\n\n@Injectable()\nexport class LoggingInterceptor implements HttpInterceptor {\n\n constructor(\n private loggingService: LoggingService\n ) {}\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:20\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\n constructor(\n private elementRef: ElementRef,\n private renderer: Renderer2\n ) {\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: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 import {Directive, ElementRef, Renderer2} from '@angular/core';\n\n@Directive({\n selector: '[appMenuToggle]'\n})\nexport class MenuToggleDirective {\n\n constructor(\n private elementRef: ElementRef,\n private renderer: Renderer2\n ) {\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 value: string;\n }];\n fn: [{\n value: string;\n }];\n n: [{\n value: string[];\n }];\n tel: [{\n meta: {\n TYP: string[];\n },\n value: string;\n }],\n version: [{\n value: string;\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 value: '',\n }],\n fn: [{\n value: 'Sarafu Contract',\n }],\n n: [{\n value: ['Sarafu', 'Contract'],\n }],\n tel: [{\n meta: {\n TYP: [],\n },\n value: '',\n }],\n version: [{\n value: '3.0',\n }],\n },\n};\n\nexport {\n AccountDetails,\n Signature,\n Meta,\n MetaResponse,\n defaultAccount\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/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 value: string;\n }];\n fn: [{\n value: string;\n }];\n n: [{\n value: string[];\n }];\n tel: [{\n meta: {\n TYP: string[];\n },\n value: string;\n }],\n version: [{\n value: string;\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 value: '',\n }],\n fn: [{\n value: 'Sarafu Contract',\n }],\n n: [{\n value: ['Sarafu', 'Contract'],\n }],\n tel: [{\n meta: {\n TYP: [],\n },\n value: '',\n }],\n version: [{\n value: '3.0',\n }],\n },\n};\n\nexport {\n AccountDetails,\n Signature,\n Meta,\n MetaResponse,\n defaultAccount\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/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\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:240\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n request\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \n next\n \n HttpHandler\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 import {HTTP_INTERCEPTORS, HttpEvent, HttpHandler, HttpInterceptor, HttpRequest, HttpResponse} from '@angular/common/http';\nimport {Injectable} from '@angular/core';\nimport {Observable, of, throwError} from 'rxjs';\nimport {delay, dematerialize, materialize, mergeMap} from 'rxjs/operators';\nimport {Action, AreaName, AreaType, Category, Token} from '@app/_models';\n\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\nconst tokens: Array = [\n {\n name: 'Giftable Reserve', symbol: 'GRZ', address: '0xa686005CE37Dce7738436256982C3903f2E4ea8E', supply: '1000000001000000000000000000',\n decimals: '18', reserves: {}\n },\n {\n name: 'Demo Token', symbol: 'DEMO', address: '0xc80D6aFF8194114c52AEcD84c9f15fd5c8abb187', supply: '99999999999999998976',\n decimals: '18', reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '99999999999999998976'}},\n reserveRatio: '1000000', owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n },\n {\n name: 'Foo Token', symbol: 'FOO', address: '0x9ceD86089f7aBB5A97B40eb0E7521e7aa308d354', supply: '1000000000000000001014',\n decimals: '18', reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '1000000000000000001014'}},\n reserveRatio: '1000000', owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n },\n {\n name: 'testb', symbol: 'tstb', address: '0xC63cFA91A3BFf41cE31Ff436f67D3ACBC977DB95', supply: '99000', decimals: '18',\n reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '99000'}}, reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n },\n {\n name: 'testa', symbol: 'tsta', address: '0x8fA4101ef19D0a078239d035659e92b278bD083C', supply: '9981', decimals: '18',\n reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '9981'}}, reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n },\n {\n name: 'testc', symbol: 'tstc', address: '0x4A6fA6bc3BfE4C9661bC692D9798425350C9e3D4', supply: '100990', decimals: '18',\n reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '100990'}}, reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n }\n];\n\nconst categories: Array = [\n {\n name: 'system',\n products: ['system', 'office main', 'office main phone']\n },\n {\n name: 'education',\n products: ['book', 'coach', 'teacher', 'sch', 'school', 'pry', 'education', 'student', 'mwalimu', 'maalim', 'consultant', 'consult',\n 'college', 'university', 'lecturer', 'primary', 'secondary', 'daycare', 'babycare', 'baby care', 'elim', 'eimu', 'nursery',\n 'red cross', 'volunteer', 'instructor', 'journalist', 'lesson', 'academy', 'headmistress', 'headteacher', 'cyber', 'researcher',\n 'professor', 'demo', 'expert', 'tution', 'tuition', 'children', 'headmaster', 'educator', 'Marital counsellor', 'counsellor',\n 'trainer', 'vijana', 'youth', 'intern', 'redcross', 'KRCS', 'danish', 'science', 'data', 'facilitator', 'vitabu', 'kitabu']\n },\n {\n name: 'faith',\n products: ['pastor', 'imam', 'madrasa', 'religous', 'religious', 'ustadh', 'ustadhi', 'Marital counsellor', 'counsellor', 'church',\n 'kanisa', 'mksiti', 'donor']\n },\n {\n name: 'government',\n products: ['elder', 'chief', 'police', 'government', 'country', 'county', 'soldier', 'village admin', 'ward', 'leader', 'kra',\n 'mailman', 'immagration', 'immigration']\n },\n {\n name: 'environment',\n products: ['conservation', 'toilet', 'choo', 'garbage', 'fagio', 'waste', 'tree', 'taka', 'scrap', 'cleaning', 'gardener', 'rubbish',\n 'usafi', 'mazingira', 'miti', 'trash', 'cleaner', 'plastic', 'collection', 'seedling', 'seedlings', 'recycling']\n },\n {\n name: 'farming',\n products: ['farm', 'farmer', 'farming', 'mkulima', 'kulima', 'ukulima', 'wakulima', 'jembe', 'shamba']\n },\n {\n name: 'labour',\n products: ['artist', 'agent', 'guard', 'askari', 'accountant', 'baker', 'beadwork', 'beauty', 'business', 'barber', 'casual',\n 'electrian', 'caretaker', 'car wash', 'capenter', 'construction', 'chef', 'catering', 'cobler', 'cobbler', 'carwash', 'dhobi',\n 'landlord', 'design', 'carpenter', 'fundi', 'hawking', 'hawker', 'househelp', 'hsehelp', 'house help', 'help', 'housegirl', 'kushona',\n 'juakali', 'jualikali', 'juacali', 'jua kali', 'shepherd', 'makuti', 'kujenga', 'kinyozi', 'kazi', 'knitting', 'kufua', 'fua',\n 'hustler', 'biashara', 'labour', 'labor', 'laundry', 'repair', 'hair', 'posho', 'mill', 'mtambo', 'uvuvi', 'engineer', 'manager',\n 'tailor', 'nguo', 'mason', 'mtumba', 'garage', 'mechanic', 'mjenzi', 'mfugaji', 'painter', 'receptionist', 'printing', 'programming',\n 'plumb', 'charging', 'salon', 'mpishi', 'msusi', 'mgema', 'footballer', 'photocopy', 'peddler', 'staff', 'sales', 'service', 'saloon',\n 'seremala', 'security', 'insurance', 'secretary', 'shoe', 'shepard', 'shephard', 'tout', 'tv', 'mvuvi', 'mawe', 'majani', 'maembe',\n 'freelance', 'mjengo', 'electronics', 'photographer', 'programmer', 'electrician', 'washing', 'bricks', 'welder', 'welding',\n 'working', 'worker', 'watchman', 'waiter', 'waitress', 'viatu', 'yoga', 'guitarist', 'house', 'artisan', 'musician', 'trade',\n 'makonge', 'ujenzi', 'vendor', 'watchlady', 'marketing', 'beautician', 'photo', 'metal work', 'supplier', 'law firm', 'brewer']\n },\n {\n name: 'food',\n products: ['avocado', 'bhajia', 'bajia', 'mbonga', 'bofu', 'beans', 'biscuits', 'biringanya', 'banana', 'bananas', 'crisps', 'chakula',\n 'coconut', 'chapati', 'cereal', 'chipo', 'chapo', 'chai', 'chips', 'cassava', 'cake', 'cereals', 'cook', 'corn', 'coffee', 'chicken',\n 'dagaa', 'donut', 'dough', 'groundnuts', 'hotel', 'holel', 'hoteli', 'butcher', 'butchery', 'fruit', 'food', 'fruits', 'fish',\n 'githeri', 'grocery', 'grocer', 'pojo', 'papa', 'goats', 'mabenda', 'mbenda', 'poultry', 'soda', 'peanuts', 'potatoes', 'samosa',\n 'soko', 'samaki', 'tomato', 'tomatoes', 'mchele', 'matunda', 'mango', 'melon', 'mellon', 'nyanya', 'nyama', 'omena', 'umena', 'ndizi',\n 'njugu', 'kamba kamba', 'khaimati', 'kaimati', 'kunde', 'kuku', 'kahawa', 'keki', 'muguka', 'miraa', 'milk', 'choma', 'maziwa',\n 'mboga', 'mbog', 'busaa', 'chumvi', 'cabbages', 'mabuyu', 'machungwa', 'mbuzi', 'mnazi', 'mchicha', 'ngombe', 'ngano', 'nazi',\n 'oranges', 'peanuts', 'mkate', 'bread', 'mikate', 'vitungu', 'sausages', 'maize', 'mbata', 'mchuzi', 'mchuuzi', 'mandazi', 'mbaazi',\n 'mahindi', 'maandazi', 'mogoka', 'meat', 'mhogo', 'mihogo', 'muhogo', 'maharagwe', 'miwa', 'mahamri', 'mitumba', 'simsim', 'porridge',\n 'pilau', 'vegetable', 'egg', 'mayai', 'mifugo', 'unga', 'good', 'sima', 'sweet', 'sweats', 'sambusa', 'snacks', 'sugar', 'suger',\n 'ugoro', 'sukari', 'soup', 'spinach', 'smokie', 'smokies', 'sukuma', 'tea', 'uji', 'ugali', 'uchuzi', 'uchuuzi', 'viazi', 'yoghurt',\n 'yogurt', 'wine', 'marondo', 'maandzi', 'matoke', 'omeno', 'onions', 'nzugu', 'korosho', 'barafu', 'juice']\n },\n {\n name: 'water',\n products: ['maji', 'water']\n },\n {\n name: 'health',\n products: ['agrovet', 'dispensary', 'barakoa', 'chemist', 'Chemicals', 'chv', 'doctor', 'daktari', 'dawa', 'hospital', 'herbalist',\n 'mganga', 'sabuni', 'soap', 'nurse', 'heath', 'community health worker', 'clinic', 'clinical', 'mask', 'medicine', 'lab technician',\n 'pharmacy', 'cosmetics', 'veterinary', 'vet', 'sickly', 'emergency response', 'emergency']\n },\n {\n name: 'savings',\n products: ['chama', 'group', 'savings', 'loan', 'silc', 'vsla', 'credit', 'finance']\n },\n {\n name: 'shop',\n products: ['bag', 'bead', 'belt', 'bedding', 'jik', 'bed', 'cement', 'botique', 'boutique', 'lines', 'kibanda', 'kiosk', 'spareparts',\n 'candy', 'cloth', 'electricals', 'mutumba', 'cafe', 'leso', 'lesso', 'duka', 'spare parts', 'socks', 'malimali', 'mitungi',\n 'mali mali', 'hardware', 'detergent', 'detergents', 'dera', 'retail', 'kamba', 'pombe', 'pampers', 'pool', 'phone', 'simu', 'mangwe',\n 'mikeka', 'movie', 'shop', 'acces', 'mchanga', 'uto', 'airtime', 'matress', 'mattress', 'mattresses', 'mpsea', 'mpesa', 'shirt',\n 'wholesaler', 'perfume', 'playstation', 'tissue', 'vikapu', 'uniform', 'flowers', 'vitenge', 'utencils', 'utensils', 'station',\n 'jewel', 'pool table', 'club', 'pub', 'bar', 'furniture', 'm-pesa', 'vyombo']\n },\n {\n name: 'transport',\n products: ['kebeba', 'beba', 'bebabeba', 'bike', 'bicycle', 'matatu', 'boda', 'bodaboda', 'cart', 'carrier', 'tour', 'travel', 'driver',\n 'dereva', 'tout', 'conductor', 'kubeba', 'tuktuk', 'taxi', 'piki', 'pikipiki', 'manamba', 'trasportion', 'mkokoteni', 'mover',\n 'motorist', 'motorbike', 'transport', 'transpoter', 'gari', 'magari', 'makanga', 'car']\n },\n {\n name: 'fuel/energy',\n products: ['timber', 'timberyard', 'biogas', 'charcol', 'charcoal', 'kuni', 'mbao', 'fuel', 'makaa', 'mafuta', 'moto', 'solar', 'stima',\n 'fire', 'firewood', 'wood', 'oil', 'taa', 'gas', 'paraffin', 'parrafin', 'parafin', 'petrol', 'petro', 'kerosine', 'kerosene',\n 'diesel']\n },\n {\n name: 'other',\n products: ['other', 'none', 'unknown', 'none']\n }\n];\n\nconst areaNames: Array = [\n {\n name: 'Mukuru Nairobi',\n locations: ['kayaba', 'kayba', 'kambi', 'mukuru', 'masai', 'hazina', 'south', 'tetra', 'tetrapak', 'ruben', 'rueben', 'kingston',\n 'korokocho', 'kingstone', 'kamongo', 'lungalunga', 'sinai', 'sigei', 'lungu', 'lunga lunga', 'owino road', 'seigei']\n },\n {\n name: 'Kinango Kwale',\n locations: ['amani', 'bofu', 'chibuga', 'chikomani', 'chilongoni', 'chigojoni', 'chinguluni', 'chigato', 'chigale', 'chikole',\n 'chilongoni', 'chilumani', 'chigojoni', 'chikomani', 'chizini', 'chikomeni', 'chidzuvini', 'chidzivuni', 'chikuyu', 'chizingo',\n 'doti', 'dzugwe', 'dzivani', 'dzovuni', 'hanje', 'kasemeni', 'katundani', 'kibandaogo', 'kibandaongo', 'kwale', 'kinango',\n 'kidzuvini', 'kalalani', 'kafuduni', 'kaloleni', 'kilibole', 'lutsangani', 'peku', 'gona', 'guro', 'gandini', 'mkanyeni', 'myenzeni',\n 'miyenzeni', 'miatsiani', 'mienzeni', 'mnyenzeni', 'minyenzeni', 'miyani', 'mioleni', 'makuluni', 'mariakani', 'makobeni', 'madewani',\n 'mwangaraba', 'mwashanga', 'miloeni', 'mabesheni', 'mazeras', 'mazera', 'mlola', 'muugano', 'mulunguni', 'mabesheni', 'miatsani',\n 'miatsiani', 'mwache', 'mwangani', 'mwehavikonje', 'miguneni', 'nzora', 'nzovuni', 'vikinduni', 'vikolani', 'vitangani', 'viogato',\n 'vyogato', 'vistangani', 'yapha', 'yava', 'yowani', 'ziwani', 'majengo', 'matuga', 'vigungani', 'vidziweni', 'vinyunduni', 'ukunda',\n 'kokotoni', 'mikindani']\n },\n {\n name: 'Misc Nairobi',\n locations: ['nairobi', 'west', 'lindi', 'kibera', 'kibira', 'kibra', 'makina', 'soweto', 'olympic', 'kangemi', 'ruiru', 'congo',\n 'kawangware', 'kwangware', 'donholm', 'dagoreti', 'dandora', 'kabete', 'sinai', 'donhom', 'donholm', 'huruma', 'kitengela',\n 'makadara', ',mlolongo', 'kenyatta', 'mlolongo', 'tassia', 'tasia', 'gatina', '56', 'industrial', 'kariobangi', 'kasarani', 'kayole',\n 'mathare', 'pipe', 'juja', 'uchumi', 'jogoo', 'umoja', 'thika', 'kikuyu', 'stadium', 'buru buru', 'ngong', 'starehe', 'mwiki',\n 'fuata', 'kware', 'kabiro', 'embakassi', 'embakasi', 'kmoja', 'east', 'githurai', 'landi', 'langata', 'limuru', 'mathere',\n 'dagoretti', 'kirembe', 'muugano', 'mwiki', 'toi market']\n },\n {\n name: 'Misc Mombasa',\n locations: ['mombasa', 'likoni', 'bangla', 'bangladesh', 'kizingo', 'old town', 'makupa', 'mvita', 'ngombeni', 'ngómbeni', 'ombeni',\n 'magongo', 'miritini', 'changamwe', 'jomvu', 'ohuru', 'tudor', 'diani']\n },\n {\n name: 'Kisauni',\n locations: ['bamburi', 'kisauni', 'mworoni', 'nyali', 'shanzu', 'bombolulu', 'mtopanga', 'mjambere', 'majaoni', 'manyani', 'magogoni',\n 'junda', 'mwakirunge', 'mshomoroni']\n },\n {\n name: 'Kilifi',\n locations: ['kilfi', 'kilifi', 'mtwapa', 'takaungu', 'makongeni', 'mnarani', 'mnarani', 'office', 'g.e', 'ge', 'raibai', 'ribe']\n },\n {\n name: 'Kakuma',\n locations: ['kakuma']\n },\n {\n name: 'Kitui',\n locations: ['kitui', 'mwingi']\n },\n {\n name: 'Nyanza',\n locations: ['busia', 'nyalgunga', 'mbita', 'siaya', 'kisumu', 'nyalenda', 'hawinga', 'rangala', 'uyoma', 'mumias', 'homabay', 'homaboy',\n 'migori', 'kusumu']\n },\n {\n name: 'Misc Rural Counties',\n locations: ['makueni', 'meru', 'kisii', 'bomet', 'machakos', 'bungoma', 'eldoret', 'kakamega', 'kericho', 'kajiado', 'nandi', 'nyeri',\n 'wote', 'kiambu', 'mwea', 'nakuru', 'narok']\n },\n {\n name: 'other',\n locations: ['other', 'none', 'unknown']\n }\n];\n\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\nconst accountTypes: Array = ['user', 'cashier', 'vendor', 'tokenagent', 'group'];\nconst transactionTypes: Array = ['transactions', 'conversions', 'disbursements', 'rewards', 'reclamation'];\nconst genders: Array = ['male', 'female', 'other'];\n\n@Injectable()\nexport class MockBackendInterceptor implements HttpInterceptor {\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 function handleRoute(): Observable {\n switch (true) {\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('/tokens') && method === 'GET':\n return getTokens();\n case url.match(/\\/tokens\\/\\w+$/) && method === 'GET':\n return getTokenBySymbol();\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('/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('/accounttypes') && method === 'GET':\n return getAccountTypes();\n case url.endsWith('/transactiontypes') && method === 'GET':\n return getTransactionTypes();\n case url.endsWith('/genders') && method === 'GET':\n return getGenders();\n default:\n // pass through any requests not handled above\n return next.handle(request);\n }\n }\n\n // route functions\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 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 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 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 => category.products.includes(stringFromUrl()));\n return ok(queriedCategory.name);\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 => areaName.locations.includes(stringFromUrl()));\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 => areaType.area.includes(stringFromUrl()));\n return ok(queriedAreaType.name);\n }\n\n function getAccountTypes(): Observable> {\n return ok(accountTypes);\n }\n\n function getTransactionTypes(): Observable> {\n return ok(transactionTypes);\n }\n\n function getGenders(): Observable> {\n return ok(genders);\n }\n\n // helper functions\n\n function ok(responseBody: any): Observable> {\n return of(new HttpResponse({ status: 200, body: responseBody }));\n }\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 stringFromUrl(): string {\n const urlParts: Array = url.split('/');\n return urlParts[urlParts.length - 1];\n }\n }\n}\n\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:30\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: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 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:19\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: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 : 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: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 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:16\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:24\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:21\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: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 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: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 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: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 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:11\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: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 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:13\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:12\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: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 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: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 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:9\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: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 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: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 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:7\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: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 : 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: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 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: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 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: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 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\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\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 _key = await openpgp.key.readArmored(key);\n return !_key.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 keyring.privateKeys && keyring.privateKeys.keys[0] && keyring.privateKeys.keys[0].keyPacket &&\n keyring.privateKeys.keys[0].keyPacket.fingerprint;\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 keyring.privateKeys && keyring.privateKeys.keys[0] && keyring.privateKeys.keys[0].getKeyId().toHex();\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 {\n MutablePgpKeyStore,\n 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"},"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:142\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:66\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:94\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:100\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:109\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:74\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:117\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:104\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:70\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:113\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:121\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:54\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:125\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:62\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:58\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: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 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:50\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: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 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:84\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:78\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:36\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:129\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:137\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:133\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:146\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\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\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 _key = await openpgp.key.readArmored(key);\n return !_key.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 keyring.privateKeys && keyring.privateKeys.keys[0] && keyring.privateKeys.keys[0].keyPacket &&\n keyring.privateKeys.keys[0].keyPacket.fingerprint;\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 keyring.privateKeys && keyring.privateKeys.keys[0] && keyring.privateKeys.keys[0].getKeyId().toHex();\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 {\n MutablePgpKeyStore,\n MutableKeyStore\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:20\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:28\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(\n private formBuilder: FormBuilder\n ) { }\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 { return this.organizationForm.controls; }\n\n onSubmit(): void {\n this.submitted = true;\n if (this.organizationForm.invalid || !confirm('Set organization information?')) { return; }\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': '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': '[routerLink]'}];\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:35\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:29\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:30\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:28\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:32\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:35\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:33\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:34\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:31\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:43\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:47\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:77\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: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 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\ntype 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\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.readArmored(signature.data).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.sign(opts).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 }).catch((e) => {\n this.loggingService.sendErrorLevelMessage(e.message, this, {error: e});\n this.onsign(undefined);\n });\n }\n}\n\nexport {\n Signable,\n Signature,\n Signer,\n PGPSigner\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/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': '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': '[routerLink]'}];\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\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 { path: 'tx', loadChildren: () => \"import('@pages/transactions/transactions.module').then(m => m.TransactionsModule)\" },\n { path: 'settings', loadChildren: () => \"import('@pages/settings/settings.module').then(m => m.SettingsModule)\" },\n { path: 'accounts', loadChildren: () => \"import('@pages/accounts/accounts.module').then(m => m.AccountsModule)\" },\n { path: 'tokens', loadChildren: () => \"import('@pages/tokens/tokens.module').then(m => m.TokensModule)\" },\n { path: 'admin', loadChildren: () => \"import('@pages/admin/admin.module').then(m => m.AdminModule)\" },\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:22\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(\n private elementRef: ElementRef,\n private renderer: Renderer2,\n ) {\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:14\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:21\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:25\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(this.web3, environment.registryAddress, 'CICRegistry', this.fileGetter,\n ['../../assets/js/block-sync/data'])\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(this.web3, environment.registryAddress, 'CICRegistry', this.fileGetter,\n ['../../assets/js/block-sync/data']);\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\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:8\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 \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: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 route\n \n ActivatedRouteSnapshot\n \n\n \n No\n \n\n\n \n \n state\n \n RouterStateSnapshot\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable | Promise | boolean | UrlTree\n\n \n \n \n \n \n \n \n \n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport {CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot, UrlTree, Router} from '@angular/router';\nimport { Observable } from 'rxjs';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class RoleGuard implements CanActivate {\n\n constructor(private router: Router) {}\n\n canActivate(\n route: ActivatedRouteSnapshot,\n state: RouterStateSnapshot): 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 \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 [routerLink]\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:7\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:11\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:8\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: '[routerLink]'\n})\nexport class RouterLinkDirectiveStub {\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: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 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\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 \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 {\n Settings,\n W3\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/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: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 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:41\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:45\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:28\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(\n private authService: AuthService\n ) { }\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': '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': '[routerLink]'}];\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\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\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\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 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 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';\n\n\n\n@NgModule({\n declarations: [\n TopbarComponent,\n FooterComponent,\n SidebarComponent,\n MenuSelectionDirective,\n MenuToggleDirective,\n TokenRatioPipe,\n ErrorDialogComponent,\n SafePipe\n ],\n exports: [\n TopbarComponent,\n FooterComponent,\n SidebarComponent,\n MenuSelectionDirective,\n TokenRatioPipe,\n SafePipe\n ],\n imports: [\n CommonModule,\n RouterModule,\n MatIconModule,\n MatDialogModule,\n ]\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:13\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\n constructor() { }\n\n ngOnInit(): void {\n }\n\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': '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': '[routerLink]'}];\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': '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': '[routerLink]'}];\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\ntype 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\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.readArmored(signature.data).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.sign(opts).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 }).catch((e) => {\n this.loggingService.sendErrorLevelMessage(e.message, this, {error: e});\n this.onsign(undefined);\n });\n }\n}\n\nexport {\n Signable,\n Signature,\n Signer,\n 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"},"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 value: string;\n }];\n fn: [{\n value: string;\n }];\n n: [{\n value: string[];\n }];\n tel: [{\n meta: {\n TYP: string[];\n },\n value: string;\n }],\n version: [{\n value: string;\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 value: '',\n }],\n fn: [{\n value: 'Sarafu Contract',\n }],\n n: [{\n value: ['Sarafu', 'Contract'],\n }],\n tel: [{\n meta: {\n TYP: [],\n },\n value: '',\n }],\n version: [{\n value: '3.0',\n }],\n },\n};\n\nexport {\n AccountDetails,\n Signature,\n Meta,\n MetaResponse,\n defaultAccount\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/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\ntype 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\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.readArmored(signature.data).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.sign(opts).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 }).catch((e) => {\n this.loggingService.sendErrorLevelMessage(e.message, this, {error: e});\n this.onsign(undefined);\n });\n }\n}\n\nexport {\n Signable,\n Signature,\n Signer,\n 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"},"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 {\n Staff\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/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 {\n Token\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/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(\n private route: ActivatedRoute,\n private tokenService: TokenService\n ) {\n this.route.paramMap.subscribe((params: Params) => {\n this.tokenService.getTokenBySymbol(params.get('id')).pipe(first()).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 \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': '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': '[routerLink]'}];\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\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:10\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n contractAddress\n \n \n string\n \n \n \n No\n \n \n \n \n signerAddress\n \n \n string\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 contract\n \n \n \n \n \n \n Type : any\n\n \n \n \n \n Defined in src/app/_eth/token-registry.ts:10\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:8\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:9\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: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 identifier\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 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: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 serial\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 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:22\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 import Web3 from 'web3';\nimport {environment} from '@src/environments/environment';\n\nconst abi: Array = require('@src/assets/js/block-sync/data/TokenUniqueSymbolIndex.json');\nconst web3: Web3 = new Web3(environment.web3Provider);\n\nexport class TokenRegistry {\n contractAddress: string;\n signerAddress: string;\n contract: any;\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 public async totalTokens(): Promise {\n return await this.contract.methods.entryCount().call();\n }\n\n public async entry(serial: number): Promise {\n return await this.contract.methods.entry(serial).call();\n }\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 \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: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 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: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 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:29\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(\n private httpClient: HttpClient,\n private registryService: RegistryService,\n ) {\n this.registry = registryService.getRegistry();\n this.registry.load();\n this.registry.onload = async (address: string): Promise => {\n this.tokenRegistry = new TokenRegistry(await this.registry.getContractAddressByName('TokenRegistry'));\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': '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': '[routerLink]'}];\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\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:13\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\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 \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': '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': '[routerLink]'}];\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': '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': '[routerLink]'}];\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 {\n BlocksBloom,\n TxToken,\n Tx,\n Transaction,\n Conversion\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/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:56\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:47\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:39\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:35\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:43\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 = 'https://blockexplorer.bloxberg.org/address/' + this.transaction?.trader + '/transactions';\n } else {\n this.senderBloxbergLink = 'https://blockexplorer.bloxberg.org/address/' + this.transaction?.from + '/transactions';\n this.recipientBloxbergLink = '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': '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': '[routerLink]'}];\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: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 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:102\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:97\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:73\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:108\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)) { return; }\n transaction.value = Number(transaction.value);\n transaction.type = 'transaction';\n try {\n this.userService.getAccountDetailsFromMeta(await User.toKey(transaction.from)).pipe(first()).subscribe((res) => {\n transaction.sender = this.getAccountInfo(res.body);\n }, error => {\n transaction.sender = defaultAccount;\n });\n this.userService.getAccountDetailsFromMeta(await User.toKey(transaction.to)).pipe(first()).subscribe((res) => {\n transaction.recipient = this.getAccountInfo(res.body);\n }, error => {\n transaction.recipient = defaultAccount;\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)) { return; }\n conversion.type = 'conversion';\n conversion.fromValue = Number(conversion.fromValue);\n conversion.toValue = Number(conversion.toValue);\n try {\n this.userService.getAccountDetailsFromMeta(await User.toKey(conversion.trader)).pipe(first()).subscribe((res) => {\n conversion.sender = conversion.recipient = this.getAccountInfo(res.body);\n }, error => {\n conversion.sender = conversion.recipient = defaultAccount;\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 let 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(tokenAddress: string, senderAddress: string, recipientAddress: string, value: number): Promise {\n const transferAuthAddress = await this.registry.getContractAddressByName('TransferAuthorization');\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(['address', 'address', 'address', 'uint256'], [senderAddress, recipientAddress, tokenAddress, value]);\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:27\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: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 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:71\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: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 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:66\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:37\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:47\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:19\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:20\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:26\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:27\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:22\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:17\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:18\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:21\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:23\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:24\n \n \n\n\n \n \n\n\n\n\n\n \n import {AfterViewInit, ChangeDetectionStrategy, Component, OnInit, ViewChild} 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.getTransactionTypes().pipe(first()).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(transaction => transaction.type === this.transactionsType);\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': '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': '[routerLink]'}];\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\n@NgModule({\n declarations: [TransactionsComponent, TransactionDetailsComponent],\n exports: [\n TransactionDetailsComponent\n ],\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 {\n BlocksBloom,\n TxToken,\n Tx,\n Transaction,\n Conversion\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/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 {\n BlocksBloom,\n TxToken,\n Tx,\n Transaction,\n Conversion\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/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 {\n Settings,\n W3\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"},"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 0 %\n (0/9)\n \n \n \n \n \n src/app/_eth/accountIndex.ts\n \n variable\n abi\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_eth/accountIndex.ts\n \n variable\n web3\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_eth/token-registry.ts\n \n class\n TokenRegistry\n \n 0 %\n (0/8)\n \n \n \n \n \n src/app/_eth/token-registry.ts\n \n variable\n abi\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_eth/token-registry.ts\n \n variable\n web3\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_guards/auth.guard.ts\n \n guard\n AuthGuard\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/_guards/role.guard.ts\n \n guard\n RoleGuard\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/_helpers/array-sum.ts\n \n function\n arraySum\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/clipboard-copy.ts\n \n function\n copyToClipboard\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/custom-error-state-matcher.ts\n \n class\n CustomErrorStateMatcher\n \n 0 %\n (0/2)\n \n \n \n \n \n src/app/_helpers/custom.validator.ts\n \n class\n CustomValidator\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/_helpers/export-csv.ts\n \n function\n exportCsv\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/export-csv.ts\n \n function\n removeSpecialChar\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/global-error-handler.ts\n \n class\n HttpError\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/_helpers/global-error-handler.ts\n \n injectable\n GlobalErrorHandler\n \n 0 %\n (0/6)\n \n \n \n \n \n src/app/_helpers/http-getter.ts\n \n function\n HttpGetter\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n interceptor\n MockBackendInterceptor\n \n 0 %\n (0/2)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n accountTypes\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n actions\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n areaNames\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n areaTypes\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n categories\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n genders\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n MockBackendProvider\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n tokens\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n transactionTypes\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/read-csv.ts\n \n function\n parseData\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/read-csv.ts\n \n function\n readCsv\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/read-csv.ts\n \n variable\n objCsv\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/schema-validation.ts\n \n function\n personValidation\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/schema-validation.ts\n \n function\n vcardValidation\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_interceptors/error.interceptor.ts\n \n interceptor\n ErrorInterceptor\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/_interceptors/http-config.interceptor.ts\n \n interceptor\n HttpConfigInterceptor\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/_interceptors/logging.interceptor.ts\n \n interceptor\n LoggingInterceptor\n \n 0 %\n (0/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 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/9)\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/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 @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 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 removeSpecialChar   (src/.../export-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\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n arr\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : number\n\n \n \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\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n text\n \n any\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 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\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n arrayData\n\n \n No\n \n\n\n \n \n filename\n\n \n No\n \n\n\n \n \n delimiter\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 removeSpecialChar\n \n \n \n \n \n \n \nremoveSpecialChar(str)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n str\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 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\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\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n data\n \n any\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 readCsv\n \n \n \n \n \n \n \nreadCsv(input: any)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n input\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Array | void\n\n \n \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\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n person\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 vcardValidation\n \n \n \n \n \n \n \nvcardValidation(vcard: any)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n vcard\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 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\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\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 21 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 13 Interfaces\n \n \n \n \n \n \n \n \n 51 Routes\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/typealiases.html":{"url":"miscellaneous/typealiases.html","title":"miscellaneous-typealiases - typealiases","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n Miscellaneous\n Type aliases\n\n\n\n Index\n \n \n \n \n \n \n Signature   (src/.../pgp-signer.ts)\n \n \n \n \n \n \n\n\n src/app/_pgp/pgp-signer.ts\n \n \n \n \n \n \n Signature\n \n \n \n \n literal type\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 \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 \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 \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 \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 \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 \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: ['kayaba', 'kayba', 'kambi', 'mukuru', 'masai', 'hazina', 'south', 'tetra', 'tetrapak', 'ruben', 'rueben', 'kingston',\n 'korokocho', 'kingstone', 'kamongo', 'lungalunga', 'sinai', 'sigei', 'lungu', 'lunga lunga', 'owino road', 'seigei']\n },\n {\n name: 'Kinango Kwale',\n locations: ['amani', 'bofu', 'chibuga', 'chikomani', 'chilongoni', 'chigojoni', 'chinguluni', 'chigato', 'chigale', 'chikole',\n 'chilongoni', 'chilumani', 'chigojoni', 'chikomani', 'chizini', 'chikomeni', 'chidzuvini', 'chidzivuni', 'chikuyu', 'chizingo',\n 'doti', 'dzugwe', 'dzivani', 'dzovuni', 'hanje', 'kasemeni', 'katundani', 'kibandaogo', 'kibandaongo', 'kwale', 'kinango',\n 'kidzuvini', 'kalalani', 'kafuduni', 'kaloleni', 'kilibole', 'lutsangani', 'peku', 'gona', 'guro', 'gandini', 'mkanyeni', 'myenzeni',\n 'miyenzeni', 'miatsiani', 'mienzeni', 'mnyenzeni', 'minyenzeni', 'miyani', 'mioleni', 'makuluni', 'mariakani', 'makobeni', 'madewani',\n 'mwangaraba', 'mwashanga', 'miloeni', 'mabesheni', 'mazeras', 'mazera', 'mlola', 'muugano', 'mulunguni', 'mabesheni', 'miatsani',\n 'miatsiani', 'mwache', 'mwangani', 'mwehavikonje', 'miguneni', 'nzora', 'nzovuni', 'vikinduni', 'vikolani', 'vitangani', 'viogato',\n 'vyogato', 'vistangani', 'yapha', 'yava', 'yowani', 'ziwani', 'majengo', 'matuga', 'vigungani', 'vidziweni', 'vinyunduni', 'ukunda',\n 'kokotoni', 'mikindani']\n },\n {\n name: 'Misc Nairobi',\n locations: ['nairobi', 'west', 'lindi', 'kibera', 'kibira', 'kibra', 'makina', 'soweto', 'olympic', 'kangemi', 'ruiru', 'congo',\n 'kawangware', 'kwangware', 'donholm', 'dagoreti', 'dandora', 'kabete', 'sinai', 'donhom', 'donholm', 'huruma', 'kitengela',\n 'makadara', ',mlolongo', 'kenyatta', 'mlolongo', 'tassia', 'tasia', 'gatina', '56', 'industrial', 'kariobangi', 'kasarani', 'kayole',\n 'mathare', 'pipe', 'juja', 'uchumi', 'jogoo', 'umoja', 'thika', 'kikuyu', 'stadium', 'buru buru', 'ngong', 'starehe', 'mwiki',\n 'fuata', 'kware', 'kabiro', 'embakassi', 'embakasi', 'kmoja', 'east', 'githurai', 'landi', 'langata', 'limuru', 'mathere',\n 'dagoretti', 'kirembe', 'muugano', 'mwiki', 'toi market']\n },\n {\n name: 'Misc Mombasa',\n locations: ['mombasa', 'likoni', 'bangla', 'bangladesh', 'kizingo', 'old town', 'makupa', 'mvita', 'ngombeni', 'ngómbeni', 'ombeni',\n 'magongo', 'miritini', 'changamwe', 'jomvu', 'ohuru', 'tudor', 'diani']\n },\n {\n name: 'Kisauni',\n locations: ['bamburi', 'kisauni', 'mworoni', 'nyali', 'shanzu', 'bombolulu', 'mtopanga', 'mjambere', 'majaoni', 'manyani', 'magogoni',\n 'junda', 'mwakirunge', 'mshomoroni']\n },\n {\n name: 'Kilifi',\n locations: ['kilfi', 'kilifi', 'mtwapa', 'takaungu', 'makongeni', 'mnarani', 'mnarani', 'office', 'g.e', 'ge', 'raibai', 'ribe']\n },\n {\n name: 'Kakuma',\n locations: ['kakuma']\n },\n {\n name: 'Kitui',\n locations: ['kitui', 'mwingi']\n },\n {\n name: 'Nyanza',\n locations: ['busia', 'nyalgunga', 'mbita', 'siaya', 'kisumu', 'nyalenda', 'hawinga', 'rangala', 'uyoma', 'mumias', 'homabay', 'homaboy',\n 'migori', 'kusumu']\n },\n {\n name: 'Misc Rural Counties',\n locations: ['makueni', 'meru', 'kisii', 'bomet', 'machakos', 'bungoma', 'eldoret', 'kakamega', 'kericho', 'kajiado', 'nandi', 'nyeri',\n 'wote', 'kiambu', 'mwea', 'nakuru', 'narok']\n },\n {\n name: 'other',\n locations: ['other', 'none', 'unknown']\n }\n]\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 \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: ['book', 'coach', 'teacher', 'sch', 'school', 'pry', 'education', 'student', 'mwalimu', 'maalim', 'consultant', 'consult',\n 'college', 'university', 'lecturer', 'primary', 'secondary', 'daycare', 'babycare', 'baby care', 'elim', 'eimu', 'nursery',\n 'red cross', 'volunteer', 'instructor', 'journalist', 'lesson', 'academy', 'headmistress', 'headteacher', 'cyber', 'researcher',\n 'professor', 'demo', 'expert', 'tution', 'tuition', 'children', 'headmaster', 'educator', 'Marital counsellor', 'counsellor',\n 'trainer', 'vijana', 'youth', 'intern', 'redcross', 'KRCS', 'danish', 'science', 'data', 'facilitator', 'vitabu', 'kitabu']\n },\n {\n name: 'faith',\n products: ['pastor', 'imam', 'madrasa', 'religous', 'religious', 'ustadh', 'ustadhi', 'Marital counsellor', 'counsellor', 'church',\n 'kanisa', 'mksiti', 'donor']\n },\n {\n name: 'government',\n products: ['elder', 'chief', 'police', 'government', 'country', 'county', 'soldier', 'village admin', 'ward', 'leader', 'kra',\n 'mailman', 'immagration', 'immigration']\n },\n {\n name: 'environment',\n products: ['conservation', 'toilet', 'choo', 'garbage', 'fagio', 'waste', 'tree', 'taka', 'scrap', 'cleaning', 'gardener', 'rubbish',\n 'usafi', 'mazingira', 'miti', 'trash', 'cleaner', 'plastic', 'collection', 'seedling', 'seedlings', 'recycling']\n },\n {\n name: 'farming',\n products: ['farm', 'farmer', 'farming', 'mkulima', 'kulima', 'ukulima', 'wakulima', 'jembe', 'shamba']\n },\n {\n name: 'labour',\n products: ['artist', 'agent', 'guard', 'askari', 'accountant', 'baker', 'beadwork', 'beauty', 'business', 'barber', 'casual',\n 'electrian', 'caretaker', 'car wash', 'capenter', 'construction', 'chef', 'catering', 'cobler', 'cobbler', 'carwash', 'dhobi',\n 'landlord', 'design', 'carpenter', 'fundi', 'hawking', 'hawker', 'househelp', 'hsehelp', 'house help', 'help', 'housegirl', 'kushona',\n 'juakali', 'jualikali', 'juacali', 'jua kali', 'shepherd', 'makuti', 'kujenga', 'kinyozi', 'kazi', 'knitting', 'kufua', 'fua',\n 'hustler', 'biashara', 'labour', 'labor', 'laundry', 'repair', 'hair', 'posho', 'mill', 'mtambo', 'uvuvi', 'engineer', 'manager',\n 'tailor', 'nguo', 'mason', 'mtumba', 'garage', 'mechanic', 'mjenzi', 'mfugaji', 'painter', 'receptionist', 'printing', 'programming',\n 'plumb', 'charging', 'salon', 'mpishi', 'msusi', 'mgema', 'footballer', 'photocopy', 'peddler', 'staff', 'sales', 'service', 'saloon',\n 'seremala', 'security', 'insurance', 'secretary', 'shoe', 'shepard', 'shephard', 'tout', 'tv', 'mvuvi', 'mawe', 'majani', 'maembe',\n 'freelance', 'mjengo', 'electronics', 'photographer', 'programmer', 'electrician', 'washing', 'bricks', 'welder', 'welding',\n 'working', 'worker', 'watchman', 'waiter', 'waitress', 'viatu', 'yoga', 'guitarist', 'house', 'artisan', 'musician', 'trade',\n 'makonge', 'ujenzi', 'vendor', 'watchlady', 'marketing', 'beautician', 'photo', 'metal work', 'supplier', 'law firm', 'brewer']\n },\n {\n name: 'food',\n products: ['avocado', 'bhajia', 'bajia', 'mbonga', 'bofu', 'beans', 'biscuits', 'biringanya', 'banana', 'bananas', 'crisps', 'chakula',\n 'coconut', 'chapati', 'cereal', 'chipo', 'chapo', 'chai', 'chips', 'cassava', 'cake', 'cereals', 'cook', 'corn', 'coffee', 'chicken',\n 'dagaa', 'donut', 'dough', 'groundnuts', 'hotel', 'holel', 'hoteli', 'butcher', 'butchery', 'fruit', 'food', 'fruits', 'fish',\n 'githeri', 'grocery', 'grocer', 'pojo', 'papa', 'goats', 'mabenda', 'mbenda', 'poultry', 'soda', 'peanuts', 'potatoes', 'samosa',\n 'soko', 'samaki', 'tomato', 'tomatoes', 'mchele', 'matunda', 'mango', 'melon', 'mellon', 'nyanya', 'nyama', 'omena', 'umena', 'ndizi',\n 'njugu', 'kamba kamba', 'khaimati', 'kaimati', 'kunde', 'kuku', 'kahawa', 'keki', 'muguka', 'miraa', 'milk', 'choma', 'maziwa',\n 'mboga', 'mbog', 'busaa', 'chumvi', 'cabbages', 'mabuyu', 'machungwa', 'mbuzi', 'mnazi', 'mchicha', 'ngombe', 'ngano', 'nazi',\n 'oranges', 'peanuts', 'mkate', 'bread', 'mikate', 'vitungu', 'sausages', 'maize', 'mbata', 'mchuzi', 'mchuuzi', 'mandazi', 'mbaazi',\n 'mahindi', 'maandazi', 'mogoka', 'meat', 'mhogo', 'mihogo', 'muhogo', 'maharagwe', 'miwa', 'mahamri', 'mitumba', 'simsim', 'porridge',\n 'pilau', 'vegetable', 'egg', 'mayai', 'mifugo', 'unga', 'good', 'sima', 'sweet', 'sweats', 'sambusa', 'snacks', 'sugar', 'suger',\n 'ugoro', 'sukari', 'soup', 'spinach', 'smokie', 'smokies', 'sukuma', 'tea', 'uji', 'ugali', 'uchuzi', 'uchuuzi', 'viazi', 'yoghurt',\n 'yogurt', 'wine', 'marondo', 'maandzi', 'matoke', 'omeno', 'onions', 'nzugu', 'korosho', 'barafu', 'juice']\n },\n {\n name: 'water',\n products: ['maji', 'water']\n },\n {\n name: 'health',\n products: ['agrovet', 'dispensary', 'barakoa', 'chemist', 'Chemicals', 'chv', 'doctor', 'daktari', 'dawa', 'hospital', 'herbalist',\n 'mganga', 'sabuni', 'soap', 'nurse', 'heath', 'community health worker', 'clinic', 'clinical', 'mask', 'medicine', 'lab technician',\n 'pharmacy', 'cosmetics', 'veterinary', 'vet', 'sickly', 'emergency response', 'emergency']\n },\n {\n name: 'savings',\n products: ['chama', 'group', 'savings', 'loan', 'silc', 'vsla', 'credit', 'finance']\n },\n {\n name: 'shop',\n products: ['bag', 'bead', 'belt', 'bedding', 'jik', 'bed', 'cement', 'botique', 'boutique', 'lines', 'kibanda', 'kiosk', 'spareparts',\n 'candy', 'cloth', 'electricals', 'mutumba', 'cafe', 'leso', 'lesso', 'duka', 'spare parts', 'socks', 'malimali', 'mitungi',\n 'mali mali', 'hardware', 'detergent', 'detergents', 'dera', 'retail', 'kamba', 'pombe', 'pampers', 'pool', 'phone', 'simu', 'mangwe',\n 'mikeka', 'movie', 'shop', 'acces', 'mchanga', 'uto', 'airtime', 'matress', 'mattress', 'mattresses', 'mpsea', 'mpesa', 'shirt',\n 'wholesaler', 'perfume', 'playstation', 'tissue', 'vikapu', 'uniform', 'flowers', 'vitenge', 'utencils', 'utensils', 'station',\n 'jewel', 'pool table', 'club', 'pub', 'bar', 'furniture', 'm-pesa', 'vyombo']\n },\n {\n name: 'transport',\n products: ['kebeba', 'beba', 'bebabeba', 'bike', 'bicycle', 'matatu', 'boda', 'bodaboda', 'cart', 'carrier', 'tour', 'travel', 'driver',\n 'dereva', 'tout', 'conductor', 'kubeba', 'tuktuk', 'taxi', 'piki', 'pikipiki', 'manamba', 'trasportion', 'mkokoteni', 'mover',\n 'motorist', 'motorbike', 'transport', 'transpoter', 'gari', 'magari', 'makanga', 'car']\n },\n {\n name: 'fuel/energy',\n products: ['timber', 'timberyard', 'biogas', 'charcol', 'charcoal', 'kuni', 'mbao', 'fuel', 'makaa', 'mafuta', 'moto', 'solar', 'stima',\n 'fire', 'firewood', 'wood', 'oil', 'taa', 'gas', 'paraffin', 'parrafin', 'parafin', 'petrol', 'petro', 'kerosine', 'kerosene',\n 'diesel']\n },\n {\n name: 'other',\n products: ['other', 'none', 'unknown', 'none']\n }\n]\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 \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 \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', symbol: 'GRZ', address: '0xa686005CE37Dce7738436256982C3903f2E4ea8E', supply: '1000000001000000000000000000',\n decimals: '18', reserves: {}\n },\n {\n name: 'Demo Token', symbol: 'DEMO', address: '0xc80D6aFF8194114c52AEcD84c9f15fd5c8abb187', supply: '99999999999999998976',\n decimals: '18', reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '99999999999999998976'}},\n reserveRatio: '1000000', owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n },\n {\n name: 'Foo Token', symbol: 'FOO', address: '0x9ceD86089f7aBB5A97B40eb0E7521e7aa308d354', supply: '1000000000000000001014',\n decimals: '18', reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '1000000000000000001014'}},\n reserveRatio: '1000000', owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n },\n {\n name: 'testb', symbol: 'tstb', address: '0xC63cFA91A3BFf41cE31Ff436f67D3ACBC977DB95', supply: '99000', decimals: '18',\n reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '99000'}}, reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n },\n {\n name: 'testa', symbol: 'tsta', address: '0x8fA4101ef19D0a078239d035659e92b278bD083C', supply: '9981', decimals: '18',\n reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '9981'}}, reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n },\n {\n name: 'testc', symbol: 'tstc', address: '0x4A6fA6bc3BfE4C9661bC692D9798425350C9e3D4', supply: '100990', decimals: '18',\n reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '100990'}}, reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n }\n]\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 : ['transactions', 'conversions', 'disbursements', 'rewards', 'reclamation']\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 value: '',\n }],\n fn: [{\n value: 'Sarafu Contract',\n }],\n n: [{\n value: ['Sarafu', 'Contract'],\n }],\n tel: [{\n meta: {\n TYP: [],\n },\n value: '',\n }],\n version: [{\n value: '3.0',\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: 'http://localhost:8000/keys.asc',\n cicCacheUrl: 'https://cache.dev.grassrootseconomics.net',\n web3Provider: 'ws://localhost:63546',\n cicUssdUrl: 'https://ussd.dev.grassrootseconomics.net',\n registryAddress: '0x6Ca3cB14aA6F761712E1C18646AfBA4d5Ae249E8',\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 \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,1.107,1,2.027]],["body/interfaces/AccountDetails.html",[0,1.877,1,3.594,2,1.927,3,0.115,4,0.092,5,0.081,6,2.825,7,0.347,8,1.077,9,1.317,10,5.321,11,4.039,12,3.568,13,5.206,14,4.649,15,5.206,16,4.225,17,3.882,18,0.699,19,4.045,20,1.494,21,0.011,22,2.052,23,5.371,24,4.079,25,4.079,26,4.079,27,3.844,28,3.844,29,2.07,30,4.079,31,3.205,32,3.643,33,2.104,34,4.079,35,4.079,36,4.079,37,3.732,38,4.079,39,3.643,40,3.867,41,2.677,42,2.622,43,2.677,44,2.433,45,2.451,46,3.844,47,2.329,48,0.987,49,3.643,50,2.825,51,2.622,52,2.825,53,3.643,54,3.643,55,2.998,56,0.115,57,0.005,58,0.007,59,0.005]],["title/classes/AccountIndex.html",[60,0.005,61,3.393]],["body/classes/AccountIndex.html",[0,0.721,3,0.073,4,0.059,5,0.051,7,0.221,8,0.777,9,0.949,18,0.553,20,1.36,21,0.011,22,2.025,48,1.325,51,1.229,54,4.972,56,0.073,57,0.003,58,0.005,59,0.003,60,0.003,61,3.4,62,1.077,63,2.209,64,5.025,65,3.741,66,5.121,67,5.579,68,4.976,69,3.741,70,3.741,71,7.336,72,3.145,73,3.883,74,5.415,75,5.84,76,6.442,77,0.713,78,3.982,79,3.346,80,4.259,81,4.259,82,4.259,83,6.648,84,0.596,85,3.741,86,0.855,87,4.259,88,1.426,89,3.834,90,6.577,91,2.813,92,1.034,93,0.546,94,5.025,95,3.057,96,2.209,97,2.768,98,2.768,99,4.259,100,2.768,101,4.259,102,3.741,103,4.259,104,2.772,105,6.28,106,4.259,107,5.831,108,4.259,109,6.28,110,6.28,111,2.768,112,1.326,113,2.698,114,2.684,115,4.259,116,3.741,117,4.259,118,2.768,119,4.259,120,5.121,121,3.741,122,3.4,123,2.155,124,3.741,125,4.259,126,2.768,127,4.259,128,2.768,129,4.259,130,2.768,131,3.4,132,4.259,133,5.192,134,1.708,135,2.375,136,4.259,137,4.259,138,2.768,139,5.84,140,0.259,141,3.596,142,2.431,143,1.077,144,1.187,145,1.425,146,2.209,147,2.942,148,2.209,149,2.431,150,2.209,151,2.209,152,1.386,153,2.044,154,2.431,155,4.348,156,3.741,157,2.431,158,2.431,159,4.561,160,2.431,161,4.259,162,2.768,163,2.852,164,2.768,165,2.768,166,2.768,167,2.768,168,4.561,169,2.768,170,5.192,171,2.627,172,2.768,173,2.768,174,2.768]],["title/components/AccountSearchComponent.html",[175,0.692,176,1.383]],["body/components/AccountSearchComponent.html",[3,0.076,4,0.061,5,0.053,7,0.229,8,0.798,9,0.466,18,0.614,21,0.011,22,1.505,33,1.777,56,0.076,57,0.003,58,0.005,59,0.003,60,0.003,67,3.864,77,0.732,79,2.797,84,0.941,86,0.984,88,0.96,91,2.567,92,0.508,93,0.598,95,2.34,112,0.994,113,2.241,114,2.467,123,3.339,134,1.662,140,0.426,144,1.229,145,1.476,152,1.423,163,2.547,175,0.863,176,1.932,177,1.601,178,1.049,179,1.189,180,1.081,181,1.018,182,7.265,183,6.107,184,2.517,185,1.307,186,2.439,187,0.906,188,1.815,189,1.815,190,2.859,191,3.083,192,4.807,193,1.815,194,5.306,195,1.815,196,4.374,197,5.306,198,5.306,199,5.306,200,3.918,201,5.306,202,5.306,203,5.306,204,5.306,205,5.306,206,5.306,207,2.73,208,5.938,209,5.938,210,5.938,211,3.23,212,5.306,213,5.306,214,5.306,215,2.287,216,4.977,217,4.324,218,3.763,219,4.374,220,2.865,221,1.464,222,2.865,223,2.865,224,2.865,225,5.177,226,2.865,227,2.396,228,2.217,229,2.865,230,2.865,231,3.944,232,2.865,233,2.865,234,2.865,235,2.865,236,2.865,237,2.865,238,2.865,239,2.865,240,2.865,241,2.865,242,2.865,243,2.865,244,1.189,245,0.343,246,2.116,247,1.538,248,1.419,249,1.419,250,1.018,251,2.116,252,2.116,253,1.678,254,2.865,255,3.918,256,3.918,257,2.865,258,2.517,259,2.865,260,2.865,261,2.865,262,2.865,263,2.865,264,2.865,265,4.374,266,2.865,267,2.865,268,2.865,269,4.374,270,2.865,271,4.374,272,3.864,273,3.021,274,4.374,275,4.374,276,3.492,277,2.865,278,2.865,279,4.374,280,2.865,281,2.166,282,4.387,283,4.101,284,4.374,285,0.81,286,1.651,287,1.651,288,0.833,289,2.241,290,1.081,291,0.96,292,2.002,293,0.932,294,1.081,295,1.081,296,0.932,297,1.081,298,0.96,299,1.081,300,0.932,301,1.081,302,0.932,303,1.081,304,0.932,305,0.726,306,1.081,307,0.96,308,1.651,309,1.018,310,0.932,311,1.081,312,0.932,313,1.081,314,0.932,315,1.081,316,0.96,317,1.651,318,1.018,319,0.932,320,0.726,321,0.932,322,1.081,323,0.96,324,1.651,325,1.018,326,0.96,327,0.788,328,0.932,329,0.96,330,0.932,331,0.932,332,1.081,333,0.932,334,1.081,335,0.932,336,1.081,337,0.988,338,1.049,339,1.081]],["title/components/AccountsComponent.html",[175,0.692,293,1.383]],["body/components/AccountsComponent.html",[1,1.414,3,0.078,4,0.063,5,0.055,7,0.237,8,0.818,9,0.881,11,3.387,16,3.387,18,0.635,20,1.087,21,0.011,22,1.531,33,1.731,56,0.143,57,0.004,58,0.005,59,0.004,60,0.004,67,5.224,77,0.752,79,2.508,84,0.966,86,0.976,88,0.993,91,2.112,92,0.96,93,0.714,112,1.144,113,1.694,135,2.757,140,0.47,144,1.272,145,1.527,152,0.965,163,1.926,175,0.881,176,0.965,177,1.643,178,1.085,179,1.23,180,1.119,181,1.053,185,1.342,186,2.778,187,0.938,188,1.863,189,1.863,190,2.869,191,3.097,192,3.727,193,1.863,195,1.863,207,2.778,217,4.213,218,3.807,221,1.88,228,2.053,244,1.23,245,0.355,248,1.468,249,1.468,250,1.053,251,2.189,252,2.189,253,1.713,272,1.93,281,2.223,282,3.933,285,0.838,286,1.694,287,1.694,288,0.862,289,2.28,290,1.119,291,0.993,292,2.044,293,1.966,294,1.119,295,1.119,296,0.965,297,1.119,298,0.993,299,1.119,300,0.965,301,1.119,302,0.965,303,1.119,304,0.965,305,1.373,306,1.119,307,0.993,308,1.694,309,1.053,310,0.965,311,1.119,312,0.965,313,1.119,314,0.965,315,1.119,316,0.993,317,1.694,318,1.053,319,0.965,320,0.751,321,0.965,322,1.119,323,0.993,324,1.694,325,1.053,326,0.993,327,0.816,328,0.965,329,0.993,330,0.965,331,0.965,332,1.119,333,0.965,334,1.119,335,0.965,336,1.119,337,1.022,338,1.085,339,1.119,340,2.604,341,5.418,342,4.489,343,5.418,344,3.742,345,3.742,346,4.759,347,4.325,348,4.759,349,3.742,350,3.742,351,3.1,352,4.173,353,6.042,354,6.042,355,4.489,356,2.604,357,2.944,358,4.489,359,3.1,360,2.965,361,2.965,362,2.965,363,2.965,364,2.965,365,4.489,366,2.965,367,2.965,368,2.965,369,2.965,370,3.742,371,2.965,372,4.173,373,2.965,374,4.823,375,2.965,376,3.583,377,3.943,378,2.635,379,2.965,380,3.742,381,2.922,382,3.1,383,2.965,384,3.742,385,3.1,386,2.048,387,1.527,388,1.591,389,1.591,390,1.829,391,1.662,392,1.468,393,1.93,394,2.189,395,1.591,396,2.965,397,2.604,398,2.965,399,2.367,400,2.965,401,2.604,402,2.604,403,2.604,404,4.489,405,2.189,406,2.965,407,4,408,3.1,409,2.189,410,2.048,411,4.489,412,2.189,413,2.048,414,2.965,415,4.489,416,4.489,417,2.965,418,2.965,419,2.965,420,2.965,421,3.943,422,3.583,423,3.1,424,4.489,425,4.489,426,4.489,427,3.1,428,4.489,429,2.922,430,4.489]],["title/modules/AccountsModule.html",[431,1.138,432,3.139]],["body/modules/AccountsModule.html",[3,0.125,4,0.1,5,0.088,21,0.011,56,0.125,57,0.006,58,0.007,59,0.006,60,0.006,91,1.543,140,0.54,143,2.44,176,2.596,183,3.501,245,0.567,247,2.545,285,1.341,291,2.672,293,2.596,302,2.596,387,2.442,388,2.545,389,2.545,431,1.269,432,6.481,433,1.736,434,2.348,435,3.767,436,2.442,437,2.545,438,1.905,439,4.165,440,4.165,441,4.165,442,5.51,443,4.109,444,5.51,445,3.363,446,2.545,447,2.261,448,4.742,449,2.601,450,3.679,451,2.658,452,4.742,453,2.783,454,4.165,455,2.925,456,4.165,457,3.785,458,3.275,459,5.003,460,2.783,461,3.501,462,4.165,463,3.501,464,4.165,465,4.079,466,4.328,467,4.628,468,3.501,469,4.328,470,3.865,471,2.925,472,4.079,473,3.086,474,3.086,475,3.865,476,2.925,477,3.865,478,2.925,479,4.079,480,3.086,481,4.328,482,3.275,483,4.742,484,6.267,485,4.742,486,4.328,487,3.086,488,6.267,489,4.742,490,4.742,491,5.003,492,4.165,493,5.505,494,3.785,495,3.275]],["title/modules/AccountsRoutingModule.html",[431,1.138,442,2.936]],["body/modules/AccountsRoutingModule.html",[3,0.154,4,0.124,5,0.108,21,0.011,45,2.424,48,1.327,56,0.154,57,0.007,58,0.009,59,0.007,60,0.007,88,1.956,140,0.511,143,2.273,175,1.312,176,2.328,183,4.312,192,3.602,245,0.699,250,2.074,291,2.397,293,2.328,302,2.328,433,2.137,438,2.346,442,4.942,449,2.97,454,5.129,456,6.286,457,4.661,458,4.033,462,5.129,463,4.312,464,5.129,492,5.129,496,5.84,497,3.428,498,3.985,499,4.011,500,4.858,501,4.033,502,4.033,503,3.801,504,3.602]],["title/interfaces/Action.html",[0,1.107,505,2.281]],["body/interfaces/Action.html",[0,2.099,2,2.587,3,0.154,4,0.123,5,0.108,7,0.466,8,1.303,12,3.539,17,3.002,18,0.661,20,1.475,21,0.011,22,1.959,29,2.779,45,3.345,56,0.154,57,0.007,58,0.009,59,0.007,93,0.724,135,2.917,227,2.377,505,4.576,506,4.025,507,4.731,508,4.731,509,3.137,510,4.196,511,3.793,512,4.409]],["title/classes/ActivatedRouteStub.html",[60,0.005,513,3.393]],["body/classes/ActivatedRouteStub.html",[3,0.133,4,0.107,5,0.094,7,0.403,8,1.19,9,1.062,18,0.521,21,0.011,33,2.056,56,0.133,57,0.006,58,0.008,59,0.006,60,0.006,62,1.964,64,4.027,77,1.093,84,1.086,86,0.915,92,1.157,93,0.611,96,5.21,112,0.845,140,0.396,152,2.354,221,1.609,228,2.064,250,1.792,253,2.288,513,5.21,514,6.959,515,4.44,516,2.828,517,6.526,518,6.526,519,6.526,520,8.684,521,3.923,522,5.342,523,7.649,524,4.819,525,5.21,526,4.979,527,7.234,528,6.355,529,6.526,530,7.352,531,5.733,532,5.045,533,6.526,534,5.045,535,6.526,536,7.649,537,6.526,538,4.431,539,4.819,540,6.526,541,5.045,542,2.406,543,4.431,544,4.431,545,6.526,546,5.045,547,5.045,548,5.045,549,5.045]],["title/components/AdminComponent.html",[175,0.692,296,1.383]],["body/components/AdminComponent.html",[3,0.08,4,0.064,5,0.056,7,0.243,8,0.834,9,1.121,18,0.623,20,1.099,21,0.011,33,1.159,51,1.349,56,0.145,57,0.004,58,0.005,59,0.004,60,0.004,77,0.766,84,0.984,86,0.965,88,1.017,91,1.488,92,1.222,93,0.747,112,1.198,134,1.356,135,2.308,140,0.457,152,0.989,171,1.874,175,0.894,176,0.989,177,1.674,178,1.112,179,1.261,180,1.146,181,1.079,185,1.367,186,2.528,187,0.961,188,1.898,189,1.898,190,2.877,191,3.106,192,2.82,193,1.898,195,1.898,207,2.813,217,4.252,221,1.947,227,1.69,228,0.961,244,1.261,245,0.364,248,1.504,249,1.504,253,1.446,281,2.264,285,0.859,286,1.725,287,1.725,288,0.883,289,2.308,290,1.146,291,1.017,292,2.075,293,0.989,294,1.146,295,1.146,296,1.991,297,1.146,298,1.017,299,1.146,300,0.989,301,1.146,302,0.989,303,1.146,304,0.989,305,0.77,306,1.146,307,1.017,308,1.725,309,1.079,310,0.989,311,1.146,312,0.989,313,1.146,314,0.989,315,1.146,316,1.017,317,1.725,318,1.079,319,0.989,320,0.77,321,0.989,322,1.146,323,1.017,324,1.725,325,1.079,326,1.017,327,0.836,328,0.989,329,1.017,330,0.989,331,0.989,332,1.146,333,0.989,334,1.146,335,0.989,336,1.146,337,1.048,338,1.112,339,1.146,345,3.797,347,4.389,349,3.797,350,3.797,351,3.158,352,4.225,356,2.669,357,2.969,359,3.158,370,3.797,380,3.797,381,2.976,382,3.158,384,3.797,385,3.158,386,2.098,387,1.565,388,1.63,389,1.63,390,1.874,391,1.703,392,1.504,405,2.243,407,2.243,408,2.098,409,2.243,410,2.098,412,2.243,413,2.098,423,3.158,505,4.397,507,2.684,508,4.047,509,1.78,550,2.669,551,3.591,552,5.498,553,4.573,554,4.656,555,4.573,556,3.65,557,4.573,558,4.573,559,4.573,560,4.573,561,3.038,562,4.321,563,4.573,564,3.038,565,4.573,566,3.038,567,3.038,568,3.038,569,4.573,570,3.038,571,3.038,572,3.038,573,3.038,574,3.038,575,3.038,576,6.118,577,6.894,578,3.038,579,3.038,580,3.038,581,1.977,582,2.669,583,3.038,584,2.669,585,2.669,586,2.425,587,3.038,588,3.038,589,3.038,590,4.573,591,3.038,592,3.038,593,4.573,594,3.038,595,3.038,596,2.669,597,3.038,598,3.038,599,3.038,600,3.038,601,3.038,602,3.038,603,3.038,604,5.498,605,3.038,606,3.038,607,3.038,608,2.669,609,2.669,610,3.038,611,3.038,612,4.573,613,3.038,614,3.038,615,4.573,616,3.038,617,6.118,618,6.118,619,6.118,620,6.118,621,4.573,622,2.563,623,3.376,624,4.573,625,2.669,626,2.243,627,3.038]],["title/modules/AdminModule.html",[431,1.138,628,3.139]],["body/modules/AdminModule.html",[3,0.145,4,0.116,5,0.102,21,0.011,56,0.145,57,0.007,58,0.008,59,0.007,60,0.007,140,0.535,143,2.683,245,0.658,285,1.554,296,2.7,387,2.83,388,2.949,389,2.949,431,1.471,433,2.011,434,2.721,435,4.041,436,2.83,437,2.949,438,2.208,443,4.273,445,3.699,446,2.949,447,2.62,449,2.86,450,4.045,451,3.08,453,3.226,455,3.389,465,4.485,466,4.76,469,4.76,470,4.251,471,3.389,472,4.485,473,3.577,474,3.577,475,4.251,476,3.389,477,4.251,478,3.389,479,4.485,480,3.577,486,4.76,487,3.577,628,6.387,629,4.827,630,4.827,631,4.827,632,5.73,633,5.495,634,5.495,635,4.827]],["title/modules/AdminRoutingModule.html",[431,1.138,632,2.936]],["body/modules/AdminRoutingModule.html",[3,0.168,4,0.135,5,0.118,21,0.011,48,1.448,56,0.168,57,0.008,58,0.009,59,0.008,60,0.008,140,0.488,143,2.48,175,1.036,245,0.762,250,2.263,296,2.454,433,2.332,438,2.56,449,3.13,497,3.74,498,4.137,499,4.227,500,3.74,504,3.93,632,5.209,635,5.597,636,6.371]],["title/components/AppComponent.html",[175,0.692,298,1.424]],["body/components/AppComponent.html",[3,0.09,4,0.072,5,0.063,7,0.272,8,0.907,9,0.809,18,0.55,20,0.57,21,0.011,22,1.639,33,1.639,48,1.633,51,2.209,56,0.09,57,0.004,58,0.006,59,0.004,60,0.004,77,0.833,78,1.753,79,2.44,84,1.071,86,0.91,88,1.14,91,1.619,92,0.882,93,0.644,112,0.57,113,1.877,140,0.357,163,2.952,175,0.957,176,1.108,177,1.821,178,1.246,179,1.413,180,1.285,181,1.209,187,1.077,188,2.065,189,2.065,190,2.91,191,3.147,193,2.065,195,2.065,221,1.227,228,2.045,244,1.413,245,0.407,249,1.686,253,2.045,285,0.963,286,1.877,287,1.877,288,0.99,289,2.441,290,1.285,291,1.14,292,2.219,293,1.108,294,1.285,295,1.285,296,1.108,297,1.285,298,2.166,299,1.285,300,1.108,301,1.285,302,1.108,303,1.285,304,1.108,305,1.639,306,1.285,307,1.14,308,1.877,309,1.209,310,1.108,311,1.285,312,1.108,313,1.285,314,1.108,315,1.285,316,1.14,317,1.877,318,1.209,319,1.108,320,0.863,321,1.108,322,1.285,323,1.14,324,1.877,325,1.209,326,1.14,327,1.369,328,1.108,329,1.14,330,1.108,331,1.108,332,1.285,333,1.108,334,1.285,335,1.108,336,1.285,337,1.174,338,1.246,339,1.285,357,3.08,378,2.92,392,1.686,394,4.342,395,1.827,399,2.718,401,4.37,509,1.325,626,3.674,637,2.99,638,2.562,639,5.88,640,4.975,641,5.165,642,5.165,643,5.165,644,5.88,645,4.975,646,4.37,647,4.975,648,4.975,649,2.718,650,4.432,651,4.578,652,4.831,653,4.975,654,4.975,655,5.163,656,3.404,657,6.468,658,3.404,659,3.404,660,3.404,661,4.975,662,3.404,663,2.216,664,4.975,665,4.37,666,4.37,667,3.404,668,3.436,669,3.404,670,4.342,671,3.404,672,2.99,673,2.99,674,2.99,675,4.975,676,3.404,677,3.404,678,5.165,679,4.342,680,4.37,681,4.975,682,4.975,683,4.975,684,3.972,685,4.975,686,3.436,687,3.404,688,2.514,689,3.404,690,2.718,691,3.404,692,3.404,693,3.404,694,2.99,695,3.404,696,3.404,697,3.404,698,2.1,699,4.061,700,2.718,701,2.514,702,2.718,703,2.718,704,2.718,705,2.99,706,2.99,707,3.404,708,4.37,709,2.99,710,4.37,711,2.99,712,3.404,713,3.404,714,3.404,715,3.404,716,4.975,717,3.404,718,3.404,719,3.404,720,1.753,721,3.404]],["title/modules/AppModule.html",[431,1.138,722,3.139]],["body/modules/AppModule.html",[3,0.125,4,0.1,5,0.088,21,0.011,56,0.125,57,0.006,58,0.007,59,0.006,60,0.006,114,2.567,123,1.965,140,0.527,143,2.437,144,2.031,145,2.438,245,0.567,248,2.344,285,1.339,298,2.867,387,2.438,431,1.267,433,1.733,434,2.344,435,3.764,436,3.612,437,3.764,438,1.902,443,4.107,445,3.36,446,2.541,447,2.258,449,2.598,453,2.779,455,2.92,459,4.998,460,2.779,461,3.496,465,4.075,722,6.497,723,4.159,724,4.159,725,4.159,726,4.159,727,4.159,728,5.508,729,5.508,730,5.294,731,5.508,732,5.508,733,4.735,734,6.261,735,4.998,736,2.779,737,4.998,738,4.735,739,4.735,740,6.261,741,4.735,742,5.958,743,6.261,744,2.438,745,4.623,746,4.324,747,4.159,748,4.735,749,3.779,750,3.779,751,4.735,752,4.075,753,4.159,754,4.735,755,4.735,756,4.735,757,4.159,758,4.735,759,4.735,760,4.735,761,4.735,762,5.511,763,5.958,764,5.599]],["title/modules/AppRoutingModule.html",[431,1.138,728,2.936]],["body/modules/AppRoutingModule.html",[3,0.159,4,0.128,5,0.112,21,0.011,48,1.371,56,0.159,57,0.007,58,0.009,59,0.007,60,0.007,140,0.476,143,2.349,245,0.722,250,2.143,433,2.209,438,2.424,449,3.03,497,3.542,498,4.042,499,4.092,500,4.607,501,4.167,502,4.167,503,3.927,728,5.042,746,5.042,747,5.3,765,6.034,766,7.3,767,5.3,768,6.412,769,6.034,770,6.034,771,6.034,772,6.034,773,4.817,774,6.034,775,6.034]],["title/interfaces/AreaName.html",[0,1.107,510,2.495]],["body/interfaces/AreaName.html",[0,2.128,2,2.695,3,0.16,4,0.128,5,0.113,7,0.485,8,1.336,12,3.628,17,3.126,18,0.585,20,1.452,21,0.011,22,1.538,29,2.894,45,2.519,56,0.16,57,0.007,58,0.009,59,0.007,93,0.795,135,3.157,227,1.866,505,4.223,506,4.192,507,3.563,508,3.563,509,2.363,510,4.619,511,5.319,512,4.519]],["title/interfaces/AreaType.html",[0,1.107,512,2.622]],["body/interfaces/AreaType.html",[0,2.128,2,2.695,3,0.16,4,0.128,5,0.113,7,0.485,8,1.336,12,3.628,17,3.126,18,0.585,20,1.452,21,0.011,22,1.538,29,3.897,45,2.519,56,0.16,57,0.007,58,0.009,59,0.007,93,0.795,135,3.157,227,1.866,505,4.223,506,4.192,507,3.563,508,3.563,509,2.363,510,4.3,511,3.951,512,4.854]],["title/components/AuthComponent.html",[175,0.692,300,1.383]],["body/components/AuthComponent.html",[3,0.087,4,0.069,5,0.061,7,0.262,8,0.883,9,0.788,18,0.567,20,0.549,21,0.011,33,1.458,37,1.625,48,1.444,56,0.087,57,0.004,58,0.006,59,0.004,60,0.004,77,0.811,79,2.944,84,1.042,86,0.949,88,1.099,91,1.576,92,0.858,93,0.634,112,1.135,113,2.398,114,1.772,123,2.813,134,1.194,140,0.411,152,1.576,163,2.469,175,0.936,176,1.068,177,1.772,178,1.201,179,1.362,180,1.238,181,1.165,185,1.447,186,2.646,187,1.037,188,2.01,189,2.01,190,2.899,191,3.134,193,2.01,195,2.01,200,4.25,207,2.922,211,3.576,216,5.417,218,3.937,221,1.749,225,4.25,227,1.953,228,1.82,231,4.18,244,1.362,245,0.393,246,2.423,247,1.761,248,1.625,249,1.625,250,1.165,253,2.586,255,2.423,256,2.423,273,3.344,281,2.398,283,3.344,285,0.928,286,1.827,287,2.172,288,0.954,289,2.398,290,1.238,291,1.099,292,2.172,293,1.068,294,1.238,295,1.238,296,1.068,297,1.238,298,1.099,299,1.238,300,2.068,301,1.238,302,1.068,303,1.238,304,1.068,305,1.227,306,1.238,307,1.099,308,1.827,309,1.165,310,1.068,311,1.238,312,1.068,313,1.238,314,1.068,315,1.238,316,1.099,317,1.827,318,1.165,319,1.068,320,0.831,321,1.068,322,1.238,323,1.099,324,1.827,325,1.165,326,1.099,327,0.902,328,1.068,329,1.099,330,1.068,331,1.068,332,1.238,333,1.068,334,1.238,335,1.068,336,1.238,337,1.131,338,1.201,339,1.238,395,1.761,525,5.072,582,4.253,649,2.619,650,4.375,670,3.576,674,2.882,699,3.344,767,4.253,776,2.882,777,5.755,778,4.842,779,5.755,780,5.055,781,4.594,782,6.23,783,5.072,784,6.354,785,4.842,786,5.755,787,4.842,788,3.281,789,3.281,790,3.281,791,3.281,792,4.842,793,3.281,794,3.281,795,3.281,796,3.281,797,3.281,798,3.281,799,3.281,800,4.049,801,3.281,802,2.882,803,3.281,804,3.281,805,2.619,806,3.281,807,4.842,808,3.281,809,2.882,810,2.423,811,2.882,812,3.281,813,3.281,814,2.135,815,3.281,816,2.423,817,2.266,818,2.882,819,3.281,820,3.281,821,3.281,822,3.281,823,3.281,824,3.281,825,3.281,826,3.281,827,3.281,828,3.281,829,2.714,830,4.842,831,2.423,832,2.987,833,4.842]],["title/guards/AuthGuard.html",[746,2.936,834,2.936]],["body/guards/AuthGuard.html",[3,0.151,4,0.121,5,0.106,7,0.455,9,1.147,18,0.563,21,0.011,56,0.151,57,0.007,58,0.008,59,0.007,60,0.007,77,1.18,84,1.227,86,0.844,92,1.25,93,0.66,112,0.954,113,2.66,114,2.086,123,2.365,134,1.738,140,0.465,185,1.703,218,4.493,227,2.167,245,0.682,250,2.024,515,3.951,521,3.79,542,2.717,581,4.982,638,2.935,746,4.869,773,6.56,835,4.549,836,5.006,837,4.549,838,5.699,839,5.006,840,7.025,841,7.025,842,5.699,843,6.723,844,2.229,845,3.058,846,4.208,847,5.006,848,5.006]],["title/modules/AuthModule.html",[431,1.138,849,3.139]],["body/modules/AuthModule.html",[3,0.148,4,0.119,5,0.104,21,0.011,56,0.148,57,0.007,58,0.008,59,0.007,60,0.007,140,0.53,143,2.719,245,0.672,247,3.014,285,1.588,300,2.714,335,2.714,431,1.503,433,2.055,434,2.781,435,4.081,436,2.892,437,3.014,438,2.256,445,3.749,446,3.014,447,2.678,449,2.899,450,4.1,451,3.148,453,3.296,470,4.309,471,3.464,475,4.309,476,3.464,477,4.309,478,3.464,481,4.824,482,3.878,486,4.824,487,3.655,491,5.576,849,6.409,850,4.933,851,4.933,852,4.933,853,5.761,854,5.616,855,5.616,856,4.933,857,5.616,858,4.933]],["title/modules/AuthRoutingModule.html",[431,1.138,853,2.936]],["body/modules/AuthRoutingModule.html",[3,0.165,4,0.132,5,0.116,21,0.011,48,1.422,56,0.165,57,0.007,58,0.009,59,0.007,60,0.007,140,0.484,143,2.435,175,1.018,245,0.748,250,2.222,300,2.427,433,2.289,438,2.513,449,3.096,497,3.671,498,4.105,499,4.181,500,4.379,501,4.32,502,4.32,503,4.071,504,3.858,853,5.152,856,5.494,859,6.255]],["title/injectables/AuthService.html",[650,2.622,844,1.344]],["body/injectables/AuthService.html",[0,0.682,3,0.069,4,0.055,5,0.049,7,0.209,8,0.744,9,0.998,18,0.589,20,0.439,21,0.011,22,1.034,23,2.819,33,0.664,48,1.735,51,1.812,56,0.069,57,0.003,58,0.005,59,0.003,60,0.003,77,0.683,79,3.21,84,0.878,86,0.962,92,1.088,93,0.574,112,1.295,113,2.783,114,1.494,123,1.694,134,1.908,135,0.988,140,0.438,144,1.124,145,1.349,152,2.285,155,1.809,163,3.012,221,1.819,227,1.541,228,0.828,245,0.313,253,1.941,273,2.819,305,1.828,320,0.664,357,2.817,394,4.181,395,3.293,397,2.301,399,4.519,447,1.249,460,1.537,522,1.934,539,3.703,622,1.468,625,4.405,638,1.349,650,2.517,652,4.418,663,4.418,680,2.301,684,2.091,744,1.349,752,2.656,753,2.301,782,4.973,800,3.361,802,3.585,811,2.301,817,1.809,829,1.468,831,3.703,844,1.291,845,1.406,847,2.301,860,1.406,861,2.301,862,3.816,863,5.015,864,5.015,865,5.662,866,4.519,867,4.519,868,5.662,869,5.662,870,5.662,871,4.081,872,5.662,873,4.973,874,4.081,875,4.081,876,1.934,877,4.8,878,4.081,879,2.619,880,2.619,881,2.619,882,2.619,883,2.619,884,2.619,885,2.619,886,4.081,887,2.619,888,4.081,889,2.619,890,2.619,891,4.081,892,2.619,893,4.081,894,4.081,895,2.619,896,5.015,897,4.081,898,2.619,899,3.585,900,2.619,901,2.619,902,2.619,903,2.619,904,2.619,905,2.619,906,2.619,907,1.468,908,2.619,909,2.619,910,2.819,911,2.619,912,4.081,913,2.619,914,2.619,915,2.619,916,2.619,917,3.585,918,6.501,919,2.619,920,2.619,921,5.015,922,6.501,923,5.015,924,3.258,925,5.015,926,5.662,927,5.015,928,4.081,929,2.301,930,4.081,931,4.081,932,4.081,933,2.19,934,4.081,935,4.081,936,5.662,937,4.405,938,4.519,939,2.619,940,2.619,941,4.081,942,5.015,943,5.015,944,5.015,945,2.619,946,2.619,947,5.015,948,2.619,949,2.301,950,2.301,951,2.619,952,4.081,953,2.619,954,2.619,955,2.619,956,2.619,957,2.619,958,2.619,959,2.619,960,2.619,961,2.619,962,2.619,963,4.081,964,2.619,965,2.619,966,2.619,967,4.081,968,4.405,969,2.619,970,2.619,971,2.619,972,2.619,973,2.301,974,2.619,975,2.619,976,2.619,977,2.619,978,1.809,979,3.258,980,2.301,981,5.015,982,2.391,983,2.301,984,1.934,985,2.619,986,1.537,987,2.301,988,2.091,989,2.091,990,2.619,991,2.301,992,2.619,993,2.619,994,2.619,995,2.619,996,2.619,997,2.619,998,2.619,999,1.934,1000,2.619,1001,2.619,1002,4.081,1003,2.619,1004,4.081,1005,2.619,1006,2.619,1007,2.619,1008,4.081,1009,2.619,1010,2.619,1011,1.349,1012,2.619,1013,2.619,1014,3.585,1015,2.619,1016,4.081,1017,4.081,1018,2.619,1019,2.619,1020,2.619,1021,3.585,1022,2.619,1023,2.619,1024,2.619,1025,2.619,1026,2.619,1027,2.619,1028,2.619,1029,2.619,1030,2.619,1031,2.619]],["title/injectables/BlockSyncService.html",[844,1.344,1032,3.139]],["body/injectables/BlockSyncService.html",[3,0.085,4,0.068,5,0.06,7,0.257,8,0.871,9,1.186,18,0.611,20,1.254,21,0.011,22,2.19,33,1.442,47,2.562,48,1.702,51,2.795,56,0.085,57,0.004,58,0.006,59,0.004,60,0.004,73,3.51,77,0.799,79,2.791,84,1.028,86,0.915,92,1.292,93,0.682,95,2.578,112,1.179,113,2.376,134,1.177,140,0.455,144,1.381,145,1.658,152,2.437,221,1.798,228,1.8,245,0.385,253,1.8,272,3.108,327,1.313,357,3.026,378,2.803,391,1.804,392,1.594,393,2.095,638,1.658,642,4.999,643,4.999,651,4.344,844,1.51,845,1.728,860,1.728,907,1.804,933,1.728,1032,3.526,1033,6.837,1034,2.828,1035,4.775,1036,4.775,1037,4.775,1038,4.775,1039,4.775,1040,4.775,1041,3.219,1042,4.746,1043,4.775,1044,4.775,1045,5.978,1046,5.384,1047,3.219,1048,4.203,1049,4.775,1050,4.604,1051,5.691,1052,3.219,1053,4.775,1054,3.219,1055,3.379,1056,4.775,1057,3.219,1058,4.775,1059,6.296,1060,3.219,1061,4.775,1062,6.296,1063,6.296,1064,6.296,1065,7.489,1066,6.296,1067,6.296,1068,3.219,1069,3.51,1070,3.219,1071,3.219,1072,1.728,1073,3.219,1074,2.57,1075,3.219,1076,3.219,1077,3.219,1078,5.691,1079,3.219,1080,3.219,1081,2.828,1082,4.775,1083,3.219,1084,3.219,1085,3.219,1086,3.219,1087,3.219,1088,3.219,1089,3.219,1090,3.219,1091,4.775,1092,3.219,1093,3.219,1094,3.219,1095,3.219,1096,3.219,1097,4.775,1098,4.775,1099,3.219,1100,3.811,1101,4.775,1102,3.219,1103,3.219,1104,4.775,1105,3.219,1106,4.775,1107,3.219,1108,4.775,1109,4.775,1110,3.219,1111,3.219,1112,4.194,1113,3.219,1114,2.828,1115,3.219,1116,3.219,1117,3.219,1118,3.219,1119,3.219,1120,3.219,1121,3.219,1122,4.775,1123,3.219,1124,3.219,1125,3.811,1126,4.775,1127,3.219,1128,3.219,1129,3.219,1130,4.775,1131,3.219,1132,3.219,1133,3.219,1134,3.219,1135,3.219,1136,3.219,1137,3.219]],["title/classes/BlocksBloom.html",[60,0.005,1138,2.622]],["body/classes/BlocksBloom.html",[1,3.745,3,0.143,4,0.115,5,0.101,7,0.433,8,1.245,18,0.66,20,1.473,21,0.011,22,2.187,33,1.373,56,0.143,57,0.006,58,0.008,59,0.006,60,0.01,62,2.109,86,0.969,93,0.507,95,1.983,140,0.329,227,1.666,320,1.373,327,1.879,509,2.109,720,3.518,829,3.037,1055,4.437,1138,4.614,1139,3.526,1140,5.166,1141,5.166,1142,5.166,1143,5.166,1144,5.166,1145,5.418,1146,5.418,1147,5.418,1148,5.418,1149,5.418,1150,3.742,1151,4.994,1152,2.583,1153,3.526,1154,3.526,1155,3.742,1156,3.742,1157,3.342,1158,3.18,1159,3.742,1160,3.742,1161,3.742,1162,3.526,1163,3.526]],["title/interfaces/Category.html",[0,1.107,12,2.105]],["body/interfaces/Category.html",[0,2.128,2,2.695,3,0.16,4,0.128,5,0.113,7,0.485,8,1.336,12,3.897,17,4.209,18,0.585,20,1.452,21,0.011,22,1.538,29,2.894,45,2.519,56,0.16,57,0.007,58,0.009,59,0.007,93,0.795,135,3.157,227,1.866,505,4.223,506,4.192,507,3.563,508,3.563,509,2.363,510,4.3,511,3.951,512,4.519]],["title/classes/Conversion.html",[60,0.005,720,2.189]],["body/classes/Conversion.html",[1,3.833,3,0.14,4,0.112,5,0.098,7,0.422,8,1.226,18,0.675,20,1.456,21,0.011,22,2.178,33,1.34,56,0.14,57,0.006,58,0.008,59,0.006,60,0.01,62,2.058,86,0.999,93,0.495,95,1.935,140,0.321,227,1.625,320,1.34,327,1.85,509,2.879,720,3.809,829,2.964,1055,4.578,1138,4.148,1139,3.442,1140,3.652,1141,3.652,1142,3.652,1143,3.652,1144,3.652,1150,3.652,1151,5.149,1152,2.521,1153,3.442,1154,3.442,1155,3.652,1156,3.652,1157,3.261,1158,3.104,1159,5.108,1160,5.108,1161,5.108,1162,4.814,1163,4.814,1164,5.288,1165,5.288,1166,5.288,1167,5.288,1168,5.288,1169,5.288,1170,5.288]],["title/components/CreateAccountComponent.html",[175,0.692,302,1.383]],["body/components/CreateAccountComponent.html",[3,0.081,4,0.065,5,0.057,7,0.244,8,0.837,9,0.497,12,3.548,14,4.419,16,3.685,18,0.631,21,0.011,22,1.947,29,2.188,33,1.163,45,2.545,56,0.081,57,0.004,58,0.005,59,0.004,60,0.004,67,2.987,77,0.768,84,0.988,86,0.934,88,2.647,91,2.601,92,0.541,93,0.574,112,0.768,114,1.117,123,2.289,134,1.132,135,2.782,140,0.419,152,1.493,175,0.897,176,0.993,177,1.68,178,1.117,179,1.267,180,1.152,181,1.084,185,1.372,186,2.536,187,0.965,188,1.905,189,1.905,190,2.878,191,3.108,193,1.905,195,1.905,200,4.072,207,2.82,211,3.389,215,2.437,216,5.1,217,4.419,221,1.512,225,4.072,227,1.411,228,1.451,231,4.055,244,1.267,245,0.365,246,2.254,247,1.638,248,1.512,249,1.512,253,1.744,255,2.254,256,5.673,258,2.682,272,3.991,281,2.272,282,4.495,283,5.794,285,0.863,286,1.732,287,1.732,288,0.887,289,2.314,290,1.152,291,1.022,292,2.081,293,0.993,294,1.152,295,1.152,296,0.993,297,1.152,298,1.022,299,1.152,300,0.993,301,1.152,302,1.995,303,1.152,304,0.993,305,0.774,306,1.152,307,1.022,308,1.732,309,1.084,310,0.993,311,1.152,312,0.993,313,1.152,314,0.993,315,1.152,316,1.022,317,1.732,318,1.084,319,0.993,320,0.774,321,0.993,322,1.152,323,1.022,324,1.732,325,1.084,326,1.022,327,0.84,328,0.993,329,1.022,330,0.993,331,0.993,332,1.152,333,0.993,334,1.152,335,0.993,336,1.152,337,1.053,338,1.117,339,1.152,344,3.809,391,1.711,392,1.512,393,1.987,402,2.682,403,2.682,421,4.844,422,5.513,463,5.837,509,1.787,510,1.792,781,4.402,783,4.895,805,3.664,1171,6.943,1172,2.682,1173,5.515,1174,4.59,1175,4.072,1176,4.072,1177,5.515,1178,4.072,1179,5.515,1180,5.291,1181,4.59,1182,3.053,1183,3.053,1184,3.053,1185,3.053,1186,3.053,1187,3.053,1188,3.053,1189,3.053,1190,3.053,1191,3.053,1192,3.053,1193,3.053,1194,3.053,1195,5.515,1196,3.053,1197,6.575,1198,3.053,1199,3.053,1200,3.053,1201,3.053,1202,3.053,1203,3.053,1204,3.053,1205,3.053,1206,3.053,1207,3.053,1208,4.895,1209,4.59,1210,4.031,1211,4.59,1212,5.387,1213,5.387,1214,4.528,1215,4.59,1216,4.031]],["title/classes/CustomErrorStateMatcher.html",[60,0.005,231,2.622]],["body/classes/CustomErrorStateMatcher.html",[3,0.153,4,0.122,5,0.107,7,0.462,9,0.941,18,0.462,21,0.011,48,1.315,56,0.153,57,0.007,58,0.008,59,0.007,60,0.007,62,2.252,77,1.191,86,0.692,92,1.025,93,0.541,112,0.969,134,1.426,140,0.432,185,2.127,227,2.369,231,4.388,247,3.104,305,1.803,487,3.765,581,4.631,1048,6.205,1217,6.249,1218,5.081,1219,7.705,1220,7.115,1221,7.115,1222,8.039,1223,7.061,1224,8.039,1225,8.039,1226,5.785,1227,5.679,1228,7.115,1229,5.785,1230,5.785,1231,5.785,1232,5.785]],["title/classes/CustomValidator.html",[60,0.005,1233,3.393]],["body/classes/CustomValidator.html",[3,0.145,4,0.116,5,0.102,7,0.439,9,1.121,18,0.551,20,1.261,21,0.011,48,1.711,56,0.145,57,0.007,58,0.008,59,0.007,60,0.007,62,2.139,72,5.089,77,1.154,86,0.825,92,1.222,93,0.645,112,1.154,114,2.011,134,1.857,140,0.334,221,1.699,227,1.689,247,2.949,305,2.001,800,2.721,1011,3.549,1048,5.83,1227,5.501,1233,5.501,1234,4.827,1235,8.297,1236,6.892,1237,6.892,1238,6.892,1239,8.131,1240,5.495,1241,6.892,1242,7.529,1243,8.297,1244,5.495,1245,5.495,1246,5.495,1247,6.892,1248,5.495,1249,5.495,1250,5.495,1251,5.495,1252,5.495]],["title/components/ErrorDialogComponent.html",[175,0.692,304,1.383]],["body/components/ErrorDialogComponent.html",[3,0.122,4,0.097,5,0.085,7,0.367,8,1.12,9,0.748,18,0.491,21,0.011,42,3.276,56,0.122,57,0.005,58,0.007,59,0.005,60,0.005,78,3.561,84,0.99,86,0.735,88,1.541,91,1.999,92,0.815,93,0.691,140,0.373,175,1.125,176,1.497,177,2.248,178,1.684,179,1.909,180,1.736,181,1.634,187,1.455,188,2.549,189,2.549,190,2.983,191,3.24,193,2.549,195,2.549,244,1.909,245,0.55,285,1.301,286,2.318,287,2.318,288,1.337,289,2.784,290,1.736,291,1.541,292,2.609,293,1.497,294,1.736,295,1.736,296,1.497,297,1.736,298,1.541,299,1.736,300,1.497,301,1.736,302,1.497,303,1.736,304,2.401,305,2.079,306,1.736,307,1.541,308,2.318,309,1.634,310,1.497,311,1.736,312,1.497,313,1.736,314,1.497,315,1.736,316,1.541,317,2.318,318,1.634,319,1.497,320,1.166,321,1.497,322,1.736,323,1.541,324,2.318,325,1.634,326,1.541,327,1.265,328,1.497,329,1.541,330,1.497,331,1.497,332,1.736,333,1.497,334,1.736,335,1.497,336,1.736,337,1.586,338,1.684,339,1.736,381,2.994,562,3.605,982,2.929,1253,6.074,1254,5.106,1255,4.041,1256,5.395,1257,6.915,1258,6.142,1259,4.6,1260,4.6,1261,4.6,1262,4.6,1263,4.6,1264,4.6,1265,3.672,1266,4.6,1267,6.142,1268,6.142]],["title/injectables/ErrorDialogService.html",[652,2.767,844,1.344]],["body/injectables/ErrorDialogService.html",[3,0.145,4,0.116,5,0.102,7,0.437,8,1.254,9,1.119,18,0.6,21,0.011,33,1.388,42,3.053,48,1.245,56,0.145,57,0.007,58,0.008,59,0.007,60,0.007,77,1.151,78,4.269,84,1.48,86,0.943,92,1.219,93,0.644,112,0.917,114,2.004,123,3.272,134,1.35,140,0.456,227,2.114,228,1.732,245,0.655,304,1.782,626,4.043,638,2.82,652,4.475,844,2.174,845,2.939,860,2.939,1254,4.043,1256,6.926,1265,4.371,1269,7.135,1270,4.81,1271,7.517,1272,6.876,1273,5.476,1274,8.123,1275,6.876,1276,6.876,1277,5.476,1278,5.476,1279,6.876,1280,4.81,1281,4.81,1282,7.517,1283,5.476,1284,5.476,1285,5.476,1286,5.476]],["title/interceptors/ErrorInterceptor.html",[729,2.936,814,2.767]],["body/interceptors/ErrorInterceptor.html",[3,0.131,4,0.105,5,0.092,7,0.395,9,1.048,18,0.515,20,0.828,21,0.011,56,0.131,57,0.006,58,0.008,59,0.006,60,0.006,73,3.052,77,1.079,84,1.387,86,0.771,92,1.142,93,0.603,112,0.828,134,1.767,140,0.49,185,1.479,218,4.412,245,0.592,249,2.45,250,1.757,253,2.266,305,1.924,357,3.412,392,2.45,509,1.926,521,3.76,526,4.665,542,2.359,652,5.254,673,4.346,729,4.451,744,2.548,816,3.653,844,2.038,937,4.346,978,3.417,980,4.346,982,2.359,1014,4.346,1072,2.655,1287,3.653,1288,4.346,1289,4.759,1290,4.948,1291,4.948,1292,4.759,1293,5.607,1294,5.607,1295,4.948,1296,3.653,1297,3.653,1298,4.759,1299,5.144,1300,4.346,1301,4.948,1302,4.948,1303,7.167,1304,4.948,1305,4.948,1306,4.948,1307,6.444,1308,4.948,1309,4.948,1310,6.444,1311,6.444,1312,4.948,1313,4.451,1314,4.194,1315,5.144,1316,4.346,1317,4.948,1318,4.948,1319,4.948,1320,6.444,1321,4.948,1322,4.948,1323,4.346,1324,5.144,1325,4.948,1326,4.948,1327,6.444,1328,4.948,1329,4.948,1330,4.948,1331,4.346,1332,4.948,1333,4.948]],["title/components/FooterComponent.html",[175,0.692,307,1.424]],["body/components/FooterComponent.html",[3,0.127,4,0.102,5,0.089,7,0.384,21,0.01,56,0.127,57,0.006,58,0.008,59,0.006,60,0.006,77,1.058,84,1.52,86,0.756,88,1.608,91,2.056,93,0.661,112,0.804,140,0.291,175,1.149,176,1.562,177,2.313,178,1.757,179,1.993,180,1.812,181,1.705,185,1.889,186,3.248,187,1.518,188,2.622,189,2.622,190,2.992,191,3.251,193,2.622,195,2.622,207,3.451,221,1.558,244,1.993,245,0.574,285,1.357,286,2.384,287,2.384,288,1.396,289,2.832,290,1.812,291,1.608,292,2.665,293,1.562,294,1.812,295,1.812,296,1.562,297,1.812,298,1.608,299,1.812,300,1.562,301,1.812,302,1.562,303,1.812,304,1.562,305,1.217,306,1.812,307,2.513,308,2.384,309,1.705,310,1.562,311,1.812,312,1.562,313,1.812,314,1.562,315,1.812,316,1.608,317,2.384,318,1.705,319,1.562,320,1.217,321,1.562,322,1.812,323,1.608,324,2.384,325,1.705,326,1.608,327,1.321,328,1.562,329,1.608,330,1.562,331,1.562,332,1.812,333,1.562,334,1.812,335,1.562,336,1.812,337,1.656,338,1.757,339,1.812,988,5.044,989,5.044,1334,4.217,1335,4.666,1336,7.063,1337,6.319,1338,4.801,1339,4.801,1340,6.319]],["title/components/FooterStubComponent.html",[175,0.692,309,1.51]],["body/components/FooterStubComponent.html",[3,0.133,4,0.107,5,0.094,21,0.01,56,0.191,57,0.006,58,0.008,59,0.006,60,0.009,88,1.692,91,2.126,93,0.678,140,0.307,175,1.063,176,1.644,177,2.391,178,2.65,180,1.907,181,1.795,187,1.598,190,2.999,191,3.273,245,0.605,285,1.429,286,2.465,287,2.465,288,1.469,289,2.888,290,1.907,291,1.692,292,2.732,293,1.644,294,1.907,295,1.907,296,1.644,297,1.907,298,1.692,299,1.907,300,1.644,301,1.907,302,1.644,303,1.907,304,1.644,305,1.281,306,1.907,307,1.692,308,2.465,309,2.719,310,1.644,311,1.907,312,1.644,313,1.907,314,1.644,315,1.907,316,1.692,317,2.465,318,2.321,319,1.644,320,1.281,321,1.644,322,1.907,323,1.692,324,2.465,325,2.321,326,1.692,327,1.39,328,1.644,329,1.692,330,1.644,331,1.644,332,1.907,333,1.644,334,1.907,335,1.644,336,1.907,337,1.743,338,1.85,339,1.907,431,1.352,516,2.832,698,3.117,1335,4.824,1341,3.731,1342,5.779,1343,3.731]],["title/injectables/GlobalErrorHandler.html",[730,2.767,844,1.344]],["body/injectables/GlobalErrorHandler.html",[3,0.109,4,0.087,5,0.076,7,0.329,8,1.039,9,1.147,18,0.611,20,1.339,21,0.011,22,1.444,33,1.044,48,1.602,56,0.151,57,0.005,58,0.007,59,0.005,60,0.007,77,0.954,78,2.122,84,1.226,86,0.885,92,1.25,93,0.66,112,1.094,114,2.086,123,1.71,134,1.016,135,2.15,140,0.428,152,1.34,155,2.845,218,4.211,221,1.738,227,2.167,228,1.303,245,0.493,250,1.463,253,2.567,305,2.251,357,3.177,515,4.29,562,3.835,690,3.289,730,3.709,737,5.215,744,2.122,844,1.802,860,2.211,907,2.309,910,3.936,938,3.289,978,4.512,979,3.289,982,1.964,1299,4.549,1313,2.845,1314,2.681,1344,6.11,1345,3.289,1346,4.824,1347,5.739,1348,5.699,1349,7.024,1350,5.699,1351,3.619,1352,5.699,1353,5.005,1354,4.12,1355,5.005,1356,4.12,1357,5.739,1358,5.005,1359,4.12,1360,3.619,1361,5.005,1362,3.619,1363,3.619,1364,3.619,1365,3.619,1366,3.619,1367,3.619,1368,5.005,1369,3.619,1370,3.289,1371,3.619,1372,3.619,1373,3.619,1374,3.619,1375,3.619,1376,3.619,1377,3.619,1378,3.619,1379,3.619,1380,3.619,1381,3.619,1382,5.005,1383,5.005,1384,3.289,1385,3.619,1386,3.619,1387,3.619,1388,3.619,1389,3.619,1390,3.619]],["title/interceptors/HttpConfigInterceptor.html",[731,2.936,814,2.767]],["body/interceptors/HttpConfigInterceptor.html",[3,0.153,4,0.122,5,0.107,7,0.462,9,0.941,18,0.462,20,0.969,21,0.011,48,1.315,56,0.153,57,0.007,58,0.008,59,0.007,60,0.007,77,1.191,84,1.658,86,0.851,92,1.025,93,0.541,112,0.969,134,1.426,140,0.468,185,1.729,245,0.692,320,1.953,521,3.815,526,5.015,542,2.758,731,4.914,744,2.979,844,2.25,917,5.081,929,5.081,1287,4.271,1289,5.254,1292,5.254,1293,5.936,1294,5.936,1296,5.254,1297,4.271,1298,5.254,1391,6.768,1392,5.081,1393,5.785,1394,5.785,1395,5.785,1396,5.785,1397,4.618]],["title/classes/HttpError.html",[60,0.005,910,2.936]],["body/classes/HttpError.html",[3,0.118,4,0.095,5,0.083,7,0.358,8,1.1,9,0.729,18,0.545,20,1.366,21,0.011,22,1.931,48,1.659,56,0.159,57,0.005,58,0.007,59,0.005,60,0.007,62,1.744,78,3.514,84,1.299,86,0.722,92,0.794,93,0.419,114,2.208,123,1.859,134,1.105,135,1.69,140,0.443,152,1.458,155,3.094,218,3.662,221,1.488,227,2.097,245,0.536,250,1.591,253,2.41,305,2.246,357,2.832,515,4.399,562,4.709,690,3.576,730,2.916,737,4.816,744,2.307,844,1.908,907,2.511,910,4.712,938,3.576,978,4.712,979,3.576,982,2.877,1299,4.816,1313,3.094,1314,2.916,1344,5.446,1345,3.576,1346,5.038,1347,3.935,1349,6.895,1353,3.935,1355,3.935,1357,5.3,1358,3.935,1360,3.935,1361,5.3,1362,5.3,1363,3.935,1364,3.935,1365,3.935,1366,3.935,1367,3.935,1368,5.3,1369,3.935,1370,3.576,1371,3.935,1372,3.935,1373,3.935,1374,3.935,1375,3.935,1376,3.935,1377,3.935,1378,3.935,1379,3.935,1380,3.935,1381,3.935,1382,5.3,1383,5.3,1384,3.576,1385,3.935,1386,3.935,1387,3.935,1388,3.935,1389,3.935,1390,3.935,1398,6.034]],["title/injectables/LocationService.html",[844,1.344,1180,3.139]],["body/injectables/LocationService.html",[3,0.143,4,0.115,5,0.101,7,0.434,9,1.218,16,3.042,18,0.598,20,1.385,21,0.011,29,2.588,56,0.143,57,0.006,58,0.008,59,0.006,60,0.006,77,1.145,84,1.472,86,0.969,92,1.327,93,0.701,112,1.316,134,1.938,140,0.492,144,2.329,145,2.795,245,0.649,253,1.716,391,3.042,392,2.687,521,4.244,542,2.588,638,2.795,744,2.795,844,2.162,845,2.913,860,2.913,876,4.008,877,6.108,1180,5.049,1399,4.767,1400,6.006,1401,6.903,1402,6.006,1403,6.903,1404,5.428,1405,6.838,1406,5.428,1407,5.428,1408,6.838,1409,5.428,1410,5.428,1411,5.428,1412,5.428,1413,5.428,1414,5.428]],["title/interceptors/LoggingInterceptor.html",[732,2.936,814,2.767]],["body/interceptors/LoggingInterceptor.html",[3,0.137,4,0.11,5,0.097,7,0.415,9,1.082,18,0.531,20,1.114,21,0.011,22,1.686,48,1.668,50,4.33,56,0.137,57,0.006,58,0.008,59,0.006,60,0.006,77,1.114,84,1.432,86,0.796,92,1.179,93,0.623,112,0.87,134,1.641,140,0.485,185,1.554,245,0.622,253,1.644,305,1.317,357,3.395,392,2.574,521,3.633,526,4.776,542,2.479,562,4.694,655,4.15,732,4.595,744,2.677,844,2.104,907,2.914,968,4.566,978,3.59,982,2.479,1287,3.839,1289,4.913,1292,4.913,1293,5.712,1294,5.712,1296,4.913,1297,3.839,1298,4.913,1351,4.566,1397,4.15,1415,4.566,1416,5.198,1417,5.198,1418,5.844,1419,6.653,1420,5.198,1421,5.198,1422,6.653,1423,5.198,1424,5.198,1425,6.653,1426,5.198,1427,5.198,1428,5.198,1429,5.198]],["title/injectables/LoggingService.html",[357,1.764,844,1.344]],["body/injectables/LoggingService.html",[3,0.118,4,0.186,5,0.083,7,0.358,8,1.1,9,1.327,18,0.667,20,1.01,21,0.011,56,0.118,57,0.005,58,0.007,59,0.005,60,0.005,77,1.01,84,0.964,86,0.999,92,1.446,93,0.763,112,1.343,140,0.366,221,2.118,227,1.855,245,0.536,305,2.242,357,2.504,638,2.307,749,3.576,750,5.446,844,1.908,845,2.404,846,3.308,860,2.404,982,3.825,1430,3.935,1431,6.823,1432,5.993,1433,6.034,1434,6.034,1435,6.034,1436,6.034,1437,6.034,1438,6.034,1439,6.034,1440,4.48,1441,7.3,1442,6.034,1443,6.034,1444,4.48,1445,6.034,1446,4.48,1447,6.034,1448,4.48,1449,6.034,1450,4.48,1451,6.034,1452,4.48,1453,6.034,1454,4.48,1455,6.034,1456,4.48,1457,4.48,1458,6.034,1459,4.48,1460,4.48,1461,4.48,1462,3.935,1463,4.48,1464,4.48,1465,4.48,1466,4.48,1467,4.48,1468,4.48,1469,4.48]],["title/directives/MenuSelectionDirective.html",[288,1.236,331,1.383]],["body/directives/MenuSelectionDirective.html",[3,0.148,4,0.119,5,0.104,7,0.448,9,0.912,18,0.448,21,0.011,48,1.807,56,0.148,57,0.007,58,0.008,59,0.007,60,0.007,77,1.168,84,1.502,86,0.835,92,0.994,93,0.525,112,0.939,140,0.34,187,1.773,190,2.337,221,1.721,245,0.671,253,2.206,288,2.028,330,1.824,331,2.27,626,4.139,641,4.924,665,4.924,666,4.924,698,3.457,699,5.247,700,4.475,701,4.139,702,4.475,703,4.475,704,4.475,705,4.924,706,4.924,708,4.924,709,4.924,710,4.924,711,4.924,1470,6.065,1471,4.924,1472,6.978,1473,7.951,1474,4.475,1475,6.656,1476,6.065,1477,6.347,1478,5.606,1479,5.606,1480,4.475,1481,4.139,1482,5.606,1483,5.606]],["title/directives/MenuToggleDirective.html",[288,1.236,333,1.383]],["body/directives/MenuToggleDirective.html",[3,0.152,4,0.122,5,0.107,7,0.46,9,0.938,18,0.46,21,0.011,48,1.748,56,0.152,57,0.007,58,0.008,59,0.007,60,0.007,77,1.189,84,1.528,86,0.849,92,1.022,93,0.539,112,0.965,140,0.35,187,1.822,190,2.377,221,1.75,245,0.69,253,2.245,288,2.063,330,1.875,333,2.31,584,5.062,698,3.554,699,5.313,700,4.6,701,4.255,702,4.6,703,4.6,704,4.6,1470,6.141,1474,4.6,1475,6.702,1476,6.141,1477,6.409,1480,4.6,1481,4.255,1484,4.6,1485,7.098,1486,8.029,1487,5.763,1488,5.763,1489,5.763,1490,5.062,1491,5.763,1492,5.763,1493,5.763]],["title/interfaces/Meta.html",[0,1.107,37,2.105]],["body/interfaces/Meta.html",[0,1.948,1,3.809,2,2.115,3,0.126,4,0.101,5,0.088,6,3.101,7,0.381,8,1.146,10,3.518,11,2.67,12,2.359,13,4.342,14,3.877,15,4.342,16,3.523,17,3.237,18,0.598,19,3.374,20,1.489,21,0.011,22,1.896,24,4.342,25,4.342,26,4.342,27,4.092,28,4.092,29,2.271,30,4.342,31,3.518,32,3.877,33,2.14,34,4.342,35,4.342,36,4.342,37,3.955,38,4.342,39,3.877,40,4.49,41,2.938,42,3.453,43,2.938,44,2.67,45,3.228,46,4.092,47,2.557,48,1.083,49,3.877,50,3.101,51,2.791,52,3.101,53,3.877,54,3.877,55,3.29,56,0.126,57,0.006,58,0.008,59,0.006]],["title/interfaces/MetaResponse.html",[0,1.107,46,2.767]],["body/interfaces/MetaResponse.html",[0,1.957,1,3.583,2,2.138,3,0.127,4,0.102,5,0.089,6,3.135,7,0.385,8,1.154,10,3.556,11,2.699,12,2.385,13,4.373,14,3.905,15,4.373,16,3.549,17,3.261,18,0.565,19,3.398,20,1.49,21,0.011,22,1.904,24,4.373,25,4.373,26,4.373,27,4.121,28,4.121,29,2.296,30,4.373,31,3.556,32,3.905,33,2.144,34,4.373,35,4.373,36,4.373,37,4.044,38,4.373,39,3.905,40,4.032,41,2.97,42,2.811,43,2.97,44,2.699,45,3.239,46,4.604,47,4.032,48,1.095,49,3.905,50,3.135,51,2.811,52,3.135,53,3.905,54,3.905,55,3.326,56,0.127,57,0.006,58,0.008,59,0.006]],["title/interceptors/MockBackendInterceptor.html",[814,2.767,1494,3.139]],["body/interceptors/MockBackendInterceptor.html",[3,0.037,4,0.03,5,0.026,7,0.112,9,0.227,11,2.441,12,1.203,17,3.463,18,0.112,20,0.407,21,0.011,22,0.615,29,1.834,42,0.621,45,1.982,47,0.75,48,1.673,52,2.096,56,0.064,57,0.002,58,0.003,59,0.002,60,0.002,77,0.407,86,0.167,92,0.248,93,0.751,95,1.748,112,0.234,114,1.594,123,1.336,134,1.956,135,2.436,140,0.264,144,0.6,171,1.986,181,0.497,185,0.418,228,0.442,245,0.167,282,2.096,305,0.354,320,0.975,329,0.468,344,0.966,372,0.966,378,0.821,392,0.692,393,0.91,495,0.966,505,3.177,507,3.011,508,2.803,509,2.304,510,1.426,511,3.983,512,1.498,515,0.784,521,3.611,524,4.966,526,2.096,539,1.032,542,0.667,551,1.426,554,0.91,556,1.939,562,1.89,622,0.784,668,0.966,742,1.939,744,0.72,745,1.032,762,1.032,763,1.116,764,1.116,817,1.677,831,2.378,832,1.498,834,0.966,844,0.768,982,1.158,984,1.794,986,0.821,1069,0.862,1100,1.939,1152,2.277,1175,1.032,1176,1.032,1178,1.032,1214,1.032,1287,1.032,1289,1.794,1292,1.794,1293,2.84,1294,2.84,1296,1.794,1297,1.032,1298,1.794,1300,2.133,1313,0.966,1315,1.939,1323,1.228,1324,5.266,1370,1.116,1397,1.116,1400,2.133,1401,2.133,1402,2.133,1403,2.133,1418,2.133,1494,2.378,1495,1.939,1496,1.116,1497,1.398,1498,2.429,1499,2.429,1500,2.429,1501,1.398,1502,1.116,1503,3.071,1504,1.116,1505,2.378,1506,1.116,1507,1.116,1508,1.939,1509,1.116,1510,0.966,1511,1.116,1512,1.116,1513,1.116,1514,1.032,1515,1.116,1516,1.032,1517,1.116,1518,0.966,1519,0.821,1520,1.228,1521,1.032,1522,1.228,1523,3.812,1524,3.298,1525,1.228,1526,3.812,1527,3.812,1528,3.812,1529,2.828,1530,1.228,1531,2.133,1532,3.216,1533,5.2,1534,3.476,1535,3.216,1536,3.825,1537,2.133,1538,1.228,1539,2.133,1540,1.228,1541,1.228,1542,1.228,1543,2.133,1544,1.228,1545,1.228,1546,1.228,1547,2.133,1548,1.228,1549,1.228,1550,1.228,1551,2.133,1552,2.828,1553,2.133,1554,2.133,1555,1.228,1556,1.228,1557,1.228,1558,1.228,1559,1.116,1560,1.228,1561,1.228,1562,1.228,1563,1.228,1564,1.228,1565,1.228,1566,1.228,1567,1.228,1568,1.228,1569,1.228,1570,1.228,1571,1.228,1572,1.228,1573,1.228,1574,1.228,1575,1.228,1576,1.228,1577,1.228,1578,1.228,1579,1.116,1580,1.228,1581,1.228,1582,1.228,1583,1.228,1584,1.228,1585,1.228,1586,1.228,1587,1.228,1588,1.228,1589,1.228,1590,1.228,1591,1.228,1592,1.228,1593,1.228,1594,1.228,1595,1.228,1596,2.133,1597,3.379,1598,1.228,1599,1.228,1600,1.228,1601,1.228,1602,1.228,1603,1.228,1604,1.228,1605,1.228,1606,1.228,1607,1.228,1608,1.228,1609,1.228,1610,1.228,1611,1.228,1612,1.228,1613,1.228,1614,1.228,1615,1.228,1616,1.228,1617,1.228,1618,1.228,1619,1.228,1620,1.228,1621,2.133,1622,1.228,1623,1.228,1624,1.228,1625,1.032,1626,1.228,1627,1.228,1628,1.228,1629,1.228,1630,1.228,1631,1.228,1632,1.228,1633,1.228,1634,1.228,1635,1.228,1636,1.228,1637,1.228,1638,1.228,1639,1.228,1640,1.228,1641,1.228,1642,1.228,1643,1.228,1644,1.228,1645,1.228,1646,1.228,1647,1.228,1648,1.228,1649,1.228,1650,1.228,1651,1.228,1652,1.228,1653,1.228,1654,1.228,1655,1.228,1656,2.133,1657,1.228,1658,1.228,1659,1.228,1660,1.228,1661,1.228,1662,1.228,1663,1.228,1664,1.228,1665,2.133,1666,1.228,1667,1.116,1668,1.228,1669,1.228,1670,1.228,1671,1.228,1672,1.228,1673,1.228,1674,1.228,1675,1.228,1676,1.228,1677,2.133,1678,1.228,1679,1.228,1680,1.228,1681,1.228,1682,1.228,1683,1.228,1684,1.228,1685,1.228,1686,1.228,1687,1.228,1688,1.228,1689,1.228,1690,1.228,1691,1.228,1692,1.228,1693,1.228,1694,1.228,1695,2.133,1696,1.939,1697,1.228,1698,1.228,1699,1.228,1700,1.228,1701,1.228,1702,1.228,1703,1.228,1704,1.228,1705,1.228,1706,1.228,1707,1.228,1708,1.228,1709,1.228,1710,1.228,1711,1.228,1712,1.228,1713,1.228,1714,1.228,1715,1.228,1716,1.116,1717,1.228,1718,1.228,1719,1.228,1720,1.228,1721,1.228,1722,1.228,1723,1.228,1724,1.228,1725,1.228,1726,1.228,1727,1.228,1728,1.228,1729,1.228,1730,1.228,1731,1.228,1732,1.228,1733,1.228,1734,1.228,1735,1.116,1736,1.228,1737,1.228,1738,1.228,1739,1.228,1740,1.228,1741,1.228,1742,1.228,1743,1.228,1744,1.228,1745,1.228,1746,1.228,1747,1.228,1748,1.228,1749,1.228,1750,1.228,1751,1.228,1752,1.228,1753,1.228,1754,2.133,1755,1.228,1756,1.228,1757,1.228,1758,1.228,1759,1.228,1760,1.228,1761,1.228,1762,1.116,1763,1.228,1764,1.116,1765,1.228,1766,1.228,1767,1.228,1768,1.228,1769,1.228,1770,1.116,1771,1.228,1772,1.228,1773,1.228,1774,1.228,1775,1.228,1776,1.228,1777,1.228,1778,1.228,1779,1.116,1780,1.228,1781,1.228,1782,1.939,1783,1.228,1784,1.228,1785,1.228,1786,1.228,1787,1.228,1788,1.116,1789,1.228,1790,1.116,1791,1.228,1792,1.228,1793,1.939,1794,1.228,1795,1.228,1796,1.228,1797,1.228,1798,2.133,1799,1.228,1800,1.228,1801,1.228,1802,1.228,1803,1.228,1804,1.228,1805,1.228,1806,1.228,1807,1.228,1808,1.228,1809,1.228,1810,1.228,1811,1.228,1812,1.228,1813,1.228,1814,1.228,1815,1.228,1816,1.228,1817,1.228,1818,1.228,1819,1.228,1820,1.228,1821,1.228,1822,1.228,1823,1.228,1824,1.228,1825,1.228,1826,1.228,1827,1.228,1828,1.228,1829,1.228,1830,1.228,1831,1.228,1832,1.228,1833,1.228,1834,1.228,1835,1.228,1836,1.228,1837,1.228,1838,1.228,1839,1.228,1840,1.228,1841,1.228,1842,2.133,1843,1.228,1844,1.228,1845,1.228,1846,1.228,1847,1.228,1848,1.228,1849,1.228,1850,1.228,1851,1.228,1852,1.228,1853,1.228,1854,1.228,1855,1.228,1856,1.228,1857,1.228,1858,1.228,1859,1.228,1860,2.828,1861,1.228,1862,1.228,1863,1.228,1864,1.228,1865,1.228,1866,1.228,1867,1.228,1868,1.228,1869,1.228,1870,1.228,1871,1.228,1872,1.228,1873,1.228,1874,1.228,1875,1.228,1876,1.228,1877,1.228,1878,1.228,1879,1.228,1880,1.228,1881,1.228,1882,1.228,1883,1.228,1884,1.228,1885,1.228,1886,1.228,1887,1.228,1888,1.228,1889,1.228,1890,1.228,1891,1.228,1892,1.228,1893,1.228,1894,1.228,1895,1.228,1896,1.228,1897,1.228,1898,1.228,1899,1.228,1900,1.228,1901,1.228,1902,1.228,1903,1.228,1904,1.228,1905,1.228,1906,1.228,1907,1.228,1908,1.228,1909,1.228,1910,1.228,1911,1.228,1912,1.228,1913,1.228,1914,1.228,1915,1.228,1916,1.228,1917,1.228,1918,1.228,1919,1.228,1920,1.228,1921,1.228,1922,1.228,1923,1.228,1924,1.228,1925,1.228,1926,1.228,1927,1.228,1928,1.228,1929,1.228,1930,1.228,1931,1.228,1932,1.228,1933,1.228,1934,1.228,1935,1.228,1936,1.228,1937,1.228,1938,1.228,1939,1.228,1940,1.228,1941,1.228,1942,1.228,1943,1.228,1944,1.228,1945,1.228,1946,1.228,1947,1.228,1948,1.228,1949,2.133,1950,1.228,1951,1.939,1952,1.228,1953,1.228,1954,1.228,1955,1.228,1956,1.228,1957,1.228,1958,1.228,1959,1.228,1960,1.228,1961,1.228,1962,1.228,1963,1.228,1964,1.228,1965,1.228,1966,1.228,1967,1.228,1968,1.116,1969,1.228,1970,1.228,1971,1.228,1972,1.228,1973,1.228,1974,1.228,1975,1.228,1976,1.228,1977,1.228,1978,1.228,1979,1.228,1980,2.133,1981,2.133,1982,1.228,1983,1.939,1984,1.228,1985,1.228,1986,1.228,1987,1.228,1988,1.228,1989,1.939,1990,1.228,1991,1.228,1992,1.228,1993,1.228,1994,1.228,1995,1.228,1996,1.228,1997,1.228,1998,1.228,1999,1.228,2000,1.228,2001,1.228,2002,1.228,2003,1.228,2004,1.228,2005,1.228,2006,1.228,2007,1.228,2008,1.228,2009,1.228,2010,1.228,2011,1.116,2012,1.116,2013,1.228,2014,1.228,2015,1.228,2016,2.133,2017,1.228,2018,1.228,2019,1.228,2020,1.228,2021,1.228,2022,1.228,2023,1.228,2024,2.133,2025,1.228,2026,1.228,2027,1.228,2028,1.228,2029,1.228,2030,1.228,2031,1.228,2032,1.228,2033,1.228,2034,1.228,2035,1.228,2036,1.228,2037,1.228,2038,1.228,2039,1.228,2040,1.228,2041,1.228,2042,1.228,2043,1.228,2044,1.228,2045,1.228,2046,1.228,2047,1.228,2048,1.228,2049,1.228,2050,1.228,2051,1.116,2052,1.228,2053,1.228,2054,1.228,2055,1.228,2056,1.228,2057,1.939,2058,1.228,2059,1.228,2060,1.228,2061,1.228,2062,1.228,2063,1.228,2064,1.228,2065,1.116,2066,1.228,2067,1.228,2068,1.228,2069,1.228,2070,1.228,2071,1.228,2072,1.228,2073,1.228,2074,1.228,2075,1.228,2076,1.228,2077,1.228,2078,1.228,2079,1.228,2080,1.228,2081,1.228,2082,1.228,2083,1.228,2084,1.228,2085,1.228,2086,1.228,2087,1.228,2088,1.228,2089,1.228,2090,1.228,2091,1.228,2092,1.228,2093,1.228,2094,1.228,2095,1.228,2096,1.228,2097,1.228,2098,1.228,2099,1.228,2100,1.228,2101,1.228,2102,1.228,2103,1.228,2104,1.228,2105,1.228,2106,1.228,2107,1.228,2108,1.228,2109,1.228,2110,1.228,2111,1.228,2112,1.228,2113,1.228,2114,1.228,2115,1.228,2116,1.939,2117,2.133,2118,3.379,2119,1.228,2120,1.228,2121,1.228,2122,1.228,2123,1.228,2124,1.228,2125,1.228,2126,1.228,2127,1.228,2128,1.228,2129,1.228,2130,1.228,2131,1.228,2132,1.228,2133,1.228,2134,2.133,2135,1.228,2136,1.228,2137,2.133,2138,1.228,2139,1.228,2140,1.228,2141,2.828,2142,2.828,2143,1.228,2144,1.228,2145,2.133,2146,2.133,2147,2.133,2148,1.228,2149,1.228,2150,1.228,2151,1.228,2152,1.228,2153,1.228,2154,1.228,2155,1.228,2156,1.228,2157,1.228,2158,1.228,2159,1.228,2160,1.228,2161,1.228,2162,1.228,2163,1.228,2164,1.228,2165,1.228,2166,1.228,2167,1.228,2168,1.228,2169,1.228,2170,1.228,2171,1.228,2172,1.228,2173,1.228,2174,1.228,2175,1.228,2176,1.228,2177,1.228,2178,1.228,2179,1.228,2180,1.228,2181,2.133,2182,1.228,2183,1.228,2184,1.228,2185,1.228,2186,1.228,2187,1.228,2188,1.228,2189,1.228,2190,1.228,2191,1.228,2192,1.228,2193,1.228,2194,2.133,2195,1.228,2196,1.228,2197,1.228,2198,2.133,2199,1.228,2200,1.228,2201,1.228,2202,1.228,2203,1.228,2204,1.228,2205,1.228,2206,1.228,2207,1.228,2208,1.228,2209,1.228,2210,1.228,2211,1.228,2212,1.228,2213,1.228,2214,1.228,2215,1.228,2216,1.228,2217,1.228,2218,1.228,2219,1.228,2220,1.228,2221,1.228,2222,1.228,2223,1.228,2224,1.228,2225,2.828,2226,1.228,2227,1.228,2228,1.228,2229,1.228,2230,1.228,2231,1.228,2232,1.228,2233,1.228,2234,1.228,2235,1.228,2236,1.228,2237,1.228,2238,1.228,2239,2.133,2240,1.228,2241,1.228,2242,1.228,2243,1.228,2244,1.228,2245,1.228,2246,1.228,2247,2.133,2248,1.228,2249,1.228,2250,1.228,2251,1.228,2252,1.228,2253,1.116,2254,1.228,2255,1.228,2256,1.228,2257,1.228,2258,0.862,2259,1.228,2260,1.228,2261,1.228,2262,1.228,2263,1.228,2264,1.228,2265,1.228,2266,2.133,2267,1.228,2268,1.228,2269,2.133,2270,1.228,2271,1.228,2272,1.228,2273,1.228,2274,1.228,2275,1.228,2276,1.228,2277,1.228,2278,1.228,2279,1.228,2280,1.228,2281,1.228,2282,1.228,2283,1.228,2284,1.228,2285,1.228,2286,2.828,2287,1.228,2288,1.228,2289,1.228,2290,1.228,2291,1.228,2292,1.228,2293,1.228,2294,1.228,2295,1.228,2296,1.228,2297,1.228,2298,1.228,2299,1.228,2300,1.228,2301,1.228,2302,1.228,2303,1.228,2304,1.228,2305,2.133,2306,1.228,2307,1.228,2308,1.228,2309,1.228,2310,1.228,2311,1.228,2312,1.228,2313,1.228,2314,1.228,2315,1.228,2316,1.228,2317,1.228,2318,1.228,2319,1.228,2320,1.228,2321,1.228,2322,1.228,2323,2.133,2324,1.228,2325,1.228,2326,1.228,2327,1.228,2328,2.828,2329,2.828,2330,1.228,2331,2.133,2332,1.228,2333,1.228,2334,1.228,2335,1.228,2336,1.228,2337,1.228,2338,1.228,2339,1.228,2340,1.228,2341,1.228,2342,1.228,2343,1.228,2344,1.228,2345,1.228,2346,2.828,2347,1.228,2348,1.228,2349,1.228,2350,1.228,2351,1.228,2352,1.228,2353,1.228,2354,1.228,2355,1.228,2356,1.228,2357,1.228,2358,1.228,2359,1.228,2360,1.228,2361,1.228,2362,1.228,2363,1.228,2364,1.228,2365,1.116,2366,2.133,2367,2.133,2368,1.228,2369,1.228,2370,1.116,2371,1.228,2372,1.228,2373,1.228,2374,1.228,2375,1.116,2376,1.116,2377,1.116,2378,1.398,2379,1.398,2380,1.398,2381,1.398,2382,1.116,2383,1.398,2384,2.429,2385,1.228,2386,1.228,2387,1.398,2388,1.398,2389,1.398,2390,1.398,2391,1.398,2392,1.398,2393,5.695,2394,1.398,2395,1.398,2396,2.429,2397,2.429,2398,2.133,2399,1.398,2400,1.398,2401,2.133,2402,1.398,2403,2.133,2404,1.398,2405,2.429,2406,1.398,2407,2.429,2408,1.398,2409,1.398,2410,1.398,2411,1.398,2412,1.398,2413,2.429,2414,1.398,2415,2.429,2416,1.398,2417,2.429,2418,1.228,2419,1.228,2420,1.398,2421,1.398,2422,1.228,2423,1.939,2424,1.398,2425,2.429,2426,2.429,2427,2.429,2428,3.22,2429,1.398,2430,1.398,2431,2.429,2432,1.228,2433,1.398,2434,1.398,2435,1.398,2436,1.398,2437,1.116,2438,2.429,2439,1.398,2440,1.398,2441,1.398,2442,1.398,2443,1.398,2444,1.398,2445,1.398,2446,1.398,2447,1.398,2448,1.398,2449,1.398,2450,1.398,2451,1.398,2452,1.398,2453,1.398,2454,1.398,2455,1.398,2456,1.398,2457,1.398,2458,1.398,2459,1.398,2460,1.398,2461,1.398,2462,1.398,2463,1.398,2464,1.398,2465,1.398,2466,1.398,2467,1.398,2468,1.398,2469,1.398,2470,1.398,2471,1.398,2472,2.429,2473,2.429,2474,1.398,2475,1.398]],["title/interfaces/MutableKeyStore.html",[0,1.107,862,2.495]],["body/interfaces/MutableKeyStore.html",[0,0.702,2,1.197,3,0.071,4,0.057,5,0.05,7,0.215,9,1.294,18,0.635,20,1.444,21,0.011,37,1.336,48,1.654,56,0.071,57,0.003,58,0.005,59,0.003,60,0.003,77,0.699,79,2.731,86,1.008,92,1.41,93,0.744,95,0.987,112,1.41,113,3.027,114,1.87,123,1.119,134,2.042,135,3.166,140,0.253,152,0.878,163,3.122,185,1.248,221,1.748,395,2.742,460,1.583,524,1.992,679,1.992,752,2.718,800,4.233,810,5.235,816,1.992,862,3.376,866,4.966,867,4.966,933,1.447,982,1.286,1011,1.389,1072,1.447,1346,3.772,2476,4.96,2477,1.992,2478,3.528,2479,5.465,2480,5.465,2481,5.465,2482,3.668,2483,3.668,2484,3.668,2485,5.465,2486,5.465,2487,3.668,2488,3.668,2489,3.668,2490,5.465,2491,5.465,2492,3.668,2493,3.668,2494,3.668,2495,3.668,2496,3.668,2497,5.465,2498,3.668,2499,3.668,2500,3.668,2501,2.884,2502,2.697,2503,2.697,2504,2.697,2505,4.487,2506,2.697,2507,4.487,2508,2.697,2509,5.779,2510,2.697,2511,4.487,2512,2.697,2513,2.697,2514,2.697,2515,4.487,2516,2.697,2517,4.487,2518,2.697,2519,2.369,2520,2.697,2521,4.487,2522,2.697,2523,2.697,2524,2.697,2525,4.487,2526,2.697,2527,4.487,2528,4.487,2529,2.697,2530,4.487,2531,2.697,2532,4.487,2533,2.697,2534,4.487,2535,2.697,2536,2.697,2537,4.487,2538,2.697,2539,4.487,2540,2.697,2541,4.487,2542,2.697,2543,4.487,2544,2.697,2545,2.369,2546,2.369,2547,2.369,2548,1.863,2549,1.992,2550,2.451,2551,1.992,2552,2.153,2553,2.369,2554,2.369,2555,3.668,2556,3.668,2557,4.487,2558,2.369,2559,4.487,2560,4.487,2561,2.369,2562,2.369,2563,2.369,2564,2.153,2565,2.369,2566,2.369,2567,2.369,2568,2.369,2569,2.369,2570,2.369,2571,2.369,2572,2.369,2573,2.369,2574,2.369,2575,2.369,2576,2.153,2577,2.153,2578,2.369,2579,2.369,2580,2.369,2581,2.369,2582,2.369,2583,2.369,2584,2.369,2585,2.369,2586,3.668,2587,2.369,2588,2.369,2589,2.369,2590,2.153,2591,1.755,2592,2.153,2593,1.863,2594,2.369,2595,1.863,2596,1.863,2597,2.153,2598,2.369,2599,2.369]],["title/classes/MutablePgpKeyStore.html",[60,0.005,752,2.767]],["body/classes/MutablePgpKeyStore.html",[0,0.708,3,0.072,4,0.058,5,0.05,7,0.217,9,1.296,18,0.55,20,1.381,21,0.011,37,1.346,48,1.658,56,0.072,57,0.003,58,0.005,59,0.003,60,0.003,62,1.058,74,2.007,77,0.703,79,3.384,86,1.009,92,1.412,93,0.745,95,0.995,112,1.412,113,3.055,114,1.879,123,1.128,134,2.045,135,3.17,140,0.255,152,0.885,163,3.13,185,1.535,221,1.697,395,2.755,460,1.596,524,2.007,679,2.007,752,3.342,800,4.236,810,5.249,816,2.007,862,3.39,866,4.984,867,4.984,933,1.459,982,1.296,1011,1.4,1072,1.459,1346,3.102,2476,4.965,2477,2.007,2478,2.901,2479,5.485,2480,5.485,2481,5.485,2482,3.69,2483,3.69,2484,3.69,2485,5.485,2486,5.485,2487,3.69,2488,3.69,2489,3.69,2490,5.485,2491,5.485,2492,3.69,2493,3.69,2494,3.69,2495,3.69,2496,3.69,2497,5.485,2498,3.69,2499,3.69,2500,3.69,2501,2.901,2505,4.51,2507,4.51,2509,5.798,2511,4.51,2515,4.51,2517,4.51,2519,2.388,2521,4.51,2525,4.51,2527,4.51,2528,4.51,2530,4.51,2532,4.51,2534,4.51,2537,4.51,2539,4.51,2541,4.51,2543,4.51,2545,2.388,2546,2.388,2547,2.388,2548,1.878,2549,2.007,2550,2.466,2551,2.007,2552,2.17,2553,2.388,2554,2.388,2555,3.69,2556,3.69,2557,4.51,2558,2.388,2559,4.51,2560,4.51,2561,2.388,2562,2.388,2563,2.388,2564,2.17,2565,2.388,2566,2.388,2567,2.388,2568,2.388,2569,2.388,2570,2.388,2571,2.388,2572,2.388,2573,2.388,2574,2.388,2575,2.388,2576,2.17,2577,2.17,2578,2.388,2579,2.388,2580,2.388,2581,2.388,2582,2.388,2583,2.388,2584,2.388,2585,2.388,2586,3.69,2587,2.388,2588,2.388,2589,2.388,2590,2.17,2591,1.769,2592,2.17,2593,1.878,2594,2.388,2595,1.878,2596,1.878,2597,2.17,2598,2.388,2599,2.388,2600,2.719,2601,2.719,2602,2.719,2603,2.719,2604,2.719,2605,2.719,2606,2.719,2607,2.719,2608,2.719,2609,2.719,2610,2.719,2611,2.719,2612,2.719,2613,2.719,2614,2.719,2615,2.719,2616,2.719,2617,2.719,2618,2.719,2619,2.719,2620,2.719,2621,2.719,2622,2.719,2623,2.719,2624,2.719]],["title/components/OrganizationComponent.html",[175,0.692,310,1.383]],["body/components/OrganizationComponent.html",[3,0.099,4,0.079,5,0.07,7,0.3,8,0.974,9,0.611,18,0.541,21,0.011,33,1.354,56,0.099,57,0.004,58,0.006,59,0.004,60,0.004,77,0.895,84,1.15,86,0.915,88,1.258,91,1.738,92,0.666,93,0.634,112,0.895,114,1.375,123,2.58,134,1.317,140,0.377,152,1.738,175,1.011,176,1.223,177,1.955,178,1.375,179,1.56,180,1.418,181,1.335,185,1.597,186,2.858,187,1.188,188,2.217,189,2.217,190,2.936,191,3.18,193,2.217,195,2.217,200,4.59,207,3.113,211,3.945,215,3,216,5.488,221,1.67,225,4.59,227,1.642,228,2.55,231,4.411,244,1.56,245,0.45,246,2.775,247,2.017,248,1.861,253,1.188,255,2.775,256,3.945,281,2.645,283,4.676,285,1.062,286,2.016,287,2.016,288,1.092,289,2.555,290,1.418,291,1.258,292,2.346,293,1.223,294,1.418,295,1.418,296,1.223,297,1.418,298,1.258,299,1.418,300,1.223,301,1.418,302,1.223,303,1.418,304,1.223,305,0.952,306,1.418,307,1.258,308,2.016,309,1.335,310,2.203,311,1.418,312,1.223,313,1.418,314,1.223,315,1.418,316,1.258,317,2.016,318,1.335,319,1.223,320,0.952,321,1.223,322,1.418,323,1.258,324,2.016,325,1.335,326,1.258,327,1.034,328,1.223,329,1.258,330,1.223,331,1.223,332,1.418,333,1.223,334,1.418,335,1.223,336,1.418,337,1.296,338,1.375,339,1.418,781,4.962,783,5.404,805,4.265,1050,4.166,1216,4.693,1314,4.406,1518,2.595,1625,4.999,2625,3.301,2626,5.281,2627,6.216,2628,5.342,2629,6.216,2630,6.216,2631,5.342,2632,3.758,2633,3.758,2634,3.758,2635,3.758,2636,3.758,2637,3.758,2638,3.758,2639,7.153,2640,4.962,2641,3.758,2642,3.758,2643,3.758,2644,3.758,2645,5.342,2646,5.342,2647,4.693,2648,5.342,2649,5.342,2650,5.342,2651,5.342,2652,4.693,2653,5.342,2654,5.342,2655,5.342,2656,5.342,2657,5.342,2658,5.342]],["title/classes/PGPSigner.html",[60,0.005,2659,2.936]],["body/classes/PGPSigner.html",[0,1.369,3,0.097,4,0.078,5,0.068,7,0.293,8,0.958,9,1.09,18,0.661,20,1.438,21,0.011,33,1.332,40,4.625,41,4.373,42,2.333,43,4.373,44,3.974,47,2.821,48,1.676,51,2.333,56,0.097,57,0.004,58,0.006,59,0.004,60,0.004,62,1.43,77,0.88,78,4.225,79,2.547,84,0.79,86,0.99,92,1.188,93,0.627,104,4.361,112,1.122,113,2.316,114,1.924,134,1.296,140,0.319,163,1.576,185,1.571,221,1.873,227,2.267,228,1.662,305,1.332,357,3.061,395,1.971,663,3.421,686,2.536,688,2.712,736,2.156,800,1.818,862,4.329,907,2.058,982,2.506,999,3.881,1011,1.891,2393,4.195,2476,4.893,2478,4.896,2501,3.63,2548,2.536,2550,2.156,2591,2.39,2593,3.63,2595,2.536,2596,2.536,2659,4.239,2660,2.39,2661,4.9,2662,4.9,2663,4.9,2664,5.659,2665,4.617,2666,4.617,2667,4.195,2668,5.256,2669,4.195,2670,3.672,2671,3.672,2672,3.672,2673,3.672,2674,3.672,2675,3.672,2676,3.672,2677,3.672,2678,4.9,2679,5.094,2680,3.672,2681,2.932,2682,4.9,2683,3.672,2684,4.9,2685,3.672,2686,2.932,2687,2.712,2688,2.932,2689,2.932,2690,4.195,2691,2.932,2692,2.932,2693,2.932,2694,2.932,2695,2.932,2696,2.932,2697,2.932,2698,4.195,2699,2.932,2700,2.932,2701,2.932,2702,4.195,2703,2.932,2704,4.195,2705,2.932,2706,2.932,2707,2.932,2708,2.932,2709,2.932,2710,2.932,2711,2.932,2712,2.932,2713,2.932,2714,2.932,2715,2.932,2716,2.932]],["title/components/PagesComponent.html",[175,0.692,312,1.383]],["body/components/PagesComponent.html",[3,0.127,4,0.102,5,0.089,7,0.384,8,1.153,18,0.384,20,1.059,21,0.01,33,1.218,56,0.127,57,0.006,58,0.008,59,0.006,60,0.006,84,1.521,86,0.757,88,1.61,91,2.058,93,0.662,140,0.292,175,1.15,176,1.565,177,2.315,178,1.76,179,1.996,180,1.814,181,1.708,187,1.521,188,2.625,189,2.625,190,2.992,191,3.251,193,2.625,195,2.625,228,1.521,244,1.996,245,0.575,281,3.132,285,1.36,286,2.387,287,2.387,288,1.398,289,2.834,290,1.814,291,1.61,292,2.667,293,1.565,294,1.814,295,1.814,296,1.565,297,1.814,298,1.61,299,1.814,300,1.565,301,1.814,302,1.565,303,1.814,304,1.565,305,1.218,306,1.814,307,1.61,308,2.387,309,1.708,310,1.565,311,1.814,312,2.443,313,1.814,314,1.565,315,1.814,316,1.61,317,2.387,318,1.708,319,1.565,320,1.218,321,1.565,322,1.814,323,1.61,324,2.387,325,1.708,326,1.61,327,1.323,328,1.565,329,1.61,330,1.565,331,1.565,332,1.814,333,1.565,334,1.814,335,1.565,336,1.814,337,1.658,338,1.76,339,1.814,736,3.713,2377,5.642,2717,4.224,2718,6.325,2719,7.068,2720,6.325,2721,6.325,2722,6.325,2723,5.049,2724,6.325]],["title/modules/PagesModule.html",[431,1.138,2725,3.139]],["body/modules/PagesModule.html",[3,0.148,4,0.119,5,0.104,21,0.011,56,0.148,57,0.007,58,0.008,59,0.007,60,0.007,140,0.53,143,2.716,245,0.671,285,1.585,312,2.713,431,1.5,433,2.052,434,2.776,435,4.077,436,2.887,437,3.008,438,2.252,443,4.294,445,3.745,446,3.008,447,2.673,449,2.896,450,4.096,451,3.142,453,3.29,455,3.457,470,4.304,471,3.457,472,4.541,473,3.648,474,3.648,475,4.304,476,3.457,477,4.304,478,3.457,481,4.819,482,3.871,2725,6.407,2726,4.924,2727,4.924,2728,4.924,2729,5.759,2730,5.606,2731,5.606,2732,5.606,2733,6.978,2734,4.924,2735,4.924]],["title/modules/PagesRoutingModule.html",[431,1.138,2729,2.936]],["body/modules/PagesRoutingModule.html",[3,0.15,4,0.12,5,0.105,21,0.011,48,1.29,56,0.15,57,0.007,58,0.008,59,0.007,60,0.007,67,3.695,140,0.464,143,2.21,175,0.924,245,0.679,250,2.017,281,3.483,312,2.289,433,2.078,438,2.281,449,2.919,497,3.333,498,3.935,499,3.942,500,4.977,501,3.921,502,3.921,503,3.695,504,3.502,551,3.333,768,7.211,1050,3.182,1055,3.047,1519,3.333,2729,4.858,2736,5.678,2737,5.678,2738,5.678,2739,5.678,2740,5.678,2741,5.678,2742,5.678,2743,5.678,2744,5.678,2745,5.678,2746,5.678,2747,5.678]],["title/directives/PasswordToggleDirective.html",[288,1.236,335,1.383]],["body/directives/PasswordToggleDirective.html",[3,0.14,4,0.112,5,0.098,7,0.424,9,0.863,18,0.592,20,1.305,21,0.011,45,3.075,48,1.532,56,0.14,57,0.006,58,0.008,59,0.006,60,0.006,77,1.129,84,1.451,86,0.933,92,0.941,93,0.497,112,0.888,140,0.322,187,1.678,190,2.258,221,1.662,245,0.635,253,2.132,288,1.959,330,1.726,335,2.193,699,4.655,924,4.235,1011,3.815,1474,4.235,1475,6.564,1476,5.914,1477,6.222,1480,4.235,1481,3.918,1484,4.235,2748,7.068,2749,6.741,2750,7.795,2751,5.381,2752,7.409,2753,6.741,2754,5.306,2755,5.306,2756,5.471,2757,5.306,2758,5.306,2759,5.306,2760,5.306,2761,7.409,2762,7.409,2763,7.409,2764,6.741,2765,7.795,2766,6.741,2767,6.741]],["title/injectables/RegistryService.html",[844,1.344,1042,2.767]],["body/injectables/RegistryService.html",[3,0.142,4,0.114,5,0.1,7,0.43,8,1.24,18,0.596,21,0.011,33,1.889,56,0.142,57,0.006,58,0.008,59,0.006,60,0.006,68,4.377,77,1.139,84,1.605,86,0.988,112,1.139,134,1.677,140,0.49,141,5.169,144,2.308,145,2.771,152,2.685,153,5.021,228,2.358,245,0.644,248,2.664,638,2.771,844,2.15,845,2.887,860,2.887,933,2.887,1042,4.426,1072,2.887,2768,4.726,2769,8.253,2770,7.834,2771,7.834,2772,5.38,2773,5.38,2774,5.38,2775,5.952,2776,5.38,2777,6.45,2778,6.8,2779,6.8,2780,6.8,2781,6.8,2782,6.8,2783,5.38,2784,5.38,2785,5.38,2786,4.295,2787,4.295,2788,4.726]],["title/guards/RoleGuard.html",[834,2.936,2789,3.393]],["body/guards/RoleGuard.html",[3,0.145,4,0.116,5,0.102,7,0.439,9,1.121,18,0.551,21,0.011,48,1.249,56,0.145,57,0.007,58,0.008,59,0.007,60,0.007,77,1.154,84,1.183,86,0.825,92,1.222,93,0.645,112,0.92,113,2.601,114,2.011,123,2.86,134,1.857,140,0.457,171,3.389,185,1.643,218,4.453,227,2.119,245,0.658,250,1.952,515,3.863,521,3.728,542,2.62,581,4.901,638,2.83,773,6.491,835,4.387,837,4.387,839,4.827,840,6.934,841,6.934,843,6.614,844,2.179,845,2.949,846,4.058,848,4.827,2789,5.501,2790,4.827,2791,5.495,2792,5.495,2793,6.892,2794,5.495,2795,5.495,2796,5.495,2797,5.495,2798,5.495,2799,5.495,2800,5.495]],["title/directives/RouterLinkDirectiveStub.html",[288,1.236,337,1.466]],["body/directives/RouterLinkDirectiveStub.html",[3,0.158,4,0.126,5,0.111,7,0.477,8,1.323,18,0.58,21,0.011,33,1.514,56,0.158,57,0.007,58,0.009,59,0.007,60,0.007,86,0.935,140,0.363,187,1.89,190,2.431,221,1.474,228,1.89,245,0.715,288,2.462,330,1.944,337,2.503,338,2.975,516,3.349,531,5.249,646,6.375,672,5.249,1048,5.359,1481,5.772,2751,5.793,2756,4.412,2801,7.141,2802,6.489,2803,7.816,2804,5.976,2805,5.249,2806,5.976,2807,5.976,2808,5.976,2809,5.976,2810,5.976,2811,5.976]],["title/pipes/SafePipe.html",[2258,2.622,2812,2.936]],["body/pipes/SafePipe.html",[3,0.162,4,0.13,5,0.114,9,0.997,18,0.49,20,1.323,21,0.011,56,0.162,57,0.007,58,0.009,59,0.007,60,0.007,77,1.026,86,0.734,92,1.087,93,0.74,112,1.026,134,1.512,140,0.447,185,1.832,187,1.939,245,0.734,735,4.894,736,3.598,846,4.527,2116,6.696,2258,4.546,2377,4.894,2812,5.09,2813,4.894,2814,5.385,2815,7.37,2816,5.385,2817,7.37,2818,6.942,2819,6.13,2820,6.474,2821,7.37,2822,6.13,2823,6.13]],["title/classes/Settings.html",[60,0.005,1050,2.383]],["body/classes/Settings.html",[3,0.155,4,0.124,5,0.109,7,0.468,8,1.308,9,0.954,18,0.662,21,0.011,33,1.485,44,4.344,56,0.155,57,0.007,58,0.009,59,0.007,60,0.009,62,2.282,68,4.549,84,1.262,86,0.991,92,1.039,93,0.549,228,1.854,273,5.577,1050,4.344,2824,4.679,2825,7.277,2826,6.808,2827,6.304,2828,6.3,2829,7.173,2830,5.862,2831,5.862,2832,6.808,2833,5.862,2834,5.149]],["title/components/SettingsComponent.html",[175,0.692,314,1.383]],["body/components/SettingsComponent.html",[3,0.09,4,0.072,5,0.064,7,0.273,8,0.911,9,0.813,18,0.609,20,1.155,21,0.011,32,4,33,1.266,45,2.073,48,0.778,56,0.156,57,0.004,58,0.006,59,0.004,60,0.004,77,0.836,84,1.075,86,0.958,88,1.146,91,2.48,92,0.886,93,0.727,112,1.086,135,2.447,140,0.451,152,1.625,175,0.96,176,1.114,177,1.828,178,1.253,179,1.421,180,1.292,181,1.216,185,1.493,186,2.712,187,1.083,188,2.073,189,2.073,190,2.911,191,3.149,192,3.081,193,2.073,195,2.073,207,2.982,221,1.879,228,1.083,244,1.421,245,0.41,248,1.695,249,1.695,253,1.083,281,2.474,285,0.968,286,1.885,287,1.885,288,0.995,289,2.447,290,1.292,291,1.146,292,2.226,293,1.114,294,1.292,295,1.292,296,1.114,297,1.292,298,1.146,299,1.292,300,1.114,301,1.292,302,1.114,303,1.292,304,1.114,305,0.867,306,1.292,307,1.146,308,1.885,309,1.216,310,1.114,311,1.292,312,1.114,313,1.292,314,2.11,315,1.292,316,1.146,317,1.885,318,1.216,319,1.114,320,0.867,321,1.114,322,1.292,323,1.146,324,1.885,325,1.216,326,1.146,327,0.942,328,1.114,329,1.146,330,1.114,331,1.114,332,1.292,333,1.114,334,1.292,335,1.114,336,1.292,337,1.18,338,1.253,339,1.292,345,4.074,347,4.709,349,4.074,350,4.074,351,3.45,352,4.479,359,3.45,370,4.074,380,4.074,381,3.251,382,3.45,384,4.074,385,3.45,386,2.364,387,1.763,388,1.837,389,1.837,390,2.111,405,2.528,407,2.528,408,2.364,409,2.528,410,2.364,412,2.528,413,2.364,423,3.45,427,4.479,509,1.945,551,2.932,622,1.919,649,2.733,650,4.441,678,4.388,832,4,873,6.325,1011,3.708,1021,5.181,1050,4.426,2626,4.789,2835,3.007,2836,5.899,2837,4.996,2838,4.996,2839,3.423,2840,3.423,2841,3.423,2842,3.423,2843,3.423,2844,3.423,2845,4.388,2846,3.423,2847,3.423,2848,3.423,2849,3.423,2850,3.007,2851,3.423,2852,3.423,2853,3.423,2854,3.423,2855,3.423,2856,3.423,2857,4.356,2858,3.423,2859,4.996,2860,4.996,2861,4.996,2862,4.996,2863,4.996,2864,4.996,2865,4.996,2866,5.696,2867,6.485,2868,4.996,2869,4.996,2870,4.996,2871,4.996,2872,4.996,2873,4.996]],["title/modules/SettingsModule.html",[431,1.138,2874,3.139]],["body/modules/SettingsModule.html",[3,0.138,4,0.111,5,0.097,21,0.011,56,0.138,57,0.006,58,0.008,59,0.006,60,0.006,140,0.539,143,2.598,245,0.625,247,2.804,285,1.477,310,2.665,314,2.665,387,2.691,388,2.804,389,2.804,431,1.398,433,1.912,434,2.587,435,3.947,436,2.691,437,2.804,438,2.099,443,4.218,445,3.582,446,2.804,447,2.491,449,2.77,450,3.918,451,2.928,453,3.067,455,3.223,465,4.344,466,4.61,467,4.929,468,3.858,469,4.61,470,4.117,471,3.223,472,4.344,473,3.401,474,3.401,475,4.117,476,3.223,477,4.117,478,3.223,479,4.344,480,3.401,481,4.61,482,3.608,491,5.328,2874,6.412,2875,4.589,2876,4.589,2877,4.589,2878,5.657,2879,5.225,2880,5.225,2881,4.589,2882,4.589,2883,6.675,2884,5.225,2885,6.675,2886,5.225]],["title/modules/SettingsRoutingModule.html",[431,1.138,2878,2.936]],["body/modules/SettingsRoutingModule.html",[3,0.162,4,0.13,5,0.114,21,0.011,48,1.393,56,0.162,57,0.007,58,0.009,59,0.007,60,0.007,140,0.498,143,2.386,175,1.199,245,0.734,250,2.177,310,2.398,314,2.398,433,2.244,438,2.463,449,3.059,497,3.598,498,4.07,499,4.131,500,4.639,501,4.234,502,4.234,503,3.99,504,3.781,2626,4.527,2878,5.09,2881,5.385,2882,5.385,2887,6.13]],["title/modules/SharedModule.html",[431,1.138,443,2.189]],["body/modules/SharedModule.html",[3,0.124,4,0.099,5,0.087,21,0.011,56,0.124,57,0.006,58,0.007,59,0.006,60,0.006,140,0.522,143,1.823,245,0.56,250,1.664,285,1.324,304,2.587,307,2.862,316,2.862,323,2.862,331,2.781,333,2.587,431,1.254,433,1.714,434,2.319,435,3.745,436,2.412,437,2.514,438,2.804,443,4.587,445,3.336,446,2.514,447,2.233,449,2.58,450,3.649,451,2.625,479,4.046,480,3.049,499,3.484,858,4.114,1254,3.459,1265,3.739,1280,4.114,1281,4.114,2812,5.903,2888,4.114,2889,4.114,2890,4.114,2891,5.903,2892,4.684,2893,4.684,2894,4.684,2895,4.684,2896,6.217,2897,4.684,2898,4.684,2899,4.684,2900,6.217,2901,4.684]],["title/components/SidebarComponent.html",[175,0.692,316,1.424]],["body/components/SidebarComponent.html",[3,0.125,4,0.1,5,0.088,7,0.379,21,0.01,56,0.125,57,0.006,58,0.007,59,0.006,60,0.006,67,4.083,77,1.05,84,1.512,86,0.751,88,1.591,91,2.041,93,0.657,112,0.795,140,0.288,175,1.143,176,1.545,177,2.296,178,1.738,179,1.971,180,1.792,181,1.687,185,1.875,186,3.23,187,1.502,188,2.604,189,2.604,190,2.99,191,3.248,193,2.604,195,2.604,207,3.436,221,1.547,244,1.971,245,0.568,285,1.343,286,2.367,287,2.367,288,1.381,289,2.82,290,1.792,291,1.591,292,2.651,293,1.545,294,1.792,295,1.792,296,1.545,297,1.792,298,1.591,299,1.792,300,1.545,301,1.792,302,1.545,303,1.792,304,1.545,305,1.203,306,1.792,307,1.591,308,2.367,309,1.687,310,1.545,311,1.792,312,1.545,313,1.792,314,1.545,315,1.792,316,2.503,317,2.367,318,1.687,319,1.545,320,1.203,321,1.545,322,1.792,323,1.591,324,2.367,325,1.687,326,1.591,327,1.306,328,1.545,329,2.353,330,1.545,331,1.545,332,1.792,333,1.545,334,1.792,335,1.545,336,1.792,337,1.638,338,1.738,339,1.792,551,3.682,670,4.632,698,3.869,1050,3.516,1519,3.682,2902,4.172,2903,7.025,2904,6.274,2905,4.749,2906,4.749,2907,6.274]],["title/components/SidebarStubComponent.html",[175,0.692,318,1.51]],["body/components/SidebarStubComponent.html",[3,0.133,4,0.107,5,0.094,21,0.01,56,0.191,57,0.006,58,0.008,59,0.006,60,0.009,88,1.692,91,2.126,93,0.678,140,0.307,175,1.063,176,1.644,177,2.391,178,2.65,180,1.907,181,1.795,187,1.598,190,2.999,191,3.273,245,0.605,285,1.429,286,2.465,287,2.465,288,1.469,289,2.888,290,1.907,291,1.692,292,2.732,293,1.644,294,1.907,295,1.907,296,1.644,297,1.907,298,1.692,299,1.907,300,1.644,301,1.907,302,1.644,303,1.907,304,1.644,305,1.281,306,1.907,307,1.692,308,2.465,309,2.321,310,1.644,311,1.907,312,1.644,313,1.907,314,1.644,315,1.907,316,1.692,317,2.465,318,2.719,319,1.644,320,1.281,321,1.644,322,1.907,323,1.692,324,2.465,325,2.321,326,1.692,327,1.39,328,1.644,329,1.692,330,1.644,331,1.644,332,1.907,333,1.644,334,1.907,335,1.644,336,1.907,337,1.743,338,1.85,339,1.907,431,1.352,516,2.832,698,4.03,1335,3.731,1341,3.731,1342,5.779,1343,3.731]],["title/interfaces/Signable.html",[0,1.107,2679,2.936]],["body/interfaces/Signable.html",[0,1.576,2,1.997,3,0.119,4,0.095,5,0.084,7,0.359,18,0.359,20,1.431,21,0.011,40,4.611,41,4.217,42,2.686,43,4.847,44,3.833,47,3.248,48,1.786,51,2.686,56,0.119,57,0.005,58,0.007,59,0.005,60,0.005,77,1.013,78,3.766,79,1.867,86,0.538,104,4.45,112,0.753,113,2.284,114,2.215,134,1.492,140,0.367,163,1.93,185,1.345,221,1.938,227,2.346,305,1.533,357,2.838,395,2.415,663,3.939,686,3.107,688,3.322,736,2.641,800,2.228,862,4.014,907,2.522,982,2.885,999,3.322,1011,2.317,2476,3.552,2478,4.179,2548,3.107,2550,2.641,2591,2.928,2593,4.179,2595,3.107,2596,3.107,2659,4.179,2660,2.928,2661,3.592,2662,3.592,2663,3.592,2664,4.831,2667,3.592,2669,3.592,2678,4.831,2679,5.27,2682,4.831,2684,4.831,2686,3.592,2687,3.322,2688,3.592,2689,3.592,2690,4.831,2691,3.592,2692,3.592,2693,3.592,2694,3.592,2695,3.592,2696,3.592,2697,3.592,2698,4.831,2699,3.592,2700,3.592,2701,3.592,2702,4.831,2703,3.592,2704,4.831,2705,3.592,2706,3.592,2707,3.592,2708,3.592,2709,3.592,2710,3.592,2711,3.592,2712,3.592,2713,3.592,2714,3.592,2715,3.592,2716,3.592,2908,4.499]],["title/interfaces/Signature.html",[0,1.107,40,2.281]],["body/interfaces/Signature.html",[0,1.94,1,3.552,2,2.092,3,0.124,4,0.1,5,0.087,6,3.067,7,0.376,8,1.138,10,3.48,11,2.641,12,2.334,13,4.311,14,3.85,15,4.311,16,3.498,17,3.215,18,0.619,19,3.35,20,1.499,21,0.011,22,1.888,24,4.311,25,4.311,26,4.311,27,4.062,28,4.062,29,2.247,30,4.311,31,3.48,32,3.85,33,2.136,34,4.311,35,4.311,36,4.311,37,3.838,38,4.311,39,3.85,40,4.159,41,4.595,42,3.441,43,4.595,44,4.176,45,2.59,46,4.062,47,2.529,48,1.071,49,3.85,50,3.067,51,2.771,52,3.067,53,3.85,54,3.85,55,3.255,56,0.124,57,0.006,58,0.007,59,0.006]],["title/interfaces/Signer.html",[0,1.107,104,2.767]],["body/interfaces/Signer.html",[0,1.449,2,1.767,3,0.105,4,0.084,5,0.074,7,0.318,9,1.189,18,0.605,20,1.436,21,0.011,40,4.665,41,3.957,42,2.47,43,4.508,44,3.596,47,2.986,48,1.721,51,2.47,56,0.105,57,0.005,58,0.007,59,0.005,60,0.005,77,0.932,78,3.577,79,1.652,86,0.906,92,1.296,93,0.684,104,4.521,112,1.268,113,2.421,114,2.037,134,1.372,140,0.338,163,1.708,185,1.19,221,1.987,227,2.438,305,1.41,357,2.662,395,2.137,663,3.622,686,2.75,688,2.94,736,2.337,800,1.971,862,3.766,907,2.231,982,2.653,999,2.94,1011,2.05,2476,4.562,2478,3.843,2501,3.843,2548,2.75,2550,2.337,2591,2.591,2593,3.843,2595,2.75,2596,2.75,2659,3.843,2660,2.591,2661,3.178,2662,5.121,2663,5.121,2664,5.834,2665,4.888,2666,4.888,2667,3.178,2669,3.178,2678,5.121,2679,5.23,2681,3.178,2682,5.121,2684,5.121,2686,3.178,2687,2.94,2688,4.442,2689,4.442,2690,5.121,2691,3.178,2692,3.178,2693,3.178,2694,3.178,2695,3.178,2696,3.178,2697,3.178,2698,4.442,2699,3.178,2700,3.178,2701,3.178,2702,4.442,2703,3.178,2704,4.442,2705,3.178,2706,3.178,2707,3.178,2708,3.178,2709,3.178,2710,3.178,2711,3.178,2712,3.178,2713,3.178,2714,3.178,2715,3.178,2716,3.178,2909,3.981,2910,3.981,2911,3.981,2912,3.981,2913,3.981,2914,3.981]],["title/interfaces/Staff.html",[0,1.107,622,2.383]],["body/interfaces/Staff.html",[0,1.6,2,2.727,3,0.162,4,0.13,5,0.114,7,0.491,8,1.345,18,0.67,20,1.485,21,0.011,22,2.004,32,5.061,56,0.162,57,0.007,58,0.009,59,0.007,93,0.768,622,4.433,2845,7.207,2915,5.395,2916,8.205,2917,8.205]],["title/interfaces/Token.html",[0,1.107,320,1.077]],["body/interfaces/Token.html",[0,1.479,2,2.521,3,0.15,4,0.12,5,0.105,7,0.454,8,1.282,9,1.299,11,3.182,18,0.694,20,1.506,21,0.011,23,4.858,56,0.15,57,0.007,58,0.008,59,0.007,93,0.747,95,2.923,320,1.936,1152,3.808,1523,4.532,1524,5.516,1526,6.376,1528,6.376,1532,4.193,1534,6.376,1535,5.898,2918,4.987]],["title/components/TokenDetailsComponent.html",[175,0.692,319,1.383]],["body/components/TokenDetailsComponent.html",[3,0.107,4,0.086,5,0.075,7,0.323,8,1.027,9,0.659,18,0.45,21,0.011,56,0.107,57,0.005,58,0.007,59,0.005,60,0.005,77,0.943,84,1.212,86,0.775,88,1.356,91,1.832,92,0.718,93,0.712,95,2.061,112,0.678,140,0.446,175,1.053,176,1.318,177,2.061,178,1.482,179,1.681,180,1.528,181,1.438,185,1.683,186,2.977,187,1.28,188,2.337,189,2.337,190,2.954,191,3.203,193,2.337,195,2.337,207,3.217,221,1.389,244,1.681,245,0.485,249,2.005,250,1.438,253,1.781,272,2.636,281,2.788,285,1.145,286,2.125,287,2.125,288,1.177,289,2.64,290,1.528,291,1.356,292,2.443,293,1.318,294,1.528,295,1.528,296,1.318,297,1.528,298,1.356,299,1.528,300,1.318,301,1.528,302,1.318,303,1.528,304,1.318,305,1.026,306,1.528,307,1.356,308,2.125,309,1.438,310,1.318,311,1.528,312,1.318,313,1.528,314,1.318,315,1.528,316,1.356,317,2.125,318,1.438,319,2.277,320,2.168,321,1.318,322,1.528,323,1.356,324,2.125,325,1.438,326,1.356,327,1.114,328,1.318,329,1.356,330,1.318,331,1.318,332,1.528,333,1.318,334,1.528,335,1.318,336,1.528,337,1.396,338,1.482,339,1.528,391,2.27,392,2.005,429,3.665,515,3.156,530,4.946,586,3.232,623,5.167,1152,2.685,1519,3.305,1521,4.158,1524,3.889,1532,4.158,1535,4.158,1968,4.495,2437,4.495,2919,6.146,2920,5.167,2921,3.232,2922,5.686,2923,4.946,2924,4.049,2925,6.997,2926,5.393,2927,5.631,2928,4.049,2929,4.049,2930,4.049,2931,4.049,2932,6.146,2933,4.946,2934,5.631,2935,5.631,2936,5.631,2937,5.631,2938,5.631,2939,5.631,2940,5.631,2941,4.946,2942,5.631,2943,5.631]],["title/pipes/TokenRatioPipe.html",[2258,2.622,2891,2.936]],["body/pipes/TokenRatioPipe.html",[3,0.167,4,0.134,5,0.117,9,1.028,18,0.505,21,0.01,33,1.601,56,0.167,57,0.008,58,0.009,59,0.008,60,0.008,77,1.058,86,0.756,92,1.12,93,0.702,112,1.058,134,1.558,140,0.384,185,1.889,187,1.998,245,0.756,429,4.885,1516,4.666,2258,3.897,2813,5.044,2816,5.551,2818,7.032,2820,6.592,2891,5.183,2944,6.592,2945,5.551,2946,7.505,2947,6.319,2948,6.319,2949,6.319,2950,6.319]],["title/classes/TokenRegistry.html",[60,0.005,2951,2.936]],["body/classes/TokenRegistry.html",[0,0.822,3,0.083,4,0.067,5,0.059,7,0.252,8,0.858,9,0.915,18,0.559,20,1.36,21,0.011,22,2.039,45,1.31,48,1.279,53,1.947,54,5.009,56,0.083,57,0.004,58,0.006,59,0.004,60,0.004,62,1.229,64,4.977,65,4.133,66,5.477,68,4.986,69,4.133,70,4.133,71,6.54,72,3.474,73,4.113,74,5.35,75,6.143,76,6.684,77,0.788,78,3.919,79,3.304,84,0.679,85,4.133,86,0.867,88,1.576,89,4.154,90,6.804,91,2.423,92,0.997,93,0.624,94,5.323,95,3.084,96,2.52,105,6.143,109,6.143,110,6.143,112,1.316,113,2.639,131,4.977,134,1.538,135,1.191,139,6.143,140,0.286,141,3.846,142,2.773,143,1.229,144,1.354,145,1.626,146,2.52,147,3.25,148,2.52,150,2.52,151,2.52,152,1.531,153,2.331,154,2.773,155,4.306,156,4.133,157,2.773,158,2.773,159,4.133,160,2.773,163,2.414,320,2.228,1069,1.947,1208,4.977,1213,4.133,1519,4.547,2951,3.25,2952,5.944,2953,2.52,2954,4.705,2955,6.993,2956,4.705,2957,3.156,2958,3.156,2959,4.705,2960,3.156,2961,6.804,2962,6.235,2963,3.156,2964,3.156,2965,4.705,2966,4.705,2967,3.156,2968,7.746,2969,3.156,2970,4.705,2971,3.156,2972,2.773,2973,3.156,2974,3.156,2975,3.156,2976,3.156,2977,3.156,2978,3.156]],["title/injectables/TokenService.html",[844,1.344,2926,2.936]],["body/injectables/TokenService.html",[3,0.125,4,0.1,5,0.088,7,0.378,8,1.142,9,1.141,18,0.637,20,1.362,21,0.011,22,1.2,33,1.2,48,1.423,56,0.125,57,0.006,58,0.007,59,0.006,60,0.006,68,4.117,77,1.048,79,3.427,84,1.347,86,0.973,92,1.243,93,0.656,95,2.292,112,1.175,113,2.929,134,1.73,140,0.494,144,2.031,145,2.438,152,2.282,163,3.202,168,5.499,228,1.497,245,0.567,253,1.98,521,3.473,542,2.258,638,2.438,744,2.438,844,1.98,845,2.541,860,2.541,876,3.496,877,5.889,933,2.541,1042,5.294,1072,2.541,1074,3.779,1125,3.779,1152,2.258,2401,6.556,2403,5.499,2777,5.599,2786,3.779,2787,3.779,2926,4.324,2951,5.508,2979,4.159,2980,7.015,2981,6.261,2982,6.261,2983,6.261,2984,4.735,2985,6.261,2986,4.735,2987,4.735,2988,7.762,2989,4.735,2990,4.735,2991,4.159,2992,4.735,2993,4.159,2994,4.735,2995,4.735,2996,4.735,2997,4.735,2998,4.735,2999,4.735,3000,4.735,3001,4.735,3002,4.735,3003,4.735,3004,4.735,3005,4.735,3006,4.735]],["title/classes/TokenServiceStub.html",[60,0.005,3007,3.393]],["body/classes/TokenServiceStub.html",[3,0.168,4,0.135,5,0.118,7,0.509,9,1.036,18,0.509,20,1.345,21,0.011,56,0.168,57,0.008,58,0.009,59,0.008,60,0.008,62,2.48,77,1.263,86,0.762,92,1.129,93,0.706,112,1.067,134,1.571,516,3.571,986,4.427,1152,3.596,1505,4.705,1521,4.705,3007,6.02,3008,6.625,3009,7.542,3010,7.542,3011,6.371]],["title/components/TokensComponent.html",[175,0.692,321,1.383]],["body/components/TokensComponent.html",[3,0.093,4,0.075,5,0.066,7,0.282,8,0.931,9,0.976,18,0.599,20,1.005,21,0.011,33,1.294,56,0.159,57,0.004,58,0.006,59,0.004,60,0.004,77,0.855,79,3.02,84,1.099,86,0.952,88,1.182,91,1.662,92,1.064,93,0.744,95,2.408,112,1.101,113,2.482,135,2.482,140,0.475,152,1.148,163,2.575,175,0.976,176,1.148,177,1.869,178,1.292,179,1.465,180,1.332,181,1.254,185,1.527,186,2.76,187,1.116,188,2.12,189,2.12,190,2.919,191,3.159,192,3.15,193,2.12,195,2.12,207,3.025,218,4.027,221,1.622,228,1.116,244,1.465,245,0.422,248,1.747,249,1.747,250,1.254,253,1.898,281,2.529,285,0.998,286,1.927,287,1.927,288,1.026,289,2.482,290,1.332,291,1.182,292,2.265,293,1.148,294,1.332,295,1.332,296,1.148,297,1.332,298,1.182,299,1.332,300,1.148,301,1.332,302,1.148,303,1.332,304,1.148,305,0.894,306,1.332,307,1.182,308,1.927,309,1.254,310,1.148,311,1.332,312,1.148,313,1.332,314,1.148,315,1.332,316,1.182,317,1.927,318,1.254,319,1.148,320,1.521,321,2.14,322,1.332,323,1.182,324,1.927,325,1.254,326,1.182,327,0.971,328,1.148,329,1.182,330,1.148,331,1.148,332,1.332,333,1.148,334,1.332,335,1.148,336,1.332,337,1.217,338,1.292,339,1.332,345,4.145,349,4.145,350,4.145,351,3.527,352,4.543,357,3.115,359,3.527,370,4.145,380,4.145,381,3.324,382,3.527,384,4.145,385,3.527,386,2.437,387,1.818,388,1.894,389,1.894,390,2.177,405,2.606,407,2.606,408,2.437,409,2.606,410,2.437,412,2.606,413,2.437,423,3.527,429,3.324,586,2.817,1152,3.137,1519,4.668,1524,4.543,2437,4.077,2926,5.026,2932,4.486,2933,4.486,2941,4.486,2951,2.437,3012,3.1,3013,6.002,3014,5.108,3015,6.002,3016,5.108,3017,3.529,3018,5.108,3019,3.529,3020,3.529,3021,3.529,3022,5.108,3023,3.529,3024,3.529,3025,3.529,3026,3.529,3027,3.529,3028,3.529,3029,3.529,3030,5.108,3031,5.108,3032,3.529,3033,3.529,3034,3.529,3035,3.529]],["title/modules/TokensModule.html",[431,1.138,3036,3.139]],["body/modules/TokensModule.html",[3,0.138,4,0.111,5,0.097,21,0.011,56,0.138,57,0.006,58,0.008,59,0.006,60,0.006,140,0.538,143,2.598,245,0.625,285,1.477,319,2.665,321,2.665,387,2.691,388,2.804,389,2.804,431,1.398,433,1.912,434,2.587,435,3.947,436,2.691,437,2.804,438,2.099,443,4.218,445,3.582,446,2.804,447,2.491,449,2.77,450,3.918,451,2.928,453,3.067,455,3.223,458,3.608,465,4.344,466,4.61,467,4.929,468,3.858,469,4.61,470,4.117,471,3.223,472,4.344,473,3.401,474,3.401,475,4.117,476,3.223,477,4.117,478,3.223,479,4.344,480,3.401,486,4.61,487,3.401,2920,3.858,3036,6.412,3037,4.589,3038,4.589,3039,4.589,3040,5.657,3041,5.225,3042,5.225,3043,4.589,3044,4.589,3045,6.675,3046,6.675,3047,5.225,3048,6.675,3049,5.225]],["title/modules/TokensRoutingModule.html",[431,1.138,3040,2.936]],["body/modules/TokensRoutingModule.html",[3,0.164,4,0.131,5,0.115,21,0.011,45,2.575,48,1.41,56,0.164,57,0.007,58,0.009,59,0.007,60,0.007,140,0.5,143,2.415,175,1.208,245,0.742,250,2.204,319,2.416,321,2.416,433,2.271,438,2.493,449,3.081,458,4.285,497,3.642,498,4.091,499,4.161,500,4.358,504,3.827,2920,4.581,3040,5.127,3043,5.45,3044,5.45,3050,6.205]],["title/components/TopbarComponent.html",[175,0.692,323,1.424]],["body/components/TopbarComponent.html",[3,0.128,4,0.103,5,0.09,7,0.388,21,0.01,56,0.128,57,0.006,58,0.008,59,0.006,60,0.006,77,1.066,84,1.528,86,0.762,88,1.626,91,2.071,93,0.665,112,0.813,140,0.295,175,1.155,176,1.579,177,2.329,178,1.777,179,2.015,180,1.832,181,1.724,185,1.902,186,3.265,187,1.535,188,2.641,189,2.641,190,2.994,191,3.254,193,2.641,195,2.641,207,3.466,221,1.569,244,2.015,245,0.581,285,1.372,286,2.402,287,2.402,288,1.411,289,2.844,290,1.832,291,1.626,292,2.68,293,1.579,294,1.832,295,1.832,296,1.579,297,1.832,298,1.626,299,1.832,300,1.579,301,1.832,302,1.579,303,1.832,304,1.579,305,1.23,306,1.832,307,1.626,308,2.402,309,1.724,310,1.579,311,1.832,312,1.579,313,1.832,314,1.579,315,1.832,316,1.626,317,2.402,318,1.724,319,1.579,320,1.23,321,1.579,322,1.832,323,2.524,324,2.402,325,1.724,326,1.626,327,1.335,328,1.579,329,1.626,330,1.579,331,1.579,332,1.832,333,1.579,334,1.832,335,1.579,336,1.832,337,1.674,338,1.777,339,1.832,1343,4.7,3051,4.264,3052,7.101,3053,6.364,3054,4.854,3055,4.854]],["title/components/TopbarStubComponent.html",[175,0.692,325,1.51]],["body/components/TopbarStubComponent.html",[3,0.133,4,0.107,5,0.094,21,0.01,56,0.191,57,0.006,58,0.008,59,0.006,60,0.009,88,1.692,91,2.126,93,0.678,140,0.307,175,1.063,176,1.644,177,2.391,178,2.65,180,1.907,181,1.795,187,1.598,190,2.999,191,3.273,245,0.605,285,1.429,286,2.465,287,2.465,288,1.469,289,2.888,290,1.907,291,1.692,292,2.732,293,1.644,294,1.907,295,1.907,296,1.644,297,1.907,298,1.692,299,1.907,300,1.644,301,1.907,302,1.644,303,1.907,304,1.644,305,1.281,306,1.907,307,1.692,308,2.465,309,2.321,310,1.644,311,1.907,312,1.644,313,1.907,314,1.644,315,1.907,316,1.692,317,2.465,318,2.321,319,1.644,320,1.281,321,1.644,322,1.907,323,1.692,324,2.465,325,2.719,326,1.692,327,1.39,328,1.644,329,1.692,330,1.644,331,1.644,332,1.907,333,1.644,334,1.907,335,1.644,336,1.907,337,1.743,338,1.85,339,1.907,431,1.352,516,2.832,698,3.117,1335,3.731,1341,3.731,1342,5.779,1343,4.824]],["title/classes/Transaction.html",[60,0.005,327,1.169]],["body/classes/Transaction.html",[1,3.909,3,0.138,4,0.111,5,0.097,7,0.419,8,1.22,9,1.088,18,0.69,20,1.467,21,0.011,22,2.158,33,1.867,56,0.138,57,0.006,58,0.008,59,0.006,60,0.01,62,2.041,86,1.009,93,0.491,95,1.919,140,0.318,227,1.612,320,1.867,327,2.026,509,2.041,720,3.445,829,2.938,1055,4.571,1138,4.126,1139,3.412,1140,3.621,1141,3.621,1142,3.621,1143,3.621,1144,3.621,1150,3.621,1151,5.056,1152,2.5,1153,3.412,1154,3.412,1155,3.621,1156,3.621,1157,4.544,1158,4.324,1159,3.621,1160,3.621,1161,3.621,1162,3.412,1163,3.412,3056,5.243,3057,5.243,3058,5.243,3059,5.243,3060,5.243,3061,5.243,3062,5.243,3063,5.243]],["title/components/TransactionDetailsComponent.html",[175,0.692,326,1.424]],["body/components/TransactionDetailsComponent.html",[3,0.077,4,0.113,5,0.054,7,0.427,8,0.806,9,0.719,18,0.514,20,1.245,21,0.011,53,2.725,56,0.077,57,0.003,58,0.005,59,0.003,60,0.003,77,0.74,79,3.244,84,0.951,86,0.923,88,0.972,91,1.438,92,0.783,93,0.722,95,2.896,112,1.134,113,2.739,140,0.411,163,2.565,175,0.87,176,0.945,177,1.617,178,1.063,179,1.205,180,1.096,181,1.031,185,1.321,186,2.459,187,0.918,188,1.834,189,1.834,190,2.863,191,3.089,193,1.834,195,1.834,207,2.749,218,3.636,221,1.474,244,1.205,245,0.347,248,1.438,249,1.438,250,1.031,251,2.144,252,2.144,253,1.691,285,0.821,286,1.667,287,1.667,288,0.844,289,2.256,290,1.096,291,0.972,292,2.018,293,0.945,294,1.096,295,1.096,296,0.945,297,1.096,298,0.972,299,1.096,300,0.945,301,1.096,302,0.945,303,1.096,304,0.945,305,0.736,306,1.096,307,0.972,308,1.667,309,1.031,310,0.945,311,1.096,312,0.945,313,1.096,314,0.945,315,1.096,316,0.972,317,1.667,318,1.031,319,0.945,320,1.884,321,0.945,322,1.096,323,0.972,324,1.667,325,1.031,326,2.002,327,2.28,328,0.945,329,2.002,330,0.945,331,0.945,332,1.096,333,0.945,334,1.096,335,0.945,336,1.096,337,1.001,338,1.063,339,1.096,427,3.051,429,2.876,494,2.318,495,2.005,623,4.414,651,4.344,720,1.495,829,2.476,837,2.318,1152,3.23,1153,2.876,1154,2.876,1157,4.179,1158,3.977,1163,4.41,2432,2.55,2751,3.527,2756,3.262,2921,2.318,2922,4.698,2923,3.881,3064,6.867,3065,6.24,3066,5.349,3067,5.349,3068,5.349,3069,4.418,3070,5.978,3071,5.978,3072,5.978,3073,5.978,3074,5.349,3075,5.978,3076,4.418,3077,2.903,3078,4.418,3079,2.903,3080,2.903,3081,2.903,3082,2.903,3083,2.903,3084,2.903,3085,2.903,3086,2.903,3087,2.318,3088,2.903,3089,2.903,3090,5.349,3091,2.903,3092,2.903,3093,2.903,3094,2.903,3095,2.903,3096,2.903,3097,2.903,3098,2.903,3099,2.903,3100,2.903,3101,2.903,3102,2.903,3103,2.903,3104,2.903,3105,2.903,3106,2.903,3107,5.349,3108,2.903,3109,2.903,3110,5.978,3111,5.978,3112,4.418,3113,5.951,3114,4.418,3115,4.418,3116,6.775,3117,5.978,3118,3.881,3119,4.418,3120,4.418,3121,4.418,3122,3.881,3123,3.881,3124,4.418,3125,4.418,3126,5.978,3127,5.978,3128,5.978,3129,4.418,3130,4.418,3131,4.418,3132,5.978,3133,4.418,3134,4.418,3135,4.418,3136,4.418,3137,5.978,3138,4.418]],["title/injectables/TransactionService.html",[651,2.622,844,1.344]],["body/injectables/TransactionService.html",[3,0.073,4,0.059,5,0.052,7,0.222,8,0.779,9,1.164,18,0.609,19,1.491,20,1.339,21,0.011,22,2.108,33,1.757,37,1.375,42,1.896,48,1.871,49,3.603,56,0.073,57,0.006,58,0.005,59,0.003,60,0.003,68,3.055,77,0.715,79,3.047,84,0.919,86,0.957,91,0.904,92,1.269,93,0.67,95,1.905,112,1.199,113,2.512,134,1.555,140,0.5,141,4.277,144,1.192,145,1.43,147,1.918,152,2.052,163,2.856,217,4.277,221,1.441,228,1.646,245,0.332,251,2.051,252,2.051,253,2.263,305,1.319,327,1.734,329,1.743,357,2.878,391,1.557,392,1.375,393,1.808,394,3.154,509,1.081,521,3.122,542,1.324,638,1.43,650,4.277,651,2.634,720,2.2,744,1.43,810,2.051,844,1.351,845,1.491,860,1.491,876,2.051,877,4.916,899,3.752,907,1.557,933,2.292,973,2.44,1011,1.43,1042,4.513,1045,4.663,1046,4.916,1055,2.292,1072,2.292,1074,2.217,1081,2.44,1125,3.409,1162,1.808,2590,2.217,2591,1.808,2592,2.217,2597,2.217,2777,4.154,2786,2.217,2787,2.217,2788,2.44,2991,2.44,2993,2.44,3118,2.44,3122,2.44,3123,2.44,3139,2.217,3140,5.204,3141,5.204,3142,5.204,3143,4.271,3144,4.271,3145,4.271,3146,3.752,3147,5.842,3148,3.752,3149,3.752,3150,4.271,3151,4.271,3152,4.271,3153,6.884,3154,2.778,3155,4.271,3156,2.778,3157,4.271,3158,2.778,3159,3.752,3160,2.778,3161,2.778,3162,3.752,3163,2.778,3164,3.752,3165,2.778,3166,4.271,3167,5.842,3168,5.842,3169,2.778,3170,4.271,3171,4.271,3172,2.778,3173,2.778,3174,4.271,3175,2.778,3176,2.778,3177,2.778,3178,2.778,3179,2.778,3180,2.778,3181,2.44,3182,2.778,3183,2.44,3184,2.778,3185,2.778,3186,2.778,3187,2.778,3188,2.778,3189,4.271,3190,2.778,3191,2.44,3192,2.217,3193,2.778,3194,2.778,3195,4.271,3196,4.271,3197,2.778,3198,2.44,3199,5.204,3200,2.778,3201,4.271,3202,5.204,3203,2.778,3204,4.271,3205,3.752,3206,2.778,3207,2.778,3208,2.778,3209,2.778,3210,2.778,3211,2.778,3212,2.778,3213,2.778,3214,4.271,3215,4.271,3216,2.778,3217,2.778,3218,4.271,3219,4.271,3220,2.44,3221,4.271,3222,2.778,3223,2.778,3224,2.778,3225,2.778,3226,2.778,3227,2.778,3228,2.778,3229,2.778,3230,2.778,3231,2.778,3232,2.778,3233,2.778,3234,2.778,3235,2.778,3236,2.778,3237,2.778,3238,2.778,3239,2.778,3240,2.778,3241,2.778,3242,2.778,3243,2.778,3244,2.778,3245,2.778,3246,2.778,3247,2.778,3248,2.778,3249,2.778,3250,2.778,3251,2.778,3252,2.778,3253,2.778,3254,2.778,3255,2.778,3256,2.778,3257,2.778,3258,2.778,3259,2.778,3260,2.778,3261,2.778,3262,2.778,3263,2.778,3264,2.778,3265,2.778,3266,2.778,3267,2.778,3268,2.778]],["title/classes/TransactionServiceStub.html",[60,0.005,3269,3.393]],["body/classes/TransactionServiceStub.html",[3,0.152,4,0.122,5,0.107,7,0.46,9,1.251,18,0.614,21,0.011,22,2.194,56,0.152,57,0.007,58,0.008,59,0.007,60,0.007,62,2.243,77,1.189,86,0.92,92,1.364,93,0.72,112,1.288,134,1.421,140,0.35,221,1.98,327,1.585,516,3.23,521,3.809,542,2.748,720,2.968,986,4.713,1045,4.6,1046,5.68,2805,5.062,3146,6.235,3148,6.235,3149,6.235,3153,6.757,3159,6.235,3162,6.235,3164,6.235,3269,5.666,3270,7.052,3271,5.763,3272,5.062,3273,5.763,3274,5.763]],["title/components/TransactionsComponent.html",[175,0.692,328,1.383]],["body/components/TransactionsComponent.html",[3,0.08,4,0.064,5,0.056,7,0.241,8,0.831,9,0.892,18,0.662,20,1.096,21,0.011,22,1.154,33,1.906,56,0.145,57,0.004,58,0.005,59,0.004,60,0.004,77,0.763,84,0.98,86,0.986,88,1.012,91,1.482,92,0.972,93,0.644,112,1.152,135,2.774,140,0.446,152,0.984,175,0.892,176,0.984,177,1.667,178,1.106,179,1.255,180,1.141,181,1.074,185,1.362,186,2.521,187,0.956,188,1.891,189,1.891,190,2.875,191,3.104,192,2.81,193,1.891,195,1.891,207,2.806,217,4.405,221,1.945,228,1.93,244,1.255,245,0.362,248,1.497,249,1.497,253,1.733,272,1.968,281,2.256,285,0.855,286,1.719,287,1.719,288,0.879,289,2.303,290,1.141,291,1.012,292,2.069,293,0.984,294,1.141,295,1.141,296,0.984,297,1.141,298,1.012,299,1.141,300,0.984,301,1.141,302,0.984,303,1.141,304,0.984,305,0.766,306,1.141,307,1.012,308,1.719,309,1.074,310,0.984,311,1.141,312,0.984,313,1.141,314,0.984,315,1.141,316,1.012,317,1.719,318,1.074,319,0.984,320,0.766,321,0.984,322,1.141,323,1.012,324,1.719,325,1.074,326,1.012,327,2.069,328,1.986,329,2.642,330,0.984,331,0.984,332,1.141,333,0.984,334,1.141,335,0.984,336,1.141,337,1.042,338,1.106,339,1.141,345,3.786,346,4.815,348,4.815,349,3.786,350,3.786,351,3.146,352,4.214,359,3.146,370,3.786,372,4.214,374,4.871,376,3.637,377,4.002,378,2.674,380,3.786,381,2.965,382,3.146,384,3.786,385,3.146,386,2.088,387,1.557,388,1.622,389,1.622,390,1.865,391,1.694,392,1.497,393,1.968,408,3.146,410,3.146,413,2.088,422,3.637,423,3.146,427,3.146,429,3.972,651,4.405,1032,5.081,1157,3.764,1158,3.582,2640,3.637,3198,2.655,3220,4.002,3275,2.655,3276,5.482,3277,5.482,3278,4.556,3279,5.482,3280,5.482,3281,5.482,3282,5.482,3283,6.102,3284,6.102,3285,4.556,3286,3.023,3287,4.556,3288,3.023,3289,3.023,3290,3.023,3291,3.023,3292,3.023,3293,4.556,3294,3.023,3295,3.023,3296,3.023,3297,3.023,3298,3.023,3299,3.023,3300,3.023,3301,3.023,3302,3.023,3303,3.023,3304,3.023,3305,4.556,3306,3.023,3307,3.023,3308,4.556,3309,4.556,3310,3.023,3311,3.023,3312,3.023,3313,3.023,3314,4.556,3315,4.556,3316,3.023,3317,3.023,3318,6.102,3319,4.556,3320,4.556,3321,4.556,3322,4.556,3323,4.556,3324,4.556,3325,4.556]],["title/modules/TransactionsModule.html",[431,1.138,444,2.936]],["body/modules/TransactionsModule.html",[3,0.134,4,0.107,5,0.094,21,0.011,56,0.134,57,0.006,58,0.008,59,0.006,60,0.006,140,0.538,143,2.551,245,0.608,285,1.436,326,2.897,328,2.645,387,2.615,388,2.725,389,2.725,431,1.359,433,1.859,434,2.514,435,3.895,436,2.615,437,2.725,438,2.916,443,4.186,444,6.003,445,3.517,446,2.725,447,2.421,449,2.72,450,3.847,451,2.846,453,2.981,455,3.132,458,3.507,459,5.232,460,2.981,461,3.75,465,4.266,466,4.526,467,4.84,468,3.75,469,4.526,470,4.042,471,3.132,472,4.266,473,3.305,474,3.305,475,4.042,476,3.132,477,4.042,478,3.132,479,4.266,480,3.305,481,4.526,482,3.507,486,4.526,487,3.305,493,5.757,494,4.054,495,3.507,3065,4.054,3326,4.461,3327,4.461,3328,4.461,3329,4.461,3330,5.614,3331,5.078,3332,5.078,3333,4.461,3334,5.078]],["title/modules/TransactionsRoutingModule.html",[431,1.138,3330,2.936]],["body/modules/TransactionsRoutingModule.html",[3,0.168,4,0.135,5,0.118,21,0.011,48,1.448,56,0.168,57,0.008,58,0.009,59,0.008,60,0.008,140,0.488,143,2.48,175,1.036,245,0.762,250,2.263,328,2.454,433,2.332,438,2.56,449,3.13,497,3.74,498,4.137,499,4.227,500,3.74,504,3.93,3330,5.209,3333,5.597,3335,6.371]],["title/classes/Tx.html",[60,0.005,1055,2.281]],["body/classes/Tx.html",[1,3.745,3,0.143,4,0.115,5,0.101,7,0.433,8,1.245,18,0.66,20,1.461,21,0.011,22,2.2,33,1.373,56,0.143,57,0.006,58,0.008,59,0.006,60,0.01,62,2.109,86,0.969,93,0.507,95,1.983,140,0.329,227,2.1,320,1.373,327,1.879,509,2.109,720,3.518,829,4.193,1055,4.504,1138,4.213,1139,3.526,1140,3.742,1141,3.742,1142,3.742,1143,3.742,1144,3.742,1150,3.742,1151,4.994,1152,2.583,1153,4.869,1154,4.869,1155,5.166,1156,5.166,1157,3.342,1158,3.18,1159,3.742,1160,3.742,1161,3.742,1162,3.526,1163,3.526,3336,5.418,3337,5.418,3338,5.418,3339,5.418,3340,5.418]],["title/classes/TxToken.html",[60,0.005,1151,2.622]],["body/classes/TxToken.html",[1,3.779,3,0.147,4,0.117,5,0.103,7,0.444,8,1.265,18,0.633,20,1.477,21,0.011,22,2.162,33,1.408,56,0.147,57,0.007,58,0.008,59,0.007,60,0.01,62,2.162,86,0.905,93,0.708,95,2.769,140,0.337,227,1.708,320,1.408,327,1.908,509,2.162,720,3.573,829,3.113,1055,4.465,1138,4.279,1139,3.615,1140,3.836,1141,3.836,1142,3.836,1143,3.836,1144,3.836,1150,3.836,1151,5.131,1152,3.608,1153,3.615,1154,3.615,1155,3.836,1156,3.836,1157,3.426,1158,3.261,1159,3.836,1160,3.836,1161,3.836,1162,3.615,1163,3.615,3341,5.555,3342,5.555,3343,5.555]],["title/classes/UserServiceStub.html",[60,0.005,3344,3.393]],["body/classes/UserServiceStub.html",[3,0.076,4,0.061,5,0.053,7,0.23,8,0.801,9,0.969,11,4.313,14,4.747,16,1.615,18,0.653,19,1.546,20,1.242,21,0.011,22,1.624,27,1.875,28,1.875,33,1.113,45,3.554,51,2.643,56,0.076,57,0.003,58,0.005,59,0.003,60,0.003,62,1.122,77,0.736,86,0.808,92,1.056,93,0.754,95,2.817,112,0.997,114,2.571,123,2.916,134,1.468,140,0.175,144,1.236,171,4.669,228,1.389,282,5.141,320,1.113,374,6.143,378,3.495,505,4.283,507,4.685,508,4.685,509,3.305,516,1.615,521,2.636,538,2.531,542,1.374,551,2.579,554,3.465,556,3.507,562,4.517,608,6.171,609,5.23,668,4.665,800,1.427,817,3.034,832,3.673,986,4.124,1069,4.166,1502,4.753,1503,6.042,1504,4.753,1505,5.348,1506,3.507,1507,3.507,1508,4.753,1509,3.507,1510,4.113,1511,3.507,1512,3.507,1513,3.507,1514,4.397,1515,3.507,1516,3.244,1517,3.507,1518,3.034,1667,3.507,1762,3.507,1782,3.507,1793,3.507,1951,2.3,1983,3.507,1989,3.507,2057,2.3,2065,4.25,2375,5.608,2376,4.753,2398,3.859,2857,3.931,3272,2.531,3344,3.507,3345,6.171,3346,4.393,3347,4.393,3348,2.882,3349,5.324,3350,5.324,3351,5.324,3352,7.696,3353,5.324,3354,5.324,3355,7.696,3356,7.696,3357,4.393,3358,4.393,3359,4.393,3360,4.393,3361,4.393,3362,4.393,3363,4.393,3364,4.393,3365,4.393,3366,4.393,3367,4.393,3368,4.393,3369,4.393,3370,4.393,3371,4.393,3372,4.393,3373,4.393,3374,4.393,3375,4.393,3376,4.393,3377,4.393,3378,4.393,3379,2.882,3380,4.393,3381,2.882,3382,4.393,3383,2.882,3384,2.882,3385,4.393,3386,2.882,3387,2.882,3388,2.882,3389,2.882,3390,2.882,3391,2.882,3392,2.882,3393,2.882,3394,2.882,3395,2.531,3396,2.882]],["title/classes/W3.html",[60,0.005,2827,3.139]],["body/classes/W3.html",[3,0.165,4,0.132,5,0.116,7,0.499,8,1.358,18,0.595,21,0.011,44,4.624,56,0.165,57,0.007,58,0.009,59,0.007,60,0.009,62,2.43,68,3.664,86,0.892,273,5.146,1050,4.176,2824,4.983,2825,6.544,2826,5.483,2827,6.225,2828,5.483,2832,7.246,2834,5.483,3397,6.242,3398,6.242]],["title/coverage.html",[3399,4.648]],["body/coverage.html",[0,2.023,1,1.272,5,0.05,6,4.028,12,1.32,18,0.213,19,2.221,21,0.011,37,1.32,40,1.431,46,1.736,49,1.645,51,4.001,57,0.003,58,0.005,59,0.003,60,0.01,61,2.129,63,4.049,104,1.736,141,2.553,144,2.176,147,2.858,152,0.868,175,1.345,176,0.868,182,3.636,183,1.969,184,2.342,217,1.645,231,1.645,288,1.799,291,0.893,293,0.868,296,0.868,298,0.893,300,0.868,302,0.868,304,0.868,305,1.285,307,0.893,309,0.947,310,0.868,312,0.868,314,0.868,316,0.893,318,0.947,319,0.868,320,0.676,321,0.868,323,0.893,325,0.947,326,0.893,327,0.734,328,0.868,331,0.868,333,0.868,335,0.868,337,0.92,340,2.342,344,1.842,357,1.107,378,3.844,390,1.645,431,1.357,457,2.129,463,1.969,505,1.431,506,3.948,510,1.565,512,1.645,513,2.129,514,2.342,515,1.495,516,3.959,550,2.342,554,1.736,581,1.736,622,1.495,637,2.342,650,1.645,651,1.645,652,1.736,720,1.373,729,1.842,730,1.736,731,1.842,732,1.842,745,1.969,746,1.842,752,1.736,776,2.342,800,2.512,814,3.721,834,2.858,836,2.342,844,2.344,861,2.342,862,1.565,910,1.842,986,2.977,1032,1.969,1033,2.342,1034,2.342,1042,1.736,1050,1.495,1055,1.431,1138,1.645,1139,4.028,1151,1.645,1171,2.342,1172,2.342,1175,1.969,1176,1.969,1178,1.969,1180,1.969,1217,2.342,1218,2.342,1233,2.129,1234,2.342,1253,2.342,1254,1.969,1255,2.342,1269,2.342,1270,2.342,1288,2.342,1334,2.342,1341,3.745,1344,3.304,1345,3.304,1391,2.342,1392,2.342,1399,2.342,1415,2.342,1430,2.342,1470,3.304,1471,2.342,1484,3.304,1494,1.969,1495,5.917,1496,5.917,1519,1.565,2051,2.129,2258,2.553,2365,2.129,2370,2.129,2393,5.79,2476,4.011,2477,3.745,2550,1.565,2551,1.969,2625,2.342,2659,1.842,2660,3.721,2679,1.842,2717,2.342,2748,2.342,2768,2.342,2775,2.129,2789,2.129,2790,2.342,2801,2.342,2802,2.129,2812,1.842,2814,2.342,2824,3.304,2827,1.969,2835,2.342,2891,1.842,2902,2.342,2915,2.342,2918,2.342,2919,2.342,2920,1.969,2921,4.049,2926,1.842,2944,2.342,2945,2.342,2951,1.842,2952,4.049,2953,4.049,2961,2.342,2979,2.342,3007,2.129,3008,2.342,3012,2.342,3051,2.342,3064,2.342,3065,2.129,3087,2.129,3139,3.304,3269,2.129,3270,2.342,3275,2.342,3344,2.129,3345,2.342,3399,2.129,3400,2.667,3401,2.667,3402,2.667,3403,8.309,3404,5.717,3405,2.667,3406,8.179,3407,2.342,3408,2.342,3409,2.342,3410,8.579,3411,2.342,3412,2.342,3413,5.717,3414,3.636,3415,4.94,3416,2.342,3417,6.833,3418,2.342,3419,2.342,3420,4.049,3421,2.342,3422,2.342,3423,2.342,3424,3.636,3425,3.636,3426,2.342,3427,2.342,3428,6.189,3429,6.189,3430,5.072,3431,5.072,3432,4.139,3433,4.139,3434,2.667,3435,5.717,3436,4.139,3437,2.667,3438,4.139,3439,3.636,3440,2.667,3441,2.667,3442,2.667,3443,2.667,3444,4.139,3445,2.342,3446,2.342,3447,2.342,3448,2.342,3449,2.667,3450,2.667]],["title/dependencies.html",[434,2.534,3451,3.54]],["body/dependencies.html",[19,2.933,21,0.011,37,2.707,42,2.427,57,0.007,58,0.008,59,0.007,141,3.371,245,0.654,247,2.933,250,1.941,434,2.707,436,2.815,451,3.064,460,3.208,461,4.036,542,2.606,585,4.801,735,5.483,736,4.032,749,4.363,750,4.363,829,3.064,933,4.031,1072,3.686,2550,3.208,2734,4.801,2735,4.801,3181,4.801,3183,4.801,3192,4.363,3452,7.471,3453,5.466,3454,6.869,3455,5.466,3456,5.466,3457,5.466,3458,5.466,3459,5.466,3460,5.466,3461,5.466,3462,5.466,3463,5.466,3464,5.466,3465,5.466,3466,5.466,3467,5.466,3468,5.466,3469,5.466,3470,5.466,3471,6.869,3472,5.466,3473,6.869,3474,6.869,3475,5.466,3476,5.466,3477,5.466,3478,5.466,3479,5.466,3480,5.466,3481,5.466,3482,5.466,3483,5.466,3484,5.466,3485,5.466,3486,5.466,3487,5.466,3488,5.466,3489,5.466,3490,5.466,3491,5.466,3492,5.466,3493,5.466,3494,5.466,3495,5.466,3496,5.466,3497,5.466]],["title/miscellaneous/functions.html",[2423,4.086,3498,2.304]],["body/miscellaneous/functions.html",[7,0.426,9,1.377,18,0.644,19,2.862,20,0.893,21,0.011,22,1.352,42,2.368,57,0.006,58,0.008,59,0.006,92,1.5,93,0.792,112,1.431,113,2.552,135,2.552,221,1.831,227,1.64,390,4.171,924,4.258,2423,4.258,2756,3.938,2775,5.928,3087,5.399,3407,4.685,3408,5.94,3409,5.94,3411,4.685,3412,5.94,3414,4.685,3415,6.573,3416,5.94,3418,4.685,3419,5.94,3420,4.258,3421,5.94,3422,5.94,3424,4.685,3425,6.523,3426,5.94,3427,5.94,3498,3.471,3499,5.334,3500,5.334,3501,6.763,3502,5.334,3503,5.94,3504,6.763,3505,5.334,3506,5.334,3507,5.334,3508,5.334,3509,6.763,3510,6.763,3511,5.334,3512,5.334,3513,5.334,3514,5.334,3515,5.334,3516,5.334,3517,5.334,3518,5.334]],["title/index.html",[7,0.283,3519,3.109,3520,3.109]],["body/index.html",[4,0.104,5,0.132,21,0.009,39,3.022,57,0.006,58,0.008,59,0.006,73,3.022,88,1.641,93,0.708,144,3.454,152,2.084,175,1.161,178,1.794,191,2.344,228,1.55,276,3.912,329,1.641,395,2.63,431,2.195,433,1.794,447,2.337,460,4.726,515,3.589,522,5.268,539,5.945,551,2.876,670,3.619,694,4.304,780,4.304,809,4.304,818,4.304,832,3.022,933,2.63,1072,2.63,1212,5.625,1314,3.189,1432,5.625,1696,5.695,2382,5.112,2857,3.619,3452,4.304,3521,4.9,3522,4.9,3523,6.404,3524,4.9,3525,7.849,3526,7.455,3527,7.565,3528,5.625,3529,4.9,3530,4.9,3531,5.625,3532,4.9,3533,4.9,3534,4.9,3535,4.9,3536,4.304,3537,4.9,3538,4.304,3539,4.9,3540,7.849,3541,6.895,3542,4.9,3543,4.9,3544,4.304,3545,4.9,3546,7.565,3547,6.427,3548,7.134,3549,6.404,3550,4.9,3551,4.9,3552,5.625,3553,4.9,3554,4.9,3555,4.9,3556,4.9,3557,4.9,3558,4.9,3559,5.625,3560,5.625,3561,6.404,3562,7.565,3563,4.9,3564,5.625,3565,4.9,3566,6.645,3567,4.9,3568,4.9,3569,4.9,3570,4.304,3571,4.9,3572,4.9,3573,4.9,3574,4.9,3575,4.9,3576,4.304,3577,4.9,3578,4.9,3579,4.304,3580,4.304,3581,3.912,3582,4.9,3583,4.9]],["title/license.html",[3519,3.109,3520,3.109,3584,3.109]],["body/license.html",[0,1.035,2,1.002,4,0.16,5,0.03,17,1.162,18,0.131,21,0.002,22,0.415,29,0.429,39,4.156,42,1.002,57,0.002,58,0.002,59,0.002,60,0.001,72,2.055,73,2.638,74,2.389,77,0.15,78,3.47,86,0.108,89,2.055,95,0.329,102,0.789,116,0.789,120,2.842,121,1.983,122,3.631,124,3.187,131,1.308,134,0.222,140,0.055,152,1.293,171,1.995,175,0.526,221,0.222,253,0.284,276,0.717,283,1.922,327,1.093,372,1.559,376,0.717,391,0.918,427,0.621,447,0.429,503,0.585,509,2.222,522,4.92,525,2.222,526,0.585,528,0.789,543,1.439,544,1.439,554,0.585,562,0.528,581,0.585,596,0.789,622,0.504,623,1.21,655,0.717,663,1.066,668,2.234,679,0.664,684,0.717,686,2.234,701,0.664,762,2.389,800,0.445,832,1.995,933,0.482,949,0.789,950,1.439,983,0.789,984,2.389,986,0.962,987,0.789,988,1.308,989,1.308,991,3.187,1011,0.463,1046,1.21,1069,1.995,1072,0.482,1112,0.789,1114,1.439,1158,1.634,1208,1.802,1210,1.439,1214,0.664,1223,4.402,1227,2.896,1314,4.724,1315,0.717,1316,0.789,1324,1.308,1331,1.983,1384,5.255,1462,1.439,1490,0.789,1510,1.559,1514,0.664,1518,2.954,1559,0.717,1579,0.717,1625,1.667,1716,0.717,1735,0.717,1764,0.717,1770,0.717,1779,0.717,1788,6.719,1790,3.825,2011,0.717,2012,2.896,2253,0.717,2382,2.583,2385,1.439,2386,1.439,2418,0.789,2419,2.445,2422,1.983,2501,0.621,2549,4.732,2564,1.308,2576,1.802,2577,1.308,2626,1.21,2640,0.717,2647,2.842,2652,0.789,2681,4.303,2723,1.802,2802,0.717,2850,1.983,2857,3.359,2866,0.789,3113,0.789,3205,1.439,3395,1.439,3399,1.308,3448,0.789,3526,3.757,3528,2.445,3531,0.789,3536,2.445,3538,2.445,3541,0.789,3544,0.789,3552,3.187,3560,1.983,3564,0.789,3566,0.789,3570,1.983,3576,1.439,3579,3.757,3580,3.49,3584,7.439,3585,6.208,3586,0.899,3587,0.899,3588,2.257,3589,7.057,3590,4.278,3591,6.311,3592,6.876,3593,3.628,3594,0.899,3595,0.899,3596,1.638,3597,3.235,3598,6.738,3599,3.235,3600,2.257,3601,5.556,3602,2.257,3603,0.899,3604,0.899,3605,0.899,3606,1.638,3607,5.21,3608,3.628,3609,0.899,3610,3.628,3611,0.899,3612,0.899,3613,4.278,3614,0.899,3615,0.899,3616,0.899,3617,5.556,3618,7.743,3619,5.556,3620,2.257,3621,2.257,3622,1.638,3623,1.638,3624,3.973,3625,3.973,3626,5.556,3627,3.235,3628,0.899,3629,2.783,3630,4.278,3631,1.638,3632,4.278,3633,2.257,3634,0.899,3635,1.638,3636,0.899,3637,2.257,3638,6.208,3639,3.235,3640,1.638,3641,2.783,3642,0.899,3643,0.899,3644,1.638,3645,2.783,3646,2.783,3647,5.21,3648,1.638,3649,6.408,3650,1.638,3651,2.783,3652,3.973,3653,3.235,3654,0.899,3655,4.278,3656,3.235,3657,7.162,3658,2.257,3659,3.973,3660,0.899,3661,0.899,3662,4.278,3663,1.638,3664,5.012,3665,4.792,3666,3.235,3667,1.638,3668,0.899,3669,0.899,3670,5.708,3671,1.638,3672,0.899,3673,5.391,3674,1.638,3675,0.899,3676,2.257,3677,0.899,3678,0.899,3679,0.899,3680,0.899,3681,0.899,3682,0.899,3683,0.899,3684,0.899,3685,0.899,3686,0.899,3687,1.638,3688,0.899,3689,0.899,3690,0.899,3691,1.638,3692,1.638,3693,0.899,3694,0.899,3695,1.638,3696,1.638,3697,5.556,3698,0.899,3699,1.638,3700,1.638,3701,0.899,3702,0.899,3703,1.638,3704,2.257,3705,1.638,3706,2.257,3707,0.899,3708,0.899,3709,3.628,3710,0.899,3711,0.899,3712,3.235,3713,0.899,3714,0.899,3715,2.783,3716,0.899,3717,0.899,3718,1.638,3719,2.257,3720,0.899,3721,5.21,3722,0.899,3723,4.549,3724,0.899,3725,5.556,3726,2.783,3727,3.235,3728,3.628,3729,2.257,3730,0.899,3731,2.257,3732,6.096,3733,1.638,3734,0.899,3735,0.899,3736,0.899,3737,2.257,3738,7.63,3739,4.792,3740,0.899,3741,0.899,3742,1.638,3743,1.638,3744,0.899,3745,4.792,3746,0.899,3747,2.783,3748,4.278,3749,0.899,3750,2.257,3751,2.257,3752,1.638,3753,3.628,3754,7.534,3755,2.257,3756,4.549,3757,2.783,3758,3.973,3759,1.638,3760,0.899,3761,1.638,3762,2.257,3763,4.549,3764,2.783,3765,0.899,3766,1.638,3767,1.638,3768,2.783,3769,2.783,3770,0.899,3771,2.257,3772,0.899,3773,6.809,3774,1.638,3775,0.899,3776,4.278,3777,0.899,3778,2.257,3779,5.708,3780,2.783,3781,1.638,3782,4.278,3783,5.012,3784,3.628,3785,0.899,3786,0.899,3787,4.278,3788,0.899,3789,1.638,3790,5.391,3791,0.899,3792,1.638,3793,2.257,3794,0.899,3795,2.257,3796,0.899,3797,0.899,3798,0.899,3799,0.899,3800,2.257,3801,2.257,3802,0.899,3803,0.899,3804,0.899,3805,4.792,3806,1.638,3807,0.899,3808,2.257,3809,2.257,3810,3.628,3811,2.257,3812,2.257,3813,0.899,3814,0.899,3815,3.235,3816,3.628,3817,0.899,3818,0.899,3819,0.899,3820,1.638,3821,0.899,3822,2.257,3823,0.899,3824,0.899,3825,0.899,3826,0.899,3827,0.899,3828,1.638,3829,0.899,3830,6.583,3831,4.278,3832,0.899,3833,1.638,3834,0.899,3835,0.899,3836,1.638,3837,1.638,3838,0.899,3839,0.899,3840,0.899,3841,0.899,3842,1.638,3843,2.257,3844,0.899,3845,1.638,3846,0.899,3847,0.899,3848,0.899,3849,0.899,3850,4.792,3851,3.973,3852,2.783,3853,0.899,3854,3.235,3855,0.899,3856,1.638,3857,0.899,3858,0.899,3859,2.257,3860,0.899,3861,0.899,3862,0.899,3863,2.257,3864,2.257,3865,0.899,3866,0.899,3867,1.638,3868,1.638,3869,1.638,3870,0.899,3871,1.638,3872,0.899,3873,0.899,3874,0.899,3875,0.899,3876,0.899,3877,0.899,3878,2.257,3879,0.899,3880,0.899,3881,5.708,3882,0.899,3883,0.899,3884,0.899,3885,3.235,3886,3.235,3887,0.899,3888,0.899,3889,2.257,3890,0.899,3891,0.899,3892,2.783,3893,0.899,3894,1.638,3895,0.899,3896,0.899,3897,0.899,3898,0.899,3899,0.899,3900,1.638,3901,1.638,3902,0.899,3903,2.257,3904,0.899,3905,0.899,3906,1.638,3907,0.899,3908,0.899,3909,0.899,3910,0.899,3911,1.638,3912,1.638,3913,1.638,3914,4.549,3915,1.638,3916,3.628,3917,0.899,3918,0.899,3919,1.638,3920,2.257,3921,2.257,3922,2.783,3923,2.783,3924,2.257,3925,2.783,3926,1.638,3927,0.899,3928,3.235,3929,3.235,3930,0.899,3931,1.638,3932,1.638,3933,3.235,3934,1.638,3935,2.783,3936,2.783,3937,2.257,3938,5.556,3939,3.235,3940,0.899,3941,0.899,3942,0.899,3943,2.257,3944,1.638,3945,1.638,3946,0.899,3947,0.899,3948,0.899,3949,1.638,3950,0.899,3951,0.899,3952,0.899,3953,2.257,3954,0.899,3955,0.899,3956,1.638,3957,2.257,3958,0.899,3959,1.638,3960,0.899,3961,2.257,3962,0.899,3963,0.899,3964,1.638,3965,1.638,3966,3.628,3967,6.408,3968,2.257,3969,1.638,3970,1.638,3971,1.638,3972,1.638,3973,2.783,3974,1.638,3975,0.899,3976,0.899,3977,0.899,3978,0.899,3979,3.628,3980,1.638,3981,0.899,3982,0.899,3983,0.899,3984,0.899,3985,1.638,3986,0.899,3987,1.638,3988,0.899,3989,3.235,3990,2.783,3991,0.899,3992,5.012,3993,0.899,3994,0.899,3995,0.899,3996,0.899,3997,0.899,3998,0.899,3999,0.899,4000,0.899,4001,2.257,4002,3.235,4003,2.783,4004,2.783,4005,1.638,4006,0.899,4007,0.899,4008,1.638,4009,0.899,4010,0.899,4011,0.899,4012,1.638,4013,0.899,4014,0.899,4015,2.783,4016,0.899,4017,1.638,4018,0.899,4019,1.638,4020,0.899,4021,0.899,4022,2.257,4023,0.899,4024,0.899,4025,0.899,4026,0.899,4027,0.899,4028,1.638,4029,0.899,4030,0.899,4031,0.899,4032,0.899,4033,0.899,4034,2.257,4035,0.899,4036,0.899,4037,0.899,4038,0.899,4039,3.235,4040,0.899,4041,0.899,4042,2.783,4043,0.899,4044,0.899,4045,0.899,4046,0.899,4047,0.899,4048,0.899,4049,0.899,4050,1.638,4051,2.257,4052,0.899,4053,0.899,4054,0.899,4055,2.257,4056,0.899,4057,0.899,4058,2.257,4059,0.899,4060,1.638,4061,0.899,4062,0.899,4063,0.899,4064,0.899,4065,0.899,4066,0.899,4067,0.899,4068,0.899,4069,0.899,4070,0.899,4071,1.638,4072,0.899,4073,0.899,4074,0.899,4075,1.638,4076,1.638,4077,0.899,4078,0.899,4079,2.257,4080,0.899,4081,2.257,4082,1.638,4083,0.899,4084,1.638,4085,1.638,4086,0.899,4087,2.257,4088,3.973,4089,0.899,4090,1.638,4091,1.638,4092,0.899,4093,1.638,4094,0.899,4095,0.899,4096,0.899,4097,0.899,4098,0.899,4099,1.638,4100,0.899,4101,2.783,4102,0.899,4103,3.235,4104,0.899,4105,0.899,4106,0.899,4107,0.899,4108,0.899,4109,1.638,4110,1.638,4111,1.638,4112,2.257,4113,0.899,4114,1.638,4115,1.638,4116,0.899,4117,2.257,4118,0.899,4119,1.638,4120,0.899,4121,1.638,4122,0.899,4123,1.638,4124,0.899,4125,0.899,4126,1.638,4127,6.583,4128,1.638,4129,0.899,4130,3.235,4131,4.792,4132,2.257,4133,0.899,4134,0.899,4135,0.899,4136,2.783,4137,0.899,4138,0.899,4139,2.257,4140,1.638,4141,0.899,4142,0.899,4143,0.899,4144,2.783,4145,0.899,4146,0.899,4147,0.899,4148,0.899,4149,0.899,4150,2.783,4151,1.638,4152,1.638,4153,0.899,4154,0.899,4155,2.257,4156,0.899,4157,1.638,4158,2.257,4159,1.638,4160,0.899,4161,0.899,4162,0.899,4163,0.899,4164,1.638,4165,2.257,4166,0.899,4167,0.899,4168,1.638,4169,0.899,4170,0.899,4171,0.899,4172,0.899,4173,0.899,4174,0.899,4175,2.257,4176,1.638,4177,0.899,4178,0.899,4179,2.783,4180,0.899,4181,2.257,4182,0.899,4183,0.899,4184,1.638,4185,0.899,4186,0.899,4187,0.899,4188,2.257,4189,1.638,4190,0.899,4191,3.973,4192,1.638,4193,2.257,4194,2.783,4195,0.899,4196,0.899,4197,1.638,4198,0.899,4199,2.257,4200,0.899,4201,1.638,4202,0.899,4203,0.899,4204,0.899,4205,0.899,4206,2.257,4207,0.899,4208,1.638,4209,2.257,4210,1.638,4211,0.899,4212,1.638,4213,0.899,4214,0.899,4215,1.638,4216,1.638,4217,0.899,4218,0.899,4219,1.638,4220,0.899,4221,0.899,4222,0.899,4223,0.899,4224,0.899,4225,0.899,4226,0.899,4227,0.899,4228,0.899,4229,0.899,4230,1.638,4231,2.257,4232,0.899,4233,0.899,4234,0.899,4235,0.899,4236,0.899,4237,1.638,4238,0.899,4239,0.899,4240,0.899,4241,0.899,4242,0.899,4243,0.899,4244,0.899,4245,0.899,4246,0.899,4247,0.899,4248,0.899,4249,0.899,4250,0.899,4251,2.783,4252,0.899,4253,1.638,4254,0.899,4255,0.899,4256,0.899,4257,0.899,4258,0.899,4259,0.899,4260,0.899,4261,0.899,4262,0.899,4263,0.899,4264,2.257,4265,0.899,4266,0.789,4267,0.899,4268,0.899,4269,1.638,4270,0.899,4271,0.899,4272,0.899,4273,0.899,4274,0.899,4275,1.638,4276,1.638,4277,2.257,4278,0.899,4279,1.638,4280,0.899,4281,0.899,4282,0.899,4283,0.899,4284,2.257,4285,1.638,4286,0.899,4287,1.638,4288,1.638,4289,1.638,4290,0.899,4291,0.899,4292,0.899,4293,0.899,4294,0.899,4295,0.899,4296,1.638,4297,0.899,4298,0.899,4299,1.638,4300,0.899,4301,2.257,4302,0.899,4303,0.899,4304,0.899,4305,0.899,4306,0.899,4307,0.899,4308,0.899,4309,0.899,4310,0.899,4311,0.899,4312,0.899,4313,0.899,4314,0.899,4315,0.899,4316,1.638,4317,0.899,4318,0.899,4319,0.899,4320,0.899,4321,0.899,4322,0.899,4323,0.899,4324,0.899,4325,0.899,4326,0.899,4327,0.899,4328,0.899,4329,0.899,4330,0.899,4331,0.899,4332,0.899,4333,0.899,4334,2.257,4335,1.638,4336,0.899,4337,0.899,4338,0.899,4339,0.899,4340,0.899,4341,1.638,4342,0.899,4343,0.899,4344,1.638,4345,1.638,4346,0.899,4347,0.899,4348,0.899,4349,0.899,4350,0.899,4351,0.899,4352,0.899,4353,0.899,4354,0.899,4355,0.899,4356,0.899,4357,0.899,4358,0.899,4359,0.899,4360,0.899,4361,0.899,4362,0.899,4363,0.899,4364,0.899,4365,0.899,4366,0.899,4367,0.899,4368,0.899,4369,0.899,4370,0.899,4371,0.899]],["title/modules.html",[433,2.131]],["body/modules.html",[21,0.009,57,0.007,58,0.009,59,0.007,122,6.899,432,4.395,433,2.179,442,4.111,443,3.066,444,4.111,628,4.395,632,4.111,722,4.395,728,4.111,736,5.11,849,4.395,853,4.111,2723,6.949,2725,4.395,2729,4.111,2874,4.395,2878,4.111,3036,4.395,3040,4.111,3330,4.111,4372,8.705,4373,8.949,4374,8.643]],["title/overview.html",[3581,4.648]],["body/overview.html",[2,1.693,21,0.011,57,0.005,58,0.006,59,0.005,62,1.484,176,2.039,177,1.396,285,1.078,291,2.099,293,2.039,296,2.039,298,2.572,300,2.039,302,2.039,304,2.039,307,2.572,310,2.039,312,2.039,314,2.039,316,2.572,319,2.039,321,2.039,323,2.572,326,2.572,328,2.039,330,1.241,331,2.498,333,2.039,335,2.039,372,2.634,431,1.021,432,6.265,433,1.396,434,1.888,435,2.047,436,1.964,437,2.047,438,1.532,439,3.35,440,3.35,441,3.35,442,4.328,443,4.549,444,5.705,445,2.897,446,2.047,447,1.818,498,1.964,628,5.792,629,3.35,630,3.35,631,3.35,632,4.328,722,6.296,723,3.35,724,3.35,725,3.35,726,3.35,727,3.35,728,4.328,729,4.328,730,4.079,731,4.328,732,4.328,835,3.044,849,5.792,850,3.35,851,3.35,852,3.35,853,4.328,860,2.047,1069,3.33,1510,2.634,1527,3.044,2725,5.792,2726,3.35,2727,3.35,2728,3.35,2729,4.328,2812,5.303,2813,3.044,2874,5.973,2875,3.35,2876,3.35,2877,3.35,2878,4.328,2888,3.35,2889,3.35,2890,3.35,2891,5.303,3036,5.973,3037,3.35,3038,3.35,3039,3.35,3040,4.328,3326,3.35,3327,3.35,3328,3.35,3329,3.35,3330,4.328,3581,3.044,4266,3.35,4375,3.814,4376,3.814,4377,3.814]],["title/routes.html",[498,2.999]],["body/routes.html",[21,0.01,57,0.008,58,0.01,59,0.008,498,3.602]],["title/miscellaneous/typealiases.html",[3498,2.304,4378,5.118]],["body/miscellaneous/typealiases.html",[7,0.545,18,0.627,21,0.009,23,4.713,40,4.213,57,0.008,58,0.009,59,0.008,2476,4.005,2660,5.109,3498,4.441,4379,6.824,4380,5.994]],["title/miscellaneous/variables.html",[3498,2.304,3547,4.086]],["body/miscellaneous/variables.html",[1,0.696,6,0.95,7,0.117,11,2.507,13,1.008,14,0.9,15,1.008,16,0.818,17,3.569,18,0.576,19,2.4,21,0.011,22,0.37,23,1.008,24,1.008,25,1.008,26,1.008,27,0.95,28,0.95,29,1.889,30,1.008,32,0.9,33,1.955,34,1.008,35,1.008,36,1.008,37,0.723,38,1.008,39,0.9,42,0.648,45,2.031,47,0.783,49,1.555,50,0.95,51,1.477,52,2.578,53,1.555,54,1.555,55,1.008,57,0.002,58,0.003,59,0.002,63,1.165,68,1.48,73,1.555,89,1.862,91,0.475,93,0.753,94,2.013,95,1.791,114,1.637,123,1.856,135,2.274,141,3.018,144,2.251,146,2.013,147,3.38,148,2.013,149,1.282,150,2.013,151,2.013,152,1.083,153,1.862,171,0.9,181,0.519,228,2.352,282,2.166,320,0.843,329,0.489,344,1.741,378,0.857,495,1.008,505,2.626,507,2.872,508,2.872,509,2.346,511,4.051,551,1.48,554,1.641,622,0.818,668,1.008,742,1.165,745,1.862,757,2.923,762,1.078,763,1.165,764,1.165,800,1.248,817,1.008,831,2.457,832,1.555,834,1.008,984,1.862,986,0.857,1069,0.9,1100,2.013,1152,2.333,1175,1.862,1176,1.862,1178,1.862,1214,1.078,1313,1.008,1494,1.078,1495,1.165,1496,4.811,1502,1.165,1503,3.162,1504,1.165,1505,2.457,1506,1.165,1507,1.165,1508,2.013,1509,1.165,1510,1.008,1511,1.165,1512,1.165,1513,1.165,1514,1.078,1515,1.165,1516,1.078,1517,1.165,1518,1.008,1519,1.48,1520,1.282,1521,1.078,1522,1.282,1523,3.906,1524,3.38,1525,1.282,1526,3.906,1527,3.906,1528,3.906,1529,2.923,1530,1.282,1531,2.215,1532,3.303,1533,5.294,1534,3.57,1535,3.303,1536,3.929,1537,2.215,1538,1.282,1539,2.215,1540,1.282,1541,1.282,1542,1.282,1543,2.215,1544,1.282,1545,1.282,1546,1.282,1547,2.215,1548,1.282,1549,1.282,1550,1.282,1551,2.215,1552,2.923,1553,2.215,1554,2.215,1555,1.282,1556,1.282,1557,1.282,1558,1.282,1559,1.165,1560,1.282,1561,1.282,1562,1.282,1563,1.282,1564,1.282,1565,1.282,1566,1.282,1567,1.282,1568,1.282,1569,1.282,1570,1.282,1571,1.282,1572,1.282,1573,1.282,1574,1.282,1575,1.282,1576,1.282,1577,1.282,1578,1.282,1579,1.165,1580,1.282,1581,1.282,1582,1.282,1583,1.282,1584,1.282,1585,1.282,1586,1.282,1587,1.282,1588,1.282,1589,1.282,1590,1.282,1591,1.282,1592,1.282,1593,1.282,1594,1.282,1595,1.282,1596,2.215,1597,3.48,1598,1.282,1599,1.282,1600,1.282,1601,1.282,1602,1.282,1603,1.282,1604,1.282,1605,1.282,1606,1.282,1607,1.282,1608,1.282,1609,1.282,1610,1.282,1611,1.282,1612,1.282,1613,1.282,1614,1.282,1615,1.282,1616,1.282,1617,1.282,1618,1.282,1619,1.282,1620,1.282,1621,2.215,1622,1.282,1623,1.282,1624,1.282,1625,1.078,1626,1.282,1627,1.282,1628,1.282,1629,1.282,1630,1.282,1631,1.282,1632,1.282,1633,1.282,1634,1.282,1635,1.282,1636,1.282,1637,1.282,1638,1.282,1639,1.282,1640,1.282,1641,1.282,1642,1.282,1643,1.282,1644,1.282,1645,1.282,1646,1.282,1647,1.282,1648,1.282,1649,1.282,1650,1.282,1651,1.282,1652,1.282,1653,1.282,1654,1.282,1655,1.282,1656,2.215,1657,1.282,1658,1.282,1659,1.282,1660,1.282,1661,1.282,1662,1.282,1663,1.282,1664,1.282,1665,2.215,1666,1.282,1667,1.165,1668,1.282,1669,1.282,1670,1.282,1671,1.282,1672,1.282,1673,1.282,1674,1.282,1675,1.282,1676,1.282,1677,2.215,1678,1.282,1679,1.282,1680,1.282,1681,1.282,1682,1.282,1683,1.282,1684,1.282,1685,1.282,1686,1.282,1687,1.282,1688,1.282,1689,1.282,1690,1.282,1691,1.282,1692,1.282,1693,1.282,1694,1.282,1695,2.215,1696,2.013,1697,1.282,1698,1.282,1699,1.282,1700,1.282,1701,1.282,1702,1.282,1703,1.282,1704,1.282,1705,1.282,1706,1.282,1707,1.282,1708,1.282,1709,1.282,1710,1.282,1711,1.282,1712,1.282,1713,1.282,1714,1.282,1715,1.282,1716,1.165,1717,1.282,1718,1.282,1719,1.282,1720,1.282,1721,1.282,1722,1.282,1723,1.282,1724,1.282,1725,1.282,1726,1.282,1727,1.282,1728,1.282,1729,1.282,1730,1.282,1731,1.282,1732,1.282,1733,1.282,1734,1.282,1735,1.165,1736,1.282,1737,1.282,1738,1.282,1739,1.282,1740,1.282,1741,1.282,1742,1.282,1743,1.282,1744,1.282,1745,1.282,1746,1.282,1747,1.282,1748,1.282,1749,1.282,1750,1.282,1751,1.282,1752,1.282,1753,1.282,1754,2.215,1755,1.282,1756,1.282,1757,1.282,1758,1.282,1759,1.282,1760,1.282,1761,1.282,1762,1.165,1763,1.282,1764,1.165,1765,1.282,1766,1.282,1767,1.282,1768,1.282,1769,1.282,1770,1.165,1771,1.282,1772,1.282,1773,1.282,1774,1.282,1775,1.282,1776,1.282,1777,1.282,1778,1.282,1779,1.165,1780,1.282,1781,1.282,1782,2.013,1783,1.282,1784,1.282,1785,1.282,1786,1.282,1787,1.282,1788,1.165,1789,1.282,1790,1.165,1791,1.282,1792,1.282,1793,2.013,1794,1.282,1795,1.282,1796,1.282,1797,1.282,1798,2.215,1799,1.282,1800,1.282,1801,1.282,1802,1.282,1803,1.282,1804,1.282,1805,1.282,1806,1.282,1807,1.282,1808,1.282,1809,1.282,1810,1.282,1811,1.282,1812,1.282,1813,1.282,1814,1.282,1815,1.282,1816,1.282,1817,1.282,1818,1.282,1819,1.282,1820,1.282,1821,1.282,1822,1.282,1823,1.282,1824,1.282,1825,1.282,1826,1.282,1827,1.282,1828,1.282,1829,1.282,1830,1.282,1831,1.282,1832,1.282,1833,1.282,1834,1.282,1835,1.282,1836,1.282,1837,1.282,1838,1.282,1839,1.282,1840,1.282,1841,1.282,1842,2.215,1843,1.282,1844,1.282,1845,1.282,1846,1.282,1847,1.282,1848,1.282,1849,1.282,1850,1.282,1851,1.282,1852,1.282,1853,1.282,1854,1.282,1855,1.282,1856,1.282,1857,1.282,1858,1.282,1859,1.282,1860,2.923,1861,1.282,1862,1.282,1863,1.282,1864,1.282,1865,1.282,1866,1.282,1867,1.282,1868,1.282,1869,1.282,1870,1.282,1871,1.282,1872,1.282,1873,1.282,1874,1.282,1875,1.282,1876,1.282,1877,1.282,1878,1.282,1879,1.282,1880,1.282,1881,1.282,1882,1.282,1883,1.282,1884,1.282,1885,1.282,1886,1.282,1887,1.282,1888,1.282,1889,1.282,1890,1.282,1891,1.282,1892,1.282,1893,1.282,1894,1.282,1895,1.282,1896,1.282,1897,1.282,1898,1.282,1899,1.282,1900,1.282,1901,1.282,1902,1.282,1903,1.282,1904,1.282,1905,1.282,1906,1.282,1907,1.282,1908,1.282,1909,1.282,1910,1.282,1911,1.282,1912,1.282,1913,1.282,1914,1.282,1915,1.282,1916,1.282,1917,1.282,1918,1.282,1919,1.282,1920,1.282,1921,1.282,1922,1.282,1923,1.282,1924,1.282,1925,1.282,1926,1.282,1927,1.282,1928,1.282,1929,1.282,1930,1.282,1931,1.282,1932,1.282,1933,1.282,1934,1.282,1935,1.282,1936,1.282,1937,1.282,1938,1.282,1939,1.282,1940,1.282,1941,1.282,1942,1.282,1943,1.282,1944,1.282,1945,1.282,1946,1.282,1947,1.282,1948,1.282,1949,2.215,1950,1.282,1951,2.013,1952,1.282,1953,1.282,1954,1.282,1955,1.282,1956,1.282,1957,1.282,1958,1.282,1959,1.282,1960,1.282,1961,1.282,1962,1.282,1963,1.282,1964,1.282,1965,1.282,1966,1.282,1967,1.282,1968,1.165,1969,1.282,1970,1.282,1971,1.282,1972,1.282,1973,1.282,1974,1.282,1975,1.282,1976,1.282,1977,1.282,1978,1.282,1979,1.282,1980,2.215,1981,2.215,1982,1.282,1983,2.013,1984,1.282,1985,1.282,1986,1.282,1987,1.282,1988,1.282,1989,2.013,1990,1.282,1991,1.282,1992,1.282,1993,1.282,1994,1.282,1995,1.282,1996,1.282,1997,1.282,1998,1.282,1999,1.282,2000,1.282,2001,1.282,2002,1.282,2003,1.282,2004,1.282,2005,1.282,2006,1.282,2007,1.282,2008,1.282,2009,1.282,2010,1.282,2011,1.165,2012,1.165,2013,1.282,2014,1.282,2015,1.282,2016,2.215,2017,1.282,2018,1.282,2019,1.282,2020,1.282,2021,1.282,2022,1.282,2023,1.282,2024,2.215,2025,1.282,2026,1.282,2027,1.282,2028,1.282,2029,1.282,2030,1.282,2031,1.282,2032,1.282,2033,1.282,2034,1.282,2035,1.282,2036,1.282,2037,1.282,2038,1.282,2039,1.282,2040,1.282,2041,1.282,2042,1.282,2043,1.282,2044,1.282,2045,1.282,2046,1.282,2047,1.282,2048,1.282,2049,1.282,2050,1.282,2051,1.165,2052,1.282,2053,1.282,2054,1.282,2055,1.282,2056,1.282,2057,2.013,2058,1.282,2059,1.282,2060,1.282,2061,1.282,2062,1.282,2063,1.282,2064,1.282,2065,1.165,2066,1.282,2067,1.282,2068,1.282,2069,1.282,2070,1.282,2071,1.282,2072,1.282,2073,1.282,2074,1.282,2075,1.282,2076,1.282,2077,1.282,2078,1.282,2079,1.282,2080,1.282,2081,1.282,2082,1.282,2083,1.282,2084,1.282,2085,1.282,2086,1.282,2087,1.282,2088,1.282,2089,1.282,2090,1.282,2091,1.282,2092,1.282,2093,1.282,2094,1.282,2095,1.282,2096,1.282,2097,1.282,2098,1.282,2099,1.282,2100,1.282,2101,1.282,2102,1.282,2103,1.282,2104,1.282,2105,1.282,2106,1.282,2107,1.282,2108,1.282,2109,1.282,2110,1.282,2111,1.282,2112,1.282,2113,1.282,2114,1.282,2115,1.282,2116,2.013,2117,2.215,2118,3.48,2119,1.282,2120,1.282,2121,1.282,2122,1.282,2123,1.282,2124,1.282,2125,1.282,2126,1.282,2127,1.282,2128,1.282,2129,1.282,2130,1.282,2131,1.282,2132,1.282,2133,1.282,2134,2.215,2135,1.282,2136,1.282,2137,2.215,2138,1.282,2139,1.282,2140,1.282,2141,2.923,2142,2.923,2143,1.282,2144,1.282,2145,2.215,2146,2.215,2147,2.215,2148,1.282,2149,1.282,2150,1.282,2151,1.282,2152,1.282,2153,1.282,2154,1.282,2155,1.282,2156,1.282,2157,1.282,2158,1.282,2159,1.282,2160,1.282,2161,1.282,2162,1.282,2163,1.282,2164,1.282,2165,1.282,2166,1.282,2167,1.282,2168,1.282,2169,1.282,2170,1.282,2171,1.282,2172,1.282,2173,1.282,2174,1.282,2175,1.282,2176,1.282,2177,1.282,2178,1.282,2179,1.282,2180,1.282,2181,2.215,2182,1.282,2183,1.282,2184,1.282,2185,1.282,2186,1.282,2187,1.282,2188,1.282,2189,1.282,2190,1.282,2191,1.282,2192,1.282,2193,1.282,2194,2.215,2195,1.282,2196,1.282,2197,1.282,2198,2.215,2199,1.282,2200,1.282,2201,1.282,2202,1.282,2203,1.282,2204,1.282,2205,1.282,2206,1.282,2207,1.282,2208,1.282,2209,1.282,2210,1.282,2211,1.282,2212,1.282,2213,1.282,2214,1.282,2215,1.282,2216,1.282,2217,1.282,2218,1.282,2219,1.282,2220,1.282,2221,1.282,2222,1.282,2223,1.282,2224,1.282,2225,2.923,2226,1.282,2227,1.282,2228,1.282,2229,1.282,2230,1.282,2231,1.282,2232,1.282,2233,1.282,2234,1.282,2235,1.282,2236,1.282,2237,1.282,2238,1.282,2239,2.215,2240,1.282,2241,1.282,2242,1.282,2243,1.282,2244,1.282,2245,1.282,2246,1.282,2247,2.215,2248,1.282,2249,1.282,2250,1.282,2251,1.282,2252,1.282,2253,1.165,2254,1.282,2255,1.282,2256,1.282,2257,1.282,2258,0.9,2259,1.282,2260,1.282,2261,1.282,2262,1.282,2263,1.282,2264,1.282,2265,1.282,2266,2.215,2267,1.282,2268,1.282,2269,2.215,2270,1.282,2271,1.282,2272,1.282,2273,1.282,2274,1.282,2275,1.282,2276,1.282,2277,1.282,2278,1.282,2279,1.282,2280,1.282,2281,1.282,2282,1.282,2283,1.282,2284,1.282,2285,1.282,2286,2.923,2287,1.282,2288,1.282,2289,1.282,2290,1.282,2291,1.282,2292,1.282,2293,1.282,2294,1.282,2295,1.282,2296,1.282,2297,1.282,2298,1.282,2299,1.282,2300,1.282,2301,1.282,2302,1.282,2303,1.282,2304,1.282,2305,2.215,2306,1.282,2307,1.282,2308,1.282,2309,1.282,2310,1.282,2311,1.282,2312,1.282,2313,1.282,2314,1.282,2315,1.282,2316,1.282,2317,1.282,2318,1.282,2319,1.282,2320,1.282,2321,1.282,2322,1.282,2323,2.215,2324,1.282,2325,1.282,2326,1.282,2327,1.282,2328,2.923,2329,2.923,2330,1.282,2331,2.215,2332,1.282,2333,1.282,2334,1.282,2335,1.282,2336,1.282,2337,1.282,2338,1.282,2339,1.282,2340,1.282,2341,1.282,2342,1.282,2343,1.282,2344,1.282,2345,1.282,2346,2.923,2347,1.282,2348,1.282,2349,1.282,2350,1.282,2351,1.282,2352,1.282,2353,1.282,2354,1.282,2355,1.282,2356,1.282,2357,1.282,2358,1.282,2359,1.282,2360,1.282,2361,1.282,2362,1.282,2363,1.282,2364,1.282,2365,2.013,2366,2.215,2367,2.215,2368,1.282,2369,1.282,2370,2.013,2371,1.282,2372,1.282,2373,1.282,2374,1.282,2375,1.165,2376,1.165,2476,1.48,2477,1.862,2549,2.925,2550,1.48,2551,1.862,2552,1.165,2660,1.641,2687,1.078,2952,1.165,2953,2.657,2972,1.282,3139,1.165,3191,2.215,3192,2.013,3415,2.013,3420,1.165,3423,2.215,3439,1.282,3445,1.282,3446,1.282,3447,1.282,3498,0.95,3503,1.282,3547,1.165,3559,2.923,4380,2.215,4381,2.521,4382,2.521,4383,5.803,4384,1.46,4385,1.46,4386,1.46,4387,1.46,4388,1.46,4389,1.46,4390,3.328,4391,3.328,4392,3.328,4393,3.328,4394,3.328,4395,3.328,4396,3.328,4397,3.328,4398,3.328,4399,2.521,4400,2.521,4401,3.328,4402,3.328,4403,3.328,4404,2.521,4405,2.521,4406,3.328,4407,3.328,4408,3.328,4409,1.46,4410,3.328,4411,3.328,4412,1.46,4413,1.46,4414,1.46,4415,1.46,4416,1.46,4417,1.46,4418,1.46]]],"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/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/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/typealiases.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/Signer.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["0.0",{"_index":602,"title":{},"body":{"components/AdminComponent.html":{}}}],["0.0.7",{"_index":3467,"title":{},"body":{"dependencies.html":{}}}],["0.1.0",{"_index":3482,"title":{},"body":{"dependencies.html":{}}}],["0.1.4",{"_index":3466,"title":{},"body":{"dependencies.html":{}}}],["0.10.2",{"_index":3497,"title":{},"body":{"dependencies.html":{}}}],["0.2",{"_index":603,"title":{},"body":{"components/AdminComponent.html":{}}}],["0.2.4",{"_index":3462,"title":{},"body":{"dependencies.html":{}}}],["0/1",{"_index":3410,"title":{},"body":{"coverage.html":{}}}],["0/10",{"_index":3437,"title":{},"body":{"coverage.html":{}}}],["0/11",{"_index":3428,"title":{},"body":{"coverage.html":{}}}],["0/12",{"_index":3444,"title":{},"body":{"coverage.html":{}}}],["0/14",{"_index":3434,"title":{},"body":{"coverage.html":{}}}],["0/15",{"_index":3443,"title":{},"body":{"coverage.html":{}}}],["0/16",{"_index":3438,"title":{},"body":{"coverage.html":{}}}],["0/17",{"_index":3442,"title":{},"body":{"coverage.html":{}}}],["0/18",{"_index":3436,"title":{},"body":{"coverage.html":{}}}],["0/2",{"_index":3413,"title":{},"body":{"coverage.html":{}}}],["0/26",{"_index":3433,"title":{},"body":{"coverage.html":{}}}],["0/3",{"_index":3406,"title":{},"body":{"coverage.html":{}}}],["0/33",{"_index":3440,"title":{},"body":{"coverage.html":{}}}],["0/4",{"_index":3429,"title":{},"body":{"coverage.html":{}}}],["0/43",{"_index":3441,"title":{},"body":{"coverage.html":{}}}],["0/5",{"_index":3430,"title":{},"body":{"coverage.html":{}}}],["0/6",{"_index":3417,"title":{},"body":{"coverage.html":{}}}],["0/7",{"_index":3435,"title":{},"body":{"coverage.html":{}}}],["0/8",{"_index":3432,"title":{},"body":{"coverage.html":{}}}],["0/9",{"_index":3431,"title":{},"body":{"coverage.html":{}}}],["04/02/2020",{"_index":3360,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["05/28/2020",{"_index":3371,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["08/16/2020",{"_index":3353,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0px",{"_index":591,"title":{},"body":{"components/AdminComponent.html":{}}}],["0x3da99aad2d9ca01d131efc3b17444b832b31ff4a",{"_index":1536,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x4a6fa6bc3bfe4c9661bc692d9798425350c9e3d4",{"_index":1550,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x51d3c8e2e421604e2b644117a362d589c5434739",{"_index":3390,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0x6ca3cb14aa6f761712e1c18646afba4d5ae249e8",{"_index":4416,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0x8fa4101ef19d0a078239d035659e92b278bd083c",{"_index":1546,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x9ced86089f7abb5a97b40eb0e7521e7aa308d354",{"_index":1538,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x9d7c284907acbd4a0ce2ddd0aa69147a921a573d",{"_index":3391,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0xa686005ce37dce7738436256982c3903f2e4ea8e",{"_index":1523,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["0xaf1b487491073c2d49136db3fd87e293302cf839",{"_index":4412,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0xc0ffee254729296a45a3885639ac7e10f9d54979",{"_index":161,"title":{},"body":{"classes/AccountIndex.html":{}}}],["0xc63cfa91a3bff41ce31ff436f67d3acbc977db95",{"_index":1542,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0xc80d6aff8194114c52aecd84c9f15fd5c8abb187",{"_index":1530,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0xc86ff893ac40d3950b4d5f94a9b837258b0a9865",{"_index":3352,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0xea6225212005e86a4490018ded4bf37f3e772161",{"_index":4409,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0xeb3907ecad74a0013c259d5874ae7f22dcbcc95c",{"_index":4411,"title":{},"body":{"miscellaneous/variables.html":{}}}],["1",{"_index":171,"title":{},"body":{"classes/AccountIndex.html":{},"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["1.0.0",{"_index":3471,"title":{},"body":{"dependencies.html":{}}}],["1.10.22",{"_index":3474,"title":{},"body":{"dependencies.html":{}}}],["1.16.1",{"_index":3487,"title":{},"body":{"dependencies.html":{}}}],["1.3.0",{"_index":3495,"title":{},"body":{"dependencies.html":{}}}],["1/1",{"_index":3404,"title":{},"body":{"coverage.html":{}}}],["10",{"_index":372,"title":{},"body":{"components/AccountsComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TransactionsComponent.html":{},"license.html":{},"overview.html":{}}}],["10.2.0",{"_index":3452,"title":{},"body":{"dependencies.html":{},"index.html":{}}}],["10.2.7",{"_index":3454,"title":{},"body":{"dependencies.html":{}}}],["10/10/2020",{"_index":3376,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["100",{"_index":378,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{},"injectables/BlockSyncService.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["100)).subscribe(async",{"_index":271,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["1000",{"_index":1509,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["1000000",{"_index":1533,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["1000000000000000001014",{"_index":1539,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["1000000001000000000000000000",{"_index":1525,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["100990",{"_index":1551,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["11",{"_index":3894,"title":{},"body":{"license.html":{}}}],["11/16/2020",{"_index":3366,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["12987",{"_index":3354,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["13",{"_index":4266,"title":{},"body":{"license.html":{},"overview.html":{}}}],["15",{"_index":4090,"title":{},"body":{"license.html":{}}}],["151.002995",{"_index":3394,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["1595537208",{"_index":3388,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["16",{"_index":4091,"title":{},"body":{"license.html":{}}}],["17",{"_index":4375,"title":{},"body":{"overview.html":{}}}],["18",{"_index":1527,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["1996",{"_index":3899,"title":{},"body":{"license.html":{}}}],["2",{"_index":1069,"title":{},"body":{"injectables/BlockSyncService.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/TokenRegistry.html":{},"classes/UserServiceStub.html":{},"license.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["2.0.0",{"_index":3491,"title":{},"body":{"dependencies.html":{}}}],["2.1.4",{"_index":3489,"title":{},"body":{"dependencies.html":{}}}],["2.10.0",{"_index":3494,"title":{},"body":{"dependencies.html":{}}}],["2.4.2",{"_index":3483,"title":{},"body":{"dependencies.html":{}}}],["2.5.4",{"_index":3459,"title":{},"body":{"dependencies.html":{}}}],["2.9.4",{"_index":3465,"title":{},"body":{"dependencies.html":{}}}],["20",{"_index":376,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["200",{"_index":817,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["2007",{"_index":3588,"title":{},"body":{"license.html":{}}}],["2020",{"_index":1340,"title":{},"body":{"components/FooterComponent.html":{}}}],["2021",{"_index":4341,"title":{},"body":{"license.html":{}}}],["21",{"_index":4376,"title":{},"body":{"overview.html":{}}}],["22.430670",{"_index":3393,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25412341234",{"_index":3359,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25412345678",{"_index":3351,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25462518374",{"_index":3375,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25498765432",{"_index":3365,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25498769876",{"_index":3370,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["28",{"_index":4247,"title":{},"body":{"license.html":{}}}],["29",{"_index":3586,"title":{},"body":{"license.html":{}}}],["3",{"_index":668,"title":{},"body":{"components/AppComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.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":3478,"title":{},"body":{"dependencies.html":{}}}],["3/5",{"_index":3449,"title":{},"body":{"coverage.html":{}}}],["30",{"_index":4146,"title":{},"body":{"license.html":{}}}],["3000",{"_index":3109,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["300px",{"_index":1285,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["32",{"_index":3259,"title":{},"body":{"injectables/TransactionService.html":{}}}],["39;0xc0ffee254729296a45a3885639ac7e10f9d54979'",{"_index":108,"title":{},"body":{"classes/AccountIndex.html":{}}}],["39;2'",{"_index":2969,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["39;sarafu'",{"_index":2963,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["4",{"_index":1510,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"license.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["4.10.10",{"_index":3485,"title":{},"body":{"dependencies.html":{}}}],["4.2.1",{"_index":3484,"title":{},"body":{"dependencies.html":{}}}],["4.5.3",{"_index":3463,"title":{},"body":{"dependencies.html":{}}}],["400",{"_index":2471,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["401",{"_index":937,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["401/403",{"_index":815,"title":{},"body":{"components/AuthComponent.html":{}}}],["403",{"_index":980,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["450",{"_index":3367,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["5",{"_index":1514,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["5.0.31",{"_index":3476,"title":{},"body":{"dependencies.html":{}}}],["50",{"_index":377,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{}}}],["51",{"_index":4377,"title":{},"body":{"overview.html":{}}}],["56",{"_index":2252,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["5621",{"_index":3372,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["56281",{"_index":3361,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["6",{"_index":1516,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"pipes/TokenRatioPipe.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["6.6.0",{"_index":3488,"title":{},"body":{"dependencies.html":{}}}],["60",{"_index":3448,"title":{},"body":{"coverage.html":{},"license.html":{}}}],["6b",{"_index":3986,"title":{},"body":{"license.html":{}}}],["6d",{"_index":4010,"title":{},"body":{"license.html":{}}}],["6rem",{"_index":627,"title":{},"body":{"components/AdminComponent.html":{}}}],["7",{"_index":3926,"title":{},"body":{"license.html":{}}}],["768px",{"_index":666,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["8",{"_index":3233,"title":{},"body":{"injectables/TransactionService.html":{}}}],["8.2.1",{"_index":3480,"title":{},"body":{"dependencies.html":{}}}],["8/8",{"_index":3405,"title":{},"body":{"coverage.html":{}}}],["8000000",{"_index":3247,"title":{},"body":{"injectables/TransactionService.html":{}}}],["817",{"_index":3377,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["8996",{"_index":4391,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9.0.2",{"_index":3460,"title":{},"body":{"dependencies.html":{}}}],["9/9",{"_index":3402,"title":{},"body":{"coverage.html":{}}}],["99000",{"_index":1543,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["9981",{"_index":1547,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["99999999999999998976",{"_index":1531,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["_eth",{"_index":3028,"title":{},"body":{"components/TokensComponent.html":{}}}],["_key",{"_index":2565,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["_key.err",{"_index":2567,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["_models",{"_index":586,"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":3234,"title":{},"body":{"injectables/TransactionService.html":{}}}],["abicoder.encode(['address",{"_index":3236,"title":{},"body":{"injectables/TransactionService.html":{}}}],["ability",{"_index":4057,"title":{},"body":{"license.html":{}}}],["above",{"_index":2422,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["absence",{"_index":3927,"title":{},"body":{"license.html":{}}}],["absolute",{"_index":4323,"title":{},"body":{"license.html":{}}}],["absolutely",{"_index":4353,"title":{},"body":{"license.html":{}}}],["abstractcontrol",{"_index":1239,"title":{},"body":{"classes/CustomValidator.html":{}}}],["abuse",{"_index":3690,"title":{},"body":{"license.html":{}}}],["academy",{"_index":1584,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["accept",{"_index":4151,"title":{},"body":{"license.html":{}}}],["acceptance",{"_index":4150,"title":{},"body":{"license.html":{}}}],["acces",{"_index":2029,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["access",{"_index":991,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["accessible",{"_index":4218,"title":{},"body":{"license.html":{}}}],["accessors",{"_index":211,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["accompanied",{"_index":3968,"title":{},"body":{"license.html":{}}}],["accompanies",{"_index":4327,"title":{},"body":{"license.html":{}}}],["accord",{"_index":3925,"title":{},"body":{"license.html":{}}}],["according",{"_index":4318,"title":{},"body":{"license.html":{}}}],["accordingly",{"_index":1308,"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":{},"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":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/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":464,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["account.component.html",{"_index":1174,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.scss",{"_index":1173,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts",{"_index":1172,"title":{},"body":{"components/CreateAccountComponent.html":{},"coverage.html":{}}}],["account.component.ts:15",{"_index":1187,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:16",{"_index":1188,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:17",{"_index":1189,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:18",{"_index":1186,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:19",{"_index":1185,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:20",{"_index":1184,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:21",{"_index":1181,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:29",{"_index":1182,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:48",{"_index":1191,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:50",{"_index":1183,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.type",{"_index":418,"title":{},"body":{"components/AccountsComponent.html":{}}}],["account/create",{"_index":463,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"components/CreateAccountComponent.html":{},"coverage.html":{}}}],["accountant",{"_index":1669,"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":291,"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/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":3221,"title":{},"body":{"injectables/TransactionService.html":{}}}],["accountinfo.vcard",{"_index":3223,"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":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/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":342,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounts.component.scss",{"_index":341,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounts.push(account",{"_index":173,"title":{},"body":{"classes/AccountIndex.html":{}}}],["accountscomponent",{"_index":293,"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/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/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":432,"title":{"modules/AccountsModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules.html":{},"overview.html":{}}}],["accountsroutingmodule",{"_index":442,"title":{"modules/AccountsRoutingModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["accountstype",{"_index":343,"title":{},"body":{"components/AccountsComponent.html":{}}}],["accounttype",{"_index":421,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{}}}],["accounttypes",{"_index":344,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["achieve",{"_index":4333,"title":{},"body":{"license.html":{}}}],["acknowledges",{"_index":3861,"title":{},"body":{"license.html":{}}}],["acquired",{"_index":4197,"title":{},"body":{"license.html":{}}}],["action",{"_index":505,"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":619,"title":{},"body":{"components/AdminComponent.html":{}}}],["action.approval",{"_index":624,"title":{},"body":{"components/AdminComponent.html":{}}}],["action.id",{"_index":2427,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["action.role",{"_index":618,"title":{},"body":{"components/AdminComponent.html":{}}}],["action.user",{"_index":617,"title":{},"body":{"components/AdminComponent.html":{}}}],["actions",{"_index":554,"title":{},"body":{"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["actions.find(action",{"_index":2426,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["activatedroute",{"_index":2925,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["activatedroutesnapshot",{"_index":840,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["activatedroutestub",{"_index":513,"title":{"classes/ActivatedRouteStub.html":{}},"body":{"classes/ActivatedRouteStub.html":{},"coverage.html":{}}}],["activateroute",{"_index":517,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["activities",{"_index":3771,"title":{},"body":{"license.html":{}}}],["activity",{"_index":4243,"title":{},"body":{"license.html":{}}}],["actual",{"_index":4223,"title":{},"body":{"license.html":{}}}],["actual_component",{"_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/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":4033,"title":{},"body":{"license.html":{}}}],["adapt",{"_index":3744,"title":{},"body":{"license.html":{}}}],["add",{"_index":525,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"components/AuthComponent.html":{},"license.html":{}}}],["add0x",{"_index":3184,"title":{},"body":{"injectables/TransactionService.html":{}}}],["add0x(tohex(tx.serializerlp",{"_index":3264,"title":{},"body":{"injectables/TransactionService.html":{}}}],["added",{"_index":3924,"title":{},"body":{"license.html":{}}}],["additional",{"_index":3938,"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":3741,"title":{},"body":{"license.html":{}}}],["addresses",{"_index":137,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addressof",{"_index":2954,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressof('sarafu'",{"_index":2964,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressof('sarafu",{"_index":2973,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressof(identifier",{"_index":2959,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressreturned",{"_index":1091,"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":3143,"title":{},"body":{"injectables/TransactionService.html":{}}}],["addtransaction(transaction",{"_index":3152,"title":{},"body":{"injectables/TransactionService.html":{}}}],["admin",{"_index":551,"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":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/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":553,"title":{},"body":{"components/AdminComponent.html":{}}}],["admin.component.scss",{"_index":552,"title":{},"body":{"components/AdminComponent.html":{}}}],["admin_reserve",{"_index":2863,"title":{},"body":{"components/SettingsComponent.html":{}}}],["admincomponent",{"_index":296,"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/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":628,"title":{"modules/AdminModule.html":{}},"body":{"modules/AdminModule.html":{},"modules.html":{},"overview.html":{}}}],["adminroutingmodule",{"_index":632,"title":{"modules/AdminRoutingModule.html":{}},"body":{"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["adopted",{"_index":3897,"title":{},"body":{"license.html":{}}}],["adversely",{"_index":4065,"title":{},"body":{"license.html":{}}}],["advised",{"_index":4313,"title":{},"body":{"license.html":{}}}],["affects",{"_index":4066,"title":{},"body":{"license.html":{}}}],["affero",{"_index":4264,"title":{},"body":{"license.html":{}}}],["affirmed",{"_index":4180,"title":{},"body":{"license.html":{}}}],["affirms",{"_index":3857,"title":{},"body":{"license.html":{}}}],["afterviewinit",{"_index":3276,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["again",{"_index":685,"title":{},"body":{"components/AppComponent.html":{}}}],["against",{"_index":3913,"title":{},"body":{"license.html":{}}}],["age",{"_index":10,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["agent",{"_index":1667,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["aggregate",{"_index":3953,"title":{},"body":{"license.html":{}}}],["agree",{"_index":4259,"title":{},"body":{"license.html":{}}}],["agreed",{"_index":4300,"title":{},"body":{"license.html":{}}}],["agreement",{"_index":4209,"title":{},"body":{"license.html":{}}}],["agrovet",{"_index":1952,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["aim",{"_index":3686,"title":{},"body":{"license.html":{}}}],["airtime",{"_index":2032,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["alert('access",{"_index":1329,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["alert('account",{"_index":275,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["alg",{"_index":1140,"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/Signer.html":{}}}],["aliases",{"_index":4379,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["alleging",{"_index":4187,"title":{},"body":{"license.html":{}}}],["allow",{"_index":3710,"title":{},"body":{"license.html":{}}}],["allowed",{"_index":1331,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"license.html":{}}}],["allows",{"_index":69,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["along",{"_index":3929,"title":{},"body":{"license.html":{}}}],["alpha.3",{"_index":3472,"title":{},"body":{"dependencies.html":{}}}],["alpha.6",{"_index":3468,"title":{},"body":{"dependencies.html":{}}}],["already",{"_index":116,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{}}}],["alternative",{"_index":3982,"title":{},"body":{"license.html":{}}}],["although",{"_index":3682,"title":{},"body":{"license.html":{}}}],["amani",{"_index":2143,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["amount",{"_index":3116,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["ancillary",{"_index":4153,"title":{},"body":{"license.html":{}}}],["and/or",{"_index":3666,"title":{},"body":{"license.html":{}}}],["andshow",{"_index":4357,"title":{},"body":{"license.html":{}}}],["angular",{"_index":460,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AppModule.html":{},"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"modules/TransactionsModule.html":{},"dependencies.html":{},"index.html":{}}}],["angular/animations",{"_index":585,"title":{},"body":{"components/AdminComponent.html":{},"dependencies.html":{}}}],["angular/cdk",{"_index":3453,"title":{},"body":{"dependencies.html":{}}}],["angular/cli",{"_index":3530,"title":{},"body":{"index.html":{}}}],["angular/common",{"_index":451,"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":744,"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":3455,"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/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":3456,"title":{},"body":{"dependencies.html":{}}}],["angular/material/button",{"_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":{}}}],["angular/material/card",{"_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":{}}}],["angular/material/checkbox",{"_index":468,"title":{},"body":{"modules/AccountsModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/core",{"_index":487,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"classes/CustomErrorStateMatcher.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/dialog",{"_index":1265,"title":{},"body":{"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{}}}],["angular/material/form",{"_index":473,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/icon",{"_index":480,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/input",{"_index":471,"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":2886,"title":{},"body":{"modules/SettingsModule.html":{}}}],["angular/material/paginator",{"_index":388,"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":489,"title":{},"body":{"modules/AccountsModule.html":{}}}],["angular/material/radio",{"_index":2884,"title":{},"body":{"modules/SettingsModule.html":{}}}],["angular/material/select",{"_index":482,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/sidenav",{"_index":3047,"title":{},"body":{"modules/TokensModule.html":{}}}],["angular/material/snack",{"_index":494,"title":{},"body":{"modules/AccountsModule.html":{},"components/TransactionDetailsComponent.html":{},"modules/TransactionsModule.html":{}}}],["angular/material/sort",{"_index":389,"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":387,"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":485,"title":{},"body":{"modules/AccountsModule.html":{}}}],["angular/material/toolbar",{"_index":3049,"title":{},"body":{"modules/TokensModule.html":{}}}],["angular/platform",{"_index":735,"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":{}}}],["animate",{"_index":580,"title":{},"body":{"components/AdminComponent.html":{}}}],["animate('225ms",{"_index":599,"title":{},"body":{"components/AdminComponent.html":{}}}],["animations",{"_index":587,"title":{},"body":{"components/AdminComponent.html":{}}}],["anti",{"_index":3884,"title":{},"body":{"license.html":{}}}],["anyone",{"_index":3936,"title":{},"body":{"license.html":{}}}],["anything",{"_index":3757,"title":{},"body":{"license.html":{}}}],["api",{"_index":2383,"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/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":640,"title":{},"body":{"components/AppComponent.html":{}}}],["app.component.scss",{"_index":639,"title":{},"body":{"components/AppComponent.html":{}}}],["app.module",{"_index":3545,"title":{},"body":{"index.html":{}}}],["app/_eth",{"_index":2992,"title":{},"body":{"injectables/TokenService.html":{}}}],["app/_guards",{"_index":747,"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":911,"title":{},"body":{"injectables/AuthService.html":{}}}],["app/_interceptors",{"_index":751,"title":{},"body":{"modules/AppModule.html":{}}}],["app/_models",{"_index":393,"title":{},"body":{"components/AccountsComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["app/_models/account",{"_index":1150,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["app/_models/staff",{"_index":2849,"title":{},"body":{"components/SettingsComponent.html":{}}}],["app/_pgp",{"_index":753,"title":{},"body":{"modules/AppModule.html":{},"injectables/AuthService.html":{}}}],["app/_pgp/pgp",{"_index":2686,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.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":3190,"title":{},"body":{"injectables/TransactionService.html":{}}}],["app/_services/error",{"_index":908,"title":{},"body":{"injectables/AuthService.html":{}}}],["app/_services/logging.service",{"_index":907,"title":{},"body":{"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{}}}],["app/_services/registry.service",{"_index":1074,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["app/_services/transaction.service",{"_index":1073,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["app/_services/user.service",{"_index":3179,"title":{},"body":{"injectables/TransactionService.html":{}}}],["app/app",{"_index":738,"title":{},"body":{"modules/AppModule.html":{}}}],["app/app.component",{"_index":739,"title":{},"body":{"modules/AppModule.html":{}}}],["app/auth/_directives/password",{"_index":857,"title":{},"body":{"modules/AuthModule.html":{}}}],["app/auth/auth",{"_index":855,"title":{},"body":{"modules/AuthModule.html":{}}}],["app/auth/auth.component",{"_index":856,"title":{},"body":{"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{}}}],["app/shared/_directives/menu",{"_index":2896,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/_pipes/safe.pipe",{"_index":2901,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/_pipes/token",{"_index":2898,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/error",{"_index":1280,"title":{},"body":{"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{}}}],["app/shared/footer/footer.component",{"_index":2894,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/shared.module",{"_index":455,"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":2895,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/topbar/topbar.component",{"_index":2893,"title":{},"body":{"modules/SharedModule.html":{}}}],["appcomponent",{"_index":298,"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/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":3763,"title":{},"body":{"license.html":{}}}],["application",{"_index":142,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["application/json",{"_index":931,"title":{},"body":{"injectables/AuthService.html":{}}}],["applications",{"_index":4366,"title":{},"body":{"license.html":{}}}],["applied",{"_index":3717,"title":{},"body":{"license.html":{}}}],["applies",{"_index":3622,"title":{},"body":{"license.html":{}}}],["apply",{"_index":3626,"title":{},"body":{"license.html":{}}}],["appmenuselection",{"_index":1472,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["appmenuselection]'},{'name",{"_index":332,"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/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":1485,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["appmenutoggle]'},{'name",{"_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":{},"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":722,"title":{"modules/AppModule.html":{}},"body":{"modules/AppModule.html":{},"modules.html":{},"overview.html":{}}}],["apppasswordtoggle",{"_index":2749,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["apppasswordtoggle]'},{'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/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":3782,"title":{},"body":{"license.html":{}}}],["appropriately",{"_index":3918,"title":{},"body":{"license.html":{}}}],["approutingmodule",{"_index":728,"title":{"modules/AppRoutingModule.html":{}},"body":{"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["approval",{"_index":507,"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":555,"title":{},"body":{"components/AdminComponent.html":{}}}],["approvalstatus(action.approval",{"_index":620,"title":{},"body":{"components/AdminComponent.html":{}}}],["approvalstatus(status",{"_index":560,"title":{},"body":{"components/AdminComponent.html":{}}}],["approve",{"_index":577,"title":{},"body":{"components/AdminComponent.html":{}}}],["approveaction",{"_index":556,"title":{},"body":{"components/AdminComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{}}}],["approveaction(action",{"_index":563,"title":{},"body":{"components/AdminComponent.html":{}}}],["approveaction(id",{"_index":3378,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["approved",{"_index":608,"title":{},"body":{"components/AdminComponent.html":{},"classes/UserServiceStub.html":{}}}],["approximates",{"_index":4322,"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":510,"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":2454,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areaname.name",{"_index":2450,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areanamelist",{"_index":2448,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areanames",{"_index":1175,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["areanames.find(areaname",{"_index":2453,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areanames.map(areaname",{"_index":2449,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatype",{"_index":512,"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":2462,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatype.name",{"_index":2458,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatypelist",{"_index":2456,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatypes",{"_index":2365,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["areatypes.find(areatype",{"_index":2461,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatypes.map(areatype",{"_index":2457,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["args",{"_index":2818,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{}}}],["arguments",{"_index":654,"title":{},"body":{"components/AppComponent.html":{}}}],["arise",{"_index":3698,"title":{},"body":{"license.html":{}}}],["arising",{"_index":4304,"title":{},"body":{"license.html":{}}}],["arr",{"_index":3506,"title":{},"body":{"miscellaneous/functions.html":{}}}],["arrange",{"_index":4219,"title":{},"body":{"license.html":{}}}],["arrangement",{"_index":4231,"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({length",{"_index":3000,"title":{},"body":{"injectables/TokenService.html":{}}}],["arraybuffer",{"_index":959,"title":{},"body":{"injectables/AuthService.html":{}}}],["arraydata",{"_index":3511,"title":{},"body":{"miscellaneous/functions.html":{}}}],["arraysum",{"_index":3409,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["arraysum(arr",{"_index":3505,"title":{},"body":{"miscellaneous/functions.html":{}}}],["article",{"_index":3893,"title":{},"body":{"license.html":{}}}],["artifacts",{"_index":3554,"title":{},"body":{"index.html":{}}}],["artisan",{"_index":1777,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["artist",{"_index":1666,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["askari",{"_index":1668,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["asking",{"_index":3643,"title":{},"body":{"license.html":{}}}],["assert",{"_index":3661,"title":{},"body":{"license.html":{}}}],["assets",{"_index":4170,"title":{},"body":{"license.html":{}}}],["assets/js/block",{"_index":2781,"title":{},"body":{"injectables/RegistryService.html":{}}}],["assigned",{"_index":2965,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["associated",{"_index":3838,"title":{},"body":{"license.html":{}}}],["assume",{"_index":4295,"title":{},"body":{"license.html":{}}}],["assumption",{"_index":4326,"title":{},"body":{"license.html":{}}}],["assumptions",{"_index":4111,"title":{},"body":{"license.html":{}}}],["assures",{"_index":3720,"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/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["atomic",{"_index":916,"title":{},"body":{"injectables/AuthService.html":{}}}],["attach",{"_index":4335,"title":{},"body":{"license.html":{}}}],["attempt",{"_index":4125,"title":{},"body":{"license.html":{}}}],["attributed",{"_index":3677,"title":{},"body":{"license.html":{}}}],["attributions",{"_index":4094,"title":{},"body":{"license.html":{}}}],["auth",{"_index":767,"title":{},"body":{"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{}}}],["auth'},{'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/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":778,"title":{},"body":{"components/AuthComponent.html":{}}}],["auth.component.scss",{"_index":777,"title":{},"body":{"components/AuthComponent.html":{}}}],["authcomponent",{"_index":300,"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/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":963,"title":{},"body":{"injectables/AuthService.html":{}}}],["authentication",{"_index":2868,"title":{},"body":{"components/SettingsComponent.html":{}}}],["authguard",{"_index":746,"title":{"guards/AuthGuard.html":{}},"body":{"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"coverage.html":{}}}],["authheader",{"_index":961,"title":{},"body":{"injectables/AuthService.html":{}}}],["authmodule",{"_index":849,"title":{"modules/AuthModule.html":{}},"body":{"modules/AuthModule.html":{},"modules.html":{},"overview.html":{}}}],["author",{"_index":4093,"title":{},"body":{"license.html":{}}}],["authorization",{"_index":4044,"title":{},"body":{"license.html":{}}}],["authorized",{"_index":983,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["authorizes",{"_index":4192,"title":{},"body":{"license.html":{}}}],["authorizing",{"_index":4235,"title":{},"body":{"license.html":{}}}],["authors",{"_index":3625,"title":{},"body":{"license.html":{}}}],["authroutingmodule",{"_index":853,"title":{"modules/AuthRoutingModule.html":{}},"body":{"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["authservice",{"_index":650,"title":{"injectables/AuthService.html":{}},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"components/SettingsComponent.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["automatic",{"_index":4162,"title":{},"body":{"license.html":{}}}],["automatically",{"_index":3536,"title":{},"body":{"index.html":{},"license.html":{}}}],["automerge",{"_index":934,"title":{},"body":{"injectables/AuthService.html":{}}}],["availability",{"_index":103,"title":{},"body":{"classes/AccountIndex.html":{}}}],["available",{"_index":122,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{},"modules.html":{}}}],["avocado",{"_index":1794,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["avoid",{"_index":3714,"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/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["away",{"_index":3612,"title":{},"body":{"license.html":{}}}],["b",{"_index":3816,"title":{},"body":{"license.html":{}}}],["baby",{"_index":1573,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["babycare",{"_index":1572,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["backend",{"_index":1310,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["backend.ts",{"_index":1496,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["backend.ts:240",{"_index":1497,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["bag",{"_index":1990,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bajia",{"_index":1796,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["baker",{"_index":1670,"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":2306,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["banana",{"_index":1802,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bananas",{"_index":1803,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bangla",{"_index":2288,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bangladesh",{"_index":2289,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bar",{"_index":495,"title":{},"body":{"modules/AccountsModule.html":{},"interceptors/MockBackendInterceptor.html":{},"components/TransactionDetailsComponent.html":{},"modules/TransactionsModule.html":{},"miscellaneous/variables.html":{}}}],["barafu",{"_index":1947,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["barakoa",{"_index":1954,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["barber",{"_index":1673,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["based",{"_index":3753,"title":{},"body":{"license.html":{}}}],["basic",{"_index":3849,"title":{},"body":{"license.html":{}}}],["bead",{"_index":1991,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beadwork",{"_index":1671,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beans",{"_index":1799,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bearer",{"_index":929,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/HttpConfigInterceptor.html":{}}}],["beautician",{"_index":1785,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beauty",{"_index":1672,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beba",{"_index":2059,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bebabeba",{"_index":2060,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bed",{"_index":1995,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bedding",{"_index":1993,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["behalf",{"_index":3872,"title":{},"body":{"license.html":{}}}],["behaviorsubject",{"_index":2991,"title":{},"body":{"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["behaviorsubject(this.transactions",{"_index":3171,"title":{},"body":{"injectables/TransactionService.html":{}}}],["being",{"_index":4008,"title":{},"body":{"license.html":{}}}],["believe",{"_index":4228,"title":{},"body":{"license.html":{}}}],["below",{"_index":3879,"title":{},"body":{"license.html":{}}}],["belt",{"_index":1992,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["benefit",{"_index":4222,"title":{},"body":{"license.html":{}}}],["best",{"_index":4332,"title":{},"body":{"license.html":{}}}],["between",{"_index":3847,"title":{},"body":{"license.html":{}}}],["beyond",{"_index":3955,"title":{},"body":{"license.html":{}}}],["bezier(0.4",{"_index":601,"title":{},"body":{"components/AdminComponent.html":{}}}],["bhajia",{"_index":1795,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biashara",{"_index":1713,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bicycle",{"_index":2062,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bike",{"_index":2061,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bio",{"_index":3356,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["biogas",{"_index":2091,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biringanya",{"_index":1801,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biscuits",{"_index":1800,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bit",{"_index":1059,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["block",{"_index":829,"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":1141,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["blockfilterbinstr",{"_index":1120,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blockfilterbinstr.charcodeat(i",{"_index":1127,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocksbloom",{"_index":1138,"title":{"classes/BlocksBloom.html":{}},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{}}}],["blocksync",{"_index":1035,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocksync(address",{"_index":1044,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocksyncservice",{"_index":1032,"title":{"injectables/BlockSyncService.html":{}},"body":{"injectables/BlockSyncService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["blocktxfilter",{"_index":1142,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["blocktxfilterbinstr",{"_index":1128,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocktxfilterbinstr.charcodeat(i",{"_index":1133,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomblockbytes",{"_index":1064,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomblocktxbytes",{"_index":1066,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomrounds",{"_index":1067,"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":4390,"title":{},"body":{"miscellaneous/variables.html":{}}}],["boda",{"_index":2064,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bodaboda",{"_index":2065,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["body",{"_index":1315,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["body.approval",{"_index":2431,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["bofu",{"_index":1798,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bombolulu",{"_index":2310,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bomet",{"_index":2351,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bone",{"_index":1122,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bone.map((e",{"_index":1124,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["book",{"_index":1555,"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/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"guards/RoleGuard.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"miscellaneous/functions.html":{}}}],["bootstrap",{"_index":436,"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":3671,"title":{},"body":{"license.html":{}}}],["botique",{"_index":1997,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["boutique",{"_index":1998,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["box",{"_index":4360,"title":{},"body":{"license.html":{}}}],["bread",{"_index":1887,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["break",{"_index":1327,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["brewer",{"_index":1792,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bricks",{"_index":1767,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["browse",{"_index":4373,"title":{},"body":{"modules.html":{}}}],["browser",{"_index":736,"title":{},"body":{"modules/AppModule.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"pipes/SafePipe.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"dependencies.html":{},"modules.html":{}}}],["browser/animations",{"_index":741,"title":{},"body":{"modules/AppModule.html":{}}}],["browseranimationsmodule",{"_index":740,"title":{},"body":{"modules/AppModule.html":{}}}],["browsermodule",{"_index":734,"title":{},"body":{"modules/AppModule.html":{}}}],["btwo",{"_index":1130,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["btwo.map((e",{"_index":1132,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["buck",{"_index":3358,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["build",{"_index":3546,"title":{},"body":{"index.html":{}}}],["build:dev",{"_index":3553,"title":{},"body":{"index.html":{}}}],["build:prod",{"_index":3557,"title":{},"body":{"index.html":{}}}],["bungoma",{"_index":2353,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["buru",{"_index":2266,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["busaa",{"_index":1874,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["busia",{"_index":2332,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["business",{"_index":1214,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["businesscategory",{"_index":1198,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["butcher",{"_index":1827,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["butchery",{"_index":1828,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["button",{"_index":625,"title":{},"body":{"components/AdminComponent.html":{},"injectables/AuthService.html":{}}}],["c",{"_index":3590,"title":{},"body":{"license.html":{}}}],["cabbages",{"_index":1876,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cachedtx.tx.txhash",{"_index":3196,"title":{},"body":{"injectables/TransactionService.html":{}}}],["cachesize",{"_index":3153,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["cafe",{"_index":2007,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cake",{"_index":1814,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["call",{"_index":2384,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["called",{"_index":3751,"title":{},"body":{"license.html":{}}}],["can't",{"_index":2563,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["can\\'t",{"_index":682,"title":{},"body":{"components/AppComponent.html":{}}}],["canactivate",{"_index":773,"title":{},"body":{"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["canactivate(route",{"_index":839,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["candebug",{"_index":1431,"title":{},"body":{"injectables/LoggingService.html":{}}}],["candy",{"_index":2003,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["capenter",{"_index":1679,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["car",{"_index":1677,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["card",{"_index":2648,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["care",{"_index":1574,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["caretaker",{"_index":1676,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carpenter",{"_index":1689,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carrier",{"_index":2067,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carry",{"_index":3931,"title":{},"body":{"license.html":{}}}],["cart",{"_index":2066,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carwash",{"_index":1685,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["case",{"_index":1324,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["cases",{"_index":4028,"title":{},"body":{"license.html":{}}}],["cashier",{"_index":2368,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cassava",{"_index":1813,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["casual",{"_index":1674,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["catch",{"_index":399,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{},"injectables/AuthService.html":{}}}],["catch((e",{"_index":2715,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["catcherror",{"_index":673,"title":{},"body":{"components/AppComponent.html":{},"interceptors/ErrorInterceptor.html":{}}}],["catcherror((err",{"_index":1302,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["categories",{"_index":1176,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["categories.find(category",{"_index":2445,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["categories.map(category",{"_index":2441,"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":2442,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["category.products.includes(stringfromurl",{"_index":2446,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["categorylist",{"_index":2440,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["catering",{"_index":1682,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cause",{"_index":3959,"title":{},"body":{"license.html":{}}}],["cease",{"_index":4129,"title":{},"body":{"license.html":{}}}],["cement",{"_index":1996,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cereal",{"_index":1808,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cereals",{"_index":1815,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["certain",{"_index":3646,"title":{},"body":{"license.html":{}}}],["cessation",{"_index":4141,"title":{},"body":{"license.html":{}}}],["chai",{"_index":1811,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chakula",{"_index":1805,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["challenge",{"_index":947,"title":{},"body":{"injectables/AuthService.html":{}}}],["chama",{"_index":1982,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["changamwe",{"_index":2300,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["change",{"_index":832,"title":{},"body":{"components/AuthComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/SettingsComponent.html":{},"classes/UserServiceStub.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["changed",{"_index":3675,"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/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/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/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":{}}}],["changing",{"_index":3603,"title":{},"body":{"license.html":{}}}],["chapati",{"_index":1807,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chapo",{"_index":1810,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["characterized",{"_index":4054,"title":{},"body":{"license.html":{}}}],["charcoal",{"_index":2093,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["charcol",{"_index":2092,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["charge",{"_index":3630,"title":{},"body":{"license.html":{}}}],["charging",{"_index":1737,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chart.js",{"_index":3464,"title":{},"body":{"dependencies.html":{}}}],["charts",{"_index":2735,"title":{},"body":{"modules/PagesModule.html":{},"dependencies.html":{}}}],["chartsmodule",{"_index":2733,"title":{},"body":{"modules/PagesModule.html":{}}}],["check",{"_index":809,"title":{},"body":{"components/AuthComponent.html":{},"index.html":{}}}],["checks",{"_index":119,"title":{},"body":{"classes/AccountIndex.html":{}}}],["chef",{"_index":1681,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chemicals",{"_index":1956,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chemist",{"_index":1955,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chibuga",{"_index":2144,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chicken",{"_index":1819,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chidzivuni",{"_index":2156,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chidzuvini",{"_index":2155,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chief",{"_index":1623,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigale",{"_index":2150,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigato",{"_index":2149,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigojoni",{"_index":2147,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikole",{"_index":2151,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikomani",{"_index":2145,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikomeni",{"_index":2154,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikuyu",{"_index":2157,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["children",{"_index":1593,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chilongoni",{"_index":2146,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chilumani",{"_index":2152,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chinguluni",{"_index":2148,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chipo",{"_index":1809,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chips",{"_index":1812,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chizingo",{"_index":2158,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chizini",{"_index":2153,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choma",{"_index":1870,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choo",{"_index":1637,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choose",{"_index":4279,"title":{},"body":{"license.html":{}}}],["choosing",{"_index":4283,"title":{},"body":{"license.html":{}}}],["christine",{"_index":1506,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["chumvi",{"_index":1875,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["church",{"_index":1617,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chv",{"_index":1957,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cic",{"_index":933,"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":670,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/SidebarComponent.html":{},"index.html":{}}}],["ciccacheurl",{"_index":4401,"title":{},"body":{"miscellaneous/variables.html":{}}}],["cicconvert(event",{"_index":719,"title":{},"body":{"components/AppComponent.html":{}}}],["cicmetaurl",{"_index":4396,"title":{},"body":{"miscellaneous/variables.html":{}}}],["cicregistry",{"_index":2777,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["cicregistry(this.web3",{"_index":2778,"title":{},"body":{"injectables/RegistryService.html":{}}}],["cictransfer(event",{"_index":715,"title":{},"body":{"components/AppComponent.html":{}}}],["cicussdurl",{"_index":4406,"title":{},"body":{"miscellaneous/variables.html":{}}}],["circumstances",{"_index":3877,"title":{},"body":{"license.html":{}}}],["circumvention",{"_index":3885,"title":{},"body":{"license.html":{}}}],["civil",{"_index":4325,"title":{},"body":{"license.html":{}}}],["claim",{"_index":4184,"title":{},"body":{"license.html":{}}}],["claims",{"_index":4194,"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/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/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":1650,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cleaning",{"_index":1643,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clear",{"_index":3995,"title":{},"body":{"license.html":{}}}],["clearkeysinkeyring",{"_index":2479,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["clearly",{"_index":3668,"title":{},"body":{"license.html":{}}}],["cles",{"_index":3369,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["cli",{"_index":3525,"title":{},"body":{"index.html":{}}}],["click",{"_index":1481,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["client",{"_index":1072,"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":1969,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clinical",{"_index":1970,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["close",{"_index":3107,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["closely",{"_index":4321,"title":{},"body":{"license.html":{}}}],["cloth",{"_index":2004,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["club",{"_index":2052,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clues",{"_index":1317,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["cluster_accountsmodule",{"_index":439,"title":{},"body":{"modules/AccountsModule.html":{},"overview.html":{}}}],["cluster_accountsmodule_declarations",{"_index":440,"title":{},"body":{"modules/AccountsModule.html":{},"overview.html":{}}}],["cluster_accountsmodule_imports",{"_index":441,"title":{},"body":{"modules/AccountsModule.html":{},"overview.html":{}}}],["cluster_adminmodule",{"_index":629,"title":{},"body":{"modules/AdminModule.html":{},"overview.html":{}}}],["cluster_adminmodule_declarations",{"_index":630,"title":{},"body":{"modules/AdminModule.html":{},"overview.html":{}}}],["cluster_adminmodule_imports",{"_index":631,"title":{},"body":{"modules/AdminModule.html":{},"overview.html":{}}}],["cluster_appmodule",{"_index":723,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_bootstrap",{"_index":725,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_declarations",{"_index":726,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_imports",{"_index":727,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_providers",{"_index":724,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_authmodule",{"_index":850,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_authmodule_declarations",{"_index":851,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_authmodule_imports",{"_index":852,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_pagesmodule",{"_index":2726,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_pagesmodule_declarations",{"_index":2728,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_pagesmodule_imports",{"_index":2727,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_settingsmodule",{"_index":2875,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_settingsmodule_declarations",{"_index":2877,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_settingsmodule_imports",{"_index":2876,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_sharedmodule",{"_index":2888,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_sharedmodule_declarations",{"_index":2890,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_sharedmodule_exports",{"_index":2889,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_tokensmodule",{"_index":3037,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_tokensmodule_declarations",{"_index":3039,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_tokensmodule_imports",{"_index":3038,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule",{"_index":3326,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_declarations",{"_index":3327,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_exports",{"_index":3329,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_imports",{"_index":3328,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["coach",{"_index":1556,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cobbler",{"_index":1684,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cobler",{"_index":1683,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["coconut",{"_index":1806,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["code",{"_index":1314,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"components/OrganizationComponent.html":{},"index.html":{},"license.html":{}}}],["coffee",{"_index":1818,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["collapsed",{"_index":598,"title":{},"body":{"components/AdminComponent.html":{}}}],["collect",{"_index":4261,"title":{},"body":{"license.html":{}}}],["collection",{"_index":1652,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["college",{"_index":1566,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["columnstodisplay",{"_index":3015,"title":{},"body":{"components/TokensComponent.html":{}}}],["combination",{"_index":4268,"title":{},"body":{"license.html":{}}}],["combine",{"_index":4265,"title":{},"body":{"license.html":{}}}],["combined",{"_index":3949,"title":{},"body":{"license.html":{}}}],["comes",{"_index":2577,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["command",{"_index":3582,"title":{},"body":{"index.html":{}}}],["commands",{"_index":3793,"title":{},"body":{"license.html":{}}}],["comment",{"_index":2916,"title":{},"body":{"interfaces/Staff.html":{}}}],["commercial",{"_index":4038,"title":{},"body":{"license.html":{}}}],["commitment",{"_index":4210,"title":{},"body":{"license.html":{}}}],["common",{"_index":4032,"title":{},"body":{"license.html":{}}}],["commonmodule",{"_index":450,"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":3845,"title":{},"body":{"license.html":{}}}],["community",{"_index":1968,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["compilation",{"_index":3945,"title":{},"body":{"license.html":{}}}],["compilation's",{"_index":3954,"title":{},"body":{"license.html":{}}}],["compilations",{"_index":4245,"title":{},"body":{"license.html":{}}}],["compiler",{"_index":3827,"title":{},"body":{"license.html":{}}}],["complete",{"_index":1512,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["compliance",{"_index":4167,"title":{},"body":{"license.html":{}}}],["comply",{"_index":3870,"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/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":{},"modules/AuthRoutingModule.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"modules/PagesRoutingModule.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":1342,"title":{},"body":{"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{}}}],["component_template",{"_index":290,"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/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/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":3766,"title":{},"body":{"license.html":{}}}],["computers",{"_index":3713,"title":{},"body":{"license.html":{}}}],["concerning",{"_index":4267,"title":{},"body":{"license.html":{}}}],["concerns",{"_index":4273,"title":{},"body":{"license.html":{}}}],["conditioned",{"_index":4240,"title":{},"body":{"license.html":{}}}],["conditions",{"_index":3725,"title":{},"body":{"license.html":{}}}],["conductor",{"_index":2072,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["config.interceptor.ts",{"_index":1392,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"coverage.html":{}}}],["config.interceptor.ts:11",{"_index":1393,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["config.interceptor.ts:15",{"_index":1394,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["confirm('approve",{"_index":610,"title":{},"body":{"components/AdminComponent.html":{}}}],["confirm('create",{"_index":1207,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["confirm('disapprove",{"_index":613,"title":{},"body":{"components/AdminComponent.html":{}}}],["confirm('set",{"_index":2644,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["confirmpassword",{"_index":1247,"title":{},"body":{"classes/CustomValidator.html":{}}}],["congo",{"_index":2236,"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":4155,"title":{},"body":{"license.html":{}}}],["consequential",{"_index":4303,"title":{},"body":{"license.html":{}}}],["conservation",{"_index":1635,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consider",{"_index":4364,"title":{},"body":{"license.html":{}}}],["considered",{"_index":4113,"title":{},"body":{"license.html":{}}}],["consistent",{"_index":4201,"title":{},"body":{"license.html":{}}}],["console.log('here",{"_index":3386,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["console.log(await",{"_index":110,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["conspicuously",{"_index":3917,"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/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"modules/TokensRoutingModule.html":{},"injectables/TransactionService.html":{},"modules/TransactionsRoutingModule.html":{}}}],["constantly",{"_index":3708,"title":{},"body":{"license.html":{}}}],["constitutes",{"_index":3860,"title":{},"body":{"license.html":{}}}],["construction",{"_index":1680,"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/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":1266,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["constructor(authservice",{"_index":649,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/SettingsComponent.html":{}}}],["constructor(blocksyncservice",{"_index":3286,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["constructor(contractaddress",{"_index":85,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["constructor(data",{"_index":1259,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["constructor(dialog",{"_index":1273,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["constructor(elementref",{"_index":1474,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["constructor(errordialogservice",{"_index":1290,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["constructor(formbuilder",{"_index":215,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["constructor(httpclient",{"_index":876,"title":{},"body":{"injectables/AuthService.html":{},"injectables/LocationService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["constructor(initialparams",{"_index":529,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["constructor(keystore",{"_index":2667,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["constructor(logger",{"_index":1440,"title":{},"body":{"injectables/LoggingService.html":{}}}],["constructor(loggingservice",{"_index":1351,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"interceptors/LoggingInterceptor.html":{}}}],["constructor(message",{"_index":1362,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["constructor(private",{"_index":846,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/LoggingService.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{}}}],["constructor(route",{"_index":2924,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["constructor(router",{"_index":837,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"components/TransactionDetailsComponent.html":{}}}],["constructor(scanfilter",{"_index":2828,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["constructor(tokenservice",{"_index":3017,"title":{},"body":{"components/TokensComponent.html":{}}}],["constructor(transactionservice",{"_index":1041,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["constructor(userservice",{"_index":356,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{}}}],["construed",{"_index":4249,"title":{},"body":{"license.html":{}}}],["consult",{"_index":1565,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consultant",{"_index":1564,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consumer",{"_index":4015,"title":{},"body":{"license.html":{}}}],["contact",{"_index":4346,"title":{},"body":{"license.html":{}}}],["contain",{"_index":1316,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"license.html":{}}}],["contained",{"_index":3569,"title":{},"body":{"index.html":{}}}],["containing",{"_index":4096,"title":{},"body":{"license.html":{}}}],["contains",{"_index":3576,"title":{},"body":{"index.html":{},"license.html":{}}}],["content",{"_index":701,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"license.html":{}}}],["content?.classlist.add('active",{"_index":711,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["content?.classlist.contains('active",{"_index":710,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["content?.classlist.remove('active",{"_index":713,"title":{},"body":{"components/AppComponent.html":{}}}],["content?.classlist.toggle('active",{"_index":1492,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["contents",{"_index":4205,"title":{},"body":{"license.html":{}}}],["context",{"_index":3821,"title":{},"body":{"license.html":{}}}],["continue",{"_index":4060,"title":{},"body":{"license.html":{}}}],["continued",{"_index":4046,"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":1093,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["contractual",{"_index":4110,"title":{},"body":{"license.html":{}}}],["contradict",{"_index":4255,"title":{},"body":{"license.html":{}}}],["contrast",{"_index":3614,"title":{},"body":{"license.html":{}}}],["contributor",{"_index":4191,"title":{},"body":{"license.html":{}}}],["contributor's",{"_index":4193,"title":{},"body":{"license.html":{}}}],["control",{"_index":1227,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"license.html":{}}}],["control.dirty",{"_index":1231,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["control.get('confirmpassword').seterrors",{"_index":1249,"title":{},"body":{"classes/CustomValidator.html":{}}}],["control.get('confirmpassword').value",{"_index":1248,"title":{},"body":{"classes/CustomValidator.html":{}}}],["control.get('password').value",{"_index":1246,"title":{},"body":{"classes/CustomValidator.html":{}}}],["control.invalid",{"_index":1230,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["control.touched",{"_index":1232,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["control.value",{"_index":1251,"title":{},"body":{"classes/CustomValidator.html":{}}}],["controlled",{"_index":4196,"title":{},"body":{"license.html":{}}}],["convenient",{"_index":3785,"title":{},"body":{"license.html":{}}}],["conversion",{"_index":720,"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":3209,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.recipient",{"_index":3215,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.sender",{"_index":3214,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.tovalue",{"_index":3211,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.tx.txhash",{"_index":3207,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.type",{"_index":3208,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversions",{"_index":2371,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["converttoparammap",{"_index":541,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["convey",{"_index":3773,"title":{},"body":{"license.html":{}}}],["conveyance",{"_index":4233,"title":{},"body":{"license.html":{}}}],["conveyed",{"_index":4055,"title":{},"body":{"license.html":{}}}],["conveying",{"_index":3779,"title":{},"body":{"license.html":{}}}],["conveys",{"_index":4109,"title":{},"body":{"license.html":{}}}],["cook",{"_index":1816,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["copied",{"_index":3106,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copies",{"_index":3601,"title":{},"body":{"license.html":{}}}],["copy",{"_index":3598,"title":{},"body":{"license.html":{}}}],["copy.ts",{"_index":3412,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["copyaddress",{"_index":3069,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copyaddress(address",{"_index":3078,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copying",{"_index":3726,"title":{},"body":{"license.html":{}}}],["copyleft",{"_index":3605,"title":{},"body":{"license.html":{}}}],["copyright",{"_index":3589,"title":{},"body":{"license.html":{}}}],["copyrightable",{"_index":3736,"title":{},"body":{"license.html":{}}}],["copyrighted",{"_index":3874,"title":{},"body":{"license.html":{}}}],["copytoclipboard",{"_index":3087,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["copytoclipboard(address",{"_index":3104,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copytoclipboard(text",{"_index":3507,"title":{},"body":{"miscellaneous/functions.html":{}}}],["corn",{"_index":1817,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["correction",{"_index":4298,"title":{},"body":{"license.html":{}}}],["corresponding",{"_index":3830,"title":{},"body":{"license.html":{}}}],["cosmetics",{"_index":1976,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cost",{"_index":3980,"title":{},"body":{"license.html":{}}}],["counsellor",{"_index":1597,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["count",{"_index":168,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/TokenService.html":{}}}],["counterclaim",{"_index":4185,"title":{},"body":{"license.html":{}}}],["counties",{"_index":2347,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["countries",{"_index":3770,"title":{},"body":{"license.html":{}}}],["country",{"_index":1625,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["countrycode",{"_index":2641,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["county",{"_index":1626,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["course",{"_index":4358,"title":{},"body":{"license.html":{}}}],["court",{"_index":4254,"title":{},"body":{"license.html":{}}}],["courts",{"_index":4320,"title":{},"body":{"license.html":{}}}],["covenant",{"_index":4213,"title":{},"body":{"license.html":{}}}],["coverage",{"_index":3399,"title":{"coverage.html":{}},"body":{"coverage.html":{},"license.html":{}}}],["covered",{"_index":3754,"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/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":302,"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/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":374,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{},"classes/UserServiceStub.html":{}}}],["createform",{"_index":1177,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["createformstub",{"_index":1179,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["credentials",{"_index":2861,"title":{},"body":{"components/SettingsComponent.html":{}}}],["credit",{"_index":1987,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["crisps",{"_index":1804,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["criterion",{"_index":3798,"title":{},"body":{"license.html":{}}}],["cross",{"_index":1579,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["csv.ts",{"_index":3415,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["cubic",{"_index":600,"title":{},"body":{"components/AdminComponent.html":{}}}],["cure",{"_index":4145,"title":{},"body":{"license.html":{}}}],["currency",{"_index":2935,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["currentuser",{"_index":2793,"title":{},"body":{"guards/RoleGuard.html":{}}}],["customarily",{"_index":3971,"title":{},"body":{"license.html":{}}}],["customer",{"_index":3976,"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":657,"title":{},"body":{"components/AppComponent.html":{}}}],["customevent('cic_convert",{"_index":1113,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["customevent('cic_transfer",{"_index":1111,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["customvalidator",{"_index":1233,"title":{"classes/CustomValidator.html":{}},"body":{"classes/CustomValidator.html":{},"coverage.html":{}}}],["cyber",{"_index":1587,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["d",{"_index":2850,"title":{},"body":{"components/SettingsComponent.html":{},"license.html":{}}}],["d.getdate()}/${d.getmonth()}/${d.getfullyear",{"_index":2852,"title":{},"body":{"components/SettingsComponent.html":{}}}],["dagaa",{"_index":1820,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dagoreti",{"_index":2240,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dagoretti",{"_index":2282,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["daktari",{"_index":1959,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["damages",{"_index":4301,"title":{},"body":{"license.html":{}}}],["dandora",{"_index":2241,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["danger",{"_index":3716,"title":{},"body":{"license.html":{}}}],["danish",{"_index":1604,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dashboard",{"_index":2907,"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/Signer.html":{},"injectables/TransactionService.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["data.message",{"_index":1267,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["data?.status",{"_index":1268,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["datafile",{"_index":4418,"title":{},"body":{"miscellaneous/variables.html":{}}}],["datasource",{"_index":345,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["datasource.filter",{"_index":3313,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["datatables",{"_index":461,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AppModule.html":{},"modules/TransactionsModule.html":{},"dependencies.html":{}}}],["datatables.net",{"_index":3473,"title":{},"body":{"dependencies.html":{}}}],["datatablesmodule",{"_index":459,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AppModule.html":{},"modules/TransactionsModule.html":{}}}],["date",{"_index":427,"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":3387,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["dawa",{"_index":1960,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["daycare",{"_index":1571,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["days",{"_index":4140,"title":{},"body":{"license.html":{}}}],["debug",{"_index":1461,"title":{},"body":{"injectables/LoggingService.html":{}}}],["december",{"_index":3898,"title":{},"body":{"license.html":{}}}],["decide",{"_index":4281,"title":{},"body":{"license.html":{}}}],["decimals",{"_index":1526,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["declarations",{"_index":435,"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":4102,"title":{},"body":{"license.html":{}}}],["decorators",{"_index":381,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/ErrorDialogComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["deemed",{"_index":3887,"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/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":346,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{}}}],["defective",{"_index":4294,"title":{},"body":{"license.html":{}}}],["defenses",{"_index":4252,"title":{},"body":{"license.html":{}}}],["define",{"_index":993,"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/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":{},"license.html":{}}}],["definition",{"_index":3837,"title":{},"body":{"license.html":{}}}],["definitions",{"_index":3730,"title":{},"body":{"license.html":{}}}],["delay",{"_index":1498,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["delayed",{"_index":2380,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["delimiter",{"_index":3510,"title":{},"body":{"miscellaneous/functions.html":{}}}],["dematerialize",{"_index":1499,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["demo",{"_index":1529,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["denied",{"_index":4062,"title":{},"body":{"license.html":{}}}],["denominated",{"_index":4211,"title":{},"body":{"license.html":{}}}],["deny",{"_index":3680,"title":{},"body":{"license.html":{}}}],["denying",{"_index":3642,"title":{},"body":{"license.html":{}}}],["dependencies",{"_index":434,"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":{}}}],["deployed",{"_index":90,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["deprive",{"_index":4220,"title":{},"body":{"license.html":{}}}],["dera",{"_index":2020,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dereva",{"_index":2071,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["description",{"_index":64,"title":{},"body":{"classes/AccountIndex.html":{},"classes/ActivatedRouteStub.html":{},"classes/TokenRegistry.html":{}}}],["design",{"_index":1688,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["designated",{"_index":3988,"title":{},"body":{"license.html":{}}}],["designed",{"_index":3610,"title":{},"body":{"license.html":{}}}],["destination",{"_index":3134,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["destinationtoken",{"_index":1159,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["detached",{"_index":2596,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["detail",{"_index":1112,"title":{},"body":{"injectables/BlockSyncService.html":{},"license.html":{}}}],["details",{"_index":623,"title":{},"body":{"components/AdminComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{},"license.html":{}}}],["details'},{'name",{"_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/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":458,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{}}}],["details.component.html",{"_index":2923,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["details.component.scss",{"_index":2922,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["details.component.ts",{"_index":2921,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{},"coverage.html":{}}}],["details.component.ts:14",{"_index":2927,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["details.component.ts:15",{"_index":3077,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:16",{"_index":3086,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:17",{"_index":3085,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:18",{"_index":3076,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:26",{"_index":3080,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:27",{"_index":2928,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["details.component.ts:35",{"_index":3083,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:39",{"_index":3082,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:43",{"_index":3084,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:47",{"_index":3081,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:56",{"_index":3079,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.the",{"_index":4355,"title":{},"body":{"license.html":{}}}],["details/account",{"_index":457,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"coverage.html":{}}}],["details/token",{"_index":2920,"title":{},"body":{"components/TokenDetailsComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"coverage.html":{}}}],["details/transaction",{"_index":3065,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"modules/TransactionsModule.html":{},"coverage.html":{}}}],["detergent",{"_index":2018,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["detergents",{"_index":2019,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["determining",{"_index":4026,"title":{},"body":{"license.html":{}}}],["dev",{"_index":3533,"title":{},"body":{"index.html":{}}}],["develop",{"_index":4329,"title":{},"body":{"license.html":{}}}],["developers",{"_index":3658,"title":{},"body":{"license.html":{}}}],["development",{"_index":3531,"title":{},"body":{"index.html":{},"license.html":{}}}],["devices",{"_index":3679,"title":{},"body":{"license.html":{}}}],["dgst",{"_index":2661,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["dhobi",{"_index":1686,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dialog",{"_index":1256,"title":{},"body":{"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{}}}],["dialog'},{'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/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":1281,"title":{},"body":{"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{}}}],["dialog.component.html",{"_index":1258,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.scss",{"_index":1257,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.ts",{"_index":1255,"title":{},"body":{"components/ErrorDialogComponent.html":{},"coverage.html":{}}}],["dialog.component.ts:10",{"_index":1260,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.ts:12",{"_index":1262,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.service",{"_index":909,"title":{},"body":{"injectables/AuthService.html":{}}}],["dialog.service.ts",{"_index":1270,"title":{},"body":{"injectables/ErrorDialogService.html":{},"coverage.html":{}}}],["dialog.service.ts:12",{"_index":1278,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog.service.ts:15",{"_index":1277,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog.service.ts:9",{"_index":1275,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog/error",{"_index":1254,"title":{},"body":{"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{},"coverage.html":{}}}],["dialogref",{"_index":1283,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialogref.afterclosed().subscribe",{"_index":1286,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["diani",{"_index":2304,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["diesel",{"_index":2115,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["differ",{"_index":4272,"title":{},"body":{"license.html":{}}}],["different",{"_index":3990,"title":{},"body":{"license.html":{}}}],["differently",{"_index":4089,"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/Signer.html":{}}}],["direction",{"_index":3873,"title":{},"body":{"license.html":{}}}],["directions",{"_index":3996,"title":{},"body":{"license.html":{}}}],["directive",{"_index":288,"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/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":330,"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/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":3542,"title":{},"body":{"index.html":{}}}],["directly",{"_index":3759,"title":{},"body":{"license.html":{}}}],["directory",{"_index":1212,"title":{},"body":{"components/CreateAccountComponent.html":{},"index.html":{}}}],["directoryentry",{"_index":1196,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["disableconsolelogging",{"_index":761,"title":{},"body":{"modules/AppModule.html":{}}}],["disapprove",{"_index":621,"title":{},"body":{"components/AdminComponent.html":{}}}],["disapproveaction",{"_index":557,"title":{},"body":{"components/AdminComponent.html":{}}}],["disapproveaction(action",{"_index":565,"title":{},"body":{"components/AdminComponent.html":{}}}],["disburse",{"_index":1504,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["disbursement",{"_index":2639,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["disbursements",{"_index":2372,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["disclaim",{"_index":3909,"title":{},"body":{"license.html":{}}}],["disclaimer",{"_index":4284,"title":{},"body":{"license.html":{}}}],["disclaiming",{"_index":4086,"title":{},"body":{"license.html":{}}}],["discriminatory",{"_index":4237,"title":{},"body":{"license.html":{}}}],["dispensary",{"_index":1953,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["display",{"_index":3944,"title":{},"body":{"license.html":{}}}],["displayed",{"_index":4095,"title":{},"body":{"license.html":{}}}],["displayedcolumns",{"_index":347,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{}}}],["displays",{"_index":3781,"title":{},"body":{"license.html":{}}}],["dist",{"_index":3556,"title":{},"body":{"index.html":{}}}],["distinguishing",{"_index":4274,"title":{},"body":{"license.html":{}}}],["distribute",{"_index":3599,"title":{},"body":{"license.html":{}}}],["distributed",{"_index":4342,"title":{},"body":{"license.html":{}}}],["distributing",{"_index":4241,"title":{},"body":{"license.html":{}}}],["distribution",{"_index":3727,"title":{},"body":{"license.html":{}}}],["divone",{"_index":822,"title":{},"body":{"components/AuthComponent.html":{}}}],["divtwo",{"_index":824,"title":{},"body":{"components/AuthComponent.html":{}}}],["doctor",{"_index":1958,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["document",{"_index":3602,"title":{},"body":{"license.html":{}}}],["document.getelementbyid('content",{"_index":702,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["document.getelementbyid('one",{"_index":823,"title":{},"body":{"components/AuthComponent.html":{}}}],["document.getelementbyid('one').style.display",{"_index":997,"title":{},"body":{"injectables/AuthService.html":{}}}],["document.getelementbyid('sidebar",{"_index":700,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["document.getelementbyid('sidebarcollapse",{"_index":704,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["document.getelementbyid('state').innerhtml",{"_index":920,"title":{},"body":{"injectables/AuthService.html":{}}}],["document.getelementbyid('two",{"_index":825,"title":{},"body":{"components/AuthComponent.html":{}}}],["document.getelementbyid('two').style.display",{"_index":998,"title":{},"body":{"injectables/AuthService.html":{}}}],["document.getelementbyid(this.iconid",{"_index":2760,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["document.getelementbyid(this.id",{"_index":2758,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["documentation",{"_index":3400,"title":{},"body":{"coverage.html":{}}}],["documented",{"_index":4072,"title":{},"body":{"license.html":{}}}],["doe",{"_index":3350,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["doesn\\'t",{"_index":1010,"title":{},"body":{"injectables/AuthService.html":{}}}],["dofilter",{"_index":351,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["dofilter(value",{"_index":359,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["doing",{"_index":2578,"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":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.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":3700,"title":{},"body":{"license.html":{}}}],["domsanitizer",{"_index":2821,"title":{},"body":{"pipes/SafePipe.html":{}}}],["don't",{"_index":3551,"title":{},"body":{"index.html":{}}}],["donald",{"_index":3364,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["donholm",{"_index":2239,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donhom",{"_index":2243,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donor",{"_index":1620,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donut",{"_index":1821,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["doti",{"_index":2159,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["double",{"_index":519,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["doubtful",{"_index":4027,"title":{},"body":{"license.html":{}}}],["dough",{"_index":1822,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["downloadcsv",{"_index":352,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["downstream",{"_index":4164,"title":{},"body":{"license.html":{}}}],["driver",{"_index":2070,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dt",{"_index":3475,"title":{},"body":{"dependencies.html":{}}}],["duka",{"_index":2010,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["durable",{"_index":3970,"title":{},"body":{"license.html":{}}}],["duration",{"_index":3108,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["dwelling",{"_index":4025,"title":{},"body":{"license.html":{}}}],["dynamic",{"_index":3457,"title":{},"body":{"dependencies.html":{}}}],["dynamically",{"_index":3840,"title":{},"body":{"license.html":{}}}],["dzivani",{"_index":2161,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dzovuni",{"_index":2162,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dzugwe",{"_index":2160,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["e",{"_index":663,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["e.matches",{"_index":707,"title":{},"body":{"components/AppComponent.html":{}}}],["e2e",{"_index":3567,"title":{},"body":{"index.html":{}}}],["each",{"_index":3739,"title":{},"body":{"license.html":{}}}],["earlier",{"_index":3752,"title":{},"body":{"license.html":{}}}],["east",{"_index":2276,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["economics",{"_index":989,"title":{},"body":{"injectables/AuthService.html":{},"components/FooterComponent.html":{},"license.html":{}}}],["education",{"_index":1554,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["educator",{"_index":1595,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["effect",{"_index":4317,"title":{},"body":{"license.html":{}}}],["effected",{"_index":3907,"title":{},"body":{"license.html":{}}}],["effective",{"_index":3888,"title":{},"body":{"license.html":{}}}],["effectively",{"_index":3718,"title":{},"body":{"license.html":{}}}],["efforts",{"_index":4178,"title":{},"body":{"license.html":{}}}],["egg",{"_index":1912,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["eimu",{"_index":1576,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["elapsedtime",{"_index":1425,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["elder",{"_index":1622,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["eldoret",{"_index":2354,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electrian",{"_index":1675,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electricals",{"_index":2005,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electrician",{"_index":1765,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electronic",{"_index":4347,"title":{},"body":{"license.html":{}}}],["electronics",{"_index":1762,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["element",{"_index":287,"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/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":830,"title":{},"body":{"components/AuthComponent.html":{}}}],["elementref",{"_index":1475,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["elim",{"_index":1575,"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":2274,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["embakassi",{"_index":2273,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["embodied",{"_index":3965,"title":{},"body":{"license.html":{}}}],["emergency",{"_index":1980,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["employer",{"_index":4361,"title":{},"body":{"license.html":{}}}],["enable",{"_index":3818,"title":{},"body":{"license.html":{}}}],["enables",{"_index":3775,"title":{},"body":{"license.html":{}}}],["end",{"_index":3566,"title":{},"body":{"index.html":{},"license.html":{}}}],["endpoint",{"_index":681,"title":{},"body":{"components/AppComponent.html":{}}}],["enforce",{"_index":4212,"title":{},"body":{"license.html":{}}}],["enforcing",{"_index":3912,"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/Signer.html":{},"classes/W3.html":{}}}],["engineer",{"_index":1722,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["enroller",{"_index":1503,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["ensure",{"_index":2385,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["enter",{"_index":833,"title":{},"body":{"components/AuthComponent.html":{}}}],["entered",{"_index":4246,"title":{},"body":{"license.html":{}}}],["entire",{"_index":3935,"title":{},"body":{"license.html":{}}}],["entirely",{"_index":4263,"title":{},"body":{"license.html":{}}}],["entity",{"_index":4168,"title":{},"body":{"license.html":{}}}],["entry",{"_index":1213,"title":{},"body":{"components/CreateAccountComponent.html":{},"classes/TokenRegistry.html":{}}}],["entry(2",{"_index":2970,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["entry(serial",{"_index":2966,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["env",{"_index":1432,"title":{},"body":{"injectables/LoggingService.html":{},"index.html":{}}}],["env.example",{"_index":3571,"title":{},"body":{"index.html":{}}}],["env.ts",{"_index":3549,"title":{},"body":{"index.html":{}}}],["envelope",{"_index":3178,"title":{},"body":{"injectables/TransactionService.html":{}}}],["envelope.fromjson(json.stringify(account)).unwrap().m.data",{"_index":3222,"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":926,"title":{},"body":{"injectables/AuthService.html":{}}}],["environment.loggingurl}/api/logs",{"_index":760,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.loglevel",{"_index":756,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.prod.ts",{"_index":3578,"title":{},"body":{"index.html":{}}}],["environment.registryaddress",{"_index":2779,"title":{},"body":{"injectables/RegistryService.html":{}}}],["environment.serverloglevel",{"_index":758,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.ts",{"_index":3577,"title":{},"body":{"index.html":{}}}],["environment.web3provider",{"_index":1079,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["equivalent",{"_index":3863,"title":{},"body":{"license.html":{}}}],["err",{"_index":1014,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["err.error",{"_index":1304,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.error.message",{"_index":1309,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.message",{"_index":1016,"title":{},"body":{"injectables/AuthService.html":{}}}],["err.status",{"_index":1320,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.statustext",{"_index":1017,"title":{},"body":{"injectables/AuthService.html":{}}}],["erroneously",{"_index":3678,"title":{},"body":{"license.html":{}}}],["error",{"_index":305,"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/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"interfaces/Signable.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('login",{"_index":939,"title":{},"body":{"injectables/AuthService.html":{}}}],["error('the",{"_index":1004,"title":{},"body":{"injectables/AuthService.html":{}}}],["error(`${res.statustext",{"_index":1028,"title":{},"body":{"injectables/AuthService.html":{}}}],["error(message",{"_index":1370,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["error.message",{"_index":1368,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.stack",{"_index":1373,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.status",{"_index":979,"title":{},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.tostring",{"_index":1369,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errordialogcomponent",{"_index":304,"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/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":652,"title":{"injectables/ErrorDialogService.html":{}},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"coverage.html":{}}}],["errorevent",{"_index":1305,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["errorhandler",{"_index":737,"title":{},"body":{"modules/AppModule.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errorinterceptor",{"_index":729,"title":{"interceptors/ErrorInterceptor.html":{}},"body":{"modules/AppModule.html":{},"interceptors/ErrorInterceptor.html":{},"coverage.html":{},"overview.html":{}}}],["errormessage",{"_index":1303,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["errorstatematcher",{"_index":1219,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["errortracestring",{"_index":1357,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errortracestring.includes('/src/app",{"_index":1388,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errortracestring.includes(whitelistsentence",{"_index":1390,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["essential",{"_index":3822,"title":{},"body":{"license.html":{}}}],["establish",{"_index":150,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["eth",{"_index":2653,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ethereum",{"_index":3389,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["ethers",{"_index":3183,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{}}}],["ethiopia",{"_index":2654,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["even",{"_index":2386,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["event",{"_index":655,"title":{},"body":{"components/AppComponent.html":{},"interceptors/LoggingInterceptor.html":{},"license.html":{}}}],["event.detail.tx",{"_index":716,"title":{},"body":{"components/AppComponent.html":{}}}],["eventemitter",{"_index":2988,"title":{},"body":{"injectables/TokenService.html":{}}}],["everyone",{"_index":3596,"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":3749,"title":{},"body":{"license.html":{}}}],["example",{"_index":74,"title":{},"body":{"classes/AccountIndex.html":{},"classes/MutablePgpKeyStore.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["except",{"_index":3764,"title":{},"body":{"license.html":{}}}],["exceptions",{"_index":4076,"title":{},"body":{"license.html":{}}}],["exchange",{"_index":3110,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["excluded",{"_index":4014,"title":{},"body":{"license.html":{}}}],["excluding",{"_index":4250,"title":{},"body":{"license.html":{}}}],["exclusion",{"_index":4338,"title":{},"body":{"license.html":{}}}],["exclusive",{"_index":4202,"title":{},"body":{"license.html":{}}}],["exclusively",{"_index":3868,"title":{},"body":{"license.html":{}}}],["excuse",{"_index":4256,"title":{},"body":{"license.html":{}}}],["executable",{"_index":3809,"title":{},"body":{"license.html":{}}}],["execute",{"_index":3564,"title":{},"body":{"index.html":{},"license.html":{}}}],["executing",{"_index":3765,"title":{},"body":{"license.html":{}}}],["exercise",{"_index":4179,"title":{},"body":{"license.html":{}}}],["exercising",{"_index":3908,"title":{},"body":{"license.html":{}}}],["expand",{"_index":576,"title":{},"body":{"components/AdminComponent.html":{}}}],["expandcollapse",{"_index":558,"title":{},"body":{"components/AdminComponent.html":{}}}],["expandcollapse(row",{"_index":569,"title":{},"body":{"components/AdminComponent.html":{}}}],["expected",{"_index":4036,"title":{},"body":{"license.html":{}}}],["expects",{"_index":4035,"title":{},"body":{"license.html":{}}}],["expert",{"_index":1590,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["explains",{"_index":3669,"title":{},"body":{"license.html":{}}}],["explicitly",{"_index":3856,"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/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/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":390,"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":3508,"title":{},"body":{"miscellaneous/functions.html":{}}}],["exportcsv(this.accounts",{"_index":420,"title":{},"body":{"components/AccountsComponent.html":{}}}],["exportcsv(this.actions",{"_index":616,"title":{},"body":{"components/AdminComponent.html":{}}}],["exportcsv(this.tokens",{"_index":3035,"title":{},"body":{"components/TokensComponent.html":{}}}],["exportcsv(this.transactions",{"_index":3317,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["exportcsv(this.trustedusers",{"_index":2856,"title":{},"body":{"components/SettingsComponent.html":{}}}],["exports",{"_index":438,"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":{},"overview.html":{}}}],["express",{"_index":4208,"title":{},"body":{"license.html":{}}}],["expressed",{"_index":4286,"title":{},"body":{"license.html":{}}}],["expressly",{"_index":4124,"title":{},"body":{"license.html":{}}}],["extend",{"_index":3703,"title":{},"body":{"license.html":{}}}],["extended",{"_index":4236,"title":{},"body":{"license.html":{}}}],["extends",{"_index":1346,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["extensions",{"_index":3948,"title":{},"body":{"license.html":{}}}],["extent",{"_index":3784,"title":{},"body":{"license.html":{}}}],["external",{"_index":3392,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["eye",{"_index":2765,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["f",{"_index":4107,"title":{},"body":{"license.html":{}}}],["facilitator",{"_index":1606,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["facilities",{"_index":3869,"title":{},"body":{"license.html":{}}}],["facing",{"_index":1332,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["fagio",{"_index":1639,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["failed",{"_index":968,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/LoggingInterceptor.html":{}}}],["failedpinattempts",{"_index":3355,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["fails",{"_index":4137,"title":{},"body":{"license.html":{}}}],["failure",{"_index":4311,"title":{},"body":{"license.html":{}}}],["fair",{"_index":3862,"title":{},"body":{"license.html":{}}}],["faith",{"_index":1609,"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":4020,"title":{},"body":{"license.html":{}}}],["family/surname",{"_index":1211,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["farm",{"_index":1657,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["farmer",{"_index":1658,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["farming",{"_index":1656,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fashion",{"_index":3746,"title":{},"body":{"license.html":{}}}],["favor",{"_index":4030,"title":{},"body":{"license.html":{}}}],["feature",{"_index":3544,"title":{},"body":{"index.html":{},"license.html":{}}}],["fee",{"_index":3651,"title":{},"body":{"license.html":{}}}],["feels",{"_index":396,"title":{},"body":{"components/AccountsComponent.html":{}}}],["female",{"_index":2376,"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",{"_index":1024,"title":{},"body":{"injectables/AuthService.html":{}}}],["fetched",{"_index":2962,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["fetcher",{"_index":1036,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["fetcher(settings",{"_index":1049,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["fia",{"_index":3374,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["field",{"_index":474,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.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/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/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":{},"index.html":{},"license.html":{}}}],["filegetter",{"_index":2769,"title":{},"body":{"injectables/RegistryService.html":{}}}],["filename",{"_index":3509,"title":{},"body":{"miscellaneous/functions.html":{}}}],["files",{"_index":3538,"title":{},"body":{"index.html":{},"license.html":{}}}],["filter",{"_index":423,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["filter_rounds",{"_index":1119,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["filteraccounts",{"_index":353,"title":{},"body":{"components/AccountsComponent.html":{}}}],["filterrounds",{"_index":1143,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["filters",{"_index":1118,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["filtertransactions",{"_index":3283,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["finalize",{"_index":1419,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["finally",{"_index":3205,"title":{},"body":{"injectables/TransactionService.html":{},"license.html":{}}}],["finance",{"_index":1988,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["find",{"_index":2564,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["fingerprint",{"_index":2664,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["fire",{"_index":2102,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["firewood",{"_index":2103,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["firm",{"_index":1791,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["first",{"_index":391,"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":1831,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fitness",{"_index":4289,"title":{},"body":{"license.html":{}}}],["fix",{"_index":2713,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["fixed",{"_index":3969,"title":{},"body":{"license.html":{}}}],["flag",{"_index":2690,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["flow",{"_index":3846,"title":{},"body":{"license.html":{}}}],["flowers",{"_index":2045,"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":3729,"title":{},"body":{"license.html":{}}}],["following",{"_index":4206,"title":{},"body":{"license.html":{}}}],["foo",{"_index":1537,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["food",{"_index":1793,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["footballer",{"_index":1742,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["footer",{"_index":1335,"title":{},"body":{"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{}}}],["footer'},{'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/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":1337,"title":{},"body":{"components/FooterComponent.html":{}}}],["footer.component.scss",{"_index":1336,"title":{},"body":{"components/FooterComponent.html":{}}}],["footercomponent",{"_index":307,"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/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":309,"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/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":3906,"title":{},"body":{"license.html":{}}}],["forbidden",{"_index":1328,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["force",{"_index":3865,"title":{},"body":{"license.html":{}}}],["form",{"_index":1223,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"license.html":{}}}],["form.submitted",{"_index":1229,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["format",{"_index":4070,"title":{},"body":{"license.html":{}}}],["formbuilder",{"_index":216,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["formcontrol",{"_index":1222,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["formgroup",{"_index":225,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["formgroupdirective",{"_index":1224,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["forms",{"_index":3960,"title":{},"body":{"license.html":{}}}],["found",{"_index":276,"title":{},"body":{"components/AccountSearchComponent.html":{},"index.html":{},"license.html":{}}}],["foundation",{"_index":3593,"title":{},"body":{"license.html":{}}}],["free",{"_index":3591,"title":{},"body":{"license.html":{}}}],["freedom",{"_index":3613,"title":{},"body":{"license.html":{}}}],["freedoms",{"_index":3654,"title":{},"body":{"license.html":{}}}],["freelance",{"_index":1760,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fromhex",{"_index":3185,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromhex(methodsignature",{"_index":3238,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromhex(strip0x(transferauthaddress",{"_index":3249,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromvalue",{"_index":1160,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["fruit",{"_index":1829,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fruits",{"_index":1830,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fua",{"_index":1711,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuata",{"_index":2270,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuel",{"_index":2096,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuel/energy",{"_index":2088,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fulfilling",{"_index":3891,"title":{},"body":{"license.html":{}}}],["full",{"_index":503,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{},"license.html":{}}}],["function",{"_index":2393,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"coverage.html":{}}}],["functioning",{"_index":4047,"title":{},"body":{"license.html":{}}}],["functions",{"_index":2423,"title":{"miscellaneous/functions.html":{}},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/functions.html":{}}}],["fundamentally",{"_index":3684,"title":{},"body":{"license.html":{}}}],["fundi",{"_index":1690,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["furniture",{"_index":2054,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["further",{"_index":3579,"title":{},"body":{"index.html":{},"license.html":{}}}],["future",{"_index":3705,"title":{},"body":{"license.html":{}}}],["g",{"_index":3529,"title":{},"body":{"index.html":{}}}],["g.e",{"_index":2324,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gandini",{"_index":2177,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["garage",{"_index":1728,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["garbage",{"_index":1638,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gardener",{"_index":1644,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gari",{"_index":2085,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gas",{"_index":2107,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gatina",{"_index":2251,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ge",{"_index":2325,"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":1178,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["general",{"_index":1384,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["generalized",{"_index":1360,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["generally",{"_index":3835,"title":{},"body":{"license.html":{}}}],["generate",{"_index":3541,"title":{},"body":{"index.html":{},"license.html":{}}}],["generated",{"_index":3524,"title":{},"body":{"index.html":{}}}],["ger",{"_index":2655,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["germany",{"_index":2656,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["getaccountinfo",{"_index":3144,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaccountinfo(account",{"_index":3155,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaccounttypes",{"_index":2413,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getactionbyid",{"_index":2398,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{}}}],["getactionbyid(id",{"_index":3380,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getactions",{"_index":2396,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getaddresssearchformstub",{"_index":242,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["getaddresstransactions",{"_index":3145,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaddresstransactions(address",{"_index":3157,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getalltransactions",{"_index":3146,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["getalltransactions(offset",{"_index":3159,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["getareanamebylocation",{"_index":1400,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getareanamebylocation(location",{"_index":1405,"title":{},"body":{"injectables/LocationService.html":{}}}],["getareanames",{"_index":1401,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getareatypebyarea",{"_index":1402,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getareatypebyarea(area",{"_index":1408,"title":{},"body":{"injectables/LocationService.html":{}}}],["getareatypes",{"_index":1403,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getbysymbol",{"_index":3009,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["getbysymbol(symbol",{"_index":3010,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["getcategories",{"_index":2405,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getcategorybyproduct",{"_index":2407,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getchallenge",{"_index":865,"title":{},"body":{"injectables/AuthService.html":{}}}],["getcreateformstub",{"_index":1190,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["getencryptkeys",{"_index":2480,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getfingerprint",{"_index":2481,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getgenders",{"_index":2417,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getkeyformstub",{"_index":797,"title":{},"body":{"components/AuthComponent.html":{}}}],["getkeyid",{"_index":2482,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getkeyid(key",{"_index":2505,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getkeysforid",{"_index":2483,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getkeysforid(keyid",{"_index":2507,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getnamesearchformstub",{"_index":238,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["getorganizationformstub",{"_index":2636,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["getphonesearchformstub",{"_index":240,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["getprivatekey",{"_index":866,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeyforid",{"_index":2484,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeyforid(keyid",{"_index":2511,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeyid",{"_index":2485,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeys",{"_index":2486,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforid",{"_index":2487,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforid(keyid",{"_index":2515,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforsubkeyid",{"_index":2488,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforsubkeyid(subkeyid",{"_index":2517,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeys",{"_index":867,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeysforaddress",{"_index":2489,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeysforaddress(address",{"_index":2521,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getregistry",{"_index":2770,"title":{},"body":{"injectables/RegistryService.html":{}}}],["getter.ts",{"_index":3419,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["getting",{"_index":3519,"title":{"index.html":{},"license.html":{}},"body":{}}],["gettokenbalance",{"_index":2981,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenbalance(address",{"_index":2983,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenbysymbol",{"_index":2403,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"injectables/TokenService.html":{}}}],["gettokenbysymbol(symbol",{"_index":2985,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokens",{"_index":2401,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"injectables/TokenService.html":{}}}],["gettransactiontypes",{"_index":2415,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["gettrustedactivekeys",{"_index":2490,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["gettrustedkeys",{"_index":2491,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["gettrustedusers",{"_index":868,"title":{},"body":{"injectables/AuthService.html":{}}}],["getuser",{"_index":3346,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuser(userkey",{"_index":3382,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuserbyid",{"_index":3347,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuserbyid(id",{"_index":3385,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getweb3",{"_index":2771,"title":{},"body":{"injectables/RegistryService.html":{}}}],["getwithtoken",{"_index":869,"title":{},"body":{"injectables/AuthService.html":{}}}],["giftable",{"_index":1520,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["githeri",{"_index":1832,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["githurai",{"_index":2277,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["give",{"_index":3928,"title":{},"body":{"license.html":{}}}],["given",{"_index":1208,"title":{},"body":{"components/CreateAccountComponent.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["givenname",{"_index":1194,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["gives",{"_index":3941,"title":{},"body":{"license.html":{}}}],["giving",{"_index":3663,"title":{},"body":{"license.html":{}}}],["globalerrorhandler",{"_index":730,"title":{"injectables/GlobalErrorHandler.html":{}},"body":{"modules/AppModule.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{},"overview.html":{}}}],["gnu",{"_index":3585,"title":{},"body":{"license.html":{}}}],["go",{"_index":818,"title":{},"body":{"components/AuthComponent.html":{},"index.html":{}}}],["goats",{"_index":1837,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gona",{"_index":2175,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["good",{"_index":1916,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["governed",{"_index":4079,"title":{},"body":{"license.html":{}}}],["government",{"_index":1621,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gpl",{"_index":3659,"title":{},"body":{"license.html":{}}}],["grant",{"_index":4103,"title":{},"body":{"license.html":{}}}],["granted",{"_index":3851,"title":{},"body":{"license.html":{}}}],["grants",{"_index":4158,"title":{},"body":{"license.html":{}}}],["graph",{"_index":4374,"title":{},"body":{"modules.html":{}}}],["grassroots",{"_index":988,"title":{},"body":{"injectables/AuthService.html":{},"components/FooterComponent.html":{},"license.html":{}}}],["gratis",{"_index":3650,"title":{},"body":{"license.html":{}}}],["greatest",{"_index":4330,"title":{},"body":{"license.html":{}}}],["grocer",{"_index":1834,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["groceries",{"_index":3362,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["grocery",{"_index":1833,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["groundnuts",{"_index":1823,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["group",{"_index":1983,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["grz",{"_index":1522,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["guarantee",{"_index":3616,"title":{},"body":{"license.html":{}}}],["guard",{"_index":834,"title":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["guards",{"_index":835,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"overview.html":{}}}],["gui",{"_index":4359,"title":{},"body":{"license.html":{}}}],["guitarist",{"_index":1776,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["guro",{"_index":2176,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hair",{"_index":1717,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["halt",{"_index":691,"title":{},"body":{"components/AppComponent.html":{}}}],["handle",{"_index":816,"title":{},"body":{"components/AuthComponent.html":{},"interceptors/ErrorInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["handled",{"_index":2421,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["handleerror",{"_index":1348,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handleerror(error",{"_index":1353,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["handler",{"_index":397,"title":{},"body":{"components/AccountsComponent.html":{},"injectables/AuthService.html":{}}}],["handler.ts",{"_index":1345,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{}}}],["handler.ts:18",{"_index":1352,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:27",{"_index":1354,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:47",{"_index":1359,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:67",{"_index":1356,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:8",{"_index":1398,"title":{},"body":{"classes/HttpError.html":{}}}],["handleroute",{"_index":2394,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["hanje",{"_index":2163,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["happened",{"_index":1387,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["hardware",{"_index":2017,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hash",{"_index":3122,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["hash.tostring('hex').substring(0",{"_index":3232,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction",{"_index":3227,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction.digest",{"_index":3230,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction.update('createrequest(address,address,address,uint256",{"_index":3229,"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":3867,"title":{},"body":{"license.html":{}}}],["hawinga",{"_index":2338,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hawker",{"_index":1692,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hawking",{"_index":1691,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hazina",{"_index":2123,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headers",{"_index":2378,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["headmaster",{"_index":1594,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headmistress",{"_index":1585,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headteacher",{"_index":1586,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["health",{"_index":1951,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["heath",{"_index":1967,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["help",{"_index":1696,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["helper",{"_index":2467,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["hera",{"_index":3368,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["herbalist",{"_index":1962,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hereafter",{"_index":4198,"title":{},"body":{"license.html":{}}}],["hi",{"_index":1063,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["hidden",{"_index":594,"title":{},"body":{"components/AdminComponent.html":{}}}],["hoba",{"_index":953,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaparsechallengeheader",{"_index":902,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaparsechallengeheader(authheader",{"_index":964,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaresponseencoded",{"_index":893,"title":{},"body":{"injectables/AuthService.html":{}}}],["holder",{"_index":4131,"title":{},"body":{"license.html":{}}}],["holders",{"_index":4085,"title":{},"body":{"license.html":{}}}],["holel",{"_index":1825,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["homabay",{"_index":2342,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["homaboy",{"_index":2343,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["home",{"_index":281,"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":{}}}],["hope",{"_index":4343,"title":{},"body":{"license.html":{}}}],["hospital",{"_index":1961,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hostlistener",{"_index":672,"title":{},"body":{"components/AppComponent.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["hostlistener('click",{"_index":2808,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["hostlistener('window:cic_convert",{"_index":718,"title":{},"body":{"components/AppComponent.html":{}}}],["hostlistener('window:cic_transfer",{"_index":714,"title":{},"body":{"components/AppComponent.html":{}}}],["hostlisteners",{"_index":646,"title":{},"body":{"components/AppComponent.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["hosts",{"_index":3998,"title":{},"body":{"license.html":{}}}],["hotel",{"_index":1824,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hoteli",{"_index":1826,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["house",{"_index":1695,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["housegirl",{"_index":1697,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["househelp",{"_index":1693,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["household",{"_index":4021,"title":{},"body":{"license.html":{}}}],["hsehelp",{"_index":1694,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["html",{"_index":286,"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/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":699,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["http",{"_index":1361,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["http://localhost:4200",{"_index":3535,"title":{},"body":{"index.html":{}}}],["http://localhost:8000",{"_index":4413,"title":{},"body":{"miscellaneous/variables.html":{}}}],["http://localhost:8000/keys.asc",{"_index":4414,"title":{},"body":{"miscellaneous/variables.html":{}}}],["http_interceptors",{"_index":742,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["httpclient",{"_index":877,"title":{},"body":{"injectables/AuthService.html":{},"injectables/LocationService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["httpclientmodule",{"_index":743,"title":{},"body":{"modules/AppModule.html":{}}}],["httpconfiginterceptor",{"_index":731,"title":{"interceptors/HttpConfigInterceptor.html":{}},"body":{"modules/AppModule.html":{},"interceptors/HttpConfigInterceptor.html":{},"coverage.html":{},"overview.html":{}}}],["httperror",{"_index":910,"title":{"classes/HttpError.html":{}},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{}}}],["httperror(xhr.statustext",{"_index":954,"title":{},"body":{"injectables/AuthService.html":{}}}],["httperrorresponse",{"_index":1299,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["httperrorresponse).status",{"_index":1380,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["httpevent",{"_index":1297,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpgetter",{"_index":2775,"title":{},"body":{"injectables/RegistryService.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["httphandler",{"_index":1294,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpinterceptor",{"_index":1298,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httprequest",{"_index":1293,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpresponse",{"_index":1418,"title":{},"body":{"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["https://blockexplorer.bloxberg.org/address",{"_index":3090,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["https://cache.dev.grassrootseconomics.net",{"_index":4402,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://dashboard.sarafu.network",{"_index":2722,"title":{},"body":{"components/PagesComponent.html":{}}}],["https://dev.grassrootseconomics.net/.well",{"_index":4399,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://fsf.org",{"_index":3595,"title":{},"body":{"license.html":{}}}],["https://meta.dev.grassrootseconomics.net",{"_index":4397,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://ussd.dev.grassrootseconomics.net",{"_index":4407,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://www.gnu.org/licenses",{"_index":4345,"title":{},"body":{"license.html":{}}}],["https://www.gnu.org/licenses/why",{"_index":4370,"title":{},"body":{"license.html":{}}}],["huruma",{"_index":2244,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hustler",{"_index":1712,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hypothetical",{"_index":4356,"title":{},"body":{"license.html":{}}}],["icon",{"_index":2759,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["icon.classlist.add('fa",{"_index":2766,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["icon.classlist.remove('fa",{"_index":2764,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["iconid",{"_index":2752,"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":4226,"title":{},"body":{"license.html":{}}}],["identifier",{"_index":2961,"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":2428,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["idnumber",{"_index":1193,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["iframes",{"_index":2724,"title":{},"body":{"components/PagesComponent.html":{}}}],["ignore",{"_index":2762,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["imam",{"_index":1611,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["immagration",{"_index":1633,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["immigration",{"_index":1634,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["implement",{"_index":3819,"title":{},"body":{"license.html":{}}}],["implementation",{"_index":3820,"title":{},"body":{"license.html":{}}}],["implements",{"_index":185,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.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/OrganizationComponent.html":{},"classes/PGPSigner.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":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["implied",{"_index":4251,"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/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/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":769,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["import('@pages/accounts/accounts.module').then(m",{"_index":2742,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/admin/admin.module').then(m",{"_index":2746,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/pages.module').then(m",{"_index":771,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["import('@pages/settings/settings.module').then(m",{"_index":2740,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/tokens/tokens.module').then(m",{"_index":2744,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/transactions/transactions.module').then(m",{"_index":2738,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["imported",{"_index":2568,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["imported.keys",{"_index":2570,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importing",{"_index":4190,"title":{},"body":{"license.html":{}}}],["importkeypair",{"_index":2492,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importkeypair(publickey",{"_index":2525,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importprivatekey",{"_index":2493,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importprivatekey(privatekey",{"_index":2528,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importpublickey",{"_index":2494,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importpublickey(publickey",{"_index":2530,"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":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.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":4112,"title":{},"body":{"license.html":{}}}],["imposed",{"_index":4253,"title":{},"body":{"license.html":{}}}],["inability",{"_index":4305,"title":{},"body":{"license.html":{}}}],["inaccurate",{"_index":4308,"title":{},"body":{"license.html":{}}}],["inc",{"_index":3594,"title":{},"body":{"license.html":{}}}],["incidental",{"_index":4302,"title":{},"body":{"license.html":{}}}],["include",{"_index":3810,"title":{},"body":{"license.html":{}}}],["included",{"_index":3812,"title":{},"body":{"license.html":{}}}],["includes",{"_index":3769,"title":{},"body":{"license.html":{}}}],["including",{"_index":3831,"title":{},"body":{"license.html":{}}}],["inclusion",{"_index":3958,"title":{},"body":{"license.html":{}}}],["inclusive",{"_index":2934,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["income",{"_index":2939,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["incompatible",{"_index":3685,"title":{},"body":{"license.html":{}}}],["incorporating",{"_index":4362,"title":{},"body":{"license.html":{}}}],["incorporation",{"_index":4024,"title":{},"body":{"license.html":{}}}],["incorrect",{"_index":994,"title":{},"body":{"injectables/AuthService.html":{}}}],["indemnification",{"_index":4108,"title":{},"body":{"license.html":{}}}],["independent",{"_index":3946,"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/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/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/typealiases.html":{},"miscellaneous/variables.html":{}}}],["indicate",{"_index":4161,"title":{},"body":{"license.html":{}}}],["indicating",{"_index":4122,"title":{},"body":{"license.html":{}}}],["individual",{"_index":3956,"title":{},"body":{"license.html":{}}}],["individuals",{"_index":3692,"title":{},"body":{"license.html":{}}}],["industrial",{"_index":2253,"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/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/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":4006,"title":{},"body":{"license.html":{}}}],["information",{"_index":1518,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["infringe",{"_index":4159,"title":{},"body":{"license.html":{}}}],["infringed",{"_index":4188,"title":{},"body":{"license.html":{}}}],["infringement",{"_index":3762,"title":{},"body":{"license.html":{}}}],["init",{"_index":870,"title":{},"body":{"injectables/AuthService.html":{}}}],["initialparams",{"_index":532,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["initiate",{"_index":4182,"title":{},"body":{"license.html":{}}}],["inject",{"_index":1263,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["inject(mat_dialog_data",{"_index":1261,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["injectable",{"_index":844,"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":860,"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":2756,"title":{},"body":{"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/TransactionDetailsComponent.html":{},"miscellaneous/functions.html":{}}}],["input('routerlink",{"_index":2806,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["inputs",{"_index":2751,"title":{},"body":{"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/TransactionDetailsComponent.html":{}}}],["inside",{"_index":3681,"title":{},"body":{"license.html":{}}}],["install",{"_index":3528,"title":{},"body":{"index.html":{},"license.html":{}}}],["installation",{"_index":4042,"title":{},"body":{"license.html":{}}}],["installed",{"_index":4058,"title":{},"body":{"license.html":{}}}],["instance",{"_index":66,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["instanceof",{"_index":978,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{}}}],["instead",{"_index":4368,"title":{},"body":{"license.html":{}}}],["instructor",{"_index":1581,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["insurance",{"_index":1749,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["intact",{"_index":3921,"title":{},"body":{"license.html":{}}}],["intended",{"_index":3615,"title":{},"body":{"license.html":{}}}],["intention",{"_index":3910,"title":{},"body":{"license.html":{}}}],["interaction",{"_index":3778,"title":{},"body":{"license.html":{}}}],["interactive",{"_index":3780,"title":{},"body":{"license.html":{}}}],["intercept",{"_index":1289,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["intercept(request",{"_index":1292,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["interceptor",{"_index":814,"title":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}},"body":{"components/AuthComponent.html":{},"coverage.html":{}}}],["interceptors",{"_index":1287,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["interchange",{"_index":3972,"title":{},"body":{"license.html":{}}}],["interest",{"_index":4176,"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/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/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/Signer.html":{},"interfaces/Staff.html":{},"interfaces/Token.html":{},"license.html":{},"overview.html":{}}}],["interfered",{"_index":4049,"title":{},"body":{"license.html":{}}}],["intern",{"_index":1601,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["interpretation",{"_index":4315,"title":{},"body":{"license.html":{}}}],["interpreter",{"_index":3829,"title":{},"body":{"license.html":{}}}],["intimate",{"_index":3844,"title":{},"body":{"license.html":{}}}],["invalid",{"_index":1005,"title":{},"body":{"injectables/AuthService.html":{}}}],["invalidate",{"_index":3942,"title":{},"body":{"license.html":{}}}],["irrevocable",{"_index":3853,"title":{},"body":{"license.html":{}}}],["isdevmode",{"_index":1458,"title":{},"body":{"injectables/LoggingService.html":{}}}],["isdialogopen",{"_index":1271,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["isencryptedkeycheck",{"_index":1008,"title":{},"body":{"injectables/AuthService.html":{}}}],["isencryptedprivatekey",{"_index":2495,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["isencryptedprivatekey(privatekey",{"_index":2532,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["iserrorstate",{"_index":1220,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["iserrorstate(control",{"_index":1221,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["issubmitted",{"_index":1228,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["isvalidkey",{"_index":2496,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["isvalidkey(key",{"_index":2534,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["isvalidkeycheck",{"_index":1002,"title":{},"body":{"injectables/AuthService.html":{}}}],["iswarning",{"_index":1349,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["iswarning(errortracestring",{"_index":1355,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["item",{"_index":3796,"title":{},"body":{"license.html":{}}}],["itself",{"_index":4063,"title":{},"body":{"license.html":{}}}],["jack",{"_index":1515,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["jane",{"_index":3357,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["jembe",{"_index":1663,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jewel",{"_index":2050,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jik",{"_index":1994,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jogoo",{"_index":2261,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["john",{"_index":3349,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["jomvu",{"_index":2301,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["journalist",{"_index":1582,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jquery",{"_index":3477,"title":{},"body":{"dependencies.html":{}}}],["js",{"_index":3493,"title":{},"body":{"dependencies.html":{}}}],["json.parse(localstorage.getitem(atob('cicada_user",{"_index":2794,"title":{},"body":{"guards/RoleGuard.html":{}}}],["json.stringify(err.error",{"_index":1321,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["jua",{"_index":1702,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juacali",{"_index":1701,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juakali",{"_index":1699,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jualikali",{"_index":1700,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juice",{"_index":1948,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juja",{"_index":2259,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["junda",{"_index":2316,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["june",{"_index":3587,"title":{},"body":{"license.html":{}}}],["kabete",{"_index":2242,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kabiro",{"_index":2272,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kafuduni",{"_index":2170,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kahawa",{"_index":1865,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kaimati",{"_index":1862,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kajiado",{"_index":2357,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kakamega",{"_index":2355,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kakuma",{"_index":2328,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kalalani",{"_index":2169,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kali",{"_index":1703,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kaloleni",{"_index":2171,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kamba",{"_index":1860,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kambi",{"_index":2121,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kamongo",{"_index":2132,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kangemi",{"_index":2234,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kanisa",{"_index":1618,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kariobangi",{"_index":2254,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["karma",{"_index":3565,"title":{},"body":{"index.html":{}}}],["kasarani",{"_index":2255,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kasemeni",{"_index":2164,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["katundani",{"_index":2165,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kawangware",{"_index":2237,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayaba",{"_index":2119,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayba",{"_index":2120,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayole",{"_index":2256,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kazi",{"_index":1708,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ke",{"_index":2649,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["kebeba",{"_index":2058,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["keccak",{"_index":3180,"title":{},"body":{"injectables/TransactionService.html":{}}}],["keccak(256",{"_index":3228,"title":{},"body":{"injectables/TransactionService.html":{}}}],["keep",{"_index":3920,"title":{},"body":{"license.html":{}}}],["keki",{"_index":1866,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kenya",{"_index":2650,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["kenyatta",{"_index":2248,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kericho",{"_index":2356,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kernel",{"_index":3823,"title":{},"body":{"license.html":{}}}],["kerosene",{"_index":2114,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kerosine",{"_index":2113,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["key",{"_index":800,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{},"classes/CustomValidator.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["key.getkeyid().tohex",{"_index":2575,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["key.isdecrypted",{"_index":2571,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyform",{"_index":779,"title":{},"body":{"components/AuthComponent.html":{}}}],["keyformstub",{"_index":786,"title":{},"body":{"components/AuthComponent.html":{}}}],["keyid",{"_index":2509,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring",{"_index":2551,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["keyring.clear",{"_index":2588,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.getkeysforid(keyid",{"_index":2580,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.load",{"_index":2553,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys",{"_index":2559,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.getforid(keyid",{"_index":2582,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.importkey(privatekey",{"_index":2556,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys",{"_index":2558,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0",{"_index":2560,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0].getkeyid().tohex",{"_index":2579,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0].keypacket",{"_index":2573,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0].keypacket.fingerprint",{"_index":2574,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.getforaddress(address",{"_index":2584,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.getforid(keyid",{"_index":2581,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.getforid(subkeyid",{"_index":2583,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.importkey(publickey",{"_index":2555,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.keys",{"_index":2557,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.removeforid(keyid",{"_index":2586,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.removekeysforid(keyid",{"_index":2585,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.store",{"_index":2554,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keys",{"_index":679,"title":{},"body":{"components/AppComponent.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["keystore",{"_index":2478,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["khaimati",{"_index":1861,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kiambu",{"_index":2361,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibanda",{"_index":2000,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibandaogo",{"_index":2166,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibandaongo",{"_index":2167,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibera",{"_index":2228,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibira",{"_index":2229,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibra",{"_index":2230,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kidzuvini",{"_index":2168,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kikuyu",{"_index":2264,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kilfi",{"_index":2319,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kilibole",{"_index":2172,"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":2141,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kind",{"_index":3774,"title":{},"body":{"license.html":{}}}],["kinds",{"_index":3606,"title":{},"body":{"license.html":{}}}],["kingston",{"_index":2129,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kingstone",{"_index":2131,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kinyozi",{"_index":1707,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kiosk",{"_index":2001,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kirembe",{"_index":2283,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisauni",{"_index":2305,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisii",{"_index":2350,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisumu",{"_index":2336,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitabu",{"_index":1608,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitengela",{"_index":2245,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitui",{"_index":2329,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kizingo",{"_index":2290,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kmoja",{"_index":2275,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["knitting",{"_index":1709,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["know",{"_index":3635,"title":{},"body":{"license.html":{}}}],["knowingly",{"_index":4215,"title":{},"body":{"license.html":{}}}],["knowledge",{"_index":4224,"title":{},"body":{"license.html":{}}}],["known/publickeys",{"_index":4400,"title":{},"body":{"miscellaneous/variables.html":{}}}],["kobo",{"_index":2859,"title":{},"body":{"components/SettingsComponent.html":{}}}],["kokotoni",{"_index":2223,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["korokocho",{"_index":2130,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["korosho",{"_index":1946,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kra",{"_index":1631,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["krcs",{"_index":1603,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kubeba",{"_index":2073,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kufua",{"_index":1710,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kujenga",{"_index":1706,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kuku",{"_index":1864,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kulima",{"_index":1660,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kunde",{"_index":1863,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kuni",{"_index":2094,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kushona",{"_index":1698,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kusumu",{"_index":2345,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kwale",{"_index":2142,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kwangware",{"_index":2238,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kware",{"_index":2271,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lab",{"_index":1973,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["labor",{"_index":1714,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["labour",{"_index":1665,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["landi",{"_index":2278,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["landlord",{"_index":1687,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["langata",{"_index":2279,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["language",{"_index":3806,"title":{},"body":{"license.html":{}}}],["larger",{"_index":3950,"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":686,"title":{},"body":{"components/AppComponent.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.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":1715,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["law",{"_index":1790,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["laws",{"_index":3733,"title":{},"body":{"license.html":{}}}],["lawsuit",{"_index":4186,"title":{},"body":{"license.html":{}}}],["lazy",{"_index":3543,"title":{},"body":{"index.html":{}}}],["leader",{"_index":1630,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["leaving",{"_index":1006,"title":{},"body":{"injectables/AuthService.html":{}}}],["lecturer",{"_index":1568,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["legal",{"_index":3664,"title":{},"body":{"license.html":{}}}],["legend",{"_index":285,"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/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":{}}}],["leso",{"_index":2008,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lesser",{"_index":4367,"title":{},"body":{"license.html":{}}}],["lesso",{"_index":2009,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lesson",{"_index":1583,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["level",{"_index":755,"title":{},"body":{"modules/AppModule.html":{}}}],["lgpl.html",{"_index":4371,"title":{},"body":{"license.html":{}}}],["liability",{"_index":4088,"title":{},"body":{"license.html":{}}}],["liable",{"_index":3761,"title":{},"body":{"license.html":{}}}],["libraries",{"_index":3808,"title":{},"body":{"license.html":{}}}],["library",{"_index":2576,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["license",{"_index":3584,"title":{"license.html":{}},"body":{"license.html":{}}}],["licensed",{"_index":3737,"title":{},"body":{"license.html":{}}}],["licensee",{"_index":3740,"title":{},"body":{"license.html":{}}}],["licensees",{"_index":3742,"title":{},"body":{"license.html":{}}}],["licenses",{"_index":3608,"title":{},"body":{"license.html":{}}}],["licensing",{"_index":4163,"title":{},"body":{"license.html":{}}}],["licensors",{"_index":4101,"title":{},"body":{"license.html":{}}}],["likewise",{"_index":4156,"title":{},"body":{"license.html":{}}}],["likoni",{"_index":2287,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["limit",{"_index":1046,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"license.html":{}}}],["limit).pipe(first()).subscribe(res",{"_index":1108,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["limitation",{"_index":4299,"title":{},"body":{"license.html":{}}}],["limited",{"_index":4287,"title":{},"body":{"license.html":{}}}],["limiting",{"_index":4087,"title":{},"body":{"license.html":{}}}],["limuru",{"_index":2280,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lindi",{"_index":2227,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["line",{"_index":4339,"title":{},"body":{"license.html":{}}}],["lines",{"_index":1999,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["link",{"_index":2802,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{},"coverage.html":{},"license.html":{}}}],["linked",{"_index":3841,"title":{},"body":{"license.html":{}}}],["linking",{"_index":4365,"title":{},"body":{"license.html":{}}}],["linkparams",{"_index":2807,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["list",{"_index":3792,"title":{},"body":{"license.html":{}}}],["literal",{"_index":23,"title":{},"body":{"interfaces/AccountDetails.html":{},"injectables/AuthService.html":{},"interfaces/Token.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["litigation",{"_index":4183,"title":{},"body":{"license.html":{}}}],["lo",{"_index":1062,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["load",{"_index":401,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{}}}],["loadchildren",{"_index":768,"title":{},"body":{"modules/AppRoutingModule.html":{},"modules/PagesRoutingModule.html":{}}}],["loaded",{"_index":3573,"title":{},"body":{"index.html":{}}}],["loadevent",{"_index":2980,"title":{},"body":{"injectables/TokenService.html":{}}}],["loading",{"_index":780,"title":{},"body":{"components/AuthComponent.html":{},"index.html":{}}}],["loadkeyring",{"_index":2497,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["loan",{"_index":1984,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["local",{"_index":4316,"title":{},"body":{"license.html":{}}}],["localstorage.getitem(btoa('cicada_private_key",{"_index":847,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{}}}],["localstorage.setitem(btoa('cicada_private_key",{"_index":1013,"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":511,"title":{},"body":{"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["locationservice",{"_index":1180,"title":{"injectables/LocationService.html":{}},"body":{"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"coverage.html":{}}}],["log",{"_index":943,"title":{},"body":{"injectables/AuthService.html":{}}}],["logerror",{"_index":1350,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["logerror(error",{"_index":1358,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["logger",{"_index":750,"title":{},"body":{"modules/AppModule.html":{},"injectables/LoggingService.html":{},"dependencies.html":{}}}],["loggermodule",{"_index":748,"title":{},"body":{"modules/AppModule.html":{}}}],["loggermodule.forroot",{"_index":754,"title":{},"body":{"modules/AppModule.html":{}}}],["logginginterceptor",{"_index":732,"title":{"interceptors/LoggingInterceptor.html":{}},"body":{"modules/AppModule.html":{},"interceptors/LoggingInterceptor.html":{},"coverage.html":{},"overview.html":{}}}],["loggingservice",{"_index":357,"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/Signer.html":{},"components/TokensComponent.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["loggingurl",{"_index":4395,"title":{},"body":{"miscellaneous/variables.html":{}}}],["login",{"_index":782,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["loginresponse",{"_index":871,"title":{},"body":{"injectables/AuthService.html":{}}}],["loginresponse(o",{"_index":886,"title":{},"body":{"injectables/AuthService.html":{}}}],["loginview",{"_index":872,"title":{},"body":{"injectables/AuthService.html":{}}}],["loglevel",{"_index":4392,"title":{},"body":{"miscellaneous/variables.html":{}}}],["logout",{"_index":873,"title":{},"body":{"injectables/AuthService.html":{},"components/SettingsComponent.html":{}}}],["long",{"_index":3864,"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":4306,"title":{},"body":{"license.html":{}}}],["losses",{"_index":4309,"title":{},"body":{"license.html":{}}}],["low",{"_index":1144,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["lower",{"_index":2937,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["lowest",{"_index":170,"title":{},"body":{"classes/AccountIndex.html":{}}}],["lunga",{"_index":2137,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lungalunga",{"_index":2133,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lungu",{"_index":2136,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lutsangani",{"_index":2173,"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/Signer.html":{},"miscellaneous/variables.html":{}}}],["m.accountsmodule",{"_index":2743,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.adminmodule",{"_index":2747,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.authmodule",{"_index":770,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["m.pagesmodule",{"_index":772,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["m.settingsmodule",{"_index":2741,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.tokensmodule",{"_index":2745,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.transactionsmodule",{"_index":2739,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["maalim",{"_index":1563,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maandazi",{"_index":1898,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maandzi",{"_index":1941,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabenda",{"_index":1838,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabesheni",{"_index":2194,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabuyu",{"_index":1877,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["machakos",{"_index":2352,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["machine",{"_index":3962,"title":{},"body":{"license.html":{}}}],["machungwa",{"_index":1878,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["made",{"_index":4050,"title":{},"body":{"license.html":{}}}],["madewani",{"_index":2190,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["madrasa",{"_index":1612,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maembe",{"_index":1759,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mafuta",{"_index":2098,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magari",{"_index":2086,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magogoni",{"_index":2315,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magongo",{"_index":2298,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mahamri",{"_index":1906,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maharagwe",{"_index":1904,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mahindi",{"_index":1897,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mail",{"_index":4349,"title":{},"body":{"license.html":{}}}],["mailman",{"_index":1632,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["main",{"_index":1553,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maintain",{"_index":3994,"title":{},"body":{"license.html":{}}}],["maize",{"_index":1891,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majani",{"_index":1758,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majaoni",{"_index":2313,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majengo",{"_index":2217,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maji",{"_index":1950,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["major",{"_index":3815,"title":{},"body":{"license.html":{}}}],["makaa",{"_index":2097,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makadara",{"_index":2246,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makanga",{"_index":2087,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["make",{"_index":3619,"title":{},"body":{"license.html":{}}}],["makes",{"_index":3882,"title":{},"body":{"license.html":{}}}],["makina",{"_index":2231,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["making",{"_index":3748,"title":{},"body":{"license.html":{}}}],["makobeni",{"_index":2189,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makonge",{"_index":1780,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makongeni",{"_index":2322,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makueni",{"_index":2348,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makuluni",{"_index":2187,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makupa",{"_index":2293,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makuti",{"_index":1705,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["male",{"_index":2375,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["mali",{"_index":2016,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["malimali",{"_index":2014,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["management",{"_index":2865,"title":{},"body":{"components/SettingsComponent.html":{}}}],["manager",{"_index":1723,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["managing",{"_index":3522,"title":{},"body":{"index.html":{}}}],["manamba",{"_index":2078,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mandazi",{"_index":1895,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mango",{"_index":1851,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mangwe",{"_index":2026,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["manner",{"_index":4199,"title":{},"body":{"license.html":{}}}],["manufacturer",{"_index":3683,"title":{},"body":{"license.html":{}}}],["manyani",{"_index":2314,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["march",{"_index":4248,"title":{},"body":{"license.html":{}}}],["mariakani",{"_index":2188,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marital",{"_index":1596,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marked",{"_index":3674,"title":{},"body":{"license.html":{}}}],["market",{"_index":2285,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marketing",{"_index":1784,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marks",{"_index":4106,"title":{},"body":{"license.html":{}}}],["marondo",{"_index":1940,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["masai",{"_index":2122,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mask",{"_index":1971,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["masks",{"_index":3735,"title":{},"body":{"license.html":{}}}],["mason",{"_index":1726,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mat_dialog_data",{"_index":1264,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["matatu",{"_index":2063,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matbuttonmodule",{"_index":475,"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":477,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matcheckboxmodule",{"_index":467,"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":1218,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"coverage.html":{}}}],["matcher.ts:5",{"_index":1226,"title":{},"body":{"classes/CustomErrorStateMatcher.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/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/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/typealiases.html":{},"miscellaneous/variables.html":{}}}],["matdialog",{"_index":1274,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["matdialogmodule",{"_index":2900,"title":{},"body":{"modules/SharedModule.html":{}}}],["matdialogref",{"_index":1279,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["material",{"_index":2681,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["material.digest",{"_index":2696,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["materialize",{"_index":1500,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["materially",{"_index":4064,"title":{},"body":{"license.html":{}}}],["matformfieldmodule",{"_index":472,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["math.pow(10",{"_index":2950,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["mathare",{"_index":2257,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mathere",{"_index":2281,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maticonmodule",{"_index":479,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/SharedModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matinputmodule",{"_index":470,"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":2885,"title":{},"body":{"modules/SettingsModule.html":{}}}],["matoke",{"_index":1942,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matpaginator",{"_index":380,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["matpaginatormodule",{"_index":469,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matprogressspinnermodule",{"_index":488,"title":{},"body":{"modules/AccountsModule.html":{}}}],["matpseudocheckboxmodule",{"_index":3045,"title":{},"body":{"modules/TokensModule.html":{}}}],["matradiomodule",{"_index":2883,"title":{},"body":{"modules/SettingsModule.html":{}}}],["matress",{"_index":2033,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matripplemodule",{"_index":486,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AuthModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["matselectmodule",{"_index":481,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AuthModule.html":{},"modules/PagesModule.html":{},"modules/SettingsModule.html":{},"modules/TransactionsModule.html":{}}}],["matsidenavmodule",{"_index":3046,"title":{},"body":{"modules/TokensModule.html":{}}}],["matsnackbar",{"_index":3075,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["matsnackbarmodule",{"_index":493,"title":{},"body":{"modules/AccountsModule.html":{},"modules/TransactionsModule.html":{}}}],["matsort",{"_index":384,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["matsortmodule",{"_index":466,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["mattabledatasource",{"_index":370,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["mattabledatasource(accounts",{"_index":406,"title":{},"body":{"components/AccountsComponent.html":{}}}],["mattabledatasource(actions",{"_index":606,"title":{},"body":{"components/AdminComponent.html":{}}}],["mattabledatasource(this.tokens",{"_index":3033,"title":{},"body":{"components/TokensComponent.html":{}}}],["mattabledatasource(this.trustedusers",{"_index":2855,"title":{},"body":{"components/SettingsComponent.html":{}}}],["mattabledatasource(transactions",{"_index":3307,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["mattablemodule",{"_index":465,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AdminModule.html":{},"modules/AppModule.html":{},"modules/SettingsModule.html":{},"modules/TokensModule.html":{},"modules/TransactionsModule.html":{}}}],["mattabsmodule",{"_index":484,"title":{},"body":{"modules/AccountsModule.html":{}}}],["mattoolbarmodule",{"_index":3048,"title":{},"body":{"modules/TokensModule.html":{}}}],["mattress",{"_index":2034,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mattresses",{"_index":2035,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matuga",{"_index":2218,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matunda",{"_index":1850,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mawe",{"_index":1757,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mayai",{"_index":1913,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazera",{"_index":2196,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazeras",{"_index":2195,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazingira",{"_index":1647,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maziwa",{"_index":1871,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbaazi",{"_index":1896,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbao",{"_index":2095,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbata",{"_index":1892,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbenda",{"_index":1839,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbita",{"_index":2334,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbog",{"_index":1873,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mboga",{"_index":1872,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbonga",{"_index":1797,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbuzi",{"_index":1879,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mc",{"_index":3363,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["mchanga",{"_index":2030,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchele",{"_index":1849,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchicha",{"_index":1881,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchuuzi",{"_index":1894,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchuzi",{"_index":1893,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["meaning",{"_index":4116,"title":{},"body":{"license.html":{}}}],["means",{"_index":3732,"title":{},"body":{"license.html":{}}}],["measure",{"_index":3890,"title":{},"body":{"license.html":{}}}],["measures",{"_index":3903,"title":{},"body":{"license.html":{}}}],["meat",{"_index":1900,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mechanic",{"_index":1729,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mediaquery",{"_index":641,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["mediaquery.matches",{"_index":1482,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["mediaquerylist",{"_index":664,"title":{},"body":{"components/AppComponent.html":{}}}],["medicine",{"_index":1972,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["medium",{"_index":3916,"title":{},"body":{"license.html":{}}}],["meet",{"_index":3930,"title":{},"body":{"license.html":{}}}],["meets",{"_index":3797,"title":{},"body":{"license.html":{}}}],["mellon",{"_index":1853,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["melon",{"_index":1852,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["menu",{"_index":1490,"title":{},"body":{"directives/MenuToggleDirective.html":{},"license.html":{}}}],["menuselectiondirective",{"_index":331,"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/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":333,"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/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":4288,"title":{},"body":{"license.html":{}}}],["mere",{"_index":3777,"title":{},"body":{"license.html":{}}}],["mergemap",{"_index":1501,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["merging",{"_index":4172,"title":{},"body":{"license.html":{}}}],["meru",{"_index":2349,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["message",{"_index":982,"title":{},"body":{"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/Signer.html":{}}}],["message:\\n${message}.\\nstack",{"_index":1371,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["met",{"_index":3855,"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/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":1787,"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":524,"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/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":3231,"title":{},"body":{"injectables/TransactionService.html":{}}}],["mfugaji",{"_index":1731,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mganga",{"_index":1963,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mgema",{"_index":1741,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mhogo",{"_index":1901,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miatsani",{"_index":2200,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miatsiani",{"_index":2181,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["middle",{"_index":2938,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["mienzeni",{"_index":2182,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mifugo",{"_index":1914,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["migori",{"_index":2344,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miguneni",{"_index":2204,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mihogo",{"_index":1902,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikate",{"_index":1888,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikeka",{"_index":2027,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikindani",{"_index":2224,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["milk",{"_index":1869,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mill",{"_index":1719,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miloeni",{"_index":2193,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["minheight",{"_index":592,"title":{},"body":{"components/AdminComponent.html":{}}}],["minyenzeni",{"_index":2184,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mioleni",{"_index":2186,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miraa",{"_index":1868,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miritini",{"_index":2299,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["misc",{"_index":2225,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miscellaneous",{"_index":3498,"title":{"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}},"body":{"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["misrepresentation",{"_index":4097,"title":{},"body":{"license.html":{}}}],["miti",{"_index":1648,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mitumba",{"_index":1907,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mitungi",{"_index":2015,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miwa",{"_index":1905,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miyani",{"_index":2185,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miyenzeni",{"_index":2180,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjambere",{"_index":2312,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjengo",{"_index":1761,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjenzi",{"_index":1730,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkanyeni",{"_index":2178,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkate",{"_index":1886,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkokoteni",{"_index":2080,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mksiti",{"_index":1619,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkulima",{"_index":1659,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mlola",{"_index":2197,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mlolongo",{"_index":2247,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnarani",{"_index":2323,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnazi",{"_index":1880,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnyenzeni",{"_index":2183,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mocha",{"_index":3479,"title":{},"body":{"dependencies.html":{}}}],["mock",{"_index":535,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["mockbackendinterceptor",{"_index":1494,"title":{"interceptors/MockBackendInterceptor.html":{}},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["mockbackendprovider",{"_index":745,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["mode",{"_index":1462,"title":{},"body":{"injectables/LoggingService.html":{},"license.html":{}}}],["model",{"_index":3977,"title":{},"body":{"license.html":{}}}],["modification",{"_index":3728,"title":{},"body":{"license.html":{}}}],["modifications",{"_index":3800,"title":{},"body":{"license.html":{}}}],["modified",{"_index":3673,"title":{},"body":{"license.html":{}}}],["modifies",{"_index":3934,"title":{},"body":{"license.html":{}}}],["modify",{"_index":3647,"title":{},"body":{"license.html":{}}}],["modifying",{"_index":3767,"title":{},"body":{"license.html":{}}}],["module",{"_index":431,"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":433,"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":1899,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mombasa",{"_index":2286,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["moolb",{"_index":3481,"title":{},"body":{"dependencies.html":{}}}],["more",{"_index":3580,"title":{},"body":{"index.html":{},"license.html":{}}}],["moreover",{"_index":4142,"title":{},"body":{"license.html":{}}}],["moto",{"_index":2099,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["motorbike",{"_index":2083,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["motorist",{"_index":2082,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mover",{"_index":2081,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["movie",{"_index":2028,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpesa",{"_index":2037,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpishi",{"_index":1739,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpsea",{"_index":2036,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ms",{"_index":1428,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["mshomoroni",{"_index":2318,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["msusi",{"_index":1740,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtambo",{"_index":1720,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtopanga",{"_index":2311,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtumba",{"_index":1727,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtwapa",{"_index":2320,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muguka",{"_index":1867,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muhogo",{"_index":1903,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mukuru",{"_index":2117,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["multi",{"_index":764,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["multiple",{"_index":2572,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["mulunguni",{"_index":2199,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mumias",{"_index":2341,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["musician",{"_index":1778,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mutable",{"_index":2547,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["mutablekeystore",{"_index":862,"title":{"interfaces/MutableKeyStore.html":{}},"body":{"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["mutablepgpkeystore",{"_index":752,"title":{"classes/MutablePgpKeyStore.html":{}},"body":{"modules/AppModule.html":{},"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"coverage.html":{}}}],["mutumba",{"_index":2006,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muugano",{"_index":2198,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mvita",{"_index":2294,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mvuvi",{"_index":1756,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwache",{"_index":2201,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwakirunge",{"_index":2317,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwalimu",{"_index":1562,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwangani",{"_index":2202,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwangaraba",{"_index":2191,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwashanga",{"_index":2192,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwea",{"_index":2362,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwehavikonje",{"_index":2203,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwiki",{"_index":2269,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwingi",{"_index":2330,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mworoni",{"_index":2307,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["myenzeni",{"_index":2179,"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":2118,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nakuru",{"_index":2363,"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/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":1209,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["names",{"_index":1210,"title":{},"body":{"components/CreateAccountComponent.html":{},"license.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":2358,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["narok",{"_index":2364,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nature",{"_index":3947,"title":{},"body":{"license.html":{}}}],["navigate",{"_index":3534,"title":{},"body":{"index.html":{}}}],["navigatedto",{"_index":2803,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["nazi",{"_index":1884,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ndizi",{"_index":1858,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["necessary",{"_index":4296,"title":{},"body":{"license.html":{}}}],["need",{"_index":3639,"title":{},"body":{"license.html":{}}}],["needed",{"_index":3706,"title":{},"body":{"license.html":{}}}],["network",{"_index":73,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/BlockSyncService.html":{},"interceptors/ErrorInterceptor.html":{},"classes/TokenRegistry.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["new",{"_index":152,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.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":1037,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["newconversionevent(tx",{"_index":1053,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["newtransferevent",{"_index":1038,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["newtransferevent(tx",{"_index":1056,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["next",{"_index":526,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["next.handle(request",{"_index":1397,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["next.handle(request).pipe",{"_index":1301,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["next.handle(request).pipe(tap(event",{"_index":1423,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["ng",{"_index":3540,"title":{},"body":{"index.html":{}}}],["ng2",{"_index":2734,"title":{},"body":{"modules/PagesModule.html":{},"dependencies.html":{}}}],["ngafterviewinit",{"_index":3284,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["ngano",{"_index":1883,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngform",{"_index":1225,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["ngmodule",{"_index":449,"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":1882,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngombeni",{"_index":2295,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngong",{"_index":2267,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngoninit",{"_index":207,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/FooterComponent.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":1725,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngx",{"_index":749,"title":{},"body":{"modules/AppModule.html":{},"injectables/LoggingService.html":{},"dependencies.html":{}}}],["ngxlogger",{"_index":1441,"title":{},"body":{"injectables/LoggingService.html":{}}}],["ngxloggerlevel.error",{"_index":4393,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ngxloggerlevel.off",{"_index":4394,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ngómbeni",{"_index":2296,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["njugu",{"_index":1859,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["non",{"_index":3723,"title":{},"body":{"license.html":{}}}],["noncommercially",{"_index":3984,"title":{},"body":{"license.html":{}}}],["none",{"_index":831,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nopasswordmatch",{"_index":1250,"title":{},"body":{"classes/CustomValidator.html":{}}}],["normal",{"_index":3813,"title":{},"body":{"license.html":{}}}],["normally",{"_index":4019,"title":{},"body":{"license.html":{}}}],["nothing",{"_index":4157,"title":{},"body":{"license.html":{}}}],["notice",{"_index":3787,"title":{},"body":{"license.html":{}}}],["notices",{"_index":3783,"title":{},"body":{"license.html":{}}}],["notifies",{"_index":4143,"title":{},"body":{"license.html":{}}}],["notify",{"_index":4138,"title":{},"body":{"license.html":{}}}],["notwithstanding",{"_index":4084,"title":{},"body":{"license.html":{}}}],["now",{"_index":1007,"title":{},"body":{"injectables/AuthService.html":{}}}],["npm",{"_index":3527,"title":{},"body":{"index.html":{}}}],["null",{"_index":1048,"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":3244,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(conversion.fromvalue",{"_index":3210,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(conversion.tovalue",{"_index":3212,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(transaction.value",{"_index":3197,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(value",{"_index":2949,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["numbered",{"_index":4276,"title":{},"body":{"license.html":{}}}],["numberofaccounts",{"_index":133,"title":{},"body":{"classes/AccountIndex.html":{}}}],["nurse",{"_index":1966,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nursery",{"_index":1577,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyalenda",{"_index":2337,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyalgunga",{"_index":2333,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyali",{"_index":2308,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyama",{"_index":1855,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyanya",{"_index":1854,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyanza",{"_index":2331,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyeri",{"_index":2359,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzora",{"_index":2205,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzovuni",{"_index":2206,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzugu",{"_index":1945,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["o",{"_index":888,"title":{},"body":{"injectables/AuthService.html":{}}}],["o.realm",{"_index":975,"title":{},"body":{"injectables/AuthService.html":{}}}],["objcsv",{"_index":3423,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["object",{"_index":2549,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["obligate",{"_index":4260,"title":{},"body":{"license.html":{}}}],["obligated",{"_index":4000,"title":{},"body":{"license.html":{}}}],["obligations",{"_index":3892,"title":{},"body":{"license.html":{}}}],["observable",{"_index":521,"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":540,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["occasionally",{"_index":3983,"title":{},"body":{"license.html":{}}}],["occurred",{"_index":1307,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["occurring",{"_index":4154,"title":{},"body":{"license.html":{}}}],["occurs",{"_index":3691,"title":{},"body":{"license.html":{}}}],["of('hello",{"_index":3273,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["of(new",{"_index":2469,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["of(null",{"_index":2388,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["offer",{"_index":3662,"title":{},"body":{"license.html":{}}}],["offered",{"_index":4009,"title":{},"body":{"license.html":{}}}],["offering",{"_index":3987,"title":{},"body":{"license.html":{}}}],["office",{"_index":1552,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["official",{"_index":3802,"title":{},"body":{"license.html":{}}}],["offset",{"_index":1045,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["ohuru",{"_index":2302,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["oil",{"_index":2105,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ok(accounttypes",{"_index":2464,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(actions",{"_index":2424,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(areanamelist",{"_index":2451,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(areatypelist",{"_index":2459,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(categorylist",{"_index":2443,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(genders",{"_index":2466,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(message",{"_index":2433,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedaction",{"_index":2429,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedareaname.name",{"_index":2455,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedareatype.name",{"_index":2463,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedcategory.name",{"_index":2447,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedtoken",{"_index":2439,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(responsebody",{"_index":2468,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(tokens",{"_index":2434,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(transactiontypes",{"_index":2465,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["old",{"_index":2291,"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":2233,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ombeni",{"_index":2297,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["omena",{"_index":1856,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["omeno",{"_index":1943,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["onaddresssearch",{"_index":208,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["once",{"_index":3572,"title":{},"body":{"index.html":{}}}],["onclick",{"_index":2809,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["one",{"_index":3552,"title":{},"body":{"index.html":{},"license.html":{}}}],["oninit",{"_index":186,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/FooterComponent.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":1944,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["onmenuselect",{"_index":1473,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["onmenutoggle",{"_index":1486,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["onnamesearch",{"_index":209,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["onphonesearch",{"_index":210,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["onresize",{"_index":645,"title":{},"body":{"components/AppComponent.html":{}}}],["onresize(e",{"_index":661,"title":{},"body":{"components/AppComponent.html":{}}}],["onsign",{"_index":2662,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["onsign(signature",{"_index":2688,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["onsubmit",{"_index":783,"title":{},"body":{"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["onverify",{"_index":2663,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["onverify(flag",{"_index":2689,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["opendialog",{"_index":1272,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["opendialog(data",{"_index":1276,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["openpgp",{"_index":2550,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["openpgp.cleartext.fromtext(digest",{"_index":2698,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["openpgp.key.readarmored(key",{"_index":2566,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.key.readarmored(privatekey",{"_index":2569,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.keyring",{"_index":2552,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"miscellaneous/variables.html":{}}}],["openpgp.message.fromtext(plaintext",{"_index":2594,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.readkey",{"_index":2562,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.sign(opts",{"_index":2598,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.sign(opts).then((s",{"_index":2708,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["openpgp.signature.readarmored(signature.data).then((sig",{"_index":2697,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["openpgp.verify(opts).then((v",{"_index":2701,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["operate",{"_index":4312,"title":{},"body":{"license.html":{}}}],["operated",{"_index":3991,"title":{},"body":{"license.html":{}}}],["operating",{"_index":3825,"title":{},"body":{"license.html":{}}}],["operation",{"_index":3911,"title":{},"body":{"license.html":{}}}],["option",{"_index":4081,"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/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":3794,"title":{},"body":{"license.html":{}}}],["opts",{"_index":2593,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["oranges",{"_index":1885,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["order",{"_index":4152,"title":{},"body":{"license.html":{}}}],["organisation",{"_index":2645,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organization",{"_index":2626,"title":{},"body":{"components/OrganizationComponent.html":{},"components/SettingsComponent.html":{},"modules/SettingsRoutingModule.html":{},"license.html":{}}}],["organization'},{'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/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":2628,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organization.component.scss",{"_index":2627,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organizationcomponent",{"_index":310,"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/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":2629,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organizationformstub",{"_index":2630,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organizations",{"_index":3743,"title":{},"body":{"license.html":{}}}],["origin",{"_index":4098,"title":{},"body":{"license.html":{}}}],["original",{"_index":4099,"title":{},"body":{"license.html":{}}}],["others",{"_index":3641,"title":{},"body":{"license.html":{}}}],["otherwise",{"_index":124,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{}}}],["out",{"_index":447,"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":{}}}],["output",{"_index":3859,"title":{},"body":{"license.html":{}}}],["outside",{"_index":3875,"title":{},"body":{"license.html":{}}}],["overview",{"_index":3581,"title":{"overview.html":{}},"body":{"index.html":{},"overview.html":{}}}],["owino",{"_index":2138,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["owned",{"_index":4195,"title":{},"body":{"license.html":{}}}],["owner",{"_index":1535,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["package",{"_index":3451,"title":{"dependencies.html":{}},"body":{}}],["packaged",{"_index":3940,"title":{},"body":{"license.html":{}}}],["packaging",{"_index":3814,"title":{},"body":{"license.html":{}}}],["page",{"_index":694,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["pages",{"_index":2718,"title":{},"body":{"components/PagesComponent.html":{}}}],["pages'},{'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/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":2737,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["pages.component.html",{"_index":2720,"title":{},"body":{"components/PagesComponent.html":{}}}],["pages.component.scss",{"_index":2719,"title":{},"body":{"components/PagesComponent.html":{}}}],["pages/accounts/account",{"_index":456,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["pages/accounts/accounts",{"_index":452,"title":{},"body":{"modules/AccountsModule.html":{}}}],["pages/accounts/accounts.component",{"_index":454,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["pages/accounts/create",{"_index":462,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{}}}],["pages/admin/admin",{"_index":634,"title":{},"body":{"modules/AdminModule.html":{}}}],["pages/admin/admin.component",{"_index":635,"title":{},"body":{"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{}}}],["pages/pages",{"_index":2731,"title":{},"body":{"modules/PagesModule.html":{}}}],["pages/pages.component",{"_index":2732,"title":{},"body":{"modules/PagesModule.html":{}}}],["pages/settings/organization/organization.component",{"_index":2882,"title":{},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["pages/settings/settings",{"_index":2880,"title":{},"body":{"modules/SettingsModule.html":{}}}],["pages/settings/settings.component",{"_index":2881,"title":{},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["pages/tokens/token",{"_index":3044,"title":{},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{}}}],["pages/tokens/tokens",{"_index":3042,"title":{},"body":{"modules/TokensModule.html":{}}}],["pages/tokens/tokens.component",{"_index":3043,"title":{},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{}}}],["pages/transactions/transaction",{"_index":3334,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["pages/transactions/transactions",{"_index":3332,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["pages/transactions/transactions.component",{"_index":3333,"title":{},"body":{"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["pages/transactions/transactions.module",{"_index":483,"title":{},"body":{"modules/AccountsModule.html":{}}}],["pagescomponent",{"_index":312,"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/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":348,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{}}}],["pagesmodule",{"_index":2725,"title":{"modules/PagesModule.html":{}},"body":{"modules/PagesModule.html":{},"modules.html":{},"overview.html":{}}}],["pagesroutingmodule",{"_index":2729,"title":{"modules/PagesRoutingModule.html":{}},"body":{"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["paginator",{"_index":349,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["painter",{"_index":1732,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pampers",{"_index":2023,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["papa",{"_index":1836,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["paper",{"_index":4348,"title":{},"body":{"license.html":{}}}],["paraffin",{"_index":2108,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["parafin",{"_index":2110,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["paragraph",{"_index":4128,"title":{},"body":{"license.html":{}}}],["paragraphs",{"_index":4207,"title":{},"body":{"license.html":{}}}],["param",{"_index":155,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.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/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":520,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["params",{"_index":530,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"components/TokenDetailsComponent.html":{}}}],["parrafin",{"_index":2109,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["parsedata",{"_index":3421,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["parsedata(data",{"_index":3514,"title":{},"body":{"miscellaneous/functions.html":{}}}],["parseint(urlparts[urlparts.length",{"_index":2474,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["parser",{"_index":3192,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["part",{"_index":3745,"title":{},"body":{"license.html":{}}}],["particular",{"_index":3805,"title":{},"body":{"license.html":{}}}],["parties",{"_index":3776,"title":{},"body":{"license.html":{}}}],["parts",{"_index":2012,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["party",{"_index":3992,"title":{},"body":{"license.html":{}}}],["party's",{"_index":4174,"title":{},"body":{"license.html":{}}}],["pass",{"_index":2418,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["passphrase",{"_index":995,"title":{},"body":{"injectables/AuthService.html":{}}}],["password",{"_index":1011,"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/Signer.html":{},"injectables/TransactionService.html":{},"license.html":{}}}],["password.type",{"_index":2763,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["passwordmatchvalidator",{"_index":1236,"title":{},"body":{"classes/CustomValidator.html":{}}}],["passwordmatchvalidator(control",{"_index":1238,"title":{},"body":{"classes/CustomValidator.html":{}}}],["passwordtoggledirective",{"_index":335,"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/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":1610,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["patent",{"_index":4127,"title":{},"body":{"license.html":{}}}],["patents",{"_index":3709,"title":{},"body":{"license.html":{}}}],["path",{"_index":500,"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":502,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["patience",{"_index":1517,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["pattern",{"_index":3689,"title":{},"body":{"license.html":{}}}],["patternvalidator",{"_index":1237,"title":{},"body":{"classes/CustomValidator.html":{}}}],["patternvalidator(regex",{"_index":1241,"title":{},"body":{"classes/CustomValidator.html":{}}}],["payment",{"_index":4242,"title":{},"body":{"license.html":{}}}],["peanuts",{"_index":1842,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["peddler",{"_index":1744,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["peer",{"_index":4004,"title":{},"body":{"license.html":{}}}],["peers",{"_index":4007,"title":{},"body":{"license.html":{}}}],["peku",{"_index":2174,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["people",{"_index":3550,"title":{},"body":{"index.html":{}}}],["performance",{"_index":4292,"title":{},"body":{"license.html":{}}}],["performing",{"_index":3836,"title":{},"body":{"license.html":{}}}],["perfume",{"_index":2040,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["periurban",{"_index":2367,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["permanently",{"_index":4136,"title":{},"body":{"license.html":{}}}],["permission",{"_index":3665,"title":{},"body":{"license.html":{}}}],["permissions",{"_index":3850,"title":{},"body":{"license.html":{}}}],["permissive",{"_index":3923,"title":{},"body":{"license.html":{}}}],["permit",{"_index":3957,"title":{},"body":{"license.html":{}}}],["permits",{"_index":4118,"title":{},"body":{"license.html":{}}}],["permitted",{"_index":3597,"title":{},"body":{"license.html":{}}}],["perpetuity",{"_index":4053,"title":{},"body":{"license.html":{}}}],["person",{"_index":3517,"title":{},"body":{"miscellaneous/functions.html":{}}}],["personal",{"_index":4017,"title":{},"body":{"license.html":{}}}],["personvalidation",{"_index":3426,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["personvalidation(person",{"_index":3516,"title":{},"body":{"miscellaneous/functions.html":{}}}],["pertinent",{"_index":4258,"title":{},"body":{"license.html":{}}}],["pesa",{"_index":2055,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["petro",{"_index":2112,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["petrol",{"_index":2111,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pgp",{"_index":999,"title":{},"body":{"injectables/AuthService.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["pgp.js",{"_index":906,"title":{},"body":{"injectables/AuthService.html":{}}}],["pgpsigner",{"_index":2659,"title":{"classes/PGPSigner.html":{}},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["pharmacy",{"_index":1975,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["phone",{"_index":282,"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":1786,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["photocopy",{"_index":1743,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["photographer",{"_index":1763,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["physical",{"_index":3966,"title":{},"body":{"license.html":{}}}],["physically",{"_index":3981,"title":{},"body":{"license.html":{}}}],["pieces",{"_index":3634,"title":{},"body":{"license.html":{}}}],["piki",{"_index":2076,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pikipiki",{"_index":2077,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pilau",{"_index":1910,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pipe",{"_index":2258,"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":676,"title":{},"body":{"components/AppComponent.html":{}}}],["pipe(delay(500",{"_index":2391,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(dematerialize",{"_index":2392,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(materialize",{"_index":2390,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(mergemap(handleroute",{"_index":2389,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe({name",{"_index":2948,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["pipes",{"_index":2813,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{},"overview.html":{}}}],["pipetransform",{"_index":2820,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{}}}],["pk",{"_index":2704,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["pk.decrypt(password",{"_index":2707,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["pk.isdecrypted",{"_index":2706,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["place",{"_index":3989,"title":{},"body":{"license.html":{}}}],["plaintext",{"_index":2545,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["plastic",{"_index":1651,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["playstation",{"_index":2041,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["please",{"_index":684,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{},"license.html":{}}}],["plumb",{"_index":1736,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["plus",{"_index":4177,"title":{},"body":{"license.html":{}}}],["pointer",{"_index":4340,"title":{},"body":{"license.html":{}}}],["pojo",{"_index":1835,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["police",{"_index":1624,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pombe",{"_index":2022,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pool",{"_index":2024,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["popper.js",{"_index":3486,"title":{},"body":{"dependencies.html":{}}}],["popperjs/core",{"_index":3458,"title":{},"body":{"dependencies.html":{}}}],["populated",{"_index":3574,"title":{},"body":{"index.html":{}}}],["porridge",{"_index":1909,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["portion",{"_index":4012,"title":{},"body":{"license.html":{}}}],["posho",{"_index":1718,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["possesses",{"_index":3978,"title":{},"body":{"license.html":{}}}],["possession",{"_index":3937,"title":{},"body":{"license.html":{}}}],["possibility",{"_index":4314,"title":{},"body":{"license.html":{}}}],["possible",{"_index":4331,"title":{},"body":{"license.html":{}}}],["post",{"_index":2399,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["potatoes",{"_index":1843,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["poultry",{"_index":1840,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["power",{"_index":3905,"title":{},"body":{"license.html":{}}}],["practical",{"_index":3609,"title":{},"body":{"license.html":{}}}],["practice",{"_index":3696,"title":{},"body":{"license.html":{}}}],["preamble",{"_index":3604,"title":{},"body":{"license.html":{}}}],["precise",{"_index":3724,"title":{},"body":{"license.html":{}}}],["precisely",{"_index":3693,"title":{},"body":{"license.html":{}}}],["predecessor",{"_index":4175,"title":{},"body":{"license.html":{}}}],["preferred",{"_index":3799,"title":{},"body":{"license.html":{}}}],["preloadallmodules",{"_index":766,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["preloadingstrategy",{"_index":775,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["prepare",{"_index":2665,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signer.html":{}}}],["prepare(material",{"_index":2678,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["present",{"_index":4271,"title":{},"body":{"license.html":{}}}],["presents",{"_index":3791,"title":{},"body":{"license.html":{}}}],["preservation",{"_index":4092,"title":{},"body":{"license.html":{}}}],["prevent",{"_index":3640,"title":{},"body":{"license.html":{}}}],["prevented",{"_index":4048,"title":{},"body":{"license.html":{}}}],["previous",{"_index":544,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"license.html":{}}}],["price",{"_index":3629,"title":{},"body":{"license.html":{}}}],["primarily",{"_index":4244,"title":{},"body":{"license.html":{}}}],["primary",{"_index":1569,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["printing",{"_index":1734,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["prints",{"_index":105,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["prior",{"_index":4139,"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":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"components/OrganizationComponent.html":{},"directives/PasswordToggleDirective.html":{},"components/SettingsComponent.html":{},"components/TokenDetailsComponent.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["privatekey",{"_index":810,"title":{},"body":{"components/AuthComponent.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["privatekey.decrypt(password",{"_index":2592,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["privatekey.isdecrypted",{"_index":2590,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["privatekey.keypacket.privateparams.d",{"_index":3257,"title":{},"body":{"injectables/TransactionService.html":{}}}],["privatekeyarmored",{"_index":896,"title":{},"body":{"injectables/AuthService.html":{}}}],["privatekeys",{"_index":2595,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["problems",{"_index":3676,"title":{},"body":{"license.html":{}}}],["procedures",{"_index":4043,"title":{},"body":{"license.html":{}}}],["procuring",{"_index":4232,"title":{},"body":{"license.html":{}}}],["produce",{"_index":3828,"title":{},"body":{"license.html":{}}}],["product",{"_index":3967,"title":{},"body":{"license.html":{}}}],["production",{"_index":3559,"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":1589,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["profile",{"_index":1513,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["program",{"_index":3618,"title":{},"body":{"license.html":{}}}],["program's",{"_index":3915,"title":{},"body":{"license.html":{}}}],["programmer",{"_index":1764,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["programming",{"_index":1735,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["programs",{"_index":3627,"title":{},"body":{"license.html":{}}}],["programsif",{"_index":4328,"title":{},"body":{"license.html":{}}}],["progress...show",{"_index":692,"title":{},"body":{"components/AppComponent.html":{}}}],["prohibit",{"_index":3695,"title":{},"body":{"license.html":{}}}],["prohibiting",{"_index":3901,"title":{},"body":{"license.html":{}}}],["prohibits",{"_index":4239,"title":{},"body":{"license.html":{}}}],["project",{"_index":3523,"title":{},"body":{"index.html":{}}}],["prominent",{"_index":3795,"title":{},"body":{"license.html":{}}}],["prominently",{"_index":3786,"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/Signer.html":{},"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"miscellaneous/functions.html":{}}}],["promise((resolve",{"_index":951,"title":{},"body":{"injectables/AuthService.html":{}}}],["promise(async",{"_index":971,"title":{},"body":{"injectables/AuthService.html":{}}}],["propagate",{"_index":3756,"title":{},"body":{"license.html":{}}}],["propagating",{"_index":4160,"title":{},"body":{"license.html":{}}}],["propagation",{"_index":3768,"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/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"components/PagesComponent.html":{},"injectables/RegistryService.html":{},"directives/RouterLinkDirectiveStub.html":{},"classes/Settings.html":{},"components/SettingsComponent.html":{},"interfaces/Signature.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":{}}}],["property",{"_index":4018,"title":{},"body":{"license.html":{}}}],["proprietary",{"_index":3719,"title":{},"body":{"license.html":{}}}],["protect",{"_index":3637,"title":{},"body":{"license.html":{}}}],["protecting",{"_index":3687,"title":{},"body":{"license.html":{}}}],["protection",{"_index":3667,"title":{},"body":{"license.html":{}}}],["protocols",{"_index":4069,"title":{},"body":{"license.html":{}}}],["protractor",{"_index":3568,"title":{},"body":{"index.html":{}}}],["prove",{"_index":4293,"title":{},"body":{"license.html":{}}}],["provide",{"_index":762,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["provided",{"_index":3790,"title":{},"body":{"license.html":{}}}],["providedin",{"_index":845,"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":2832,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["providers",{"_index":437,"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":{},"classes/TokenRegistry.html":{}}}],["provision",{"_index":3704,"title":{},"body":{"license.html":{}}}],["provisionally",{"_index":4133,"title":{},"body":{"license.html":{}}}],["proxy",{"_index":4280,"title":{},"body":{"license.html":{}}}],["proxy's",{"_index":4282,"title":{},"body":{"license.html":{}}}],["pry",{"_index":1560,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pub",{"_index":2053,"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/Signer.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["publicity",{"_index":4100,"title":{},"body":{"license.html":{}}}],["publickey",{"_index":2527,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["publickey.getkeyid().tohex",{"_index":2587,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["publickeys",{"_index":688,"title":{},"body":{"components/AppComponent.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["publickeysurl",{"_index":4398,"title":{},"body":{"miscellaneous/variables.html":{}}}],["publicly",{"_index":4071,"title":{},"body":{"license.html":{}}}],["publish",{"_index":3919,"title":{},"body":{"license.html":{}}}],["published",{"_index":4277,"title":{},"body":{"license.html":{}}}],["pump",{"_index":547,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["purpose",{"_index":3712,"title":{},"body":{"license.html":{}}}],["purposes",{"_index":4022,"title":{},"body":{"license.html":{}}}],["pursuant",{"_index":4229,"title":{},"body":{"license.html":{}}}],["put",{"_index":2546,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["qkvhsu46vknbukqnclzfulnjt046my4wdqpftufjtdphyxjuzxnlbkbob3rtywlslmnvbq0krk46s3vydmkgs3jhbmpjdqpooktyyw5qyztldxj0ozs7dqpuruw7vflqpunftew6njkyntazmzq5ode5ng0kru5eolzdqvjedqo",{"_index":3396,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["qualify",{"_index":4149,"title":{},"body":{"license.html":{}}}],["quality",{"_index":4291,"title":{},"body":{"license.html":{}}}],["queriedaction",{"_index":2425,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedaction.approval",{"_index":2430,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedareaname",{"_index":2452,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedareatype",{"_index":2460,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedcategory",{"_index":2444,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedtoken",{"_index":2435,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["querying",{"_index":70,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["queryparams",{"_index":2798,"title":{},"body":{"guards/RoleGuard.html":{}}}],["quot;false"",{"_index":126,"title":{},"body":{"classes/AccountIndex.html":{}}}],["quot;true"",{"_index":106,"title":{},"body":{"classes/AccountIndex.html":{}}}],["r",{"_index":973,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["raibai",{"_index":2326,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rangala",{"_index":2339,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ratio.pipe",{"_index":2899,"title":{},"body":{"modules/SharedModule.html":{}}}],["ratio.pipe.ts",{"_index":2945,"title":{},"body":{"pipes/TokenRatioPipe.html":{},"coverage.html":{}}}],["ratio.pipe.ts:5",{"_index":2947,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["rcu",{"_index":2646,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["reached",{"_index":683,"title":{},"body":{"components/AppComponent.html":{}}}],["reactiveformsmodule",{"_index":491,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AuthModule.html":{},"modules/SettingsModule.html":{}}}],["read",{"_index":4369,"title":{},"body":{"license.html":{}}}],["readable",{"_index":3963,"title":{},"body":{"license.html":{}}}],["readcsv",{"_index":3422,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["readcsv(input",{"_index":3515,"title":{},"body":{"miscellaneous/functions.html":{}}}],["readily",{"_index":4217,"title":{},"body":{"license.html":{}}}],["reading",{"_index":4074,"title":{},"body":{"license.html":{}}}],["readonly",{"_index":527,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["ready",{"_index":3702,"title":{},"body":{"license.html":{}}}],["readystate",{"_index":642,"title":{},"body":{"components/AppComponent.html":{},"injectables/BlockSyncService.html":{}}}],["readystateelements",{"_index":1077,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateelements.network",{"_index":1095,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateprocessor",{"_index":1039,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateprocessor(settings",{"_index":1058,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystatetarget",{"_index":643,"title":{},"body":{"components/AppComponent.html":{},"injectables/BlockSyncService.html":{}}}],["realm",{"_index":970,"title":{},"body":{"injectables/AuthService.html":{}}}],["reason",{"_index":4227,"title":{},"body":{"license.html":{}}}],["reasonable",{"_index":3979,"title":{},"body":{"license.html":{}}}],["receipt",{"_index":4147,"title":{},"body":{"license.html":{}}}],["receive",{"_index":3632,"title":{},"body":{"license.html":{}}}],["received",{"_index":3655,"title":{},"body":{"license.html":{}}}],["receives",{"_index":4165,"title":{},"body":{"license.html":{}}}],["receiving",{"_index":4234,"title":{},"body":{"license.html":{}}}],["recently",{"_index":132,"title":{},"body":{"classes/AccountIndex.html":{}}}],["receptionist",{"_index":1733,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["recipient",{"_index":1158,"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":4225,"title":{},"body":{"license.html":{}}}],["recipientaddress",{"_index":3168,"title":{},"body":{"injectables/TransactionService.html":{}}}],["recipientbloxberglink",{"_index":3066,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["recipients",{"_index":3652,"title":{},"body":{"license.html":{}}}],["reclaim",{"_index":1508,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["reclamation",{"_index":2374,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["recognized",{"_index":3803,"title":{},"body":{"license.html":{}}}],["recommend",{"_index":1027,"title":{},"body":{"injectables/AuthService.html":{}}}],["recycling",{"_index":1655,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["red",{"_index":1578,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["redcross",{"_index":1602,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["redirectto",{"_index":501,"title":{},"body":{"modules/AccountsRoutingModule.html":{},"modules/AppRoutingModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["redistribute",{"_index":4334,"title":{},"body":{"license.html":{}}}],["reference",{"_index":3583,"title":{},"body":{"index.html":{}}}],["referrer",{"_index":1197,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["referring",{"_index":3628,"title":{},"body":{"license.html":{}}}],["refers",{"_index":3731,"title":{},"body":{"license.html":{}}}],["refrain",{"_index":4262,"title":{},"body":{"license.html":{}}}],["refreshpaginator",{"_index":354,"title":{},"body":{"components/AccountsComponent.html":{}}}],["regard",{"_index":4080,"title":{},"body":{"license.html":{}}}],["regardless",{"_index":3939,"title":{},"body":{"license.html":{}}}],["regenerate",{"_index":3848,"title":{},"body":{"license.html":{}}}],["regex",{"_index":1245,"title":{},"body":{"classes/CustomValidator.html":{}}}],["regex.test(control.value",{"_index":1252,"title":{},"body":{"classes/CustomValidator.html":{}}}],["regexp",{"_index":1242,"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":2953,"title":{},"body":{"classes/TokenRegistry.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["registry.ts:22",{"_index":2957,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:24",{"_index":2958,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:26",{"_index":2956,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:57",{"_index":2960,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:75",{"_index":2967,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:91",{"_index":2971,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registryaddress",{"_index":4408,"title":{},"body":{"miscellaneous/variables.html":{}}}],["registryservice",{"_index":1042,"title":{"injectables/RegistryService.html":{}},"body":{"injectables/BlockSyncService.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["registryservice.getregistry",{"_index":2993,"title":{},"body":{"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["reinstated",{"_index":4132,"title":{},"body":{"license.html":{}}}],["reject",{"_index":952,"title":{},"body":{"injectables/AuthService.html":{}}}],["reject(error",{"_index":955,"title":{},"body":{"injectables/AuthService.html":{}}}],["rejected",{"_index":940,"title":{},"body":{"injectables/AuthService.html":{}}}],["relationship",{"_index":3876,"title":{},"body":{"license.html":{}}}],["released",{"_index":3623,"title":{},"body":{"license.html":{}}}],["relevant",{"_index":3932,"title":{},"body":{"license.html":{}}}],["relicensing",{"_index":4119,"title":{},"body":{"license.html":{}}}],["religious",{"_index":1614,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["religous",{"_index":1613,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["reload",{"_index":3537,"title":{},"body":{"index.html":{}}}],["relying",{"_index":4216,"title":{},"body":{"license.html":{}}}],["remain",{"_index":3999,"title":{},"body":{"license.html":{}}}],["remains",{"_index":3621,"title":{},"body":{"license.html":{}}}],["remarks",{"_index":154,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["removal",{"_index":4083,"title":{},"body":{"license.html":{}}}],["remove",{"_index":4082,"title":{},"body":{"license.html":{}}}],["removekeysforid",{"_index":2498,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removekeysforid(keyid",{"_index":2537,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickey",{"_index":2499,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickey(publickey",{"_index":2539,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickeyforid",{"_index":2500,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickeyforid(keyid",{"_index":2541,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removespecialchar",{"_index":3416,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["removespecialchar(str",{"_index":3512,"title":{},"body":{"miscellaneous/functions.html":{}}}],["rename",{"_index":945,"title":{},"body":{"injectables/AuthService.html":{}}}],["render",{"_index":3722,"title":{},"body":{"license.html":{}}}],["rendered",{"_index":4307,"title":{},"body":{"license.html":{}}}],["renderer",{"_index":1476,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["renderer2",{"_index":1477,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["repair",{"_index":1716,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["replaysubject",{"_index":536,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["represent",{"_index":4040,"title":{},"body":{"license.html":{}}}],["request",{"_index":1296,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["request.clone({headers",{"_index":1395,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["request.headers.set('authorization",{"_index":1396,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["request.method",{"_index":1426,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["request.urlwithparams",{"_index":1427,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["requesting",{"_index":990,"title":{},"body":{"injectables/AuthService.html":{}}}],["requests",{"_index":2420,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["require",{"_index":2647,"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":2687,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"miscellaneous/variables.html":{}}}],["require('vcard",{"_index":3191,"title":{},"body":{"injectables/TransactionService.html":{},"miscellaneous/variables.html":{}}}],["required",{"_index":283,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{},"license.html":{}}}],["requirement",{"_index":3933,"title":{},"body":{"license.html":{}}}],["requirements",{"_index":4002,"title":{},"body":{"license.html":{}}}],["requires",{"_index":102,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{}}}],["requiring",{"_index":3747,"title":{},"body":{"license.html":{}}}],["res",{"_index":272,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["res.ok",{"_index":1026,"title":{},"body":{"injectables/AuthService.html":{}}}],["res.status",{"_index":1029,"title":{},"body":{"injectables/AuthService.html":{}}}],["res.text",{"_index":1030,"title":{},"body":{"injectables/AuthService.html":{}}}],["researcher",{"_index":1588,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["resend",{"_index":3126,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reserve",{"_index":1521,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenServiceStub.html":{},"miscellaneous/variables.html":{}}}],["reserveratio",{"_index":1534,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["reserves",{"_index":1528,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["reset",{"_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":{}}}],["resettransactionslist",{"_index":3147,"title":{},"body":{"injectables/TransactionService.html":{}}}],["resize",{"_index":697,"title":{},"body":{"components/AppComponent.html":{}}}],["resolve",{"_index":972,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolve(false",{"_index":996,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolve(true",{"_index":958,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolved",{"_index":4029,"title":{},"body":{"license.html":{}}}],["resource",{"_index":1330,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["respect",{"_index":3648,"title":{},"body":{"license.html":{}}}],["response",{"_index":1313,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["responsebody",{"_index":2470,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["responsibilities",{"_index":950,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["responsible",{"_index":4166,"title":{},"body":{"license.html":{}}}],["restrict",{"_index":3711,"title":{},"body":{"license.html":{}}}],["restricting",{"_index":3902,"title":{},"body":{"license.html":{}}}],["restriction",{"_index":4117,"title":{},"body":{"license.html":{}}}],["restrictions",{"_index":4114,"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/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/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/typealiases.html":{},"miscellaneous/variables.html":{}}}],["resulting",{"_index":3750,"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/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/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/typealiases.html":{},"miscellaneous/variables.html":{}}}],["retail",{"_index":2021,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["retains",{"_index":4056,"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/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":1311,"title":{},"body":{"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":{},"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/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":2799,"title":{},"body":{"guards/RoleGuard.html":{}}}],["reverse",{"_index":3128,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reversetransaction",{"_index":3070,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reviewing",{"_index":4319,"title":{},"body":{"license.html":{}}}],["revised",{"_index":4269,"title":{},"body":{"license.html":{}}}],["rewards",{"_index":2373,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ribe",{"_index":2327,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["right",{"_index":4051,"title":{},"body":{"license.html":{}}}],["rights",{"_index":3638,"title":{},"body":{"license.html":{}}}],["risk",{"_index":4290,"title":{},"body":{"license.html":{}}}],["road",{"_index":2139,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["role",{"_index":508,"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":{}}}],["roleguard",{"_index":2789,"title":{"guards/RoleGuard.html":{}},"body":{"guards/RoleGuard.html":{},"coverage.html":{}}}],["rom",{"_index":4059,"title":{},"body":{"license.html":{}}}],["root",{"_index":638,"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":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/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":515,"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":2795,"title":{},"body":{"guards/RoleGuard.html":{}}}],["route.data.roles.indexof(currentuser.role",{"_index":2796,"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":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/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":{}}}],["routerlinkdirectivestub",{"_index":337,"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/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":499,"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":504,"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":774,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["routerstatesnapshot",{"_index":841,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["routes",{"_index":498,"title":{"routes.html":{}},"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":{},"overview.html":{},"routes.html":{}}}],["route}.\\n${error.message",{"_index":1383,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["route}.\\n${error.message}.\\nstatus",{"_index":1379,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["routing.module",{"_index":453,"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":497,"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":571,"title":{},"body":{"components/AdminComponent.html":{}}}],["row.isexpanded",{"_index":615,"title":{},"body":{"components/AdminComponent.html":{}}}],["royalty",{"_index":4181,"title":{},"body":{"license.html":{}}}],["rsv",{"_index":1505,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/TokenServiceStub.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["rubbish",{"_index":1645,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ruben",{"_index":2127,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rueben",{"_index":2128,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ruiru",{"_index":2235,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rules",{"_index":4068,"title":{},"body":{"license.html":{}}}],["run",{"_index":3526,"title":{},"body":{"index.html":{},"license.html":{}}}],["running",{"_index":3560,"title":{},"body":{"index.html":{},"license.html":{}}}],["runs",{"_index":3826,"title":{},"body":{"license.html":{}}}],["rural",{"_index":2346,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rxjs",{"_index":542,"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":392,"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":899,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["s.signature",{"_index":2712,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["sabuni",{"_index":1964,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sad",{"_index":693,"title":{},"body":{"components/AppComponent.html":{}}}],["safe",{"_index":2815,"title":{},"body":{"pipes/SafePipe.html":{}}}],["safepipe",{"_index":2812,"title":{"pipes/SafePipe.html":{}},"body":{"pipes/SafePipe.html":{},"modules/SharedModule.html":{},"coverage.html":{},"overview.html":{}}}],["safest",{"_index":4336,"title":{},"body":{"license.html":{}}}],["sake",{"_index":3672,"title":{},"body":{"license.html":{}}}],["sale",{"_index":4189,"title":{},"body":{"license.html":{}}}],["sales",{"_index":1745,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["salon",{"_index":1738,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["saloon",{"_index":1746,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["samaki",{"_index":1846,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sambusa",{"_index":1920,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["same",{"_index":3653,"title":{},"body":{"license.html":{}}}],["samosa",{"_index":1844,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sanitizer",{"_index":2822,"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":3003,"title":{},"body":{"injectables/TokenService.html":{}}}],["sarafutoken.methods.balanceof(address).call",{"_index":3006,"title":{},"body":{"injectables/TokenService.html":{}}}],["satisfy",{"_index":4001,"title":{},"body":{"license.html":{}}}],["sausages",{"_index":1890,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["savings",{"_index":1981,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["saying",{"_index":3997,"title":{},"body":{"license.html":{}}}],["scaffolding",{"_index":3539,"title":{},"body":{"index.html":{}}}],["scan",{"_index":1040,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["scan(settings",{"_index":1061,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["scanfilter",{"_index":2825,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["sch",{"_index":1558,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["schemas",{"_index":3469,"title":{},"body":{"dependencies.html":{}}}],["school",{"_index":1559,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["science",{"_index":1605,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["scope",{"_index":4238,"title":{},"body":{"license.html":{}}}],["scrap",{"_index":1642,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["script",{"_index":3558,"title":{},"body":{"index.html":{}}}],["scripts",{"_index":3832,"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":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/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":492,"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:46",{"_index":241,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:47",{"_index":243,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:49",{"_index":223,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:57",{"_index":224,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["search.component.ts:71",{"_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":3760,"title":{},"body":{"license.html":{}}}],["secondary",{"_index":1570,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["secp256k1",{"_index":3189,"title":{},"body":{"injectables/TransactionService.html":{}}}],["secp256k1.ecdsasign(txmsg",{"_index":3256,"title":{},"body":{"injectables/TransactionService.html":{}}}],["secretary",{"_index":1750,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["section",{"_index":3881,"title":{},"body":{"license.html":{}}}],["sections",{"_index":3961,"title":{},"body":{"license.html":{}}}],["secure",{"_index":2869,"title":{},"body":{"components/SettingsComponent.html":{}}}],["security",{"_index":1748,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["see",{"_index":3570,"title":{},"body":{"index.html":{},"license.html":{}}}],["seedling",{"_index":1653,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["seedlings",{"_index":1654,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["seigei",{"_index":2140,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["selection.directive",{"_index":2897,"title":{},"body":{"modules/SharedModule.html":{}}}],["selection.directive.ts",{"_index":1471,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"coverage.html":{}}}],["selection.directive.ts:20",{"_index":1479,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["selection.directive.ts:6",{"_index":1478,"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/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":4204,"title":{},"body":{"license.html":{}}}],["selling",{"_index":3395,"title":{},"body":{"classes/UserServiceStub.html":{},"license.html":{}}}],["semiconductor",{"_index":3734,"title":{},"body":{"license.html":{}}}],["send",{"_index":811,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["senddebuglevelmessage",{"_index":1433,"title":{},"body":{"injectables/LoggingService.html":{}}}],["senddebuglevelmessage(message",{"_index":1443,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sender",{"_index":1157,"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":3167,"title":{},"body":{"injectables/TransactionService.html":{}}}],["senderbloxberglink",{"_index":3067,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["senderrorlevelmessage",{"_index":1434,"title":{},"body":{"injectables/LoggingService.html":{}}}],["senderrorlevelmessage(message",{"_index":1445,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendfatallevelmessage",{"_index":1435,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendfatallevelmessage(message",{"_index":1447,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendinfolevelmessage",{"_index":1436,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendinfolevelmessage(message",{"_index":1449,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendloglevelmessage",{"_index":1437,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendloglevelmessage(message",{"_index":1451,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendresponse",{"_index":874,"title":{},"body":{"injectables/AuthService.html":{}}}],["sendresponse(hobaresponseencoded",{"_index":891,"title":{},"body":{"injectables/AuthService.html":{}}}],["sendtracelevelmessage",{"_index":1438,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendtracelevelmessage(message",{"_index":1453,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendwarnlevelmessage",{"_index":1439,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendwarnlevelmessage(message",{"_index":1455,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sentencesforwarninglogging",{"_index":1347,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["separable",{"_index":4011,"title":{},"body":{"license.html":{}}}],["separate",{"_index":949,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["separately",{"_index":3943,"title":{},"body":{"license.html":{}}}],["seremala",{"_index":1747,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["serial",{"_index":2968,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["server",{"_index":2382,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"index.html":{},"license.html":{}}}],["serverloggingurl",{"_index":759,"title":{},"body":{"modules/AppModule.html":{}}}],["serverloglevel",{"_index":757,"title":{},"body":{"modules/AppModule.html":{},"miscellaneous/variables.html":{}}}],["serves",{"_index":3817,"title":{},"body":{"license.html":{}}}],["service",{"_index":986,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/TokenServiceStub.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["servicing",{"_index":4297,"title":{},"body":{"license.html":{}}}],["session",{"_index":948,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessionlogincount",{"_index":863,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessionstorage.getitem(btoa('cicada_session_token",{"_index":917,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/HttpConfigInterceptor.html":{}}}],["sessionstorage.removeitem(btoa('cicada_session_token",{"_index":1019,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessionstorage.setitem(btoa('cicada_session_token",{"_index":957,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessiontoken",{"_index":864,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessiontokenresult",{"_index":976,"title":{},"body":{"injectables/AuthService.html":{}}}],["set",{"_index":539,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"index.html":{}}}],["setconversion",{"_index":3148,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["setconversion(conversion",{"_index":3162,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["setkey",{"_index":802,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["setkey(privatekeyarmored",{"_index":894,"title":{},"body":{"injectables/AuthService.html":{}}}],["setparammap",{"_index":523,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["setparammap(params",{"_index":537,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["setstate",{"_index":875,"title":{},"body":{"injectables/AuthService.html":{}}}],["setstate(s",{"_index":897,"title":{},"body":{"injectables/AuthService.html":{}}}],["setting",{"_index":914,"title":{},"body":{"injectables/AuthService.html":{}}}],["settings",{"_index":1050,"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":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/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":1076,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.component.html",{"_index":2837,"title":{},"body":{"components/SettingsComponent.html":{}}}],["settings.component.scss",{"_index":2836,"title":{},"body":{"components/SettingsComponent.html":{}}}],["settings.registry",{"_index":1082,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.registry.load",{"_index":1096,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.registry.onload",{"_index":1090,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.scanfilter(settings",{"_index":1134,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper",{"_index":1084,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.onconversion",{"_index":1088,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.ontransfer",{"_index":1086,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.processreceipt(m.data",{"_index":1104,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.w3.engine",{"_index":1080,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.w3.provider",{"_index":1078,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settingscomponent",{"_index":314,"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/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":2874,"title":{"modules/SettingsModule.html":{}},"body":{"modules/SettingsModule.html":{},"modules.html":{},"overview.html":{}}}],["settingsroutingmodule",{"_index":2878,"title":{"modules/SettingsRoutingModule.html":{}},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["settransaction",{"_index":3149,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["settransaction(transaction",{"_index":3164,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["sha256",{"_index":2669,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["sha3",{"_index":3181,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{}}}],["shall",{"_index":3886,"title":{},"body":{"license.html":{}}}],["shamba",{"_index":1664,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shanzu",{"_index":2309,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["share",{"_index":543,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"license.html":{}}}],["shared",{"_index":3839,"title":{},"body":{"license.html":{}}}],["sharedmodule",{"_index":443,"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":1752,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shephard",{"_index":1753,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shepherd",{"_index":1704,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shirt",{"_index":2038,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shoe",{"_index":1751,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shop",{"_index":1989,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["short",{"_index":4351,"title":{},"body":{"license.html":{}}}],["show",{"_index":3656,"title":{},"body":{"license.html":{}}}],["siaya",{"_index":2335,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sickly",{"_index":1979,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["side",{"_index":1306,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["sidebar",{"_index":698,"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":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/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":2904,"title":{},"body":{"components/SidebarComponent.html":{}}}],["sidebar.component.scss",{"_index":2903,"title":{},"body":{"components/SidebarComponent.html":{}}}],["sidebar?.classlist.add('active",{"_index":709,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebar?.classlist.contains('active",{"_index":708,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebar?.classlist.remove('active",{"_index":712,"title":{},"body":{"components/AppComponent.html":{}}}],["sidebar?.classlist.toggle('active",{"_index":1491,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["sidebarcollapse",{"_index":703,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{}}}],["sidebarcollapse?.classlist.contains('active",{"_index":705,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebarcollapse?.classlist.remove('active",{"_index":706,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["sidebarcollapse?.classlist.toggle('active",{"_index":1493,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["sidebarcomponent",{"_index":316,"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/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":318,"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/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":2700,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["sigei",{"_index":2135,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sign",{"_index":2501,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["sign(digest",{"_index":2682,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["sign(plaintext",{"_index":2543,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["signable",{"_index":2679,"title":{"interfaces/Signable.html":{}},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["signature",{"_index":40,"title":{"interfaces/Signature.html":{}},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signature.html":{},"interfaces/Signer.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{}}}],["signatureobject",{"_index":2597,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["signatureobject.recid",{"_index":3261,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signatureobject.signature",{"_index":2599,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["signatureobject.signature.slice(0",{"_index":3258,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signatureobject.signature.slice(32",{"_index":3260,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signchallenge",{"_index":904,"title":{},"body":{"injectables/AuthService.html":{}}}],["signchallenge(o.challenge",{"_index":974,"title":{},"body":{"injectables/AuthService.html":{}}}],["signed",{"_index":946,"title":{},"body":{"injectables/AuthService.html":{}}}],["signer",{"_index":104,"title":{"interfaces/Signer.html":{}},"body":{"classes/AccountIndex.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["signer.ts",{"_index":2660,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["signer.ts:18",{"_index":2910,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:19",{"_index":2911,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:20",{"_index":2909,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:21",{"_index":2912,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:22",{"_index":2914,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:23",{"_index":2913,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:28",{"_index":2672,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:29",{"_index":2670,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:30",{"_index":2671,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:31",{"_index":2676,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:32",{"_index":2673,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:33",{"_index":2674,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:34",{"_index":2675,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:35",{"_index":2668,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:43",{"_index":2677,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:47",{"_index":2680,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:52",{"_index":2685,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:7",{"_index":2908,"title":{},"body":{"interfaces/Signable.html":{}}}],["signer.ts:77",{"_index":2683,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signeraddress",{"_index":76,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["significant",{"_index":4041,"title":{},"body":{"license.html":{}}}],["silc",{"_index":1985,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["silver",{"_index":3373,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["sima",{"_index":1917,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["similar",{"_index":3900,"title":{},"body":{"license.html":{}}}],["simsim",{"_index":1908,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["simu",{"_index":2025,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["simulate",{"_index":2381,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["simultaneously",{"_index":4257,"title":{},"body":{"license.html":{}}}],["sinai",{"_index":2134,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["single",{"_index":4230,"title":{},"body":{"license.html":{}}}],["size",{"_index":4417,"title":{},"body":{"miscellaneous/variables.html":{}}}],["slash",{"_index":2767,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["smokie",{"_index":1928,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["smokies",{"_index":1929,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sms",{"_index":3127,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["snackbar",{"_index":3074,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["snacks",{"_index":1921,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soap",{"_index":1965,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["societies",{"_index":2940,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["socks",{"_index":2013,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soda",{"_index":1841,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["software",{"_index":3592,"title":{},"body":{"license.html":{}}}],["soko",{"_index":1845,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["solar",{"_index":2100,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sold",{"_index":4023,"title":{},"body":{"license.html":{}}}],["soldier",{"_index":1627,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sole",{"_index":3866,"title":{},"body":{"license.html":{}}}],["solely",{"_index":3878,"title":{},"body":{"license.html":{}}}],["somehow",{"_index":813,"title":{},"body":{"components/AuthComponent.html":{}}}],["something",{"_index":690,"title":{},"body":{"components/AppComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["sort",{"_index":350,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["soup",{"_index":1926,"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/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/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":1161,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["south",{"_index":2124,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soweto",{"_index":2232,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["spare",{"_index":2011,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["spareparts",{"_index":2002,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["speak",{"_index":987,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["special",{"_index":3715,"title":{},"body":{"license.html":{}}}],["specific",{"_index":121,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{}}}],["specifically",{"_index":3843,"title":{},"body":{"license.html":{}}}],["specified",{"_index":131,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["specifies",{"_index":4275,"title":{},"body":{"license.html":{}}}],["specify",{"_index":4278,"title":{},"body":{"license.html":{}}}],["spinach",{"_index":1927,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["spinner",{"_index":490,"title":{},"body":{"modules/AccountsModule.html":{}}}],["spirit",{"_index":4270,"title":{},"body":{"license.html":{}}}],["src/.../account.ts",{"_index":4384,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../accountindex.ts",{"_index":4381,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../array",{"_index":3499,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../clipboard",{"_index":3500,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../environment.dev.ts",{"_index":4385,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../environment.prod.ts",{"_index":4386,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../environment.ts",{"_index":4387,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../export",{"_index":3501,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../http",{"_index":3502,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../mock",{"_index":4383,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../pgp",{"_index":4380,"title":{},"body":{"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["src/.../read",{"_index":3503,"title":{},"body":{"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["src/.../schema",{"_index":3504,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../token",{"_index":4382,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../transaction.service.ts",{"_index":4388,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../user.service.ts",{"_index":4389,"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":2952,"title":{},"body":{"classes/TokenRegistry.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_guards/auth.guard.ts",{"_index":836,"title":{},"body":{"guards/AuthGuard.html":{},"coverage.html":{}}}],["src/app/_guards/auth.guard.ts:12",{"_index":842,"title":{},"body":{"guards/AuthGuard.html":{}}}],["src/app/_guards/auth.guard.ts:8",{"_index":838,"title":{},"body":{"guards/AuthGuard.html":{}}}],["src/app/_guards/role.guard.ts",{"_index":2790,"title":{},"body":{"guards/RoleGuard.html":{},"coverage.html":{}}}],["src/app/_guards/role.guard.ts:12",{"_index":2792,"title":{},"body":{"guards/RoleGuard.html":{}}}],["src/app/_guards/role.guard.ts:8",{"_index":2791,"title":{},"body":{"guards/RoleGuard.html":{}}}],["src/app/_helpers/array",{"_index":3407,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/clipboard",{"_index":3411,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/custom",{"_index":1217,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"coverage.html":{}}}],["src/app/_helpers/custom.validator.ts",{"_index":1234,"title":{},"body":{"classes/CustomValidator.html":{},"coverage.html":{}}}],["src/app/_helpers/custom.validator.ts:12",{"_index":1244,"title":{},"body":{"classes/CustomValidator.html":{}}}],["src/app/_helpers/custom.validator.ts:4",{"_index":1240,"title":{},"body":{"classes/CustomValidator.html":{}}}],["src/app/_helpers/export",{"_index":3414,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/global",{"_index":1344,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{}}}],["src/app/_helpers/http",{"_index":3418,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/mock",{"_index":1495,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_helpers/read",{"_index":3420,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["src/app/_helpers/schema",{"_index":3424,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_interceptors/error.interceptor.ts",{"_index":1288,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/error.interceptor.ts:14",{"_index":1291,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["src/app/_interceptors/error.interceptor.ts:22",{"_index":1295,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["src/app/_interceptors/http",{"_index":1391,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/logging.interceptor.ts",{"_index":1415,"title":{},"body":{"interceptors/LoggingInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/logging.interceptor.ts:14",{"_index":1416,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["src/app/_interceptors/logging.interceptor.ts:20",{"_index":1417,"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":506,"title":{},"body":{"interfaces/Action.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"interfaces/Category.html":{},"coverage.html":{}}}],["src/app/_models/settings.ts",{"_index":2824,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{},"coverage.html":{}}}],["src/app/_models/settings.ts:16",{"_index":3397,"title":{},"body":{"classes/W3.html":{}}}],["src/app/_models/settings.ts:17",{"_index":3398,"title":{},"body":{"classes/W3.html":{}}}],["src/app/_models/settings.ts:2",{"_index":2833,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:6",{"_index":2831,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:7",{"_index":2830,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:8",{"_index":2829,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/staff.ts",{"_index":2915,"title":{},"body":{"interfaces/Staff.html":{},"coverage.html":{}}}],["src/app/_models/token.ts",{"_index":2918,"title":{},"body":{"interfaces/Token.html":{},"coverage.html":{}}}],["src/app/_models/transaction.ts",{"_index":1139,"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":3341,"title":{},"body":{"classes/TxToken.html":{}}}],["src/app/_models/transaction.ts:13",{"_index":3342,"title":{},"body":{"classes/TxToken.html":{}}}],["src/app/_models/transaction.ts:14",{"_index":3343,"title":{},"body":{"classes/TxToken.html":{}}}],["src/app/_models/transaction.ts:18",{"_index":3336,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:19",{"_index":3337,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:20",{"_index":3338,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:21",{"_index":3339,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:22",{"_index":3340,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:26",{"_index":3056,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:27",{"_index":3058,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:28",{"_index":3059,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:29",{"_index":3057,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:30",{"_index":3060,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:31",{"_index":3061,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:32",{"_index":3063,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:33",{"_index":3062,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:37",{"_index":1164,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:38",{"_index":1165,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:39",{"_index":1166,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:4",{"_index":1149,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_models/transaction.ts:40",{"_index":1167,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:41",{"_index":1168,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:42",{"_index":1170,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:43",{"_index":1169,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:5",{"_index":1146,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_models/transaction.ts:6",{"_index":1147,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_models/transaction.ts:7",{"_index":1145,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_models/transaction.ts:8",{"_index":1148,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_pgp/pgp",{"_index":2476,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["src/app/_services/auth.service.ts",{"_index":861,"title":{},"body":{"injectables/AuthService.html":{},"coverage.html":{}}}],["src/app/_services/auth.service.ts:118",{"_index":887,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:147",{"_index":889,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:15",{"_index":901,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:157",{"_index":895,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:16",{"_index":900,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:17",{"_index":878,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:181",{"_index":890,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:187",{"_index":882,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:193",{"_index":881,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:204",{"_index":880,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:27",{"_index":884,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:38",{"_index":898,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:42",{"_index":883,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:61",{"_index":892,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:84",{"_index":879,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:99",{"_index":885,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/block",{"_index":1033,"title":{},"body":{"injectables/BlockSyncService.html":{},"coverage.html":{}}}],["src/app/_services/error",{"_index":1269,"title":{},"body":{"injectables/ErrorDialogService.html":{},"coverage.html":{}}}],["src/app/_services/location.service.ts",{"_index":1399,"title":{},"body":{"injectables/LocationService.html":{},"coverage.html":{}}}],["src/app/_services/location.service.ts:10",{"_index":1404,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:16",{"_index":1407,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:20",{"_index":1406,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:24",{"_index":1410,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:28",{"_index":1409,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/logging.service.ts",{"_index":1430,"title":{},"body":{"injectables/LoggingService.html":{},"coverage.html":{}}}],["src/app/_services/logging.service.ts:18",{"_index":1454,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:22",{"_index":1444,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:26",{"_index":1450,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:30",{"_index":1452,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:34",{"_index":1456,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:38",{"_index":1446,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:42",{"_index":1448,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:8",{"_index":1457,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:9",{"_index":1442,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/registry.service.ts",{"_index":2768,"title":{},"body":{"injectables/RegistryService.html":{},"coverage.html":{}}}],["src/app/_services/registry.service.ts:11",{"_index":2784,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:12",{"_index":2776,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:13",{"_index":2783,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:14",{"_index":2772,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:21",{"_index":2773,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:25",{"_index":2774,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/token.service.ts",{"_index":2979,"title":{},"body":{"injectables/TokenService.html":{},"coverage.html":{}}}],["src/app/_services/token.service.ts:13",{"_index":2989,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:14",{"_index":2990,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:15",{"_index":2982,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:29",{"_index":2987,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:34",{"_index":2986,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:38",{"_index":2984,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/transaction.service.ts",{"_index":3139,"title":{},"body":{"injectables/TransactionService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_services/transaction.service.ts:102",{"_index":3156,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:108",{"_index":3169,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:26",{"_index":3173,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:27",{"_index":3172,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:28",{"_index":3175,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:29",{"_index":3176,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:30",{"_index":3177,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:31",{"_index":3151,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:45",{"_index":3160,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:49",{"_index":3158,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:53",{"_index":3165,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:73",{"_index":3163,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:89",{"_index":3154,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:97",{"_index":3161,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/user.service.ts",{"_index":3439,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/app",{"_index":765,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["src/app/app.component.ts",{"_index":637,"title":{},"body":{"components/AppComponent.html":{},"coverage.html":{}}}],["src/app/app.component.ts:12",{"_index":671,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:13",{"_index":669,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:14",{"_index":667,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:15",{"_index":653,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:43",{"_index":662,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:68",{"_index":660,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.component.ts:74",{"_index":658,"title":{},"body":{"components/AppComponent.html":{}}}],["src/app/app.module.ts",{"_index":733,"title":{},"body":{"modules/AppModule.html":{}}}],["src/app/auth/_directives/password",{"_index":2748,"title":{},"body":{"directives/PasswordToggleDirective.html":{},"coverage.html":{}}}],["src/app/auth/auth",{"_index":859,"title":{},"body":{"modules/AuthRoutingModule.html":{}}}],["src/app/auth/auth.component.ts",{"_index":776,"title":{},"body":{"components/AuthComponent.html":{},"coverage.html":{}}}],["src/app/auth/auth.component.ts:14",{"_index":794,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:15",{"_index":796,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:16",{"_index":795,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:17",{"_index":787,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:25",{"_index":789,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:36",{"_index":798,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:38",{"_index":790,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:48",{"_index":788,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:59",{"_index":791,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.component.ts:67",{"_index":793,"title":{},"body":{"components/AuthComponent.html":{}}}],["src/app/auth/auth.module.ts",{"_index":854,"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":496,"title":{},"body":{"modules/AccountsRoutingModule.html":{}}}],["src/app/pages/accounts/accounts.component.ts",{"_index":340,"title":{},"body":{"components/AccountsComponent.html":{},"coverage.html":{}}}],["src/app/pages/accounts/accounts.component.ts:20",{"_index":371,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:21",{"_index":367,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:22",{"_index":375,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:23",{"_index":373,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:24",{"_index":379,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:25",{"_index":368,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:26",{"_index":369,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:28",{"_index":383,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:29",{"_index":358,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:48",{"_index":363,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:57",{"_index":360,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:61",{"_index":366,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:65",{"_index":362,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:76",{"_index":364,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.component.ts:84",{"_index":361,"title":{},"body":{"components/AccountsComponent.html":{}}}],["src/app/pages/accounts/accounts.module.ts",{"_index":448,"title":{},"body":{"modules/AccountsModule.html":{}}}],["src/app/pages/accounts/create",{"_index":1171,"title":{},"body":{"components/CreateAccountComponent.html":{},"coverage.html":{}}}],["src/app/pages/admin/admin",{"_index":636,"title":{},"body":{"modules/AdminRoutingModule.html":{}}}],["src/app/pages/admin/admin.component.ts",{"_index":550,"title":{},"body":{"components/AdminComponent.html":{},"coverage.html":{}}}],["src/app/pages/admin/admin.component.ts:25",{"_index":575,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:26",{"_index":578,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:27",{"_index":573,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:28",{"_index":574,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:30",{"_index":579,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:31",{"_index":559,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:46",{"_index":572,"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":561,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:57",{"_index":564,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:63",{"_index":566,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:69",{"_index":570,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.component.ts:73",{"_index":568,"title":{},"body":{"components/AdminComponent.html":{}}}],["src/app/pages/admin/admin.module.ts",{"_index":633,"title":{},"body":{"modules/AdminModule.html":{}}}],["src/app/pages/pages",{"_index":2736,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["src/app/pages/pages.component.ts",{"_index":2717,"title":{},"body":{"components/PagesComponent.html":{},"coverage.html":{}}}],["src/app/pages/pages.component.ts:10",{"_index":2721,"title":{},"body":{"components/PagesComponent.html":{}}}],["src/app/pages/pages.module.ts",{"_index":2730,"title":{},"body":{"modules/PagesModule.html":{}}}],["src/app/pages/settings/organization/organization.component.ts",{"_index":2625,"title":{},"body":{"components/OrganizationComponent.html":{},"coverage.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:12",{"_index":2634,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:13",{"_index":2635,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:14",{"_index":2631,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:20",{"_index":2632,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:28",{"_index":2637,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:30",{"_index":2633,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/settings",{"_index":2887,"title":{},"body":{"modules/SettingsRoutingModule.html":{}}}],["src/app/pages/settings/settings.component.ts",{"_index":2835,"title":{},"body":{"components/SettingsComponent.html":{},"coverage.html":{}}}],["src/app/pages/settings/settings.component.ts:16",{"_index":2844,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:17",{"_index":2843,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:18",{"_index":2846,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:19",{"_index":2848,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:21",{"_index":2847,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:22",{"_index":2838,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:28",{"_index":2842,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:37",{"_index":2839,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:41",{"_index":2840,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:45",{"_index":2841,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.module.ts",{"_index":2879,"title":{},"body":{"modules/SettingsModule.html":{}}}],["src/app/pages/tokens/token",{"_index":2919,"title":{},"body":{"components/TokenDetailsComponent.html":{},"coverage.html":{}}}],["src/app/pages/tokens/tokens",{"_index":3050,"title":{},"body":{"modules/TokensRoutingModule.html":{}}}],["src/app/pages/tokens/tokens.component.ts",{"_index":3012,"title":{},"body":{"components/TokensComponent.html":{},"coverage.html":{}}}],["src/app/pages/tokens/tokens.component.ts:18",{"_index":3025,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:19",{"_index":3024,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:20",{"_index":3026,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:21",{"_index":3027,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:22",{"_index":3018,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:30",{"_index":3021,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:41",{"_index":3019,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:45",{"_index":3023,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:49",{"_index":3020,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.module.ts",{"_index":3041,"title":{},"body":{"modules/TokensModule.html":{}}}],["src/app/pages/transactions/transaction",{"_index":3064,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"coverage.html":{}}}],["src/app/pages/transactions/transactions",{"_index":3335,"title":{},"body":{"modules/TransactionsRoutingModule.html":{}}}],["src/app/pages/transactions/transactions.component.ts",{"_index":3275,"title":{},"body":{"components/TransactionsComponent.html":{},"coverage.html":{}}}],["src/app/pages/transactions/transactions.component.ts:17",{"_index":3299,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:18",{"_index":3300,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:19",{"_index":3295,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:20",{"_index":3296,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:21",{"_index":3301,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:22",{"_index":3298,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:23",{"_index":3302,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:24",{"_index":3303,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:26",{"_index":3297,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:27",{"_index":3287,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:37",{"_index":3292,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:47",{"_index":3294,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:51",{"_index":3288,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:55",{"_index":3290,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:66",{"_index":3291,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:71",{"_index":3289,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.module.ts",{"_index":3331,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["src/app/shared/_directives/menu",{"_index":1470,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"coverage.html":{}}}],["src/app/shared/_pipes/safe.pipe.ts",{"_index":2814,"title":{},"body":{"pipes/SafePipe.html":{},"coverage.html":{}}}],["src/app/shared/_pipes/safe.pipe.ts:11",{"_index":2819,"title":{},"body":{"pipes/SafePipe.html":{}}}],["src/app/shared/_pipes/token",{"_index":2944,"title":{},"body":{"pipes/TokenRatioPipe.html":{},"coverage.html":{}}}],["src/app/shared/error",{"_index":1253,"title":{},"body":{"components/ErrorDialogComponent.html":{},"coverage.html":{}}}],["src/app/shared/footer/footer.component.ts",{"_index":1334,"title":{},"body":{"components/FooterComponent.html":{},"coverage.html":{}}}],["src/app/shared/footer/footer.component.ts:13",{"_index":1339,"title":{},"body":{"components/FooterComponent.html":{}}}],["src/app/shared/footer/footer.component.ts:9",{"_index":1338,"title":{},"body":{"components/FooterComponent.html":{}}}],["src/app/shared/shared.module.ts",{"_index":2892,"title":{},"body":{"modules/SharedModule.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts",{"_index":2902,"title":{},"body":{"components/SidebarComponent.html":{},"coverage.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts:13",{"_index":2906,"title":{},"body":{"components/SidebarComponent.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts:9",{"_index":2905,"title":{},"body":{"components/SidebarComponent.html":{}}}],["src/app/shared/topbar/topbar.component.ts",{"_index":3051,"title":{},"body":{"components/TopbarComponent.html":{},"coverage.html":{}}}],["src/app/shared/topbar/topbar.component.ts:13",{"_index":3055,"title":{},"body":{"components/TopbarComponent.html":{}}}],["src/app/shared/topbar/topbar.component.ts:9",{"_index":3054,"title":{},"body":{"components/TopbarComponent.html":{}}}],["src/assets/js/ethtx/dist",{"_index":3187,"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":3188,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/assets/js/hoba",{"_index":905,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/assets/js/hoba.js",{"_index":903,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/environments",{"_index":3575,"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":3445,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/environments/environment.prod.ts",{"_index":3446,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/environments/environment.ts",{"_index":3447,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/testing/activated",{"_index":514,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"coverage.html":{}}}],["src/testing/router",{"_index":2801,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{},"coverage.html":{}}}],["src/testing/shared",{"_index":1341,"title":{},"body":{"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{},"coverage.html":{}}}],["src/testing/token",{"_index":3008,"title":{},"body":{"classes/TokenServiceStub.html":{},"coverage.html":{}}}],["src/testing/transaction",{"_index":3270,"title":{},"body":{"classes/TransactionServiceStub.html":{},"coverage.html":{}}}],["src/testing/user",{"_index":3345,"title":{},"body":{"classes/UserServiceStub.html":{},"coverage.html":{}}}],["srf",{"_index":3117,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["stadium",{"_index":2265,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["staff",{"_index":622,"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":992,"title":{},"body":{"injectables/AuthService.html":{}}}],["stand",{"_index":3701,"title":{},"body":{"license.html":{}}}],["standard",{"_index":3801,"title":{},"body":{"license.html":{}}}],["standards",{"_index":3804,"title":{},"body":{"license.html":{}}}],["starehe",{"_index":2268,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["start",{"_index":4337,"title":{},"body":{"license.html":{}}}],["start:dev",{"_index":3532,"title":{},"body":{"index.html":{}}}],["started",{"_index":3520,"title":{"index.html":{},"license.html":{}},"body":{}}],["starts",{"_index":4352,"title":{},"body":{"license.html":{}}}],["starttime",{"_index":1422,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["state",{"_index":581,"title":{},"body":{"components/AdminComponent.html":{},"guards/AuthGuard.html":{},"classes/CustomErrorStateMatcher.html":{},"guards/RoleGuard.html":{},"coverage.html":{},"license.html":{}}}],["state('collapsed",{"_index":589,"title":{},"body":{"components/AdminComponent.html":{}}}],["state('expanded",{"_index":595,"title":{},"body":{"components/AdminComponent.html":{}}}],["state.url",{"_index":2800,"title":{},"body":{"guards/RoleGuard.html":{}}}],["stated",{"_index":3854,"title":{},"body":{"license.html":{}}}],["statement",{"_index":4121,"title":{},"body":{"license.html":{}}}],["statements",{"_index":3401,"title":{},"body":{"coverage.html":{}}}],["states",{"_index":2652,"title":{},"body":{"components/OrganizationComponent.html":{},"license.html":{}}}],["static",{"_index":1235,"title":{},"body":{"classes/CustomValidator.html":{}}}],["stating",{"_index":3922,"title":{},"body":{"license.html":{}}}],["station",{"_index":2049,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["status",{"_index":562,"title":{},"body":{"components/AdminComponent.html":{},"components/ErrorDialogComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"license.html":{}}}],["step",{"_index":2867,"title":{},"body":{"components/SettingsComponent.html":{}}}],["steps",{"_index":3660,"title":{},"body":{"license.html":{}}}],["stima",{"_index":2101,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["storage",{"_index":3952,"title":{},"body":{"license.html":{}}}],["store",{"_index":2548,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["store.ts",{"_index":2477,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["store.ts:10",{"_index":2536,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:100",{"_index":2602,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:106",{"_index":2603,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:11",{"_index":2526,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:110",{"_index":2607,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:115",{"_index":2604,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:119",{"_index":2609,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:12",{"_index":2531,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:123",{"_index":2606,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:127",{"_index":2610,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:13",{"_index":2529,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:131",{"_index":2612,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:135",{"_index":2621,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:139",{"_index":2623,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:14",{"_index":2520,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:143",{"_index":2622,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:148",{"_index":2600,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:15",{"_index":2524,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:152",{"_index":2624,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:16",{"_index":2523,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:17",{"_index":2503,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:18",{"_index":2514,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:19",{"_index":2510,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:20",{"_index":2535,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:21",{"_index":2533,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:22",{"_index":2504,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:23",{"_index":2506,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:24",{"_index":2513,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:25",{"_index":2508,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:26",{"_index":2516,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:27",{"_index":2512,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:28",{"_index":2518,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:29",{"_index":2522,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:30",{"_index":2538,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:31",{"_index":2542,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:32",{"_index":2540,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:33",{"_index":2502,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:34",{"_index":2544,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:42",{"_index":2620,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:47",{"_index":2615,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:52",{"_index":2617,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:56",{"_index":2616,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:60",{"_index":2611,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:64",{"_index":2614,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:68",{"_index":2613,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:72",{"_index":2601,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:76",{"_index":2608,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:80",{"_index":2605,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:84",{"_index":2619,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:90",{"_index":2618,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["stored",{"_index":3555,"title":{},"body":{"index.html":{}}}],["str",{"_index":3513,"title":{},"body":{"miscellaneous/functions.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/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":{},"miscellaneous/functions.html":{}}}],["stringfromurl",{"_index":2438,"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":3239,"title":{},"body":{"injectables/TransactionService.html":{}}}],["stub.ts",{"_index":516,"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:11",{"_index":531,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["stub.ts:12",{"_index":3348,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:18",{"_index":534,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["stub.ts:2",{"_index":3011,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["stub.ts:21",{"_index":538,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"classes/UserServiceStub.html":{}}}],["stub.ts:37",{"_index":3383,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:4",{"_index":3272,"title":{},"body":{"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{}}}],["stub.ts:6",{"_index":3271,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["stub.ts:61",{"_index":3381,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:7",{"_index":2804,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["stub.ts:71",{"_index":3379,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:8",{"_index":2805,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{},"classes/TransactionServiceStub.html":{}}}],["student",{"_index":1561,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["style",{"_index":582,"title":{},"body":{"components/AdminComponent.html":{},"components/AuthComponent.html":{}}}],["style({height",{"_index":590,"title":{},"body":{"components/AdminComponent.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/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/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":4171,"title":{},"body":{"license.html":{}}}],["subject",{"_index":528,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"license.html":{}}}],["subkeyid",{"_index":2519,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["sublicenses",{"_index":4200,"title":{},"body":{"license.html":{}}}],["sublicensing",{"_index":3880,"title":{},"body":{"license.html":{}}}],["submit",{"_index":1216,"title":{},"body":{"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["submitted",{"_index":781,"title":{},"body":{"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["subprograms",{"_index":3842,"title":{},"body":{"license.html":{}}}],["subroutine",{"_index":4363,"title":{},"body":{"license.html":{}}}],["subscribe(this.authservice.mutablekeystore.importpublickey",{"_index":687,"title":{},"body":{"components/AppComponent.html":{}}}],["subscribers",{"_index":546,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["subsection",{"_index":3985,"title":{},"body":{"license.html":{}}}],["substantial",{"_index":4037,"title":{},"body":{"license.html":{}}}],["substantially",{"_index":3699,"title":{},"body":{"license.html":{}}}],["succeeded",{"_index":1424,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["success",{"_index":1153,"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":{}}}],["successfully",{"_index":2432,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TransactionDetailsComponent.html":{}}}],["such",{"_index":3649,"title":{},"body":{"license.html":{}}}],["sue",{"_index":4214,"title":{},"body":{"license.html":{}}}],["suffice",{"_index":4045,"title":{},"body":{"license.html":{}}}],["sugar",{"_index":1922,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["suger",{"_index":1923,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sukari",{"_index":1925,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sukuma",{"_index":1930,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sum.ts",{"_index":3408,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["super",{"_index":1366,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["super(message",{"_index":1363,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["superadmin",{"_index":1507,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["supplement",{"_index":4075,"title":{},"body":{"license.html":{}}}],["supplier",{"_index":1789,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["supply",{"_index":1524,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"miscellaneous/variables.html":{}}}],["support",{"_index":2723,"title":{},"body":{"components/PagesComponent.html":{},"license.html":{},"modules.html":{}}}],["supports",{"_index":3993,"title":{},"body":{"license.html":{}}}],["supposed",{"_index":2561,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["sure",{"_index":3620,"title":{},"body":{"license.html":{}}}],["surname",{"_index":1195,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["surrender",{"_index":3644,"title":{},"body":{"license.html":{}}}],["survive",{"_index":4120,"title":{},"body":{"license.html":{}}}],["sustained",{"_index":4310,"title":{},"body":{"license.html":{}}}],["svg",{"_index":4372,"title":{},"body":{"modules.html":{}}}],["sweats",{"_index":1919,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sweet",{"_index":1918,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["switch",{"_index":1323,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["switchwindows",{"_index":784,"title":{},"body":{"components/AuthComponent.html":{}}}],["symbol",{"_index":1152,"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":1034,"title":{},"body":{"injectables/BlockSyncService.html":{},"coverage.html":{}}}],["sync.service.ts:101",{"_index":1052,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:14",{"_index":1070,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:15",{"_index":1043,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:23",{"_index":1047,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:46",{"_index":1060,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:68",{"_index":1057,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:76",{"_index":1054,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:84",{"_index":1068,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync/data",{"_index":2782,"title":{},"body":{"injectables/RegistryService.html":{}}}],["sync/data/accountregistry.json",{"_index":149,"title":{},"body":{"classes/AccountIndex.html":{},"miscellaneous/variables.html":{}}}],["sync/data/tokenuniquesymbolindex.json",{"_index":2972,"title":{},"body":{"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["sync/head.js",{"_index":1102,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync/ondemand.js",{"_index":1115,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["syncer",{"_index":3461,"title":{},"body":{"dependencies.html":{}}}],["system",{"_index":984,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["systematic",{"_index":3688,"title":{},"body":{"license.html":{}}}],["taa",{"_index":2106,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["table",{"_index":2051,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["tablesort(document.getelementbyid('coverage",{"_index":3450,"title":{},"body":{"coverage.html":{}}}],["tag",{"_index":2917,"title":{},"body":{"interfaces/Staff.html":{}}}],["tailor",{"_index":1724,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["taka",{"_index":1641,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["takaungu",{"_index":2321,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["take",{"_index":3611,"title":{},"body":{"license.html":{}}}],["talk",{"_index":812,"title":{},"body":{"components/AuthComponent.html":{}}}],["tangible",{"_index":4016,"title":{},"body":{"license.html":{}}}],["tap",{"_index":1420,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["tasia",{"_index":2250,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tassia",{"_index":2249,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["taxi",{"_index":2075,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tea",{"_index":1931,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["teacher",{"_index":1557,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["technician",{"_index":1974,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["technological",{"_index":3889,"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":3788,"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/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/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":3852,"title":{},"body":{"license.html":{}}}],["terminal",{"_index":4350,"title":{},"body":{"license.html":{}}}],["terminate",{"_index":4126,"title":{},"body":{"license.html":{}}}],["terminated",{"_index":4148,"title":{},"body":{"license.html":{}}}],["terminates",{"_index":4135,"title":{},"body":{"license.html":{}}}],["termination",{"_index":4123,"title":{},"body":{"license.html":{}}}],["terms",{"_index":3657,"title":{},"body":{"license.html":{}}}],["test",{"_index":518,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["test:dev",{"_index":3563,"title":{},"body":{"index.html":{}}}],["testa",{"_index":1544,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["testb",{"_index":1540,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["testc",{"_index":1548,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tests",{"_index":3562,"title":{},"body":{"index.html":{}}}],["tetra",{"_index":2125,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tetrapak",{"_index":2126,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["text",{"_index":924,"title":{},"body":{"injectables/AuthService.html":{},"directives/PasswordToggleDirective.html":{},"miscellaneous/functions.html":{}}}],["then(res",{"_index":1025,"title":{},"body":{"injectables/AuthService.html":{}}}],["therefore",{"_index":3645,"title":{},"body":{"license.html":{}}}],["thika",{"_index":2263,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["things",{"_index":3636,"title":{},"body":{"license.html":{}}}],["third",{"_index":3914,"title":{},"body":{"license.html":{}}}],["this.accounts",{"_index":411,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.accounts.filter(account",{"_index":417,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.accountstype",{"_index":415,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.accounttypes",{"_index":403,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{}}}],["this.actions",{"_index":607,"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":278,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchloading",{"_index":279,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addresssearchsubmitted",{"_index":277,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.addtransaction(conversion",{"_index":3216,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.addtransaction(transaction",{"_index":3206,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.algo",{"_index":2711,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.areanames",{"_index":1202,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.authservice.getprivatekey",{"_index":819,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.getpublickeys",{"_index":675,"title":{},"body":{"components/AppComponent.html":{}}}],["this.authservice.gettrustedusers",{"_index":2854,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.authservice.init",{"_index":674,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{}}}],["this.authservice.logout",{"_index":2858,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.authservice.mutablekeystore.getprivatekey",{"_index":3255,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.authservice.mutablekeystore.importpublickey(publickeys",{"_index":689,"title":{},"body":{"components/AppComponent.html":{}}}],["this.authservice.privatekey",{"_index":801,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.sessiontoken",{"_index":821,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.setkey(this.authservice.privatekey",{"_index":803,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.authservice.setkey(this.keyformstub.key.value",{"_index":808,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.blocksyncservice.blocksync",{"_index":3304,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.categories",{"_index":1200,"title":{},"body":{"components/CreateAccountComponent.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({from",{"_index":165,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.addressof(id).call",{"_index":2976,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["this.contract.methods.count().call",{"_index":174,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.entry(serial).call",{"_index":2977,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["this.contract.methods.entrycount().call",{"_index":2978,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["this.contractaddress",{"_index":156,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["this.createform",{"_index":1192,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.createform.controls",{"_index":1205,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.createform.invalid",{"_index":1206,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.datasource",{"_index":405,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.datasource.data",{"_index":416,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.datasource.filter",{"_index":412,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.datasource.paginator",{"_index":407,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.datasource.sort",{"_index":409,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{}}}],["this.date",{"_index":2851,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.dgst",{"_index":2695,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.dialog.open(errordialogcomponent",{"_index":1284,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["this.engine",{"_index":2710,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.errordialogservice.opendialog",{"_index":981,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.errordialogservice.opendialog({message",{"_index":680,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{}}}],["this.fetcher(settings",{"_index":1109,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.filegetter",{"_index":2780,"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":1204,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.getaccountinfo(res.body",{"_index":3202,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.getchallenge",{"_index":969,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.getprivatekey",{"_index":2589,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["this.getwithtoken",{"_index":966,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.haveaccount(address",{"_index":164,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.httpclient.get(`${environment.ciccacheurl}/tokens/${symbol",{"_index":3002,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.httpclient.get(`${environment.ciccacheurl}/tx/${address}/${offset}/${limit",{"_index":3194,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.httpclient.get(`${environment.ciccacheurl}/tx/${offset}/${limit",{"_index":3193,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.httpclient.get(`${environment.cicmetaurl}/areanames",{"_index":1411,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.httpclient.get(`${environment.cicmetaurl}/areanames/${location.tolowercase",{"_index":1412,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.httpclient.get(`${environment.cicmetaurl}/areatypes/${area.tolowercase()}`).pipe(first",{"_index":1414,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.httpclient.get(`${environment.cicmetaurl}/areatypes`).pipe(first",{"_index":1413,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.isdialogopen",{"_index":1282,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["this.iswarning(errortracestring",{"_index":1374,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.keyform",{"_index":799,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.keyform.controls",{"_index":804,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.keyform.invalid",{"_index":806,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.keystore",{"_index":2691,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.keystore.getfingerprint",{"_index":2694,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.keystore.getprivatekey",{"_index":2705,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.keystore.gettrustedkeys",{"_index":2699,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.linkparams",{"_index":2811,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["this.loadevent.next(date.now",{"_index":2998,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.loading",{"_index":807,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.locationservice.getareanames().pipe(first()).subscribe(res",{"_index":1201,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.logerror(error",{"_index":1367,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.logger.debug(message",{"_index":1464,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.error(message",{"_index":1468,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.fatal(message",{"_index":1469,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.info(message",{"_index":1465,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.log(message",{"_index":1466,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.trace(message",{"_index":1463,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.warn(message",{"_index":1467,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.loggingservice.senderrorlevelmessage",{"_index":1378,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loggingservice.senderrorlevelmessage('failed",{"_index":400,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.loggingservice.senderrorlevelmessage('login",{"_index":967,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.loggingservice.senderrorlevelmessage('unable",{"_index":677,"title":{},"body":{"components/AppComponent.html":{}}}],["this.loggingservice.senderrorlevelmessage(`failed",{"_index":1015,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.loggingservice.senderrorlevelmessage(`nobody",{"_index":1385,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loggingservice.senderrorlevelmessage(`there",{"_index":1382,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loggingservice.senderrorlevelmessage(e.message",{"_index":2702,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.loggingservice.senderrorlevelmessage(errormessage",{"_index":1322,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["this.loggingservice.senderrorlevelmessage(errortracestring",{"_index":1376,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loggingservice.sendinfolevelmessage(`loaded",{"_index":1092,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.loggingservice.sendinfolevelmessage(`result",{"_index":3266,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.loggingservice.sendinfolevelmessage(`transaction",{"_index":3268,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.loggingservice.sendinfolevelmessage(message",{"_index":1429,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["this.loggingservice.sendinfolevelmessage(request",{"_index":1421,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["this.loggingservice.sendinfolevelmessage(res",{"_index":612,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.loggingservice.sendinfolevelmessage(this.tokens",{"_index":3032,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.loggingservice.sendwarnlevelmessage(errortracestring",{"_index":1375,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loginresponse(o",{"_index":965,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.loginview",{"_index":1018,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mediaquery.addlistener(this.onresize",{"_index":695,"title":{},"body":{"components/AppComponent.html":{}}}],["this.mutablekeystore",{"_index":912,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.getprivatekey",{"_index":1031,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.getprivatekeyid",{"_index":1000,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.getpublickeys().foreach(key",{"_index":1022,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.importprivatekey(localstorage.getitem(btoa('cicada_private_key",{"_index":919,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.importprivatekey(privatekeyarmored",{"_index":1012,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.isencryptedprivatekey(privatekeyarmored",{"_index":1009,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.isvalidkey(privatekeyarmored",{"_index":1003,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.loadkeyring",{"_index":913,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.name",{"_index":1365,"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":2810,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["this.onmenuselect",{"_index":1483,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["this.onmenutoggle",{"_index":1489,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["this.onresize(this.mediaquery",{"_index":696,"title":{},"body":{"components/AppComponent.html":{}}}],["this.onsign",{"_index":2692,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.onsign(this.signature",{"_index":2714,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.onsign(undefined",{"_index":2716,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.onverify",{"_index":2693,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.onverify(false",{"_index":2703,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.organizationform",{"_index":2638,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["this.organizationform.controls",{"_index":2642,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["this.organizationform.invalid",{"_index":2643,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["this.paginator",{"_index":408,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["this.paginator._changepagesize(this.paginator.pagesize",{"_index":419,"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":1097,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.readystateprocessor(settings",{"_index":1094,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.readystatetarget",{"_index":1098,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.recipientbloxberglink",{"_index":3094,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.registry",{"_index":2787,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["this.registry.addtoken(await",{"_index":3004,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.registry.declaratorhelper.addtrust(environment.trusteddeclaratoraddress",{"_index":2785,"title":{},"body":{"injectables/RegistryService.html":{}}}],["this.registry.getcontractaddressbyname('tokenregistry",{"_index":2997,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.registry.getcontractaddressbyname('transferauthorization",{"_index":3226,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.registry.load",{"_index":2786,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["this.registry.onload",{"_index":2994,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.registryservice.getregistry",{"_index":1083,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.registryservice.getweb3",{"_index":1081,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{}}}],["this.renderer.listen(this.elementref.nativeelement",{"_index":1480,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["this.route.parammap.subscribe((params",{"_index":2929,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["this.router.navigate",{"_index":2797,"title":{},"body":{"guards/RoleGuard.html":{}}}],["this.router.navigate(['/auth",{"_index":848,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["this.router.navigate(['/home",{"_index":820,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.router.navigatebyurl('/auth').then",{"_index":1326,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(account.identities.evm[`bloxberg:${environment.bloxbergchainid}`][0",{"_index":414,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(res.identities.evm[`bloxberg:${environment.bloxbergchainid}`][0",{"_index":274,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(this.transaction.from",{"_index":3096,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(this.transaction.to",{"_index":3097,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(this.transaction.trader",{"_index":3098,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.navigatebyurl(`/tokens/${token.symbol",{"_index":3034,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.router.url",{"_index":1377,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.sanitizer.bypasssecuritytrustresourceurl(url",{"_index":2823,"title":{},"body":{"pipes/SafePipe.html":{}}}],["this.scanfilter",{"_index":2834,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["this.senderbloxberglink",{"_index":3092,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.sendinfolevelmessage('dropping",{"_index":1460,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.sendresponse(r",{"_index":977,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sentencesforwarninglogging.foreach((whitelistsentence",{"_index":1389,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.sessionlogincount",{"_index":941,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sessiontoken",{"_index":918,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.setparammap(initialparams",{"_index":548,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["this.setstate('click",{"_index":942,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.signature",{"_index":2709,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.signeraddress",{"_index":159,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["this.snackbar.open(address",{"_index":3105,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.sort",{"_index":410,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["this.status",{"_index":1364,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.subject.asobservable",{"_index":533,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["this.subject.next(converttoparammap(params",{"_index":549,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["this.submitted",{"_index":805,"title":{},"body":{"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["this.toggledisplay(divone",{"_index":826,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.toggledisplay(divtwo",{"_index":827,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.togglepasswordvisibility",{"_index":2757,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["this.token",{"_index":2931,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["this.tokenregistry",{"_index":2995,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenregistry.entry(0",{"_index":3005,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenregistry.entry(i",{"_index":3001,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenregistry.totaltokens",{"_index":2999,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokens",{"_index":3030,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.tokenservice.gettokenbysymbol(params.get('id')).pipe(first()).subscribe(res",{"_index":2930,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["this.tokenservice.gettokens",{"_index":3031,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.tokenservice.loadevent.subscribe(async",{"_index":3029,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.totalaccounts",{"_index":169,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.traderbloxberglink",{"_index":3089,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction",{"_index":3312,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transaction.from",{"_index":3102,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.to",{"_index":3101,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.token.address",{"_index":3100,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.value",{"_index":3103,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.from",{"_index":3093,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.to",{"_index":3095,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.trader",{"_index":3091,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.type",{"_index":3088,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transactiondatasource",{"_index":3306,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.data",{"_index":3315,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.paginator",{"_index":3308,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.sort",{"_index":3309,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionlist.asobservable",{"_index":3174,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactionlist.next(this.transactions",{"_index":3219,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions",{"_index":3220,"title":{},"body":{"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["this.transactions.filter(transaction",{"_index":3316,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactions.find(cachedtx",{"_index":3195,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions.length",{"_index":3218,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions.unshift(transaction",{"_index":3217,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactionservice.getaddresstransactions(address",{"_index":1110,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.transactionservice.getalltransactions(offset",{"_index":1107,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.transactionservice.resettransactionslist",{"_index":1075,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.transactionservice.setconversion(conversion",{"_index":721,"title":{},"body":{"components/AppComponent.html":{}}}],["this.transactionservice.settransaction(transaction",{"_index":717,"title":{},"body":{"components/AppComponent.html":{}}}],["this.transactionservice.transactionssubject.subscribe(transactions",{"_index":3305,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionservice.transferrequest",{"_index":3099,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transactionstype",{"_index":3314,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionstypes",{"_index":3311,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.trustedusers",{"_index":2853,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.userservice.accountssubject.subscribe(accounts",{"_index":404,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.userservice.actionssubject.subscribe(actions",{"_index":605,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.userservice.approveaction(action.id).pipe(first()).subscribe(res",{"_index":611,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.userservice.getaccountbyaddress(this.addresssearchformstub.address.value",{"_index":280,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.userservice.getaccountbyphone(this.phonesearchformstub.phonenumber.value",{"_index":270,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.userservice.getaccountdetailsfrommeta(await",{"_index":3199,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.userservice.getaccounttypes().pipe(first()).subscribe(res",{"_index":402,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{}}}],["this.userservice.getactions",{"_index":604,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.userservice.getcategories().pipe(first()).subscribe(res",{"_index":1199,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.userservice.getgenders().pipe(first()).subscribe(res",{"_index":1203,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.userservice.gettransactiontypes().pipe(first()).subscribe(res",{"_index":3310,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.userservice.loadaccounts(100",{"_index":398,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.userservice.revokeaction(action.id).pipe(first()).subscribe(res",{"_index":614,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.userservice.searchaccountbyname(this.namesearchformstub.name.value",{"_index":266,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["this.web3",{"_index":2788,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TransactionService.html":{}}}],["this.web3.eth.getgasprice",{"_index":3245,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.gettransaction(result.transactionhash",{"_index":3267,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.gettransactioncount(senderaddress",{"_index":3242,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.sendsignedtransaction(txwire",{"_index":3265,"title":{},"body":{"injectables/TransactionService.html":{}}}],["those",{"_index":3697,"title":{},"body":{"license.html":{}}}],["though",{"_index":4078,"title":{},"body":{"license.html":{}}}],["threatened",{"_index":3707,"title":{},"body":{"license.html":{}}}],["three",{"_index":3974,"title":{},"body":{"license.html":{}}}],["threw",{"_index":1386,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["through",{"_index":2419,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["throw",{"_index":938,"title":{},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["throwerror",{"_index":1300,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["throwerror(err",{"_index":1333,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["thrown",{"_index":2387,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["throws",{"_index":1001,"title":{},"body":{"injectables/AuthService.html":{}}}],["thus",{"_index":3871,"title":{},"body":{"license.html":{}}}],["timber",{"_index":2089,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["timberyard",{"_index":2090,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["time",{"_index":4144,"title":{},"body":{"license.html":{}}}],["timestamp",{"_index":1154,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["tissue",{"_index":2042,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["title",{"_index":644,"title":{},"body":{"components/AppComponent.html":{}}}],["titlecase",{"_index":1215,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["todo",{"_index":395,"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/Signer.html":{},"index.html":{}}}],["together",{"_index":915,"title":{},"body":{"injectables/AuthService.html":{}}}],["toggle.directive",{"_index":858,"title":{},"body":{"modules/AuthModule.html":{},"modules/SharedModule.html":{}}}],["toggle.directive.ts",{"_index":1484,"title":{},"body":{"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"coverage.html":{}}}],["toggle.directive.ts:11",{"_index":2753,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggle.directive.ts:18",{"_index":1488,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["toggle.directive.ts:22",{"_index":2755,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggle.directive.ts:6",{"_index":1487,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["toggle.directive.ts:8",{"_index":2754,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggledisplay",{"_index":785,"title":{},"body":{"components/AuthComponent.html":{}}}],["toggledisplay(element",{"_index":792,"title":{},"body":{"components/AuthComponent.html":{}}}],["togglepasswordvisibility",{"_index":2750,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["tohex",{"_index":3186,"title":{},"body":{"injectables/TransactionService.html":{}}}],["toi",{"_index":2284,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["toilet",{"_index":1636,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["token",{"_index":320,"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/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":2933,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["token.name",{"_index":2932,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["token.owner",{"_index":2943,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["token.reserveratio",{"_index":2942,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["token.supply",{"_index":2941,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["token.symbol",{"_index":2437,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["tokenaddress",{"_index":3170,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tokenagent",{"_index":2369,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tokendetailscomponent",{"_index":319,"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/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":429,"title":{},"body":{"components/AccountsComponent.html":{},"components/TokenDetailsComponent.html":{},"pipes/TokenRatioPipe.html":{},"components/TokensComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{}}}],["tokenratiopipe",{"_index":2891,"title":{"pipes/TokenRatioPipe.html":{}},"body":{"modules/SharedModule.html":{},"pipes/TokenRatioPipe.html":{},"coverage.html":{},"overview.html":{}}}],["tokenregistry",{"_index":2951,"title":{"classes/TokenRegistry.html":{}},"body":{"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"coverage.html":{}}}],["tokenregistry(await",{"_index":2996,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokens",{"_index":1519,"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":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/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":3014,"title":{},"body":{"components/TokensComponent.html":{}}}],["tokens.component.scss",{"_index":3013,"title":{},"body":{"components/TokensComponent.html":{}}}],["tokens.find(token",{"_index":2436,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["tokenscomponent",{"_index":321,"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/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":2926,"title":{"injectables/TokenService.html":{}},"body":{"components/TokenDetailsComponent.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"coverage.html":{}}}],["tokenservicestub",{"_index":3007,"title":{"classes/TokenServiceStub.html":{}},"body":{"classes/TokenServiceStub.html":{},"coverage.html":{}}}],["tokensmodule",{"_index":3036,"title":{"modules/TokensModule.html":{}},"body":{"modules/TokensModule.html":{},"modules.html":{},"overview.html":{}}}],["tokensroutingmodule",{"_index":3040,"title":{"modules/TokensRoutingModule.html":{}},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["tom",{"_index":1502,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["tomato",{"_index":1847,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tomatoes",{"_index":1848,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["toolbox",{"_index":2860,"title":{},"body":{"components/SettingsComponent.html":{}}}],["tools",{"_index":3834,"title":{},"body":{"license.html":{}}}],["topbar",{"_index":1343,"title":{},"body":{"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{}}}],["topbar'},{'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/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":3053,"title":{},"body":{"components/TopbarComponent.html":{}}}],["topbar.component.scss",{"_index":3052,"title":{},"body":{"components/TopbarComponent.html":{}}}],["topbarcomponent",{"_index":323,"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/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":325,"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/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":2955,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["tour",{"_index":2068,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tout",{"_index":1754,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tovalue",{"_index":1162,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"injectables/TransactionService.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["tovalue(value",{"_index":3251,"title":{},"body":{"injectables/TransactionService.html":{}}}],["town",{"_index":2292,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trace",{"_index":1372,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["trace|debug|info|log|warn|error|fatal|off",{"_index":1459,"title":{},"body":{"injectables/LoggingService.html":{}}}],["trade",{"_index":1779,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["trademark",{"_index":4104,"title":{},"body":{"license.html":{}}}],["trademarks",{"_index":4105,"title":{},"body":{"license.html":{}}}],["trader",{"_index":1163,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["traderbloxberglink",{"_index":3068,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["trading",{"_index":2936,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["trainer",{"_index":1598,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["transaction",{"_index":327,"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":{},"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":{}}}],["transaction.destinationtoken.address",{"_index":3135,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.destinationtoken.name",{"_index":3136,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.destinationtoken.symbol",{"_index":3137,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.from",{"_index":3112,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.fromvalue",{"_index":3133,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.recipient",{"_index":3204,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transaction.recipient?.vcard.fn[0].value",{"_index":3114,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sender",{"_index":3201,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transaction.sender?.vcard.fn[0].value",{"_index":3111,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.address",{"_index":3130,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.name",{"_index":3131,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.symbol",{"_index":3132,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.to",{"_index":3115,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.token._address",{"_index":3119,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tovalue",{"_index":3138,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.trader",{"_index":3129,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.block",{"_index":3120,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.success",{"_index":3124,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.timestamp",{"_index":3125,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.txhash",{"_index":3123,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["transaction.tx.txindex",{"_index":3121,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.type",{"_index":3198,"title":{},"body":{"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["transaction.value",{"_index":3118,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["transaction?.recipient?.vcard.fn[0].value",{"_index":3321,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.sender?.vcard.fn[0].value",{"_index":3320,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.tovalue",{"_index":3323,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.tx.timestamp",{"_index":3324,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.type",{"_index":3325,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.value",{"_index":3322,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiondatasource",{"_index":3279,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiondetailscomponent",{"_index":326,"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/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":3280,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactionhelper",{"_index":1071,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionhelper(settings.w3.engine",{"_index":1085,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionlist",{"_index":3140,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transactions",{"_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":{},"interceptors/MockBackendInterceptor.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":3278,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactions.component.scss",{"_index":3277,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactionscomponent",{"_index":328,"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/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":651,"title":{"injectables/TransactionService.html":{}},"body":{"components/AppComponent.html":{},"injectables/BlockSyncService.html":{},"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["transactionservicestub",{"_index":3269,"title":{"classes/TransactionServiceStub.html":{}},"body":{"classes/TransactionServiceStub.html":{},"coverage.html":{}}}],["transactionsinfo",{"_index":1051,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.filter_rounds",{"_index":1137,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.high",{"_index":1136,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.low",{"_index":1135,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsmodule",{"_index":444,"title":{"modules/TransactionsModule.html":{}},"body":{"modules/AccountsModule.html":{},"modules/TransactionsModule.html":{},"modules.html":{},"overview.html":{}}}],["transactionsroutingmodule",{"_index":3330,"title":{"modules/TransactionsRoutingModule.html":{}},"body":{"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["transactionssubject",{"_index":3141,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transactionstype",{"_index":3281,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactionstypes",{"_index":3282,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiontype",{"_index":3319,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiontypes",{"_index":2370,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["transfer",{"_index":2640,"title":{},"body":{"components/OrganizationComponent.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["transferauthaddress",{"_index":3225,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferred",{"_index":4052,"title":{},"body":{"license.html":{}}}],["transferrequest",{"_index":3150,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferrequest(tokenaddress",{"_index":3166,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferring",{"_index":4169,"title":{},"body":{"license.html":{}}}],["transfers",{"_index":3318,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transform",{"_index":2816,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{}}}],["transform(url",{"_index":2817,"title":{},"body":{"pipes/SafePipe.html":{}}}],["transform(value",{"_index":2946,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["transition",{"_index":583,"title":{},"body":{"components/AdminComponent.html":{}}}],["transition('expanded",{"_index":597,"title":{},"body":{"components/AdminComponent.html":{}}}],["transmission",{"_index":4005,"title":{},"body":{"license.html":{}}}],["transport",{"_index":2057,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["transpoter",{"_index":2084,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trash",{"_index":1649,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trasportion",{"_index":2079,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["travel",{"_index":2069,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["treated",{"_index":4077,"title":{},"body":{"license.html":{}}}],["treaty",{"_index":3896,"title":{},"body":{"license.html":{}}}],["tree",{"_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":{},"interceptors/MockBackendInterceptor.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":{},"miscellaneous/variables.html":{}}}],["trigger",{"_index":584,"title":{},"body":{"components/AdminComponent.html":{},"directives/MenuToggleDirective.html":{}}}],["trigger('detailexpand",{"_index":588,"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/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/Signer.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["trusted",{"_index":678,"title":{},"body":{"components/AppComponent.html":{},"components/SettingsComponent.html":{}}}],["trusteddeclaratoraddress",{"_index":4410,"title":{},"body":{"miscellaneous/variables.html":{}}}],["trustedusers",{"_index":1021,"title":{},"body":{"injectables/AuthService.html":{},"components/SettingsComponent.html":{}}}],["trustedusers.push(key.users[0].userid",{"_index":1023,"title":{},"body":{"injectables/AuthService.html":{}}}],["try",{"_index":394,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{},"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["ts",{"_index":2761,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["tslib",{"_index":3490,"title":{},"body":{"dependencies.html":{}}}],["tsta",{"_index":1545,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tstb",{"_index":1541,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tstc",{"_index":1549,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tudor",{"_index":2303,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tuition",{"_index":1592,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tuktuk",{"_index":2074,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tution",{"_index":1591,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tv",{"_index":1755,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["two",{"_index":2866,"title":{},"body":{"components/SettingsComponent.html":{},"license.html":{}}}],["tx",{"_index":1055,"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":3240,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.data",{"_index":3252,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.gaslimit",{"_index":3246,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.gasprice",{"_index":3243,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.message",{"_index":3254,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.nonce",{"_index":3241,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.setsignature(r",{"_index":3262,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.to",{"_index":3248,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.value",{"_index":3250,"title":{},"body":{"injectables/TransactionService.html":{}}}],["txhash",{"_index":1155,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["txhelper",{"_index":2826,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["txindex",{"_index":1156,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["txmsg",{"_index":3253,"title":{},"body":{"injectables/TransactionService.html":{}}}],["txtoken",{"_index":1151,"title":{"classes/TxToken.html":{}},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{}}}],["txwire",{"_index":3263,"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/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/Signable.html":{},"interfaces/Signature.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/typealiases.html":{},"miscellaneous/variables.html":{}}}],["typealiases",{"_index":4378,"title":{"miscellaneous/typealiases.html":{}},"body":{}}],["typeerror",{"_index":1381,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["typescript",{"_index":109,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["typical",{"_index":4031,"title":{},"body":{"license.html":{}}}],["uchumi",{"_index":2260,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uchuuzi",{"_index":1935,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uchuzi",{"_index":1934,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ug",{"_index":2657,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ugali",{"_index":1933,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uganda",{"_index":2658,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ugoro",{"_index":1924,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uint256",{"_index":3237,"title":{},"body":{"injectables/TransactionService.html":{}}}],["uint8array",{"_index":1065,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["uint8array(blockfilterbinstr.length",{"_index":1123,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["uint8array(blocktxfilterbinstr.length",{"_index":1131,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["ujenzi",{"_index":1781,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uji",{"_index":1932,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ukulima",{"_index":1661,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ukunda",{"_index":2222,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["umena",{"_index":1857,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["umoja",{"_index":2262,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unable",{"_index":985,"title":{},"body":{"injectables/AuthService.html":{}}}],["unacceptable",{"_index":3694,"title":{},"body":{"license.html":{}}}],["unapproved",{"_index":609,"title":{},"body":{"components/AdminComponent.html":{},"classes/UserServiceStub.html":{}}}],["unauthorized",{"_index":1325,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["undefined",{"_index":273,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"injectables/AuthService.html":{},"classes/Settings.html":{},"classes/W3.html":{}}}],["under",{"_index":3738,"title":{},"body":{"license.html":{}}}],["unga",{"_index":1915,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uniform",{"_index":2044,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unit",{"_index":3561,"title":{},"body":{"index.html":{}}}],["united",{"_index":2651,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["university",{"_index":1567,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unknown",{"_index":2116,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"pipes/SafePipe.html":{},"miscellaneous/variables.html":{}}}],["unless",{"_index":4039,"title":{},"body":{"license.html":{}}}],["unlimited",{"_index":3858,"title":{},"body":{"license.html":{}}}],["unmodified",{"_index":3755,"title":{},"body":{"license.html":{}}}],["unnecessary",{"_index":3883,"title":{},"body":{"license.html":{}}}],["unpacking",{"_index":4073,"title":{},"body":{"license.html":{}}}],["unsuccessful",{"_index":1312,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["until",{"_index":4134,"title":{},"body":{"license.html":{}}}],["update",{"_index":2864,"title":{},"body":{"components/SettingsComponent.html":{}}}],["updates",{"_index":4061,"title":{},"body":{"license.html":{}}}],["uppercase",{"_index":422,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"components/TransactionsComponent.html":{}}}],["urban",{"_index":2366,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["url",{"_index":2377,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/PagesComponent.html":{},"pipes/SafePipe.html":{}}}],["url.endswith('/accounttypes",{"_index":2412,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/actions",{"_index":2395,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/areanames",{"_index":2408,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/areatypes",{"_index":2410,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/categories",{"_index":2404,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/genders",{"_index":2416,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/tokens",{"_index":2400,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/transactiontypes",{"_index":2414,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/actions\\/\\d",{"_index":2397,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/areanames\\/\\w",{"_index":2409,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/areatypes\\/\\w",{"_index":2411,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/categories\\/\\w",{"_index":2406,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/tokens\\/\\w",{"_index":2402,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.split",{"_index":2473,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urlparts",{"_index":2472,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urlparts[urlparts.length",{"_index":2475,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urltree",{"_index":843,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["usafi",{"_index":1646,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["use",{"_index":522,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"injectables/AuthService.html":{},"index.html":{},"license.html":{}}}],["useclass",{"_index":763,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["used",{"_index":3721,"title":{},"body":{"license.html":{}}}],["useful",{"_index":4344,"title":{},"body":{"license.html":{}}}],["user",{"_index":509,"title":{},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.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.email",{"_index":2872,"title":{},"body":{"components/SettingsComponent.html":{}}}],["user.name",{"_index":2871,"title":{},"body":{"components/SettingsComponent.html":{}}}],["user.tokey(conversion.trader)).pipe(first()).subscribe((res",{"_index":3213,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.tokey(transaction.from)).pipe(first()).subscribe((res",{"_index":3200,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.tokey(transaction.to)).pipe(first()).subscribe((res",{"_index":3203,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.userid",{"_index":2873,"title":{},"body":{"components/SettingsComponent.html":{}}}],["user?.balance",{"_index":428,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.date_registered",{"_index":426,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.location.area_name",{"_index":430,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.vcard.fn[0].value",{"_index":424,"title":{},"body":{"components/AccountsComponent.html":{}}}],["user?.vcard.tel[0].value",{"_index":425,"title":{},"body":{"components/AccountsComponent.html":{}}}],["userid",{"_index":2845,"title":{},"body":{"components/SettingsComponent.html":{},"interfaces/Staff.html":{}}}],["userinfo",{"_index":3142,"title":{},"body":{"injectables/TransactionService.html":{}}}],["userkey",{"_index":3384,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["username",{"_index":2862,"title":{},"body":{"components/SettingsComponent.html":{}}}],["users",{"_index":2857,"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":3344,"title":{"classes/UserServiceStub.html":{}},"body":{"classes/UserServiceStub.html":{},"coverage.html":{}}}],["uses",{"_index":4034,"title":{},"body":{"license.html":{}}}],["using",{"_index":4003,"title":{},"body":{"license.html":{}}}],["ustadh",{"_index":1615,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ustadhi",{"_index":1616,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utencils",{"_index":2047,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utensils",{"_index":2048,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utils",{"_index":3182,"title":{},"body":{"injectables/TransactionService.html":{}}}],["utils.abicoder",{"_index":3235,"title":{},"body":{"injectables/TransactionService.html":{}}}],["uto",{"_index":2031,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uvuvi",{"_index":1721,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uyoma",{"_index":2340,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["v",{"_index":1125,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["v[i",{"_index":1126,"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":{}}}],["validation.ts",{"_index":3425,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["validationerrors",{"_index":1243,"title":{},"body":{"classes/CustomValidator.html":{}}}],["validator",{"_index":3470,"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":{},"injectables/ErrorDialogService.html":{},"injectables/GlobalErrorHandler.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.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":413,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["values",{"_index":545,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["var",{"_index":289,"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/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":3403,"title":{},"body":{"coverage.html":{}}}],["variables",{"_index":3547,"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":3224,"title":{},"body":{"injectables/TransactionService.html":{}}}],["vcards",{"_index":3492,"title":{},"body":{"dependencies.html":{}}}],["vcardvalidation",{"_index":3427,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["vcardvalidation(vcard",{"_index":3518,"title":{},"body":{"miscellaneous/functions.html":{}}}],["vegetable",{"_index":1911,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vendor",{"_index":1782,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["verbatim",{"_index":3600,"title":{},"body":{"license.html":{}}}],["verification",{"_index":2870,"title":{},"body":{"components/SettingsComponent.html":{}}}],["verify",{"_index":2666,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signer.html":{}}}],["verify(digest",{"_index":2684,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["version",{"_index":39,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{},"index.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["versions",{"_index":3617,"title":{},"body":{"license.html":{}}}],["vet",{"_index":1978,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["veterinary",{"_index":1977,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["via",{"_index":3548,"title":{},"body":{"index.html":{}}}],["viatu",{"_index":1774,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["viazi",{"_index":1936,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vidziweni",{"_index":2220,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["view",{"_index":3113,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"license.html":{}}}],["view_in_ar",{"_index":284,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["viewaccount",{"_index":355,"title":{},"body":{"components/AccountsComponent.html":{}}}],["viewaccount(account",{"_index":365,"title":{},"body":{"components/AccountsComponent.html":{}}}],["viewchild",{"_index":386,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["viewchild(matpaginator",{"_index":382,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["viewchild(matsort",{"_index":385,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{},"components/TokensComponent.html":{},"components/TransactionsComponent.html":{}}}],["viewrecipient",{"_index":3071,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["viewsender",{"_index":3072,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["viewtoken",{"_index":3016,"title":{},"body":{"components/TokensComponent.html":{}}}],["viewtoken(token",{"_index":3022,"title":{},"body":{"components/TokensComponent.html":{}}}],["viewtrader",{"_index":3073,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["viewtransaction",{"_index":3285,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["viewtransaction(transaction",{"_index":3293,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["vigungani",{"_index":2219,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vijana",{"_index":1599,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikapu",{"_index":2043,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikinduni",{"_index":2207,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikolani",{"_index":2208,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["village",{"_index":1628,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vinyunduni",{"_index":2221,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["viogato",{"_index":2210,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["violates",{"_index":4067,"title":{},"body":{"license.html":{}}}],["violation",{"_index":4130,"title":{},"body":{"license.html":{}}}],["visibility",{"_index":593,"title":{},"body":{"components/AdminComponent.html":{}}}],["visible",{"_index":596,"title":{},"body":{"components/AdminComponent.html":{},"license.html":{}}}],["vistangani",{"_index":2212,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitabu",{"_index":1607,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitangani",{"_index":2209,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitenge",{"_index":2046,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitungu",{"_index":1889,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vivian",{"_index":1511,"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/OrganizationComponent.html":{},"classes/PGPSigner.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"interfaces/Signable.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":3951,"title":{},"body":{"license.html":{}}}],["volunteer",{"_index":1580,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vsla",{"_index":1986,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vyogato",{"_index":2211,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vyombo",{"_index":2056,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["w",{"_index":1114,"title":{},"body":{"injectables/BlockSyncService.html":{},"license.html":{}}}],["w.onmessage",{"_index":1116,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["w.postmessage",{"_index":1117,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["w3",{"_index":2827,"title":{"classes/W3.html":{}},"body":{"classes/Settings.html":{},"classes/W3.html":{},"coverage.html":{}}}],["w3_provider",{"_index":1106,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["waiter",{"_index":1772,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waitress",{"_index":1773,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waive",{"_index":3904,"title":{},"body":{"license.html":{}}}],["waiver",{"_index":4324,"title":{},"body":{"license.html":{}}}],["wakulima",{"_index":1662,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["want",{"_index":3633,"title":{},"body":{"license.html":{}}}],["ward",{"_index":1629,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["warranties",{"_index":3789,"title":{},"body":{"license.html":{}}}],["warranty",{"_index":3670,"title":{},"body":{"license.html":{}}}],["wash",{"_index":1678,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["washing",{"_index":1766,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waste",{"_index":1640,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["watchlady",{"_index":1783,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["watchman",{"_index":1771,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["water",{"_index":1949,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["way",{"_index":3624,"title":{},"body":{"license.html":{}}}],["ways",{"_index":3964,"title":{},"body":{"license.html":{}}}],["web",{"_index":3521,"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":2974,"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":2975,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["web3provider",{"_index":4403,"title":{},"body":{"miscellaneous/variables.html":{}}}],["weight",{"_index":1532,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["welcome",{"_index":4354,"title":{},"body":{"license.html":{}}}],["welder",{"_index":1768,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["welding",{"_index":1769,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["well",{"_index":3772,"title":{},"body":{"license.html":{}}}],["went",{"_index":1318,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["west",{"_index":2226,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["whatever",{"_index":4173,"title":{},"body":{"license.html":{}}}],["wheadsync",{"_index":1099,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["wheadsync.onmessage",{"_index":1103,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["wheadsync.postmessage",{"_index":1105,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["whether",{"_index":120,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{}}}],["whole",{"_index":3811,"title":{},"body":{"license.html":{}}}],["wholesaler",{"_index":2039,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["whose",{"_index":4013,"title":{},"body":{"license.html":{}}}],["widely",{"_index":3807,"title":{},"body":{"license.html":{}}}],["width",{"_index":626,"title":{},"body":{"components/AdminComponent.html":{},"components/AppComponent.html":{},"injectables/ErrorDialogService.html":{},"directives/MenuSelectionDirective.html":{}}}],["window",{"_index":3824,"title":{},"body":{"license.html":{}}}],["window.atob(transactionsinfo.block_filter",{"_index":1121,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.atob(transactionsinfo.blocktx_filter",{"_index":1129,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.dispatchevent(this.newconversionevent(transaction",{"_index":1089,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.dispatchevent(this.newtransferevent(transaction",{"_index":1087,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.getcomputedstyle(element).display",{"_index":828,"title":{},"body":{"components/AuthComponent.html":{}}}],["window.location.reload(true",{"_index":1020,"title":{},"body":{"injectables/AuthService.html":{}}}],["window.location.search.substring(1",{"_index":927,"title":{},"body":{"injectables/AuthService.html":{}}}],["window.matchmedia('(max",{"_index":665,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["window.prompt('password",{"_index":2591,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"injectables/TransactionService.html":{}}}],["window:cic_convert",{"_index":647,"title":{},"body":{"components/AppComponent.html":{}}}],["window:cic_convert(event",{"_index":656,"title":{},"body":{"components/AppComponent.html":{}}}],["window:cic_transfer",{"_index":648,"title":{},"body":{"components/AppComponent.html":{}}}],["window:cic_transfer(event",{"_index":659,"title":{},"body":{"components/AppComponent.html":{}}}],["wine",{"_index":1939,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["wipo",{"_index":3895,"title":{},"body":{"license.html":{}}}],["wish",{"_index":3631,"title":{},"body":{"license.html":{}}}],["within",{"_index":4115,"title":{},"body":{"license.html":{}}}],["without",{"_index":3758,"title":{},"body":{"license.html":{}}}],["wood",{"_index":2104,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["work",{"_index":1788,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["work's",{"_index":3833,"title":{},"body":{"license.html":{}}}],["worker",{"_index":1100,"title":{},"body":{"injectables/BlockSyncService.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["worker('./../assets/js/block",{"_index":1101,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["working",{"_index":1770,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["works",{"_index":3607,"title":{},"body":{"license.html":{}}}],["world",{"_index":3274,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["worldwide",{"_index":4203,"title":{},"body":{"license.html":{}}}],["wote",{"_index":2360,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["wrap",{"_index":2379,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["writing",{"_index":4285,"title":{},"body":{"license.html":{}}}],["written",{"_index":3973,"title":{},"body":{"license.html":{}}}],["wrong",{"_index":1319,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["ws.dev.grassrootseconomics.net",{"_index":4405,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ws://localhost:63546",{"_index":4415,"title":{},"body":{"miscellaneous/variables.html":{}}}],["wss://bloxberg",{"_index":4404,"title":{},"body":{"miscellaneous/variables.html":{}}}],["xhr",{"_index":921,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.addeventlistener('load",{"_index":935,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.getresponseheader('token",{"_index":956,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.getresponseheader('www",{"_index":962,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.onload",{"_index":960,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.open('get",{"_index":925,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.responsetype",{"_index":923,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.send",{"_index":944,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.setrequestheader('authorization",{"_index":928,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.setrequestheader('content",{"_index":930,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.setrequestheader('x",{"_index":932,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.status",{"_index":936,"title":{},"body":{"injectables/AuthService.html":{}}}],["xmlhttprequest",{"_index":922,"title":{},"body":{"injectables/AuthService.html":{}}}],["yapha",{"_index":2213,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yava",{"_index":2214,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["years",{"_index":3975,"title":{},"body":{"license.html":{}}}],["yes",{"_index":96,"title":{},"body":{"classes/AccountIndex.html":{},"classes/ActivatedRouteStub.html":{},"classes/TokenRegistry.html":{}}}],["yoga",{"_index":1775,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yoghurt",{"_index":1937,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yogurt",{"_index":1938,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yourself",{"_index":4221,"title":{},"body":{"license.html":{}}}],["youth",{"_index":1600,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yowani",{"_index":2215,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ziwani",{"_index":2216,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["zone.js",{"_index":3496,"title":{},"body":{"dependencies.html":{}}}],["zoom",{"_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":{},"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 value: string;\n }];\n fn: [{\n value: string;\n }];\n n: [{\n value: string[];\n }];\n tel: [{\n meta: {\n TYP: string[];\n },\n value: string;\n }],\n version: [{\n value: string;\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 value: '',\n }],\n fn: [{\n value: 'Sarafu Contract',\n }],\n n: [{\n value: ['Sarafu', 'Contract'],\n }],\n tel: [{\n meta: {\n TYP: [],\n },\n value: '',\n }],\n version: [{\n value: '3.0',\n }],\n },\n};\n\nexport {\n AccountDetails,\n Signature,\n Meta,\n MetaResponse,\n defaultAccount\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/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:71\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: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 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:57\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:46\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:47\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 { return this.nameSearchForm.controls; }\n get phoneSearchFormStub(): any { return this.phoneSearchForm.controls; }\n get addressSearchFormStub(): any { return this.addressSearchForm.controls; }\n\n onNameSearch(): void {\n this.nameSearchSubmitted = true;\n if (this.nameSearchForm.invalid) { return; }\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) { return; }\n this.phoneSearchLoading = true;\n (await this.userService.getAccountByPhone(this.phoneSearchFormStub.phoneNumber.value, 100)).subscribe(async res => {\n if (res !== undefined) {\n await this.router.navigateByUrl(`/accounts/${strip0x(res.identities.evm[`bloxberg:${environment.bloxbergChainId}`][0])}`);\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) { return; }\n this.addressSearchLoading = true;\n (await this.userService.getAccountByAddress(this.addressSearchFormStub.address.value, 100)).subscribe(async res => {\n if (res !== undefined) {\n await this.router.navigateByUrl(`/accounts/${strip0x(res.identities.evm[`bloxberg:${environment.bloxbergChainId}`][0])}`);\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': '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': '[routerLink]'}];\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:57\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: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 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:65\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:48\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:76\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:61\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 {\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.getAccountTypes().pipe(first()).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(`/accounts/${strip0x(account.identities.evm[`bloxberg:${environment.bloxbergChainId}`][0])}`);\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': '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': '[routerLink]'}];\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\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 {\n Action,\n Category,\n AreaName,\n AreaType\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/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: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 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:57\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:63\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: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 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:73\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:69\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:46\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(\n private userService: UserService,\n private loggingService: LoggingService\n ) {\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\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?')) { return; }\n this.userService.approveAction(action.id).pipe(first()).subscribe(res => this.loggingService.sendInfoLevelMessage(res));\n this.userService.getActions();\n }\n\n disapproveAction(action: any): void {\n if (!confirm('Disapprove action?')) { return; }\n this.userService.revokeAction(action.id).pipe(first()).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': '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': '[routerLink]'}];\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\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\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 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)\n \n \n \n \n Defined in src/app/app.component.ts:15\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 \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:74\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:68\n \n \n\n\n \n \n\n \n \n \n Methods\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:43\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:15\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:14\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:13\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:12\n \n \n\n\n \n \n\n\n\n\n\n \n import {ChangeDetectionStrategy, Component, HostListener} from '@angular/core';\nimport {AuthService, ErrorDialogService, LoggingService, TransactionService} from '@app/_services';\nimport {catchError} from 'rxjs/operators';\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 {\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 ) {\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({message: 'Trusted keys endpoint can\\'t be reached. Please try again later.'});\n // TODO do something to halt user progress...show a sad cicada page 🦗?\n }\n })();\n this.mediaQuery.addListener(this.onResize);\n this.onResize(this.mediaQuery);\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 ./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': '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': '[routerLink]'}];\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_bootstrap\n\n\n\ncluster_AppModule_declarations\n\n\n\ncluster_AppModule_imports\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 {\n GlobalErrorHandler,\n MockBackendProvider,\n} 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';\n\n@NgModule({\n declarations: [\n AppComponent\n ],\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 ],\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 { path: '', loadChildren: () => \"import('@pages/pages.module').then(m => m.PagesModule)\", canActivate: [AuthGuard] },\n { path: '**', redirectTo: '', pathMatch: 'full' }\n];\n\n@NgModule({\n imports: [RouterModule.forRoot(routes, {\n preloadingStrategy: PreloadAllModules\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 {\n Action,\n Category,\n AreaName,\n AreaType\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/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 {\n Action,\n Category,\n AreaName,\n AreaType\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/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:48\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: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 switchWindows\n \n \n \n \n \n \n \nswitchWindows()\n \n \n\n\n \n \n Defined in src/app/auth/auth.component.ts:59\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:67\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 { return this.keyForm.controls; }\n\n async onSubmit(): Promise {\n this.submitted = true;\n\n if (this.keyForm.invalid) { return; }\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': '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': '[routerLink]'}];\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\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:8\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 \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: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 route\n \n ActivatedRouteSnapshot\n \n\n \n No\n \n\n\n \n \n state\n \n RouterStateSnapshot\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable | Promise | boolean | UrlTree\n\n \n \n \n \n \n \n \n \n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport {CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot, UrlTree, Router} from '@angular/router';\nimport { Observable } from 'rxjs';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class AuthGuard implements CanActivate {\n\n constructor(private router: Router) {}\n\n canActivate(\n route: ActivatedRouteSnapshot,\n state: RouterStateSnapshot): 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 \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_declarations\n\n\n\ncluster_AuthModule_imports\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\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:204\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:193\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:187\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:99\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: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 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:147\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:181\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:157\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n privateKeyArmored\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 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\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\n async loginResponse(o: { challenge: string, realm: any }): Promise {\n return new Promise(async (resolve, reject) => {\n try {\n const r = await signChallenge(o.challenge,\n o.realm,\n environment.cicMetaUrl,\n this.mutableKeyStore);\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({ message: 'You are not authorized to use this system' });\n }\n if (error.status === 401) {\n this.errorDialogService.openDialog({\n message: '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\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(`Failed to set key: ${err.message || err.statusText}`, this, {error: err});\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(true);\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)\n .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:101\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:76\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:68\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:84\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(settings: Settings, bit: number, address: string, offset: number, limit: number): void {\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.getAllTransactions(offset, limit).pipe(first()).subscribe(res => {\n this.fetcher(settings, res);\n });\n } else {\n this.transactionService.getAddressTransactions(address, offset, limit).pipe(first()).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(settings: Settings, lo: number, hi: number, bloomBlockBytes: Uint8Array, bloomBlocktxBytes: Uint8Array, bloomRounds: any): 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: [\n bloomBlockBytes,\n bloomBlocktxBytes,\n ],\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(settings, transactionsInfo.low, transactionsInfo.high, bOne, bTwo, transactionsInfo.filter_rounds);\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 {\n BlocksBloom,\n TxToken,\n Tx,\n Transaction,\n Conversion\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/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 {\n Action,\n Category,\n AreaName,\n AreaType\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/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 {\n BlocksBloom,\n TxToken,\n Tx,\n Transaction,\n Conversion\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/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:50\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:48\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.getCategories().pipe(first()).subscribe(res => this.categories = res);\n this.locationService.getAreaNames().pipe(first()).subscribe(res => this.areaNames = res);\n this.userService.getAccountTypes().pipe(first()).subscribe(res => this.accountTypes = res);\n this.userService.getGenders().pipe(first()).subscribe(res => this.genders = res);\n }\n\n get createFormStub(): any { return this.createForm.controls; }\n\n onSubmit(): void {\n this.submitted = true;\n if (this.createForm.invalid || !confirm('Create account?')) { return; }\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': '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': '[routerLink]'}];\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\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: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 control\n \n FormControl | null\n \n\n \n No\n \n\n\n \n \n form\n \n FormGroupDirective | NgForm | null\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\n\n \n import {ErrorStateMatcher} from '@angular/material/core';\nimport {FormControl, FormGroupDirective, NgForm} from '@angular/forms';\n\nexport class CustomErrorStateMatcher implements ErrorStateMatcher{\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\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: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 control\n \n AbstractControl\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 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: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 regex\n \n RegExp\n \n\n \n No\n \n\n\n \n \n error\n \n ValidationErrors\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : ValidationErrors | null\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n\n\n \n import {AbstractControl, ValidationErrors} from '@angular/forms';\n\nexport class CustomValidator {\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 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:12\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\n constructor(@Inject(MAT_DIALOG_DATA) public data: any) { }\n\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': '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': '[routerLink]'}];\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:15\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:12\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(\n public dialog: MatDialog,\n ) { }\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\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:14\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n errorDialogService\n \n \n ErrorDialogService\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 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: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 request\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \n next\n \n HttpHandler\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 import {Injectable} from '@angular/core';\nimport {\n HttpRequest,\n HttpHandler,\n HttpEvent,\n HttpInterceptor, HttpErrorResponse\n} from '@angular/common/http';\nimport {Observable, throwError} from 'rxjs';\nimport {catchError} from 'rxjs/operators';\nimport {ErrorDialogService, LoggingService} from '@app/_services';\nimport {Router} from '@angular/router';\n\n@Injectable()\nexport class ErrorInterceptor implements HttpInterceptor {\n\n constructor(\n private errorDialogService: ErrorDialogService,\n private loggingService: LoggingService,\n private router: Router\n ) {}\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(err.error)}`;\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:13\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\n constructor() { }\n\n ngOnInit(): void {\n }\n\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': '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': '[routerLink]'}];\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': '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': '[routerLink]'}];\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 \n Extends\n \n \n ErrorHandler\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:18\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\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 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: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 error\n \n Error\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 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:67\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n errorTraceString\n \n string\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 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:47\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\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 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:18\n \n \n\n\n \n \n\n\n \n\n\n \n import {ErrorHandler, Injectable} from '@angular/core';\nimport {LoggingService} from '@app/_services/logging.service';\nimport {HttpErrorResponse} from '@angular/common/http';\nimport {Router} from '@angular/router';\n\n// A generalized http response error\nexport class HttpError extends Error {\n public status: number;\n constructor(message: string, status: number) {\n super(message);\n this.status = status;\n this.name = 'HttpError';\n }\n}\n\n@Injectable()\nexport class GlobalErrorHandler extends ErrorHandler {\n private sentencesForWarningLogging: Array = [];\n\n constructor(\n private loggingService: LoggingService,\n private router: Router\n ) {\n super();\n }\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 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: ${(error as HttpErrorResponse).status}`,\n this, {error});\n } else if (error instanceof TypeError) {\n this.loggingService.sendErrorLevelMessage(`There was a Type error on route ${route}.\\n${error.message}`, this, {error});\n } else if (error instanceof Error) {\n this.loggingService.sendErrorLevelMessage(`There was a general error on route ${route}.\\n${error.message}`, this, {error});\n } else {\n this.loggingService.sendErrorLevelMessage(`Nobody threw an error but something happened on route ${route}!`, this, {error});\n }\n }\n\n /**\n *\n * @param errorTraceString\n * @private\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 \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\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:11\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:15\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n request\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \n next\n \n HttpHandler\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 import { Injectable } from '@angular/core';\nimport {\n HttpRequest,\n HttpHandler,\n HttpEvent,\n HttpInterceptor\n} from '@angular/common/http';\nimport { Observable } from 'rxjs';\n\n@Injectable()\nexport class HttpConfigInterceptor implements HttpInterceptor {\n\n constructor() {}\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 \n Extends\n \n \n Error\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:8\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 \n string\n \n \n \n No\n \n \n \n \n status\n \n \n number\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 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:8\n \n \n\n\n \n \n\n\n\n\n\n\n\n\n \n\n\n \n import {ErrorHandler, Injectable} from '@angular/core';\nimport {LoggingService} from '@app/_services/logging.service';\nimport {HttpErrorResponse} from '@angular/common/http';\nimport {Router} from '@angular/router';\n\n// A generalized http response error\nexport class HttpError extends Error {\n public status: number;\n constructor(message: string, status: number) {\n super(message);\n this.status = status;\n this.name = 'HttpError';\n }\n}\n\n@Injectable()\nexport class GlobalErrorHandler extends ErrorHandler {\n private sentencesForWarningLogging: Array = [];\n\n constructor(\n private loggingService: LoggingService,\n private router: Router\n ) {\n super();\n }\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 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: ${(error as HttpErrorResponse).status}`,\n this, {error});\n } else if (error instanceof TypeError) {\n this.loggingService.sendErrorLevelMessage(`There was a Type error on route ${route}.\\n${error.message}`, this, {error});\n } else if (error instanceof Error) {\n this.loggingService.sendErrorLevelMessage(`There was a general error on route ${route}.\\n${error.message}`, this, {error});\n } else {\n this.loggingService.sendErrorLevelMessage(`Nobody threw an error but something happened on route ${route}!`, this, {error});\n }\n }\n\n /**\n *\n * @param errorTraceString\n * @private\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 \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: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 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:16\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: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 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:24\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\n constructor(\n private httpClient: HttpClient,\n ) { }\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.get(`${environment.cicMetaUrl}/areatypes/${area.toLowerCase()}`).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\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:14\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\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 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: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 request\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \n next\n \n HttpHandler\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 import { Injectable } from '@angular/core';\nimport {\n HttpRequest,\n HttpHandler,\n HttpEvent,\n HttpInterceptor,\n HttpResponse\n} from '@angular/common/http';\nimport {Observable} from 'rxjs';\nimport {LoggingService} from '@app/_services/logging.service';\nimport {finalize, tap} from 'rxjs/operators';\n\n@Injectable()\nexport class LoggingInterceptor implements HttpInterceptor {\n\n constructor(\n private loggingService: LoggingService\n ) {}\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:20\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\n constructor(\n private elementRef: ElementRef,\n private renderer: Renderer2\n ) {\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: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 import {Directive, ElementRef, Renderer2} from '@angular/core';\n\n@Directive({\n selector: '[appMenuToggle]'\n})\nexport class MenuToggleDirective {\n\n constructor(\n private elementRef: ElementRef,\n private renderer: Renderer2\n ) {\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 value: string;\n }];\n fn: [{\n value: string;\n }];\n n: [{\n value: string[];\n }];\n tel: [{\n meta: {\n TYP: string[];\n },\n value: string;\n }],\n version: [{\n value: string;\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 value: '',\n }],\n fn: [{\n value: 'Sarafu Contract',\n }],\n n: [{\n value: ['Sarafu', 'Contract'],\n }],\n tel: [{\n meta: {\n TYP: [],\n },\n value: '',\n }],\n version: [{\n value: '3.0',\n }],\n },\n};\n\nexport {\n AccountDetails,\n Signature,\n Meta,\n MetaResponse,\n defaultAccount\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/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 value: string;\n }];\n fn: [{\n value: string;\n }];\n n: [{\n value: string[];\n }];\n tel: [{\n meta: {\n TYP: string[];\n },\n value: string;\n }],\n version: [{\n value: string;\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 value: '',\n }],\n fn: [{\n value: 'Sarafu Contract',\n }],\n n: [{\n value: ['Sarafu', 'Contract'],\n }],\n tel: [{\n meta: {\n TYP: [],\n },\n value: '',\n }],\n version: [{\n value: '3.0',\n }],\n },\n};\n\nexport {\n AccountDetails,\n Signature,\n Meta,\n MetaResponse,\n defaultAccount\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/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\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:240\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n request\n \n HttpRequest\n \n\n \n No\n \n\n\n \n \n next\n \n HttpHandler\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 import {HTTP_INTERCEPTORS, HttpEvent, HttpHandler, HttpInterceptor, HttpRequest, HttpResponse} from '@angular/common/http';\nimport {Injectable} from '@angular/core';\nimport {Observable, of, throwError} from 'rxjs';\nimport {delay, dematerialize, materialize, mergeMap} from 'rxjs/operators';\nimport {Action, AreaName, AreaType, Category, Token} from '@app/_models';\n\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\nconst tokens: Array = [\n {\n name: 'Giftable Reserve', symbol: 'GRZ', address: '0xa686005CE37Dce7738436256982C3903f2E4ea8E', supply: '1000000001000000000000000000',\n decimals: '18', reserves: {}\n },\n {\n name: 'Demo Token', symbol: 'DEMO', address: '0xc80D6aFF8194114c52AEcD84c9f15fd5c8abb187', supply: '99999999999999998976',\n decimals: '18', reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '99999999999999998976'}},\n reserveRatio: '1000000', owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n },\n {\n name: 'Foo Token', symbol: 'FOO', address: '0x9ceD86089f7aBB5A97B40eb0E7521e7aa308d354', supply: '1000000000000000001014',\n decimals: '18', reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '1000000000000000001014'}},\n reserveRatio: '1000000', owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n },\n {\n name: 'testb', symbol: 'tstb', address: '0xC63cFA91A3BFf41cE31Ff436f67D3ACBC977DB95', supply: '99000', decimals: '18',\n reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '99000'}}, reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n },\n {\n name: 'testa', symbol: 'tsta', address: '0x8fA4101ef19D0a078239d035659e92b278bD083C', supply: '9981', decimals: '18',\n reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '9981'}}, reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n },\n {\n name: 'testc', symbol: 'tstc', address: '0x4A6fA6bc3BfE4C9661bC692D9798425350C9e3D4', supply: '100990', decimals: '18',\n reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '100990'}}, reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n }\n];\n\nconst categories: Array = [\n {\n name: 'system',\n products: ['system', 'office main', 'office main phone']\n },\n {\n name: 'education',\n products: ['book', 'coach', 'teacher', 'sch', 'school', 'pry', 'education', 'student', 'mwalimu', 'maalim', 'consultant', 'consult',\n 'college', 'university', 'lecturer', 'primary', 'secondary', 'daycare', 'babycare', 'baby care', 'elim', 'eimu', 'nursery',\n 'red cross', 'volunteer', 'instructor', 'journalist', 'lesson', 'academy', 'headmistress', 'headteacher', 'cyber', 'researcher',\n 'professor', 'demo', 'expert', 'tution', 'tuition', 'children', 'headmaster', 'educator', 'Marital counsellor', 'counsellor',\n 'trainer', 'vijana', 'youth', 'intern', 'redcross', 'KRCS', 'danish', 'science', 'data', 'facilitator', 'vitabu', 'kitabu']\n },\n {\n name: 'faith',\n products: ['pastor', 'imam', 'madrasa', 'religous', 'religious', 'ustadh', 'ustadhi', 'Marital counsellor', 'counsellor', 'church',\n 'kanisa', 'mksiti', 'donor']\n },\n {\n name: 'government',\n products: ['elder', 'chief', 'police', 'government', 'country', 'county', 'soldier', 'village admin', 'ward', 'leader', 'kra',\n 'mailman', 'immagration', 'immigration']\n },\n {\n name: 'environment',\n products: ['conservation', 'toilet', 'choo', 'garbage', 'fagio', 'waste', 'tree', 'taka', 'scrap', 'cleaning', 'gardener', 'rubbish',\n 'usafi', 'mazingira', 'miti', 'trash', 'cleaner', 'plastic', 'collection', 'seedling', 'seedlings', 'recycling']\n },\n {\n name: 'farming',\n products: ['farm', 'farmer', 'farming', 'mkulima', 'kulima', 'ukulima', 'wakulima', 'jembe', 'shamba']\n },\n {\n name: 'labour',\n products: ['artist', 'agent', 'guard', 'askari', 'accountant', 'baker', 'beadwork', 'beauty', 'business', 'barber', 'casual',\n 'electrian', 'caretaker', 'car wash', 'capenter', 'construction', 'chef', 'catering', 'cobler', 'cobbler', 'carwash', 'dhobi',\n 'landlord', 'design', 'carpenter', 'fundi', 'hawking', 'hawker', 'househelp', 'hsehelp', 'house help', 'help', 'housegirl', 'kushona',\n 'juakali', 'jualikali', 'juacali', 'jua kali', 'shepherd', 'makuti', 'kujenga', 'kinyozi', 'kazi', 'knitting', 'kufua', 'fua',\n 'hustler', 'biashara', 'labour', 'labor', 'laundry', 'repair', 'hair', 'posho', 'mill', 'mtambo', 'uvuvi', 'engineer', 'manager',\n 'tailor', 'nguo', 'mason', 'mtumba', 'garage', 'mechanic', 'mjenzi', 'mfugaji', 'painter', 'receptionist', 'printing', 'programming',\n 'plumb', 'charging', 'salon', 'mpishi', 'msusi', 'mgema', 'footballer', 'photocopy', 'peddler', 'staff', 'sales', 'service', 'saloon',\n 'seremala', 'security', 'insurance', 'secretary', 'shoe', 'shepard', 'shephard', 'tout', 'tv', 'mvuvi', 'mawe', 'majani', 'maembe',\n 'freelance', 'mjengo', 'electronics', 'photographer', 'programmer', 'electrician', 'washing', 'bricks', 'welder', 'welding',\n 'working', 'worker', 'watchman', 'waiter', 'waitress', 'viatu', 'yoga', 'guitarist', 'house', 'artisan', 'musician', 'trade',\n 'makonge', 'ujenzi', 'vendor', 'watchlady', 'marketing', 'beautician', 'photo', 'metal work', 'supplier', 'law firm', 'brewer']\n },\n {\n name: 'food',\n products: ['avocado', 'bhajia', 'bajia', 'mbonga', 'bofu', 'beans', 'biscuits', 'biringanya', 'banana', 'bananas', 'crisps', 'chakula',\n 'coconut', 'chapati', 'cereal', 'chipo', 'chapo', 'chai', 'chips', 'cassava', 'cake', 'cereals', 'cook', 'corn', 'coffee', 'chicken',\n 'dagaa', 'donut', 'dough', 'groundnuts', 'hotel', 'holel', 'hoteli', 'butcher', 'butchery', 'fruit', 'food', 'fruits', 'fish',\n 'githeri', 'grocery', 'grocer', 'pojo', 'papa', 'goats', 'mabenda', 'mbenda', 'poultry', 'soda', 'peanuts', 'potatoes', 'samosa',\n 'soko', 'samaki', 'tomato', 'tomatoes', 'mchele', 'matunda', 'mango', 'melon', 'mellon', 'nyanya', 'nyama', 'omena', 'umena', 'ndizi',\n 'njugu', 'kamba kamba', 'khaimati', 'kaimati', 'kunde', 'kuku', 'kahawa', 'keki', 'muguka', 'miraa', 'milk', 'choma', 'maziwa',\n 'mboga', 'mbog', 'busaa', 'chumvi', 'cabbages', 'mabuyu', 'machungwa', 'mbuzi', 'mnazi', 'mchicha', 'ngombe', 'ngano', 'nazi',\n 'oranges', 'peanuts', 'mkate', 'bread', 'mikate', 'vitungu', 'sausages', 'maize', 'mbata', 'mchuzi', 'mchuuzi', 'mandazi', 'mbaazi',\n 'mahindi', 'maandazi', 'mogoka', 'meat', 'mhogo', 'mihogo', 'muhogo', 'maharagwe', 'miwa', 'mahamri', 'mitumba', 'simsim', 'porridge',\n 'pilau', 'vegetable', 'egg', 'mayai', 'mifugo', 'unga', 'good', 'sima', 'sweet', 'sweats', 'sambusa', 'snacks', 'sugar', 'suger',\n 'ugoro', 'sukari', 'soup', 'spinach', 'smokie', 'smokies', 'sukuma', 'tea', 'uji', 'ugali', 'uchuzi', 'uchuuzi', 'viazi', 'yoghurt',\n 'yogurt', 'wine', 'marondo', 'maandzi', 'matoke', 'omeno', 'onions', 'nzugu', 'korosho', 'barafu', 'juice']\n },\n {\n name: 'water',\n products: ['maji', 'water']\n },\n {\n name: 'health',\n products: ['agrovet', 'dispensary', 'barakoa', 'chemist', 'Chemicals', 'chv', 'doctor', 'daktari', 'dawa', 'hospital', 'herbalist',\n 'mganga', 'sabuni', 'soap', 'nurse', 'heath', 'community health worker', 'clinic', 'clinical', 'mask', 'medicine', 'lab technician',\n 'pharmacy', 'cosmetics', 'veterinary', 'vet', 'sickly', 'emergency response', 'emergency']\n },\n {\n name: 'savings',\n products: ['chama', 'group', 'savings', 'loan', 'silc', 'vsla', 'credit', 'finance']\n },\n {\n name: 'shop',\n products: ['bag', 'bead', 'belt', 'bedding', 'jik', 'bed', 'cement', 'botique', 'boutique', 'lines', 'kibanda', 'kiosk', 'spareparts',\n 'candy', 'cloth', 'electricals', 'mutumba', 'cafe', 'leso', 'lesso', 'duka', 'spare parts', 'socks', 'malimali', 'mitungi',\n 'mali mali', 'hardware', 'detergent', 'detergents', 'dera', 'retail', 'kamba', 'pombe', 'pampers', 'pool', 'phone', 'simu', 'mangwe',\n 'mikeka', 'movie', 'shop', 'acces', 'mchanga', 'uto', 'airtime', 'matress', 'mattress', 'mattresses', 'mpsea', 'mpesa', 'shirt',\n 'wholesaler', 'perfume', 'playstation', 'tissue', 'vikapu', 'uniform', 'flowers', 'vitenge', 'utencils', 'utensils', 'station',\n 'jewel', 'pool table', 'club', 'pub', 'bar', 'furniture', 'm-pesa', 'vyombo']\n },\n {\n name: 'transport',\n products: ['kebeba', 'beba', 'bebabeba', 'bike', 'bicycle', 'matatu', 'boda', 'bodaboda', 'cart', 'carrier', 'tour', 'travel', 'driver',\n 'dereva', 'tout', 'conductor', 'kubeba', 'tuktuk', 'taxi', 'piki', 'pikipiki', 'manamba', 'trasportion', 'mkokoteni', 'mover',\n 'motorist', 'motorbike', 'transport', 'transpoter', 'gari', 'magari', 'makanga', 'car']\n },\n {\n name: 'fuel/energy',\n products: ['timber', 'timberyard', 'biogas', 'charcol', 'charcoal', 'kuni', 'mbao', 'fuel', 'makaa', 'mafuta', 'moto', 'solar', 'stima',\n 'fire', 'firewood', 'wood', 'oil', 'taa', 'gas', 'paraffin', 'parrafin', 'parafin', 'petrol', 'petro', 'kerosine', 'kerosene',\n 'diesel']\n },\n {\n name: 'other',\n products: ['other', 'none', 'unknown', 'none']\n }\n];\n\nconst areaNames: Array = [\n {\n name: 'Mukuru Nairobi',\n locations: ['kayaba', 'kayba', 'kambi', 'mukuru', 'masai', 'hazina', 'south', 'tetra', 'tetrapak', 'ruben', 'rueben', 'kingston',\n 'korokocho', 'kingstone', 'kamongo', 'lungalunga', 'sinai', 'sigei', 'lungu', 'lunga lunga', 'owino road', 'seigei']\n },\n {\n name: 'Kinango Kwale',\n locations: ['amani', 'bofu', 'chibuga', 'chikomani', 'chilongoni', 'chigojoni', 'chinguluni', 'chigato', 'chigale', 'chikole',\n 'chilongoni', 'chilumani', 'chigojoni', 'chikomani', 'chizini', 'chikomeni', 'chidzuvini', 'chidzivuni', 'chikuyu', 'chizingo',\n 'doti', 'dzugwe', 'dzivani', 'dzovuni', 'hanje', 'kasemeni', 'katundani', 'kibandaogo', 'kibandaongo', 'kwale', 'kinango',\n 'kidzuvini', 'kalalani', 'kafuduni', 'kaloleni', 'kilibole', 'lutsangani', 'peku', 'gona', 'guro', 'gandini', 'mkanyeni', 'myenzeni',\n 'miyenzeni', 'miatsiani', 'mienzeni', 'mnyenzeni', 'minyenzeni', 'miyani', 'mioleni', 'makuluni', 'mariakani', 'makobeni', 'madewani',\n 'mwangaraba', 'mwashanga', 'miloeni', 'mabesheni', 'mazeras', 'mazera', 'mlola', 'muugano', 'mulunguni', 'mabesheni', 'miatsani',\n 'miatsiani', 'mwache', 'mwangani', 'mwehavikonje', 'miguneni', 'nzora', 'nzovuni', 'vikinduni', 'vikolani', 'vitangani', 'viogato',\n 'vyogato', 'vistangani', 'yapha', 'yava', 'yowani', 'ziwani', 'majengo', 'matuga', 'vigungani', 'vidziweni', 'vinyunduni', 'ukunda',\n 'kokotoni', 'mikindani']\n },\n {\n name: 'Misc Nairobi',\n locations: ['nairobi', 'west', 'lindi', 'kibera', 'kibira', 'kibra', 'makina', 'soweto', 'olympic', 'kangemi', 'ruiru', 'congo',\n 'kawangware', 'kwangware', 'donholm', 'dagoreti', 'dandora', 'kabete', 'sinai', 'donhom', 'donholm', 'huruma', 'kitengela',\n 'makadara', ',mlolongo', 'kenyatta', 'mlolongo', 'tassia', 'tasia', 'gatina', '56', 'industrial', 'kariobangi', 'kasarani', 'kayole',\n 'mathare', 'pipe', 'juja', 'uchumi', 'jogoo', 'umoja', 'thika', 'kikuyu', 'stadium', 'buru buru', 'ngong', 'starehe', 'mwiki',\n 'fuata', 'kware', 'kabiro', 'embakassi', 'embakasi', 'kmoja', 'east', 'githurai', 'landi', 'langata', 'limuru', 'mathere',\n 'dagoretti', 'kirembe', 'muugano', 'mwiki', 'toi market']\n },\n {\n name: 'Misc Mombasa',\n locations: ['mombasa', 'likoni', 'bangla', 'bangladesh', 'kizingo', 'old town', 'makupa', 'mvita', 'ngombeni', 'ngómbeni', 'ombeni',\n 'magongo', 'miritini', 'changamwe', 'jomvu', 'ohuru', 'tudor', 'diani']\n },\n {\n name: 'Kisauni',\n locations: ['bamburi', 'kisauni', 'mworoni', 'nyali', 'shanzu', 'bombolulu', 'mtopanga', 'mjambere', 'majaoni', 'manyani', 'magogoni',\n 'junda', 'mwakirunge', 'mshomoroni']\n },\n {\n name: 'Kilifi',\n locations: ['kilfi', 'kilifi', 'mtwapa', 'takaungu', 'makongeni', 'mnarani', 'mnarani', 'office', 'g.e', 'ge', 'raibai', 'ribe']\n },\n {\n name: 'Kakuma',\n locations: ['kakuma']\n },\n {\n name: 'Kitui',\n locations: ['kitui', 'mwingi']\n },\n {\n name: 'Nyanza',\n locations: ['busia', 'nyalgunga', 'mbita', 'siaya', 'kisumu', 'nyalenda', 'hawinga', 'rangala', 'uyoma', 'mumias', 'homabay', 'homaboy',\n 'migori', 'kusumu']\n },\n {\n name: 'Misc Rural Counties',\n locations: ['makueni', 'meru', 'kisii', 'bomet', 'machakos', 'bungoma', 'eldoret', 'kakamega', 'kericho', 'kajiado', 'nandi', 'nyeri',\n 'wote', 'kiambu', 'mwea', 'nakuru', 'narok']\n },\n {\n name: 'other',\n locations: ['other', 'none', 'unknown']\n }\n];\n\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\nconst accountTypes: Array = ['user', 'cashier', 'vendor', 'tokenagent', 'group'];\nconst transactionTypes: Array = ['transactions', 'conversions', 'disbursements', 'rewards', 'reclamation'];\nconst genders: Array = ['male', 'female', 'other'];\n\n@Injectable()\nexport class MockBackendInterceptor implements HttpInterceptor {\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 function handleRoute(): Observable {\n switch (true) {\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('/tokens') && method === 'GET':\n return getTokens();\n case url.match(/\\/tokens\\/\\w+$/) && method === 'GET':\n return getTokenBySymbol();\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('/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('/accounttypes') && method === 'GET':\n return getAccountTypes();\n case url.endsWith('/transactiontypes') && method === 'GET':\n return getTransactionTypes();\n case url.endsWith('/genders') && method === 'GET':\n return getGenders();\n default:\n // pass through any requests not handled above\n return next.handle(request);\n }\n }\n\n // route functions\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 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 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 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 => category.products.includes(stringFromUrl()));\n return ok(queriedCategory.name);\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 => areaName.locations.includes(stringFromUrl()));\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 => areaType.area.includes(stringFromUrl()));\n return ok(queriedAreaType.name);\n }\n\n function getAccountTypes(): Observable> {\n return ok(accountTypes);\n }\n\n function getTransactionTypes(): Observable> {\n return ok(transactionTypes);\n }\n\n function getGenders(): Observable> {\n return ok(genders);\n }\n\n // helper functions\n\n function ok(responseBody: any): Observable> {\n return of(new HttpResponse({ status: 200, body: responseBody }));\n }\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 stringFromUrl(): string {\n const urlParts: Array = url.split('/');\n return urlParts[urlParts.length - 1];\n }\n }\n}\n\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\n/**\n * @implements\n */\nclass MutablePgpKeyStore implements MutableKeyStore{\n\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 _key = await openpgp.key.readArmored(key);\n return !_key.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 keyring.privateKeys && keyring.privateKeys.keys[0] && keyring.privateKeys.keys[0].keyPacket &&\n keyring.privateKeys.keys[0].keyPacket.fingerprint;\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 keyring.privateKeys && keyring.privateKeys.keys[0] && keyring.privateKeys.keys[0].getKeyId().toHex();\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 {\n MutablePgpKeyStore,\n 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"},"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 Example\n \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:148\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: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 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:100\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:115\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:80\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: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 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:76\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:119\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:127\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: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 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:131\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: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 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: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 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:47\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:56\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: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 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:90\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:84\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: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 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:135\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:143\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: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 : 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:152\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\n/**\n * @implements\n */\nclass MutablePgpKeyStore implements MutableKeyStore{\n\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 _key = await openpgp.key.readArmored(key);\n return !_key.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 keyring.privateKeys && keyring.privateKeys.keys[0] && keyring.privateKeys.keys[0].keyPacket &&\n keyring.privateKeys.keys[0].keyPacket.fingerprint;\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 keyring.privateKeys && keyring.privateKeys.keys[0] && keyring.privateKeys.keys[0].getKeyId().toHex();\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 {\n MutablePgpKeyStore,\n MutableKeyStore\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:20\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:28\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(\n private formBuilder: FormBuilder\n ) { }\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 { return this.organizationForm.controls; }\n\n onSubmit(): void {\n this.submitted = true;\n if (this.organizationForm.invalid || !confirm('Set organization information?')) { return; }\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': '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': '[routerLink]'}];\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:35\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:29\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:30\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:28\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:32\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:35\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:33\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:34\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:31\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:43\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:47\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:77\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: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 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\ntype 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\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.readArmored(signature.data).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.sign(opts).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 }).catch((e) => {\n this.loggingService.sendErrorLevelMessage(e.message, this, {error: e});\n this.onsign(undefined);\n });\n }\n}\n\nexport {\n Signable,\n Signature,\n Signer,\n PGPSigner\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/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': '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': '[routerLink]'}];\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\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 { path: 'tx', loadChildren: () => \"import('@pages/transactions/transactions.module').then(m => m.TransactionsModule)\" },\n { path: 'settings', loadChildren: () => \"import('@pages/settings/settings.module').then(m => m.SettingsModule)\" },\n { path: 'accounts', loadChildren: () => \"import('@pages/accounts/accounts.module').then(m => m.AccountsModule)\" },\n { path: 'tokens', loadChildren: () => \"import('@pages/tokens/tokens.module').then(m => m.TokensModule)\" },\n { path: 'admin', loadChildren: () => \"import('@pages/admin/admin.module').then(m => m.AdminModule)\" },\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:22\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(\n private elementRef: ElementRef,\n private renderer: Renderer2,\n ) {\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:14\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:21\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:25\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(this.web3, environment.registryAddress, 'CICRegistry', this.fileGetter,\n ['../../assets/js/block-sync/data'])\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(this.web3, environment.registryAddress, 'CICRegistry', this.fileGetter,\n ['../../assets/js/block-sync/data']);\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\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:8\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 \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: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 route\n \n ActivatedRouteSnapshot\n \n\n \n No\n \n\n\n \n \n state\n \n RouterStateSnapshot\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Observable | Promise | boolean | UrlTree\n\n \n \n \n \n \n \n \n \n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport {CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot, UrlTree, Router} from '@angular/router';\nimport { Observable } from 'rxjs';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class RoleGuard implements CanActivate {\n\n constructor(private router: Router) {}\n\n canActivate(\n route: ActivatedRouteSnapshot,\n state: RouterStateSnapshot): 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 \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 [routerLink]\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:7\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:11\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:8\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: '[routerLink]'\n})\nexport class RouterLinkDirectiveStub {\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: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 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\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 \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 {\n Settings,\n W3\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/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: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 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:41\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:45\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:28\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(\n private authService: AuthService\n ) { }\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': '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': '[routerLink]'}];\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\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\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\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 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 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';\n\n\n\n@NgModule({\n declarations: [\n TopbarComponent,\n FooterComponent,\n SidebarComponent,\n MenuSelectionDirective,\n MenuToggleDirective,\n TokenRatioPipe,\n ErrorDialogComponent,\n SafePipe\n ],\n exports: [\n TopbarComponent,\n FooterComponent,\n SidebarComponent,\n MenuSelectionDirective,\n TokenRatioPipe,\n SafePipe\n ],\n imports: [\n CommonModule,\n RouterModule,\n MatIconModule,\n MatDialogModule,\n ]\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:13\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\n constructor() { }\n\n ngOnInit(): void {\n }\n\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': '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': '[routerLink]'}];\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': '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': '[routerLink]'}];\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\ntype 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\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.readArmored(signature.data).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.sign(opts).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 }).catch((e) => {\n this.loggingService.sendErrorLevelMessage(e.message, this, {error: e});\n this.onsign(undefined);\n });\n }\n}\n\nexport {\n Signable,\n Signature,\n Signer,\n 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"},"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 value: string;\n }];\n fn: [{\n value: string;\n }];\n n: [{\n value: string[];\n }];\n tel: [{\n meta: {\n TYP: string[];\n },\n value: string;\n }],\n version: [{\n value: string;\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 value: '',\n }],\n fn: [{\n value: 'Sarafu Contract',\n }],\n n: [{\n value: ['Sarafu', 'Contract'],\n }],\n tel: [{\n meta: {\n TYP: [],\n },\n value: '',\n }],\n version: [{\n value: '3.0',\n }],\n },\n};\n\nexport {\n AccountDetails,\n Signature,\n Meta,\n MetaResponse,\n defaultAccount\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/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\ntype 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\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.readArmored(signature.data).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.sign(opts).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 }).catch((e) => {\n this.loggingService.sendErrorLevelMessage(e.message, this, {error: e});\n this.onsign(undefined);\n });\n }\n}\n\nexport {\n Signable,\n Signature,\n Signer,\n 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"},"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 {\n Staff\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/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 {\n Token\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/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(\n private route: ActivatedRoute,\n private tokenService: TokenService\n ) {\n this.route.paramMap.subscribe((params: Params) => {\n this.tokenService.getTokenBySymbol(params.get('id')).pipe(first()).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 \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': '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': '[routerLink]'}];\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:26\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:22\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:24\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:26\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:57\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:75\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:91\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\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: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 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: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 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:29\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(\n private httpClient: HttpClient,\n private registryService: RegistryService,\n ) {\n this.registry = registryService.getRegistry();\n this.registry.load();\n this.registry.onload = async (address: string): Promise => {\n this.tokenRegistry = new TokenRegistry(await this.registry.getContractAddressByName('TokenRegistry'));\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': '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': '[routerLink]'}];\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\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:13\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\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 \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': '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': '[routerLink]'}];\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': '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': '[routerLink]'}];\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 {\n BlocksBloom,\n TxToken,\n Tx,\n Transaction,\n Conversion\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/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:56\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:47\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:39\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:35\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:43\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 = 'https://blockexplorer.bloxberg.org/address/' + this.transaction?.trader + '/transactions';\n } else {\n this.senderBloxbergLink = 'https://blockexplorer.bloxberg.org/address/' + this.transaction?.from + '/transactions';\n this.recipientBloxbergLink = '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': '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': '[routerLink]'}];\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: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 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:102\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:97\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:73\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:108\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)) { return; }\n transaction.value = Number(transaction.value);\n transaction.type = 'transaction';\n try {\n this.userService.getAccountDetailsFromMeta(await User.toKey(transaction.from)).pipe(first()).subscribe((res) => {\n transaction.sender = this.getAccountInfo(res.body);\n }, error => {\n transaction.sender = defaultAccount;\n });\n this.userService.getAccountDetailsFromMeta(await User.toKey(transaction.to)).pipe(first()).subscribe((res) => {\n transaction.recipient = this.getAccountInfo(res.body);\n }, error => {\n transaction.recipient = defaultAccount;\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)) { return; }\n conversion.type = 'conversion';\n conversion.fromValue = Number(conversion.fromValue);\n conversion.toValue = Number(conversion.toValue);\n try {\n this.userService.getAccountDetailsFromMeta(await User.toKey(conversion.trader)).pipe(first()).subscribe((res) => {\n conversion.sender = conversion.recipient = this.getAccountInfo(res.body);\n }, error => {\n conversion.sender = conversion.recipient = defaultAccount;\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 let 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(tokenAddress: string, senderAddress: string, recipientAddress: string, value: number): Promise {\n const transferAuthAddress = await this.registry.getContractAddressByName('TransferAuthorization');\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(['address', 'address', 'address', 'uint256'], [senderAddress, recipientAddress, tokenAddress, value]);\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:27\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: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 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:71\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: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 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:66\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:37\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:47\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:19\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:20\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:26\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:27\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:22\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:17\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:18\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:21\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:23\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:24\n \n \n\n\n \n \n\n\n\n\n\n \n import {AfterViewInit, ChangeDetectionStrategy, Component, OnInit, ViewChild} 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.getTransactionTypes().pipe(first()).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(transaction => transaction.type === this.transactionsType);\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': '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': '[routerLink]'}];\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_declarations\n\n\n\ncluster_TransactionsModule_imports\n\n\n\ncluster_TransactionsModule_exports\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\n@NgModule({\n declarations: [TransactionsComponent, TransactionDetailsComponent],\n exports: [\n TransactionDetailsComponent\n ],\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 {\n BlocksBloom,\n TxToken,\n Tx,\n Transaction,\n Conversion\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/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 {\n BlocksBloom,\n TxToken,\n Tx,\n Transaction,\n Conversion\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/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 {\n Settings,\n W3\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"},"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 0 %\n (0/3)\n \n \n \n \n \n src/app/_guards/role.guard.ts\n \n guard\n RoleGuard\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/_helpers/array-sum.ts\n \n function\n arraySum\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/clipboard-copy.ts\n \n function\n copyToClipboard\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/custom-error-state-matcher.ts\n \n class\n CustomErrorStateMatcher\n \n 0 %\n (0/2)\n \n \n \n \n \n src/app/_helpers/custom.validator.ts\n \n class\n CustomValidator\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/_helpers/export-csv.ts\n \n function\n exportCsv\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/export-csv.ts\n \n function\n removeSpecialChar\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/global-error-handler.ts\n \n class\n HttpError\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/_helpers/global-error-handler.ts\n \n injectable\n GlobalErrorHandler\n \n 0 %\n (0/6)\n \n \n \n \n \n src/app/_helpers/http-getter.ts\n \n function\n HttpGetter\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n interceptor\n MockBackendInterceptor\n \n 0 %\n (0/2)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n accountTypes\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n actions\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n areaNames\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n areaTypes\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n categories\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n genders\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n MockBackendProvider\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n tokens\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/mock-backend.ts\n \n variable\n transactionTypes\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/read-csv.ts\n \n function\n parseData\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/read-csv.ts\n \n function\n readCsv\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/read-csv.ts\n \n variable\n objCsv\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/schema-validation.ts\n \n function\n personValidation\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_helpers/schema-validation.ts\n \n function\n vcardValidation\n \n 0 %\n (0/1)\n \n \n \n \n \n src/app/_interceptors/error.interceptor.ts\n \n interceptor\n ErrorInterceptor\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/_interceptors/http-config.interceptor.ts\n \n interceptor\n HttpConfigInterceptor\n \n 0 %\n (0/3)\n \n \n \n \n \n src/app/_interceptors/logging.interceptor.ts\n \n interceptor\n LoggingInterceptor\n \n 0 %\n (0/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 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/9)\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/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 @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 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 removeSpecialChar   (src/.../export-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\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n arr\n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : number\n\n \n \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\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n text\n \n any\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 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\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n arrayData\n\n \n No\n \n\n\n \n \n filename\n\n \n No\n \n\n\n \n \n delimiter\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 removeSpecialChar\n \n \n \n \n \n \n \nremoveSpecialChar(str)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n str\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 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\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\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n data\n \n any\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 readCsv\n \n \n \n \n \n \n \nreadCsv(input: any)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n input\n \n any\n \n\n \n No\n \n\n\n \n \n \n \n \n \n \n Returns : Array | void\n\n \n \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\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n person\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 vcardValidation\n \n \n \n \n \n \n \nvcardValidation(vcard: any)\n \n \n\n\n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n vcard\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 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\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\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 21 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 13 Interfaces\n \n \n \n \n \n \n \n \n 51 Routes\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/typealiases.html":{"url":"miscellaneous/typealiases.html","title":"miscellaneous-typealiases - typealiases","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n Miscellaneous\n Type aliases\n\n\n\n Index\n \n \n \n \n \n \n Signature   (src/.../pgp-signer.ts)\n \n \n \n \n \n \n\n\n src/app/_pgp/pgp-signer.ts\n \n \n \n \n \n \n Signature\n \n \n \n \n literal type\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 \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 \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: ['kayaba', 'kayba', 'kambi', 'mukuru', 'masai', 'hazina', 'south', 'tetra', 'tetrapak', 'ruben', 'rueben', 'kingston',\n 'korokocho', 'kingstone', 'kamongo', 'lungalunga', 'sinai', 'sigei', 'lungu', 'lunga lunga', 'owino road', 'seigei']\n },\n {\n name: 'Kinango Kwale',\n locations: ['amani', 'bofu', 'chibuga', 'chikomani', 'chilongoni', 'chigojoni', 'chinguluni', 'chigato', 'chigale', 'chikole',\n 'chilongoni', 'chilumani', 'chigojoni', 'chikomani', 'chizini', 'chikomeni', 'chidzuvini', 'chidzivuni', 'chikuyu', 'chizingo',\n 'doti', 'dzugwe', 'dzivani', 'dzovuni', 'hanje', 'kasemeni', 'katundani', 'kibandaogo', 'kibandaongo', 'kwale', 'kinango',\n 'kidzuvini', 'kalalani', 'kafuduni', 'kaloleni', 'kilibole', 'lutsangani', 'peku', 'gona', 'guro', 'gandini', 'mkanyeni', 'myenzeni',\n 'miyenzeni', 'miatsiani', 'mienzeni', 'mnyenzeni', 'minyenzeni', 'miyani', 'mioleni', 'makuluni', 'mariakani', 'makobeni', 'madewani',\n 'mwangaraba', 'mwashanga', 'miloeni', 'mabesheni', 'mazeras', 'mazera', 'mlola', 'muugano', 'mulunguni', 'mabesheni', 'miatsani',\n 'miatsiani', 'mwache', 'mwangani', 'mwehavikonje', 'miguneni', 'nzora', 'nzovuni', 'vikinduni', 'vikolani', 'vitangani', 'viogato',\n 'vyogato', 'vistangani', 'yapha', 'yava', 'yowani', 'ziwani', 'majengo', 'matuga', 'vigungani', 'vidziweni', 'vinyunduni', 'ukunda',\n 'kokotoni', 'mikindani']\n },\n {\n name: 'Misc Nairobi',\n locations: ['nairobi', 'west', 'lindi', 'kibera', 'kibira', 'kibra', 'makina', 'soweto', 'olympic', 'kangemi', 'ruiru', 'congo',\n 'kawangware', 'kwangware', 'donholm', 'dagoreti', 'dandora', 'kabete', 'sinai', 'donhom', 'donholm', 'huruma', 'kitengela',\n 'makadara', ',mlolongo', 'kenyatta', 'mlolongo', 'tassia', 'tasia', 'gatina', '56', 'industrial', 'kariobangi', 'kasarani', 'kayole',\n 'mathare', 'pipe', 'juja', 'uchumi', 'jogoo', 'umoja', 'thika', 'kikuyu', 'stadium', 'buru buru', 'ngong', 'starehe', 'mwiki',\n 'fuata', 'kware', 'kabiro', 'embakassi', 'embakasi', 'kmoja', 'east', 'githurai', 'landi', 'langata', 'limuru', 'mathere',\n 'dagoretti', 'kirembe', 'muugano', 'mwiki', 'toi market']\n },\n {\n name: 'Misc Mombasa',\n locations: ['mombasa', 'likoni', 'bangla', 'bangladesh', 'kizingo', 'old town', 'makupa', 'mvita', 'ngombeni', 'ngómbeni', 'ombeni',\n 'magongo', 'miritini', 'changamwe', 'jomvu', 'ohuru', 'tudor', 'diani']\n },\n {\n name: 'Kisauni',\n locations: ['bamburi', 'kisauni', 'mworoni', 'nyali', 'shanzu', 'bombolulu', 'mtopanga', 'mjambere', 'majaoni', 'manyani', 'magogoni',\n 'junda', 'mwakirunge', 'mshomoroni']\n },\n {\n name: 'Kilifi',\n locations: ['kilfi', 'kilifi', 'mtwapa', 'takaungu', 'makongeni', 'mnarani', 'mnarani', 'office', 'g.e', 'ge', 'raibai', 'ribe']\n },\n {\n name: 'Kakuma',\n locations: ['kakuma']\n },\n {\n name: 'Kitui',\n locations: ['kitui', 'mwingi']\n },\n {\n name: 'Nyanza',\n locations: ['busia', 'nyalgunga', 'mbita', 'siaya', 'kisumu', 'nyalenda', 'hawinga', 'rangala', 'uyoma', 'mumias', 'homabay', 'homaboy',\n 'migori', 'kusumu']\n },\n {\n name: 'Misc Rural Counties',\n locations: ['makueni', 'meru', 'kisii', 'bomet', 'machakos', 'bungoma', 'eldoret', 'kakamega', 'kericho', 'kajiado', 'nandi', 'nyeri',\n 'wote', 'kiambu', 'mwea', 'nakuru', 'narok']\n },\n {\n name: 'other',\n locations: ['other', 'none', 'unknown']\n }\n]\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 \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: ['book', 'coach', 'teacher', 'sch', 'school', 'pry', 'education', 'student', 'mwalimu', 'maalim', 'consultant', 'consult',\n 'college', 'university', 'lecturer', 'primary', 'secondary', 'daycare', 'babycare', 'baby care', 'elim', 'eimu', 'nursery',\n 'red cross', 'volunteer', 'instructor', 'journalist', 'lesson', 'academy', 'headmistress', 'headteacher', 'cyber', 'researcher',\n 'professor', 'demo', 'expert', 'tution', 'tuition', 'children', 'headmaster', 'educator', 'Marital counsellor', 'counsellor',\n 'trainer', 'vijana', 'youth', 'intern', 'redcross', 'KRCS', 'danish', 'science', 'data', 'facilitator', 'vitabu', 'kitabu']\n },\n {\n name: 'faith',\n products: ['pastor', 'imam', 'madrasa', 'religous', 'religious', 'ustadh', 'ustadhi', 'Marital counsellor', 'counsellor', 'church',\n 'kanisa', 'mksiti', 'donor']\n },\n {\n name: 'government',\n products: ['elder', 'chief', 'police', 'government', 'country', 'county', 'soldier', 'village admin', 'ward', 'leader', 'kra',\n 'mailman', 'immagration', 'immigration']\n },\n {\n name: 'environment',\n products: ['conservation', 'toilet', 'choo', 'garbage', 'fagio', 'waste', 'tree', 'taka', 'scrap', 'cleaning', 'gardener', 'rubbish',\n 'usafi', 'mazingira', 'miti', 'trash', 'cleaner', 'plastic', 'collection', 'seedling', 'seedlings', 'recycling']\n },\n {\n name: 'farming',\n products: ['farm', 'farmer', 'farming', 'mkulima', 'kulima', 'ukulima', 'wakulima', 'jembe', 'shamba']\n },\n {\n name: 'labour',\n products: ['artist', 'agent', 'guard', 'askari', 'accountant', 'baker', 'beadwork', 'beauty', 'business', 'barber', 'casual',\n 'electrian', 'caretaker', 'car wash', 'capenter', 'construction', 'chef', 'catering', 'cobler', 'cobbler', 'carwash', 'dhobi',\n 'landlord', 'design', 'carpenter', 'fundi', 'hawking', 'hawker', 'househelp', 'hsehelp', 'house help', 'help', 'housegirl', 'kushona',\n 'juakali', 'jualikali', 'juacali', 'jua kali', 'shepherd', 'makuti', 'kujenga', 'kinyozi', 'kazi', 'knitting', 'kufua', 'fua',\n 'hustler', 'biashara', 'labour', 'labor', 'laundry', 'repair', 'hair', 'posho', 'mill', 'mtambo', 'uvuvi', 'engineer', 'manager',\n 'tailor', 'nguo', 'mason', 'mtumba', 'garage', 'mechanic', 'mjenzi', 'mfugaji', 'painter', 'receptionist', 'printing', 'programming',\n 'plumb', 'charging', 'salon', 'mpishi', 'msusi', 'mgema', 'footballer', 'photocopy', 'peddler', 'staff', 'sales', 'service', 'saloon',\n 'seremala', 'security', 'insurance', 'secretary', 'shoe', 'shepard', 'shephard', 'tout', 'tv', 'mvuvi', 'mawe', 'majani', 'maembe',\n 'freelance', 'mjengo', 'electronics', 'photographer', 'programmer', 'electrician', 'washing', 'bricks', 'welder', 'welding',\n 'working', 'worker', 'watchman', 'waiter', 'waitress', 'viatu', 'yoga', 'guitarist', 'house', 'artisan', 'musician', 'trade',\n 'makonge', 'ujenzi', 'vendor', 'watchlady', 'marketing', 'beautician', 'photo', 'metal work', 'supplier', 'law firm', 'brewer']\n },\n {\n name: 'food',\n products: ['avocado', 'bhajia', 'bajia', 'mbonga', 'bofu', 'beans', 'biscuits', 'biringanya', 'banana', 'bananas', 'crisps', 'chakula',\n 'coconut', 'chapati', 'cereal', 'chipo', 'chapo', 'chai', 'chips', 'cassava', 'cake', 'cereals', 'cook', 'corn', 'coffee', 'chicken',\n 'dagaa', 'donut', 'dough', 'groundnuts', 'hotel', 'holel', 'hoteli', 'butcher', 'butchery', 'fruit', 'food', 'fruits', 'fish',\n 'githeri', 'grocery', 'grocer', 'pojo', 'papa', 'goats', 'mabenda', 'mbenda', 'poultry', 'soda', 'peanuts', 'potatoes', 'samosa',\n 'soko', 'samaki', 'tomato', 'tomatoes', 'mchele', 'matunda', 'mango', 'melon', 'mellon', 'nyanya', 'nyama', 'omena', 'umena', 'ndizi',\n 'njugu', 'kamba kamba', 'khaimati', 'kaimati', 'kunde', 'kuku', 'kahawa', 'keki', 'muguka', 'miraa', 'milk', 'choma', 'maziwa',\n 'mboga', 'mbog', 'busaa', 'chumvi', 'cabbages', 'mabuyu', 'machungwa', 'mbuzi', 'mnazi', 'mchicha', 'ngombe', 'ngano', 'nazi',\n 'oranges', 'peanuts', 'mkate', 'bread', 'mikate', 'vitungu', 'sausages', 'maize', 'mbata', 'mchuzi', 'mchuuzi', 'mandazi', 'mbaazi',\n 'mahindi', 'maandazi', 'mogoka', 'meat', 'mhogo', 'mihogo', 'muhogo', 'maharagwe', 'miwa', 'mahamri', 'mitumba', 'simsim', 'porridge',\n 'pilau', 'vegetable', 'egg', 'mayai', 'mifugo', 'unga', 'good', 'sima', 'sweet', 'sweats', 'sambusa', 'snacks', 'sugar', 'suger',\n 'ugoro', 'sukari', 'soup', 'spinach', 'smokie', 'smokies', 'sukuma', 'tea', 'uji', 'ugali', 'uchuzi', 'uchuuzi', 'viazi', 'yoghurt',\n 'yogurt', 'wine', 'marondo', 'maandzi', 'matoke', 'omeno', 'onions', 'nzugu', 'korosho', 'barafu', 'juice']\n },\n {\n name: 'water',\n products: ['maji', 'water']\n },\n {\n name: 'health',\n products: ['agrovet', 'dispensary', 'barakoa', 'chemist', 'Chemicals', 'chv', 'doctor', 'daktari', 'dawa', 'hospital', 'herbalist',\n 'mganga', 'sabuni', 'soap', 'nurse', 'heath', 'community health worker', 'clinic', 'clinical', 'mask', 'medicine', 'lab technician',\n 'pharmacy', 'cosmetics', 'veterinary', 'vet', 'sickly', 'emergency response', 'emergency']\n },\n {\n name: 'savings',\n products: ['chama', 'group', 'savings', 'loan', 'silc', 'vsla', 'credit', 'finance']\n },\n {\n name: 'shop',\n products: ['bag', 'bead', 'belt', 'bedding', 'jik', 'bed', 'cement', 'botique', 'boutique', 'lines', 'kibanda', 'kiosk', 'spareparts',\n 'candy', 'cloth', 'electricals', 'mutumba', 'cafe', 'leso', 'lesso', 'duka', 'spare parts', 'socks', 'malimali', 'mitungi',\n 'mali mali', 'hardware', 'detergent', 'detergents', 'dera', 'retail', 'kamba', 'pombe', 'pampers', 'pool', 'phone', 'simu', 'mangwe',\n 'mikeka', 'movie', 'shop', 'acces', 'mchanga', 'uto', 'airtime', 'matress', 'mattress', 'mattresses', 'mpsea', 'mpesa', 'shirt',\n 'wholesaler', 'perfume', 'playstation', 'tissue', 'vikapu', 'uniform', 'flowers', 'vitenge', 'utencils', 'utensils', 'station',\n 'jewel', 'pool table', 'club', 'pub', 'bar', 'furniture', 'm-pesa', 'vyombo']\n },\n {\n name: 'transport',\n products: ['kebeba', 'beba', 'bebabeba', 'bike', 'bicycle', 'matatu', 'boda', 'bodaboda', 'cart', 'carrier', 'tour', 'travel', 'driver',\n 'dereva', 'tout', 'conductor', 'kubeba', 'tuktuk', 'taxi', 'piki', 'pikipiki', 'manamba', 'trasportion', 'mkokoteni', 'mover',\n 'motorist', 'motorbike', 'transport', 'transpoter', 'gari', 'magari', 'makanga', 'car']\n },\n {\n name: 'fuel/energy',\n products: ['timber', 'timberyard', 'biogas', 'charcol', 'charcoal', 'kuni', 'mbao', 'fuel', 'makaa', 'mafuta', 'moto', 'solar', 'stima',\n 'fire', 'firewood', 'wood', 'oil', 'taa', 'gas', 'paraffin', 'parrafin', 'parafin', 'petrol', 'petro', 'kerosine', 'kerosene',\n 'diesel']\n },\n {\n name: 'other',\n products: ['other', 'none', 'unknown', 'none']\n }\n]\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 \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 \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', symbol: 'GRZ', address: '0xa686005CE37Dce7738436256982C3903f2E4ea8E', supply: '1000000001000000000000000000',\n decimals: '18', reserves: {}\n },\n {\n name: 'Demo Token', symbol: 'DEMO', address: '0xc80D6aFF8194114c52AEcD84c9f15fd5c8abb187', supply: '99999999999999998976',\n decimals: '18', reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '99999999999999998976'}},\n reserveRatio: '1000000', owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n },\n {\n name: 'Foo Token', symbol: 'FOO', address: '0x9ceD86089f7aBB5A97B40eb0E7521e7aa308d354', supply: '1000000000000000001014',\n decimals: '18', reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '1000000000000000001014'}},\n reserveRatio: '1000000', owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n },\n {\n name: 'testb', symbol: 'tstb', address: '0xC63cFA91A3BFf41cE31Ff436f67D3ACBC977DB95', supply: '99000', decimals: '18',\n reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '99000'}}, reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n },\n {\n name: 'testa', symbol: 'tsta', address: '0x8fA4101ef19D0a078239d035659e92b278bD083C', supply: '9981', decimals: '18',\n reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '9981'}}, reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n },\n {\n name: 'testc', symbol: 'tstc', address: '0x4A6fA6bc3BfE4C9661bC692D9798425350C9e3D4', supply: '100990', decimals: '18',\n reserves: {'0xa686005CE37Dce7738436256982C3903f2E4ea8E': {weight: '1000000', balance: '100990'}}, reserveRatio: '1000000',\n owner: '0x3Da99AAD2D9CA01D131eFc3B17444b832B31Ff4a'\n }\n]\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 : ['transactions', 'conversions', 'disbursements', 'rewards', 'reclamation']\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 value: '',\n }],\n fn: [{\n value: 'Sarafu Contract',\n }],\n n: [{\n value: ['Sarafu', 'Contract'],\n }],\n tel: [{\n meta: {\n TYP: [],\n },\n value: '',\n }],\n version: [{\n value: '3.0',\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: 'http://localhost:8000/keys.asc',\n cicCacheUrl: 'https://cache.dev.grassrootseconomics.net',\n web3Provider: 'ws://localhost:63546',\n cicUssdUrl: 'https://ussd.dev.grassrootseconomics.net',\n registryAddress: '0x6Ca3cB14aA6F761712E1C18646AfBA4d5Ae249E8',\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 \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 dfca6bf..b7d5a60 100644 --- a/docs/compodoc/miscellaneous/variables.html +++ b/docs/compodoc/miscellaneous/variables.html @@ -156,6 +156,12 @@ + + +

Fetch the account registry contract's ABI.

+
+ + @@ -183,6 +189,12 @@ + + +

Establish a connection to the blockchain network.

+
+ + @@ -213,6 +225,12 @@ + + +

Fetch the token registry contract's ABI.

+
+ + @@ -240,6 +258,12 @@ + + +

Establish a connection to the blockchain network.

+
+ + diff --git a/docs/compodoc/modules/AppModule.html b/docs/compodoc/modules/AppModule.html index 5f7eaff..f68a58a 100644 --- a/docs/compodoc/modules/AppModule.html +++ b/docs/compodoc/modules/AppModule.html @@ -69,23 +69,23 @@ cluster_AppModule_providers - -cluster_AppModule_imports - - - -cluster_AppModule_declarations - - cluster_AppModule_bootstrap + +cluster_AppModule_declarations + + + +cluster_AppModule_imports + + AppComponent - -AppComponent + +AppComponent @@ -96,8 +96,8 @@ AppComponent->AppModule - - + + @@ -114,26 +114,26 @@ AppRoutingModule - -AppRoutingModule + +AppRoutingModule AppRoutingModule->AppModule - - + + SharedModule - -SharedModule + +SharedModule SharedModule->AppModule - - + + diff --git a/docs/compodoc/modules/AppModule/dependencies.svg b/docs/compodoc/modules/AppModule/dependencies.svg index b03b2b7..56c9065 100644 --- a/docs/compodoc/modules/AppModule/dependencies.svg +++ b/docs/compodoc/modules/AppModule/dependencies.svg @@ -28,23 +28,23 @@ cluster_AppModule_providers - -cluster_AppModule_imports - - - -cluster_AppModule_declarations - - cluster_AppModule_bootstrap + +cluster_AppModule_declarations + + + +cluster_AppModule_imports + + AppComponent - -AppComponent + +AppComponent @@ -55,8 +55,8 @@ AppComponent->AppModule - - + + @@ -73,26 +73,26 @@ AppRoutingModule - -AppRoutingModule + +AppRoutingModule AppRoutingModule->AppModule - - + + SharedModule - -SharedModule + +SharedModule SharedModule->AppModule - - + + diff --git a/docs/compodoc/modules/AuthModule.html b/docs/compodoc/modules/AuthModule.html index c82a42a..809a264 100644 --- a/docs/compodoc/modules/AuthModule.html +++ b/docs/compodoc/modules/AuthModule.html @@ -65,55 +65,55 @@ cluster_AuthModule - -cluster_AuthModule_imports - - cluster_AuthModule_declarations - + + + +cluster_AuthModule_imports + AuthComponent - -AuthComponent + +AuthComponent AuthModule - -AuthModule + +AuthModule AuthComponent->AuthModule - - + + PasswordToggleDirective - -PasswordToggleDirective + +PasswordToggleDirective PasswordToggleDirective->AuthModule - - + + AuthRoutingModule - -AuthRoutingModule + +AuthRoutingModule AuthRoutingModule->AuthModule - - + + diff --git a/docs/compodoc/modules/AuthModule/dependencies.svg b/docs/compodoc/modules/AuthModule/dependencies.svg index bf9b54e..299882c 100644 --- a/docs/compodoc/modules/AuthModule/dependencies.svg +++ b/docs/compodoc/modules/AuthModule/dependencies.svg @@ -24,55 +24,55 @@ cluster_AuthModule - -cluster_AuthModule_imports - - cluster_AuthModule_declarations - + + + +cluster_AuthModule_imports + AuthComponent - -AuthComponent + +AuthComponent AuthModule - -AuthModule + +AuthModule AuthComponent->AuthModule - - + + PasswordToggleDirective - -PasswordToggleDirective + +PasswordToggleDirective PasswordToggleDirective->AuthModule - - + + AuthRoutingModule - -AuthRoutingModule + +AuthRoutingModule AuthRoutingModule->AuthModule - - + + diff --git a/docs/compodoc/modules/TransactionsModule.html b/docs/compodoc/modules/TransactionsModule.html index 6040f32..b0fc2bf 100644 --- a/docs/compodoc/modules/TransactionsModule.html +++ b/docs/compodoc/modules/TransactionsModule.html @@ -65,83 +65,83 @@ cluster_TransactionsModule + +cluster_TransactionsModule_declarations + + cluster_TransactionsModule_imports - + cluster_TransactionsModule_exports - - - -cluster_TransactionsModule_declarations - + TransactionDetailsComponent - -TransactionDetailsComponent + +TransactionDetailsComponent TransactionsModule - -TransactionsModule + +TransactionsModule TransactionDetailsComponent->TransactionsModule - - + + TransactionsComponent - -TransactionsComponent + +TransactionsComponent TransactionsComponent->TransactionsModule - - + + TransactionDetailsComponent - -TransactionDetailsComponent + +TransactionDetailsComponent TransactionsModule->TransactionDetailsComponent - - + + SharedModule - -SharedModule + +SharedModule SharedModule->TransactionsModule - - + + TransactionsRoutingModule - -TransactionsRoutingModule + +TransactionsRoutingModule TransactionsRoutingModule->TransactionsModule - - + + diff --git a/docs/compodoc/modules/TransactionsModule/dependencies.svg b/docs/compodoc/modules/TransactionsModule/dependencies.svg index 7677c9d..b1549fc 100644 --- a/docs/compodoc/modules/TransactionsModule/dependencies.svg +++ b/docs/compodoc/modules/TransactionsModule/dependencies.svg @@ -24,83 +24,83 @@ cluster_TransactionsModule + +cluster_TransactionsModule_declarations + + cluster_TransactionsModule_imports - + cluster_TransactionsModule_exports - - - -cluster_TransactionsModule_declarations - + TransactionDetailsComponent - -TransactionDetailsComponent + +TransactionDetailsComponent TransactionsModule - -TransactionsModule + +TransactionsModule TransactionDetailsComponent->TransactionsModule - - + + TransactionsComponent - -TransactionsComponent + +TransactionsComponent TransactionsComponent->TransactionsModule - - + + TransactionDetailsComponent - -TransactionDetailsComponent + +TransactionDetailsComponent TransactionsModule->TransactionDetailsComponent - - + + SharedModule - -SharedModule + +SharedModule SharedModule->TransactionsModule - - + + TransactionsRoutingModule - -TransactionsRoutingModule + +TransactionsRoutingModule TransactionsRoutingModule->TransactionsModule - - + + diff --git a/docs/typedoc/assets/js/search.js b/docs/typedoc/assets/js/search.js index b6b6c60..c393ed0 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","4194304":"Type alias","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":"contractAddress","url":"classes/app__eth_accountindex.accountindex.html#contractaddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"app/_eth/accountIndex.AccountIndex"},{"id":4,"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":5,"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":6,"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":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":"addToAccountRegistry","url":"classes/app__eth_accountindex.accountindex.html#addtoaccountregistry","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":"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":15,"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":16,"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":17,"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":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":"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":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":"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":54,"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":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":4194304,"name":"Signature","url":"modules/app__pgp_pgp_signer.html#signature","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"app/_pgp/pgp-signer"},{"id":275,"kind":65536,"name":"__type","url":"modules/app__pgp_pgp_signer.html#signature.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"app/_pgp/pgp-signer.Signature"},{"id":276,"kind":1024,"name":"engine","url":"modules/app__pgp_pgp_signer.html#signature.__type.engine","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_pgp/pgp-signer.Signature.__type"},{"id":277,"kind":1024,"name":"algo","url":"modules/app__pgp_pgp_signer.html#signature.__type.algo","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_pgp/pgp-signer.Signature.__type"},{"id":278,"kind":1024,"name":"data","url":"modules/app__pgp_pgp_signer.html#signature.__type.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_pgp/pgp-signer.Signature.__type"},{"id":279,"kind":1024,"name":"digest","url":"modules/app__pgp_pgp_signer.html#signature.__type.digest","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_pgp/pgp-signer.Signature.__type"},{"id":280,"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":281,"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":282,"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":283,"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":284,"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":285,"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":286,"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":287,"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":288,"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":289,"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":290,"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":291,"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":292,"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":293,"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":294,"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":295,"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":296,"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":297,"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":298,"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":299,"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":300,"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":301,"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":302,"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":303,"kind":1,"name":"app/_services/auth.service","url":"modules/app__services_auth_service.html","classes":"tsd-kind-module"},{"id":304,"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":305,"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":306,"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":307,"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":308,"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":309,"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":310,"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":311,"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":312,"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":313,"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":314,"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":315,"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":316,"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":317,"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":318,"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":319,"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":320,"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":321,"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":322,"kind":1,"name":"app/_services/block-sync.service","url":"modules/app__services_block_sync_service.html","classes":"tsd-kind-module"},{"id":323,"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":324,"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":325,"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":326,"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":327,"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":328,"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":329,"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":330,"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":331,"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":332,"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":333,"kind":1,"name":"app/_services/error-dialog.service","url":"modules/app__services_error_dialog_service.html","classes":"tsd-kind-module"},{"id":334,"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":335,"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":336,"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":337,"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":338,"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":339,"kind":1,"name":"app/_services","url":"modules/app__services.html","classes":"tsd-kind-module"},{"id":340,"kind":1,"name":"app/_services/location.service","url":"modules/app__services_location_service.html","classes":"tsd-kind-module"},{"id":341,"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":342,"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":343,"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":344,"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":345,"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":346,"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":347,"kind":1,"name":"app/_services/logging.service","url":"modules/app__services_logging_service.html","classes":"tsd-kind-module"},{"id":348,"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":349,"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":350,"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":351,"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":352,"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":353,"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":354,"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":355,"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":356,"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":357,"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":358,"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":359,"kind":1,"name":"app/_services/registry.service","url":"modules/app__services_registry_service.html","classes":"tsd-kind-module"},{"id":360,"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":361,"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":362,"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":363,"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":364,"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":365,"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":366,"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":367,"kind":1,"name":"app/_services/token.service","url":"modules/app__services_token_service.html","classes":"tsd-kind-module"},{"id":368,"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":369,"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":370,"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":371,"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":372,"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":373,"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":374,"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":375,"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":376,"kind":1,"name":"app/_services/transaction.service","url":"modules/app__services_transaction_service.html","classes":"tsd-kind-module"},{"id":377,"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":378,"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":379,"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":380,"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":381,"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":382,"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":383,"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":384,"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":385,"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":386,"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":387,"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":388,"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":389,"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":390,"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":391,"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":392,"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":393,"kind":1,"name":"app/_services/user.service","url":"modules/app__services_user_service.html","classes":"tsd-kind-module"},{"id":394,"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":395,"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":396,"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":397,"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":398,"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":399,"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":400,"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":401,"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":402,"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":403,"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":404,"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":405,"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":406,"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":407,"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":408,"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":409,"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":410,"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":411,"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":412,"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":413,"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":414,"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":415,"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":416,"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":417,"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":418,"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":419,"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":420,"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":421,"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":422,"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":423,"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":424,"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":425,"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":426,"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":427,"kind":1,"name":"app/app-routing.module","url":"modules/app_app_routing_module.html","classes":"tsd-kind-module"},{"id":428,"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":429,"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":430,"kind":1,"name":"app/app.component","url":"modules/app_app_component.html","classes":"tsd-kind-module"},{"id":431,"kind":128,"name":"AppComponent","url":"classes/app_app_component.appcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/app.component"},{"id":432,"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":433,"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":434,"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":435,"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":436,"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":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/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":"CustomValidator","url":"modules/app__helpers.html#customvalidator","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":853,"kind":16777216,"name":"CustomErrorStateMatcher","url":"modules/app__helpers.html#customerrorstatematcher","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":854,"kind":16777216,"name":"MockBackendInterceptor","url":"modules/app__helpers.html#mockbackendinterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":855,"kind":16777216,"name":"MockBackendProvider","url":"modules/app__helpers.html#mockbackendprovider","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":856,"kind":16777216,"name":"arraySum","url":"modules/app__helpers.html#arraysum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":857,"kind":16777216,"name":"HttpGetter","url":"modules/app__helpers.html#httpgetter","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":858,"kind":16777216,"name":"HttpError","url":"modules/app__helpers.html#httperror","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":859,"kind":16777216,"name":"GlobalErrorHandler","url":"modules/app__helpers.html#globalerrorhandler","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":860,"kind":16777216,"name":"exportCsv","url":"modules/app__helpers.html#exportcsv","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":861,"kind":16777216,"name":"readCsv","url":"modules/app__helpers.html#readcsv","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":862,"kind":16777216,"name":"copyToClipboard","url":"modules/app__helpers.html#copytoclipboard","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":"BlocksBloom","url":"modules/app__models.html#blocksbloom","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":869,"kind":16777216,"name":"TxToken","url":"modules/app__models.html#txtoken","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":870,"kind":16777216,"name":"Tx","url":"modules/app__models.html#tx","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":871,"kind":16777216,"name":"Transaction","url":"modules/app__models.html#transaction","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":872,"kind":16777216,"name":"Conversion","url":"modules/app__models.html#conversion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":873,"kind":16777216,"name":"Settings","url":"modules/app__models.html#settings","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":874,"kind":16777216,"name":"W3","url":"modules/app__models.html#w3","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":875,"kind":16777216,"name":"AccountDetails","url":"modules/app__models.html#accountdetails","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":876,"kind":16777216,"name":"Signature","url":"modules/app__models.html#signature","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":877,"kind":16777216,"name":"Meta","url":"modules/app__models.html#meta","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":878,"kind":16777216,"name":"MetaResponse","url":"modules/app__models.html#metaresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":879,"kind":16777216,"name":"defaultAccount","url":"modules/app__models.html#defaultaccount","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":880,"kind":16777216,"name":"Staff","url":"modules/app__models.html#staff","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":881,"kind":16777216,"name":"Token","url":"modules/app__models.html#token","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":882,"kind":16777216,"name":"Action","url":"modules/app__models.html#action","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":883,"kind":16777216,"name":"Category","url":"modules/app__models.html#category","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":884,"kind":16777216,"name":"AreaName","url":"modules/app__models.html#areaname","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":885,"kind":16777216,"name":"AreaType","url":"modules/app__models.html#areatype","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.406]],["parent/0",[]],["name/1",[1,60.406]],["parent/1",[0,6.733]],["name/2",[2,24.97]],["parent/2",[3,5.336]],["name/3",[4,60.406]],["parent/3",[3,5.336]],["name/4",[5,60.406]],["parent/4",[3,5.336]],["name/5",[6,60.406]],["parent/5",[3,5.336]],["name/6",[7,65.638]],["parent/6",[3,5.336]],["name/7",[8,65.638]],["parent/7",[3,5.336]],["name/8",[9,65.638]],["parent/8",[3,5.336]],["name/9",[10,65.638]],["parent/9",[3,5.336]],["name/10",[11,56.959]],["parent/10",[]],["name/11",[12,33.506,13,35.242]],["parent/11",[]],["name/12",[14,56.959]],["parent/12",[12,3.93,13,4.134]],["name/13",[2,24.97]],["parent/13",[12,3.93,15,4.134]],["name/14",[4,60.406]],["parent/14",[12,3.93,15,4.134]],["name/15",[5,60.406]],["parent/15",[12,3.93,15,4.134]],["name/16",[6,60.406]],["parent/16",[12,3.93,15,4.134]],["name/17",[16,65.638]],["parent/17",[12,3.93,15,4.134]],["name/18",[17,65.638]],["parent/18",[12,3.93,15,4.134]],["name/19",[18,65.638]],["parent/19",[12,3.93,15,4.134]],["name/20",[19,60.406]],["parent/20",[]],["name/21",[20,60.406]],["parent/21",[19,6.733]],["name/22",[2,24.97]],["parent/22",[21,6.733]],["name/23",[22,60.406]],["parent/23",[21,6.733]],["name/24",[23,56.959]],["parent/24",[]],["name/25",[24,60.406]],["parent/25",[]],["name/26",[25,60.406]],["parent/26",[24,6.733]],["name/27",[2,24.97]],["parent/27",[26,6.733]],["name/28",[22,60.406]],["parent/28",[26,6.733]],["name/29",[27,43.31,28,43.31]],["parent/29",[]],["name/30",[29,60.406]],["parent/30",[27,5.08,28,5.08]],["name/31",[30,43.31,31,43.31]],["parent/31",[]],["name/32",[32,60.406]],["parent/32",[30,5.08,31,5.08]],["name/33",[33,24.9,34,19.099,35,24.9,36,22.504]],["parent/33",[]],["name/34",[37,60.406]],["parent/34",[33,3.068,34,2.353,35,3.068,36,2.773]],["name/35",[2,24.97]],["parent/35",[33,3.068,34,2.353,35,3.068,38,3.407]],["name/36",[39,65.638]],["parent/36",[33,3.068,34,2.353,35,3.068,38,3.407]],["name/37",[40,60.406]],["parent/37",[]],["name/38",[41,60.406]],["parent/38",[40,6.733]],["name/39",[42,65.638]],["parent/39",[43,6.349]],["name/40",[44,65.638]],["parent/40",[43,6.349]],["name/41",[2,24.97]],["parent/41",[43,6.349]],["name/42",[45,43.31,46,38.993]],["parent/42",[]],["name/43",[47,60.406]],["parent/43",[45,5.08,46,4.574]],["name/44",[34,23.312,48,25.021,49,31.831]],["parent/44",[]],["name/45",[50,60.406]],["parent/45",[34,2.817,48,3.023,49,3.846]],["name/46",[51,42.4]],["parent/46",[34,2.817,48,3.023,52,3.846]],["name/47",[2,24.97]],["parent/47",[34,2.817,48,3.023,52,3.846]],["name/48",[53,65.638]],["parent/48",[34,2.817,48,3.023,52,3.846]],["name/49",[54,60.406]],["parent/49",[34,2.817,48,3.023,49,3.846]],["name/50",[2,24.97]],["parent/50",[34,2.817,48,3.023,55,3.534]],["name/51",[56,65.638]],["parent/51",[34,2.817,48,3.023,55,3.534]],["name/52",[57,65.638]],["parent/52",[34,2.817,48,3.023,55,3.534]],["name/53",[58,65.638]],["parent/53",[34,2.817,48,3.023,55,3.534]],["name/54",[59,65.638]],["parent/54",[34,2.817,48,3.023,55,3.534]],["name/55",[60,43.31,61,43.31]],["parent/55",[]],["name/56",[62,60.406]],["parent/56",[60,5.08,61,5.08]],["name/57",[63,42.4]],["parent/57",[]],["name/58",[64,33.506,65,40.839]],["parent/58",[]],["name/59",[66,60.406]],["parent/59",[64,3.93,65,4.79]],["name/60",[2,24.97]],["parent/60",[64,3.93,67,5.08]],["name/61",[68,54.385]],["parent/61",[64,3.93,67,5.08]],["name/62",[69,60.406]],["parent/62",[64,3.93,65,4.79]],["name/63",[51,42.4]],["parent/63",[64,3.93,70,5.52]],["name/64",[71,65.638]],["parent/64",[64,3.93,72,4.79]],["name/65",[73,65.638]],["parent/65",[64,3.93,72,4.79]],["name/66",[74,65.638]],["parent/66",[64,3.93,72,4.79]],["name/67",[46,38.993,75,43.31]],["parent/67",[]],["name/68",[76,60.406]],["parent/68",[46,4.574,75,5.08]],["name/69",[77,40.839,78,40.839]],["parent/69",[]],["name/70",[79,60.406]],["parent/70",[77,4.79,78,4.79]],["name/71",[80,60.406]],["parent/71",[77,4.79,78,4.79]],["name/72",[81,60.406]],["parent/72",[]],["name/73",[82,60.406]],["parent/73",[81,6.733]],["name/74",[2,24.97]],["parent/74",[83,6.733]],["name/75",[68,54.385]],["parent/75",[83,6.733]],["name/76",[84,38.993,85,43.31]],["parent/76",[]],["name/77",[86,60.406]],["parent/77",[84,4.574,85,5.08]],["name/78",[2,24.97]],["parent/78",[84,4.574,87,5.08]],["name/79",[68,54.385]],["parent/79",[84,4.574,87,5.08]],["name/80",[88,54.385]],["parent/80",[]],["name/81",[89,60.406]],["parent/81",[]],["name/82",[90,60.406]],["parent/82",[89,6.733]],["name/83",[2,24.97]],["parent/83",[91,6.733]],["name/84",[68,54.385]],["parent/84",[91,6.733]],["name/85",[92,50.618]],["parent/85",[]],["name/86",[93,60.406]],["parent/86",[92,5.642]],["name/87",[94,65.638]],["parent/87",[95,4.808]],["name/88",[96,65.638]],["parent/88",[95,4.808]],["name/89",[97,65.638]],["parent/89",[95,4.808]],["name/90",[98,60.406]],["parent/90",[95,4.808]],["name/91",[99,60.406]],["parent/91",[95,4.808]],["name/92",[100,65.638]],["parent/92",[95,4.808]],["name/93",[51,42.4]],["parent/93",[95,4.808]],["name/94",[101,65.638]],["parent/94",[102,4.895]],["name/95",[51,42.4]],["parent/95",[102,4.895]],["name/96",[103,65.638]],["parent/96",[104,6.733]],["name/97",[105,65.638]],["parent/97",[104,6.733]],["name/98",[106,65.638]],["parent/98",[102,4.895]],["name/99",[107,65.638]],["parent/99",[102,4.895]],["name/100",[108,65.638]],["parent/100",[95,4.808]],["name/101",[51,42.4]],["parent/101",[95,4.808]],["name/102",[109,60.406]],["parent/102",[102,4.895]],["name/103",[110,65.638]],["parent/103",[102,4.895]],["name/104",[111,65.638]],["parent/104",[102,4.895]],["name/105",[112,60.406]],["parent/105",[95,4.808]],["name/106",[113,56.959]],["parent/106",[95,4.808]],["name/107",[114,65.638]],["parent/107",[95,4.808]],["name/108",[51,42.4]],["parent/108",[95,4.808]],["name/109",[115,60.406]],["parent/109",[102,4.895]],["name/110",[116,65.638]],["parent/110",[102,4.895]],["name/111",[117,65.638]],["parent/111",[102,4.895]],["name/112",[118,65.638]],["parent/112",[102,4.895]],["name/113",[119,65.638]],["parent/113",[102,4.895]],["name/114",[120,50.618]],["parent/114",[92,5.642]],["name/115",[121,56.959]],["parent/115",[122,6.062]],["name/116",[123,52.329]],["parent/116",[122,6.062]],["name/117",[124,56.959]],["parent/117",[122,6.062]],["name/118",[125,54.385]],["parent/118",[122,6.062]],["name/119",[126,60.406]],["parent/119",[92,5.642]],["name/120",[123,52.329]],["parent/120",[127,6.349]],["name/121",[128,54.385]],["parent/121",[127,6.349]],["name/122",[120,50.618]],["parent/122",[127,6.349]],["name/123",[129,60.406]],["parent/123",[92,5.642]],["name/124",[128,54.385]],["parent/124",[130,6.733]],["name/125",[131,65.638]],["parent/125",[130,6.733]],["name/126",[132,60.406]],["parent/126",[92,5.642]],["name/127",[133,39.365]],["parent/127",[]],["name/128",[134,52.329]],["parent/128",[]],["name/129",[135,54.385]],["parent/129",[134,5.833]],["name/130",[128,54.385]],["parent/130",[136,5.833]],["name/131",[137,60.406]],["parent/131",[136,5.833]],["name/132",[138,65.638]],["parent/132",[136,5.833]],["name/133",[135,54.385]],["parent/133",[136,5.833]],["name/134",[139,65.638]],["parent/134",[136,5.833]],["name/135",[113,56.959]],["parent/135",[134,5.833]],["name/136",[140,50.618]],["parent/136",[141,6.733]],["name/137",[112,60.406]],["parent/137",[141,6.733]],["name/138",[142,60.406]],["parent/138",[134,5.833]],["name/139",[140,50.618]],["parent/139",[143,6.733]],["name/140",[144,65.638]],["parent/140",[143,6.733]],["name/141",[145,60.406]],["parent/141",[134,5.833]],["name/142",[140,50.618]],["parent/142",[146,6.733]],["name/143",[109,60.406]],["parent/143",[146,6.733]],["name/144",[147,56.959]],["parent/144",[]],["name/145",[148,60.406]],["parent/145",[147,6.349]],["name/146",[2,24.97]],["parent/146",[149,5.833]],["name/147",[150,56.959]],["parent/147",[149,5.833]],["name/148",[151,65.638]],["parent/148",[149,5.833]],["name/149",[13,49.152]],["parent/149",[149,5.833]],["name/150",[152,65.638]],["parent/150",[149,5.833]],["name/151",[150,56.959]],["parent/151",[147,6.349]],["name/152",[2,24.97]],["parent/152",[153,6.349]],["name/153",[125,54.385]],["parent/153",[153,6.349]],["name/154",[154,65.638]],["parent/154",[153,6.349]],["name/155",[155,60.406]],["parent/155",[]],["name/156",[156,60.406]],["parent/156",[155,6.733]],["name/157",[157,65.638]],["parent/157",[158,5.833]],["name/158",[115,60.406]],["parent/158",[158,5.833]],["name/159",[140,50.618]],["parent/159",[158,5.833]],["name/160",[159,65.638]],["parent/160",[158,5.833]],["name/161",[160,65.638]],["parent/161",[158,5.833]],["name/162",[161,60.406]],["parent/162",[]],["name/163",[162,54.385]],["parent/163",[161,6.733]],["name/164",[140,50.618]],["parent/164",[163,5.209]],["name/165",[164,60.406]],["parent/165",[163,5.209]],["name/166",[165,60.406]],["parent/166",[163,5.209]],["name/167",[166,65.638]],["parent/167",[163,5.209]],["name/168",[167,65.638]],["parent/168",[163,5.209]],["name/169",[168,65.638]],["parent/169",[163,5.209]],["name/170",[51,42.4]],["parent/170",[163,5.209]],["name/171",[169,65.638]],["parent/171",[170,6.733]],["name/172",[51,42.4]],["parent/172",[170,6.733]],["name/173",[171,65.638]],["parent/173",[172,6.733]],["name/174",[99,60.406]],["parent/174",[172,6.733]],["name/175",[173,65.638]],["parent/175",[163,5.209]],["name/176",[174,65.638]],["parent/176",[163,5.209]],["name/177",[175,50.618]],["parent/177",[]],["name/178",[176,60.406]],["parent/178",[175,5.642]],["name/179",[2,24.97]],["parent/179",[177,5.642]],["name/180",[178,65.638]],["parent/180",[177,5.642]],["name/181",[179,65.638]],["parent/181",[177,5.642]],["name/182",[180,65.638]],["parent/182",[177,5.642]],["name/183",[181,65.638]],["parent/183",[177,5.642]],["name/184",[182,65.638]],["parent/184",[177,5.642]],["name/185",[183,60.406]],["parent/185",[175,5.642]],["name/186",[2,24.97]],["parent/186",[184,6.062]],["name/187",[165,60.406]],["parent/187",[184,6.062]],["name/188",[140,50.618]],["parent/188",[184,6.062]],["name/189",[164,60.406]],["parent/189",[184,6.062]],["name/190",[185,50.618]],["parent/190",[175,5.642]],["name/191",[2,24.97]],["parent/191",[186,5.642]],["name/192",[187,65.638]],["parent/192",[186,5.642]],["name/193",[188,65.638]],["parent/193",[186,5.642]],["name/194",[189,65.638]],["parent/194",[186,5.642]],["name/195",[190,65.638]],["parent/195",[186,5.642]],["name/196",[191,65.638]],["parent/196",[186,5.642]],["name/197",[192,52.329]],["parent/197",[175,5.642]],["name/198",[2,24.97]],["parent/198",[193,5.209]],["name/199",[194,65.638]],["parent/199",[193,5.209]],["name/200",[195,65.638]],["parent/200",[193,5.209]],["name/201",[196,60.406]],["parent/201",[193,5.209]],["name/202",[197,65.638]],["parent/202",[193,5.209]],["name/203",[162,54.385]],["parent/203",[193,5.209]],["name/204",[185,50.618]],["parent/204",[193,5.209]],["name/205",[198,60.406]],["parent/205",[193,5.209]],["name/206",[98,60.406]],["parent/206",[193,5.209]],["name/207",[199,60.406]],["parent/207",[175,5.642]],["name/208",[2,24.97]],["parent/208",[200,5.336]],["name/209",[201,65.638]],["parent/209",[200,5.336]],["name/210",[202,65.638]],["parent/210",[200,5.336]],["name/211",[203,65.638]],["parent/211",[200,5.336]],["name/212",[204,60.406]],["parent/212",[200,5.336]],["name/213",[205,65.638]],["parent/213",[200,5.336]],["name/214",[137,60.406]],["parent/214",[200,5.336]],["name/215",[185,50.618]],["parent/215",[200,5.336]],["name/216",[206,49.152]],["parent/216",[]],["name/217",[207,13.471,208,16.115,209,31.831]],["parent/217",[]],["name/218",[210,60.406]],["parent/218",[207,1.628,208,1.947,209,3.846]],["name/219",[2,24.97]],["parent/219",[207,1.628,208,1.947,211,2.446]],["name/220",[212,60.406]],["parent/220",[207,1.628,208,1.947,211,2.446]],["name/221",[213,60.406]],["parent/221",[207,1.628,208,1.947,211,2.446]],["name/222",[214,60.406]],["parent/222",[207,1.628,208,1.947,211,2.446]],["name/223",[215,60.406]],["parent/223",[207,1.628,208,1.947,211,2.446]],["name/224",[216,56.959]],["parent/224",[207,1.628,208,1.947,211,2.446]],["name/225",[217,60.406]],["parent/225",[207,1.628,208,1.947,211,2.446]],["name/226",[218,60.406]],["parent/226",[207,1.628,208,1.947,211,2.446]],["name/227",[219,60.406]],["parent/227",[207,1.628,208,1.947,211,2.446]],["name/228",[220,60.406]],["parent/228",[207,1.628,208,1.947,211,2.446]],["name/229",[221,56.959]],["parent/229",[207,1.628,208,1.947,211,2.446]],["name/230",[222,60.406]],["parent/230",[207,1.628,208,1.947,211,2.446]],["name/231",[223,60.406]],["parent/231",[207,1.628,208,1.947,211,2.446]],["name/232",[224,60.406]],["parent/232",[207,1.628,208,1.947,211,2.446]],["name/233",[225,60.406]],["parent/233",[207,1.628,208,1.947,211,2.446]],["name/234",[226,60.406]],["parent/234",[207,1.628,208,1.947,211,2.446]],["name/235",[227,60.406]],["parent/235",[207,1.628,208,1.947,211,2.446]],["name/236",[228,60.406]],["parent/236",[207,1.628,208,1.947,211,2.446]],["name/237",[229,60.406]],["parent/237",[207,1.628,208,1.947,211,2.446]],["name/238",[230,60.406]],["parent/238",[207,1.628,208,1.947,211,2.446]],["name/239",[231,60.406]],["parent/239",[207,1.628,208,1.947,211,2.446]],["name/240",[232,60.406]],["parent/240",[207,1.628,208,1.947,211,2.446]],["name/241",[233,60.406]],["parent/241",[207,1.628,208,1.947,211,2.446]],["name/242",[234,60.406]],["parent/242",[207,1.628,208,1.947,211,2.446]],["name/243",[235,60.406]],["parent/243",[207,1.628,208,1.947,211,2.446]],["name/244",[236,54.385]],["parent/244",[207,1.628,208,1.947,211,2.446]],["name/245",[237,56.959]],["parent/245",[207,1.628,208,1.947,209,3.846]],["name/246",[212,60.406]],["parent/246",[207,1.628,208,1.947,238,2.473]],["name/247",[213,60.406]],["parent/247",[207,1.628,208,1.947,238,2.473]],["name/248",[214,60.406]],["parent/248",[207,1.628,208,1.947,238,2.473]],["name/249",[215,60.406]],["parent/249",[207,1.628,208,1.947,238,2.473]],["name/250",[216,56.959]],["parent/250",[207,1.628,208,1.947,238,2.473]],["name/251",[217,60.406]],["parent/251",[207,1.628,208,1.947,238,2.473]],["name/252",[218,60.406]],["parent/252",[207,1.628,208,1.947,238,2.473]],["name/253",[219,60.406]],["parent/253",[207,1.628,208,1.947,238,2.473]],["name/254",[220,60.406]],["parent/254",[207,1.628,208,1.947,238,2.473]],["name/255",[221,56.959]],["parent/255",[207,1.628,208,1.947,238,2.473]],["name/256",[222,60.406]],["parent/256",[207,1.628,208,1.947,238,2.473]],["name/257",[223,60.406]],["parent/257",[207,1.628,208,1.947,238,2.473]],["name/258",[224,60.406]],["parent/258",[207,1.628,208,1.947,238,2.473]],["name/259",[225,60.406]],["parent/259",[207,1.628,208,1.947,238,2.473]],["name/260",[226,60.406]],["parent/260",[207,1.628,208,1.947,238,2.473]],["name/261",[227,60.406]],["parent/261",[207,1.628,208,1.947,238,2.473]],["name/262",[228,60.406]],["parent/262",[207,1.628,208,1.947,238,2.473]],["name/263",[229,60.406]],["parent/263",[207,1.628,208,1.947,238,2.473]],["name/264",[230,60.406]],["parent/264",[207,1.628,208,1.947,238,2.473]],["name/265",[231,60.406]],["parent/265",[207,1.628,208,1.947,238,2.473]],["name/266",[232,60.406]],["parent/266",[207,1.628,208,1.947,238,2.473]],["name/267",[233,60.406]],["parent/267",[207,1.628,208,1.947,238,2.473]],["name/268",[234,60.406]],["parent/268",[207,1.628,208,1.947,238,2.473]],["name/269",[235,60.406]],["parent/269",[207,1.628,208,1.947,238,2.473]],["name/270",[236,54.385]],["parent/270",[207,1.628,208,1.947,238,2.473]],["name/271",[207,17.283,239,34.322]],["parent/271",[]],["name/272",[240,60.406]],["parent/272",[207,2.027,239,4.026]],["name/273",[124,56.959]],["parent/273",[207,2.027,241,5.52]],["name/274",[120,50.618]],["parent/274",[207,2.027,239,4.026]],["name/275",[51,42.4]],["parent/275",[207,2.027,242,5.52]],["name/276",[125,54.385]],["parent/276",[207,2.027,243,4.574]],["name/277",[121,56.959]],["parent/277",[207,2.027,243,4.574]],["name/278",[123,52.329]],["parent/278",[207,2.027,243,4.574]],["name/279",[124,56.959]],["parent/279",[207,2.027,243,4.574]],["name/280",[239,47.87]],["parent/280",[207,2.027,239,4.026]],["name/281",[244,60.406]],["parent/281",[207,2.027,245,4.257]],["name/282",[246,60.406]],["parent/282",[207,2.027,245,4.257]],["name/283",[247,60.406]],["parent/283",[207,2.027,245,4.257]],["name/284",[248,60.406]],["parent/284",[207,2.027,245,4.257]],["name/285",[249,60.406]],["parent/285",[207,2.027,245,4.257]],["name/286",[236,54.385]],["parent/286",[207,2.027,245,4.257]],["name/287",[250,60.406]],["parent/287",[207,2.027,239,4.026]],["name/288",[2,24.97]],["parent/288",[207,2.027,251,3.508]],["name/289",[125,54.385]],["parent/289",[207,2.027,251,3.508]],["name/290",[121,56.959]],["parent/290",[207,2.027,251,3.508]],["name/291",[252,65.638]],["parent/291",[207,2.027,251,3.508]],["name/292",[120,50.618]],["parent/292",[207,2.027,251,3.508]],["name/293",[253,60.406]],["parent/293",[207,2.027,251,3.508]],["name/294",[244,60.406]],["parent/294",[207,2.027,251,3.508]],["name/295",[51,42.4]],["parent/295",[207,2.027,251,3.508]],["name/296",[246,60.406]],["parent/296",[207,2.027,251,3.508]],["name/297",[51,42.4]],["parent/297",[207,2.027,251,3.508]],["name/298",[254,56.959]],["parent/298",[207,2.027,251,3.508]],["name/299",[247,60.406]],["parent/299",[207,2.027,251,3.508]],["name/300",[248,60.406]],["parent/300",[207,2.027,251,3.508]],["name/301",[249,60.406]],["parent/301",[207,2.027,251,3.508]],["name/302",[236,54.385]],["parent/302",[207,2.027,251,3.508]],["name/303",[255,60.406]],["parent/303",[]],["name/304",[256,60.406]],["parent/304",[255,6.733]],["name/305",[2,24.97]],["parent/305",[257,4.511]],["name/306",[258,65.638]],["parent/306",[257,4.511]],["name/307",[259,65.638]],["parent/307",[257,4.511]],["name/308",[237,56.959]],["parent/308",[257,4.511]],["name/309",[260,65.638]],["parent/309",[257,4.511]],["name/310",[261,65.638]],["parent/310",[257,4.511]],["name/311",[262,65.638]],["parent/311",[257,4.511]],["name/312",[263,65.638]],["parent/312",[257,4.511]],["name/313",[264,65.638]],["parent/313",[257,4.511]],["name/314",[265,60.406]],["parent/314",[257,4.511]],["name/315",[266,65.638]],["parent/315",[257,4.511]],["name/316",[267,65.638]],["parent/316",[257,4.511]],["name/317",[268,65.638]],["parent/317",[257,4.511]],["name/318",[269,60.406]],["parent/318",[257,4.511]],["name/319",[270,65.638]],["parent/319",[257,4.511]],["name/320",[216,56.959]],["parent/320",[257,4.511]],["name/321",[221,56.959]],["parent/321",[257,4.511]],["name/322",[271,32.102,272,43.31]],["parent/322",[]],["name/323",[273,60.406]],["parent/323",[271,3.766,272,5.08]],["name/324",[2,24.97]],["parent/324",[271,3.766,274,3.93]],["name/325",[275,60.406]],["parent/325",[271,3.766,274,3.93]],["name/326",[276,60.406]],["parent/326",[271,3.766,274,3.93]],["name/327",[277,65.638]],["parent/327",[271,3.766,274,3.93]],["name/328",[278,65.638]],["parent/328",[271,3.766,274,3.93]],["name/329",[279,65.638]],["parent/329",[271,3.766,274,3.93]],["name/330",[280,65.638]],["parent/330",[271,3.766,274,3.93]],["name/331",[281,65.638]],["parent/331",[271,3.766,274,3.93]],["name/332",[282,65.638]],["parent/332",[271,3.766,274,3.93]],["name/333",[283,36.293,284,43.31]],["parent/333",[]],["name/334",[285,60.406]],["parent/334",[283,4.257,284,5.08]],["name/335",[2,24.97]],["parent/335",[283,4.257,286,4.574]],["name/336",[287,65.638]],["parent/336",[283,4.257,286,4.574]],["name/337",[288,65.638]],["parent/337",[283,4.257,286,4.574]],["name/338",[289,65.638]],["parent/338",[283,4.257,286,4.574]],["name/339",[290,46.731]],["parent/339",[]],["name/340",[291,60.406]],["parent/340",[]],["name/341",[292,60.406]],["parent/341",[291,6.733]],["name/342",[2,24.97]],["parent/342",[293,5.833]],["name/343",[294,65.638]],["parent/343",[293,5.833]],["name/344",[295,65.638]],["parent/344",[293,5.833]],["name/345",[296,65.638]],["parent/345",[293,5.833]],["name/346",[297,65.638]],["parent/346",[293,5.833]],["name/347",[298,60.406]],["parent/347",[]],["name/348",[254,56.959]],["parent/348",[298,6.733]],["name/349",[2,24.97]],["parent/349",[299,5.094]],["name/350",[300,65.638]],["parent/350",[299,5.094]],["name/351",[301,65.638]],["parent/351",[299,5.094]],["name/352",[302,65.638]],["parent/352",[299,5.094]],["name/353",[303,65.638]],["parent/353",[299,5.094]],["name/354",[304,65.638]],["parent/354",[299,5.094]],["name/355",[305,65.638]],["parent/355",[299,5.094]],["name/356",[306,65.638]],["parent/356",[299,5.094]],["name/357",[307,65.638]],["parent/357",[299,5.094]],["name/358",[308,65.638]],["parent/358",[299,5.094]],["name/359",[309,60.406]],["parent/359",[]],["name/360",[310,65.638]],["parent/360",[309,6.733]],["name/361",[2,24.97]],["parent/361",[311,5.642]],["name/362",[312,60.406]],["parent/362",[311,5.642]],["name/363",[313,65.638]],["parent/363",[311,5.642]],["name/364",[13,49.152]],["parent/364",[311,5.642]],["name/365",[314,65.638]],["parent/365",[311,5.642]],["name/366",[315,65.638]],["parent/366",[311,5.642]],["name/367",[316,60.406]],["parent/367",[]],["name/368",[317,60.406]],["parent/368",[316,6.733]],["name/369",[2,24.97]],["parent/369",[318,5.479]],["name/370",[13,49.152]],["parent/370",[318,5.479]],["name/371",[14,56.959]],["parent/371",[318,5.479]],["name/372",[319,65.638]],["parent/372",[318,5.479]],["name/373",[320,65.638]],["parent/373",[318,5.479]],["name/374",[321,65.638]],["parent/374",[318,5.479]],["name/375",[322,65.638]],["parent/375",[318,5.479]],["name/376",[323,60.406]],["parent/376",[]],["name/377",[324,60.406]],["parent/377",[323,6.733]],["name/378",[2,24.97]],["parent/378",[325,4.65]],["name/379",[326,56.959]],["parent/379",[325,4.65]],["name/380",[327,65.638]],["parent/380",[325,4.65]],["name/381",[328,65.638]],["parent/381",[325,4.65]],["name/382",[329,65.638]],["parent/382",[325,4.65]],["name/383",[312,60.406]],["parent/383",[325,4.65]],["name/384",[13,49.152]],["parent/384",[325,4.65]],["name/385",[330,60.406]],["parent/385",[325,4.65]],["name/386",[331,65.638]],["parent/386",[325,4.65]],["name/387",[332,60.406]],["parent/387",[325,4.65]],["name/388",[333,60.406]],["parent/388",[325,4.65]],["name/389",[334,65.638]],["parent/389",[325,4.65]],["name/390",[335,65.638]],["parent/390",[325,4.65]],["name/391",[336,65.638]],["parent/391",[325,4.65]],["name/392",[337,65.638]],["parent/392",[325,4.65]],["name/393",[338,60.406]],["parent/393",[]],["name/394",[339,60.406]],["parent/394",[338,6.733]],["name/395",[2,24.97]],["parent/395",[340,3.804]],["name/396",[341,65.638]],["parent/396",[340,3.804]],["name/397",[253,60.406]],["parent/397",[340,3.804]],["name/398",[239,47.87]],["parent/398",[340,3.804]],["name/399",[13,49.152]],["parent/399",[340,3.804]],["name/400",[342,56.959]],["parent/400",[340,3.804]],["name/401",[343,65.638]],["parent/401",[340,3.804]],["name/402",[344,65.638]],["parent/402",[340,3.804]],["name/403",[345,56.959]],["parent/403",[340,3.804]],["name/404",[346,65.638]],["parent/404",[340,3.804]],["name/405",[347,65.638]],["parent/405",[340,3.804]],["name/406",[348,60.406]],["parent/406",[340,3.804]],["name/407",[349,65.638]],["parent/407",[340,3.804]],["name/408",[350,65.638]],["parent/408",[340,3.804]],["name/409",[351,65.638]],["parent/409",[340,3.804]],["name/410",[352,65.638]],["parent/410",[340,3.804]],["name/411",[353,65.638]],["parent/411",[340,3.804]],["name/412",[354,60.406]],["parent/412",[340,3.804]],["name/413",[355,56.959]],["parent/413",[340,3.804]],["name/414",[356,65.638]],["parent/414",[340,3.804]],["name/415",[357,65.638]],["parent/415",[340,3.804]],["name/416",[358,65.638]],["parent/416",[340,3.804]],["name/417",[359,65.638]],["parent/417",[340,3.804]],["name/418",[360,65.638]],["parent/418",[340,3.804]],["name/419",[361,65.638]],["parent/419",[340,3.804]],["name/420",[362,65.638]],["parent/420",[340,3.804]],["name/421",[363,65.638]],["parent/421",[340,3.804]],["name/422",[364,65.638]],["parent/422",[340,3.804]],["name/423",[365,65.638]],["parent/423",[340,3.804]],["name/424",[366,65.638]],["parent/424",[340,3.804]],["name/425",[367,65.638]],["parent/425",[340,3.804]],["name/426",[368,65.638]],["parent/426",[340,3.804]],["name/427",[369,40.839,370,29.451]],["parent/427",[]],["name/428",[371,65.638]],["parent/428",[369,4.79,370,3.455]],["name/429",[2,24.97]],["parent/429",[369,4.79,372,5.52]],["name/430",[373,60.406]],["parent/430",[]],["name/431",[374,65.638]],["parent/431",[373,6.733]],["name/432",[2,24.97]],["parent/432",[375,5.336]],["name/433",[376,65.638]],["parent/433",[375,5.336]],["name/434",[275,60.406]],["parent/434",[375,5.336]],["name/435",[276,60.406]],["parent/435",[375,5.336]],["name/436",[377,65.638]],["parent/436",[375,5.336]],["name/437",[378,65.638]],["parent/437",[375,5.336]],["name/438",[379,65.638]],["parent/438",[375,5.336]],["name/439",[380,65.638]],["parent/439",[375,5.336]],["name/440",[381,60.406]],["parent/440",[]],["name/441",[382,65.638]],["parent/441",[381,6.733]],["name/442",[2,24.97]],["parent/442",[383,7.316]],["name/443",[384,65.638]],["parent/443",[]],["name/444",[385,36.293,386,38.993]],["parent/444",[]],["name/445",[387,65.638]],["parent/445",[385,4.257,386,4.574]],["name/446",[2,24.97]],["parent/446",[385,4.257,388,4.574]],["name/447",[128,54.385]],["parent/447",[385,4.257,388,4.574]],["name/448",[389,65.638]],["parent/448",[385,4.257,388,4.574]],["name/449",[390,65.638]],["parent/449",[385,4.257,388,4.574]],["name/450",[370,29.451,391,40.839]],["parent/450",[]],["name/451",[392,65.638]],["parent/451",[370,3.455,391,4.79]],["name/452",[2,24.97]],["parent/452",[391,4.79,393,5.52]],["name/453",[394,60.406]],["parent/453",[]],["name/454",[395,65.638]],["parent/454",[394,6.733]],["name/455",[2,24.97]],["parent/455",[396,4.991]],["name/456",[397,65.638]],["parent/456",[396,4.991]],["name/457",[398,54.385]],["parent/457",[396,4.991]],["name/458",[399,65.638]],["parent/458",[396,4.991]],["name/459",[36,49.152]],["parent/459",[396,4.991]],["name/460",[400,41.716]],["parent/460",[396,4.991]],["name/461",[401,65.638]],["parent/461",[396,4.991]],["name/462",[402,56.959]],["parent/462",[396,4.991]],["name/463",[265,60.406]],["parent/463",[396,4.991]],["name/464",[403,65.638]],["parent/464",[396,4.991]],["name/465",[404,65.638]],["parent/465",[396,4.991]],["name/466",[405,60.406]],["parent/466",[]],["name/467",[406,65.638]],["parent/467",[405,6.733]],["name/468",[2,24.97]],["parent/468",[407,7.316]],["name/469",[408,15.063,409,17.148,410,28.287]],["parent/469",[]],["name/470",[411,65.638]],["parent/470",[408,1.82,409,2.072,410,3.418]],["name/471",[2,24.97]],["parent/471",[408,1.82,409,2.072,412,2.103]],["name/472",[413,65.638]],["parent/472",[408,1.82,409,2.072,412,2.103]],["name/473",[414,65.638]],["parent/473",[408,1.82,409,2.072,412,2.103]],["name/474",[415,65.638]],["parent/474",[408,1.82,409,2.072,412,2.103]],["name/475",[416,65.638]],["parent/475",[408,1.82,409,2.072,412,2.103]],["name/476",[417,65.638]],["parent/476",[408,1.82,409,2.072,412,2.103]],["name/477",[418,65.638]],["parent/477",[408,1.82,409,2.072,412,2.103]],["name/478",[419,65.638]],["parent/478",[408,1.82,409,2.072,412,2.103]],["name/479",[420,65.638]],["parent/479",[408,1.82,409,2.072,412,2.103]],["name/480",[421,65.638]],["parent/480",[408,1.82,409,2.072,412,2.103]],["name/481",[422,65.638]],["parent/481",[408,1.82,409,2.072,412,2.103]],["name/482",[423,65.638]],["parent/482",[408,1.82,409,2.072,412,2.103]],["name/483",[424,65.638]],["parent/483",[408,1.82,409,2.072,412,2.103]],["name/484",[425,65.638]],["parent/484",[408,1.82,409,2.072,412,2.103]],["name/485",[426,65.638]],["parent/485",[408,1.82,409,2.072,412,2.103]],["name/486",[427,65.638]],["parent/486",[408,1.82,409,2.072,412,2.103]],["name/487",[428,65.638]],["parent/487",[408,1.82,409,2.072,412,2.103]],["name/488",[342,56.959]],["parent/488",[408,1.82,409,2.072,412,2.103]],["name/489",[429,60.406]],["parent/489",[408,1.82,409,2.072,412,2.103]],["name/490",[430,60.406]],["parent/490",[408,1.82,409,2.072,412,2.103]],["name/491",[431,60.406]],["parent/491",[408,1.82,409,2.072,412,2.103]],["name/492",[432,65.638]],["parent/492",[408,1.82,409,2.072,412,2.103]],["name/493",[192,52.329]],["parent/493",[408,1.82,409,2.072,412,2.103]],["name/494",[326,56.959]],["parent/494",[408,1.82,409,2.072,412,2.103]],["name/495",[433,60.406]],["parent/495",[408,1.82,409,2.072,412,2.103]],["name/496",[434,56.959]],["parent/496",[408,1.82,409,2.072,412,2.103]],["name/497",[435,60.406]],["parent/497",[408,1.82,409,2.072,412,2.103]],["name/498",[436,60.406]],["parent/498",[408,1.82,409,2.072,412,2.103]],["name/499",[36,49.152]],["parent/499",[408,1.82,409,2.072,412,2.103]],["name/500",[398,54.385]],["parent/500",[408,1.82,409,2.072,412,2.103]],["name/501",[437,65.638]],["parent/501",[408,1.82,409,2.072,412,2.103]],["name/502",[400,41.716]],["parent/502",[408,1.82,409,2.072,412,2.103]],["name/503",[438,65.638]],["parent/503",[408,1.82,409,2.072,412,2.103]],["name/504",[439,65.638]],["parent/504",[408,1.82,409,2.072,412,2.103]],["name/505",[440,60.406]],["parent/505",[408,1.82,409,2.072,412,2.103]],["name/506",[441,60.406]],["parent/506",[408,1.82,409,2.072,412,2.103]],["name/507",[442,65.638]],["parent/507",[408,1.82,409,2.072,412,2.103]],["name/508",[443,65.638]],["parent/508",[408,1.82,409,2.072,412,2.103]],["name/509",[444,60.406]],["parent/509",[408,1.82,409,2.072,412,2.103]],["name/510",[445,60.406]],["parent/510",[408,1.82,409,2.072,412,2.103]],["name/511",[348,60.406]],["parent/511",[408,1.82,409,2.072,412,2.103]],["name/512",[446,50.618]],["parent/512",[408,1.82,409,2.072,412,2.103]],["name/513",[447,60.406]],["parent/513",[408,1.82,409,2.072,412,2.103]],["name/514",[408,15.063,448,21.712,449,33.757]],["parent/514",[]],["name/515",[450,65.638]],["parent/515",[408,1.82,448,2.624,449,4.079]],["name/516",[2,24.97]],["parent/516",[408,1.82,448,2.624,451,2.695]],["name/517",[452,65.638]],["parent/517",[408,1.82,448,2.624,451,2.695]],["name/518",[453,65.638]],["parent/518",[408,1.82,448,2.624,451,2.695]],["name/519",[454,65.638]],["parent/519",[408,1.82,448,2.624,451,2.695]],["name/520",[455,65.638]],["parent/520",[408,1.82,448,2.624,451,2.695]],["name/521",[456,65.638]],["parent/521",[408,1.82,448,2.624,451,2.695]],["name/522",[457,65.638]],["parent/522",[408,1.82,448,2.624,451,2.695]],["name/523",[458,65.638]],["parent/523",[408,1.82,448,2.624,451,2.695]],["name/524",[459,65.638]],["parent/524",[408,1.82,448,2.624,451,2.695]],["name/525",[460,65.638]],["parent/525",[408,1.82,448,2.624,451,2.695]],["name/526",[36,49.152]],["parent/526",[408,1.82,448,2.624,451,2.695]],["name/527",[400,41.716]],["parent/527",[408,1.82,448,2.624,451,2.695]],["name/528",[461,65.638]],["parent/528",[408,1.82,448,2.624,451,2.695]],["name/529",[462,65.638]],["parent/529",[408,1.82,448,2.624,451,2.695]],["name/530",[463,65.638]],["parent/530",[408,1.82,448,2.624,451,2.695]],["name/531",[464,65.638]],["parent/531",[408,1.82,448,2.624,451,2.695]],["name/532",[465,65.638]],["parent/532",[408,1.82,448,2.624,451,2.695]],["name/533",[466,65.638]],["parent/533",[408,1.82,448,2.624,451,2.695]],["name/534",[370,29.451,467,40.839]],["parent/534",[]],["name/535",[468,65.638]],["parent/535",[370,3.455,467,4.79]],["name/536",[2,24.97]],["parent/536",[467,4.79,469,5.52]],["name/537",[470,60.406]],["parent/537",[]],["name/538",[471,65.638]],["parent/538",[470,6.733]],["name/539",[2,24.97]],["parent/539",[472,4.578]],["name/540",[473,54.385]],["parent/540",[472,4.578]],["name/541",[342,56.959]],["parent/541",[472,4.578]],["name/542",[474,56.959]],["parent/542",[472,4.578]],["name/543",[475,60.406]],["parent/543",[472,4.578]],["name/544",[476,60.406]],["parent/544",[472,4.578]],["name/545",[429,60.406]],["parent/545",[472,4.578]],["name/546",[434,56.959]],["parent/546",[472,4.578]],["name/547",[477,52.329]],["parent/547",[472,4.578]],["name/548",[478,52.329]],["parent/548",[472,4.578]],["name/549",[400,41.716]],["parent/549",[472,4.578]],["name/550",[479,52.329]],["parent/550",[472,4.578]],["name/551",[441,60.406]],["parent/551",[472,4.578]],["name/552",[444,60.406]],["parent/552",[472,4.578]],["name/553",[480,65.638]],["parent/553",[472,4.578]],["name/554",[446,50.618]],["parent/554",[472,4.578]],["name/555",[481,60.406]],["parent/555",[]],["name/556",[482,65.638]],["parent/556",[481,6.733]],["name/557",[2,24.97]],["parent/557",[483,7.316]],["name/558",[484,24.103,485,24.103,486,33.757]],["parent/558",[]],["name/559",[487,65.638]],["parent/559",[484,2.912,485,2.912,486,4.079]],["name/560",[2,24.97]],["parent/560",[484,2.912,485,2.912,488,3.023]],["name/561",[489,65.638]],["parent/561",[484,2.912,485,2.912,488,3.023]],["name/562",[36,49.152]],["parent/562",[484,2.912,485,2.912,488,3.023]],["name/563",[398,54.385]],["parent/563",[484,2.912,485,2.912,488,3.023]],["name/564",[430,60.406]],["parent/564",[484,2.912,485,2.912,488,3.023]],["name/565",[431,60.406]],["parent/565",[484,2.912,485,2.912,488,3.023]],["name/566",[434,56.959]],["parent/566",[484,2.912,485,2.912,488,3.023]],["name/567",[436,60.406]],["parent/567",[484,2.912,485,2.912,488,3.023]],["name/568",[400,41.716]],["parent/568",[484,2.912,485,2.912,488,3.023]],["name/569",[490,65.638]],["parent/569",[484,2.912,485,2.912,488,3.023]],["name/570",[402,56.959]],["parent/570",[484,2.912,485,2.912,488,3.023]],["name/571",[370,29.451,491,40.839]],["parent/571",[]],["name/572",[492,65.638]],["parent/572",[370,3.455,491,4.79]],["name/573",[2,24.97]],["parent/573",[491,4.79,493,5.52]],["name/574",[494,60.406]],["parent/574",[]],["name/575",[495,65.638]],["parent/575",[494,6.733]],["name/576",[2,24.97]],["parent/576",[496,4.726]],["name/577",[473,54.385]],["parent/577",[496,4.726]],["name/578",[474,56.959]],["parent/578",[496,4.726]],["name/579",[135,54.385]],["parent/579",[496,4.726]],["name/580",[345,56.959]],["parent/580",[496,4.726]],["name/581",[477,52.329]],["parent/581",[496,4.726]],["name/582",[478,52.329]],["parent/582",[496,4.726]],["name/583",[400,41.716]],["parent/583",[496,4.726]],["name/584",[479,52.329]],["parent/584",[496,4.726]],["name/585",[497,65.638]],["parent/585",[496,4.726]],["name/586",[355,56.959]],["parent/586",[496,4.726]],["name/587",[498,65.638]],["parent/587",[496,4.726]],["name/588",[499,65.638]],["parent/588",[496,4.726]],["name/589",[446,50.618]],["parent/589",[496,4.726]],["name/590",[500,60.406]],["parent/590",[]],["name/591",[501,65.638]],["parent/591",[500,6.733]],["name/592",[2,24.97]],["parent/592",[502,7.316]],["name/593",[370,29.451,503,40.839]],["parent/593",[]],["name/594",[504,65.638]],["parent/594",[370,3.455,503,4.79]],["name/595",[2,24.97]],["parent/595",[503,4.79,505,5.52]],["name/596",[506,60.406]],["parent/596",[]],["name/597",[507,65.638]],["parent/597",[506,6.733]],["name/598",[2,24.97]],["parent/598",[508,6.733]],["name/599",[509,65.638]],["parent/599",[508,6.733]],["name/600",[510,60.406]],["parent/600",[]],["name/601",[511,65.638]],["parent/601",[510,6.733]],["name/602",[2,24.97]],["parent/602",[512,7.316]],["name/603",[513,60.406]],["parent/603",[]],["name/604",[514,65.638]],["parent/604",[513,6.733]],["name/605",[2,24.97]],["parent/605",[515,5.479]],["name/606",[516,65.638]],["parent/606",[515,5.479]],["name/607",[398,54.385]],["parent/607",[515,5.479]],["name/608",[36,49.152]],["parent/608",[515,5.479]],["name/609",[400,41.716]],["parent/609",[515,5.479]],["name/610",[517,65.638]],["parent/610",[515,5.479]],["name/611",[402,56.959]],["parent/611",[515,5.479]],["name/612",[370,29.451,518,40.839]],["parent/612",[]],["name/613",[519,65.638]],["parent/613",[370,3.455,518,4.79]],["name/614",[2,24.97]],["parent/614",[518,4.79,520,5.52]],["name/615",[521,60.406]],["parent/615",[]],["name/616",[522,65.638]],["parent/616",[521,6.733]],["name/617",[2,24.97]],["parent/617",[523,4.991]],["name/618",[524,65.638]],["parent/618",[523,4.991]],["name/619",[473,54.385]],["parent/619",[523,4.991]],["name/620",[474,56.959]],["parent/620",[523,4.991]],["name/621",[525,65.638]],["parent/621",[523,4.991]],["name/622",[477,52.329]],["parent/622",[523,4.991]],["name/623",[478,52.329]],["parent/623",[523,4.991]],["name/624",[400,41.716]],["parent/624",[523,4.991]],["name/625",[479,52.329]],["parent/625",[523,4.991]],["name/626",[446,50.618]],["parent/626",[523,4.991]],["name/627",[269,60.406]],["parent/627",[523,4.991]],["name/628",[526,60.406]],["parent/628",[]],["name/629",[527,65.638]],["parent/629",[526,6.733]],["name/630",[2,24.97]],["parent/630",[528,7.316]],["name/631",[410,28.287,529,29.243,530,29.243]],["parent/631",[]],["name/632",[531,65.638]],["parent/632",[410,3.418,529,3.534,530,3.534]],["name/633",[2,24.97]],["parent/633",[529,3.534,530,3.534,532,3.846]],["name/634",[162,54.385]],["parent/634",[529,3.534,530,3.534,532,3.846]],["name/635",[400,41.716]],["parent/635",[529,3.534,530,3.534,532,3.846]],["name/636",[370,29.451,533,40.839]],["parent/636",[]],["name/637",[534,65.638]],["parent/637",[370,3.455,533,4.79]],["name/638",[2,24.97]],["parent/638",[533,4.79,535,5.52]],["name/639",[536,60.406]],["parent/639",[]],["name/640",[537,65.638]],["parent/640",[536,6.733]],["name/641",[2,24.97]],["parent/641",[538,5.094]],["name/642",[473,54.385]],["parent/642",[538,5.094]],["name/643",[539,65.638]],["parent/643",[538,5.094]],["name/644",[477,52.329]],["parent/644",[538,5.094]],["name/645",[478,52.329]],["parent/645",[538,5.094]],["name/646",[540,65.638]],["parent/646",[538,5.094]],["name/647",[400,41.716]],["parent/647",[538,5.094]],["name/648",[479,52.329]],["parent/648",[538,5.094]],["name/649",[541,65.638]],["parent/649",[538,5.094]],["name/650",[446,50.618]],["parent/650",[538,5.094]],["name/651",[542,60.406]],["parent/651",[]],["name/652",[543,65.638]],["parent/652",[542,6.733]],["name/653",[2,24.97]],["parent/653",[544,7.316]],["name/654",[410,28.287,545,24.103,546,24.103]],["parent/654",[]],["name/655",[547,65.638]],["parent/655",[410,3.418,545,2.912,546,2.912]],["name/656",[2,24.97]],["parent/656",[545,2.912,546,2.912,548,3.023]],["name/657",[192,52.329]],["parent/657",[545,2.912,546,2.912,548,3.023]],["name/658",[549,65.638]],["parent/658",[545,2.912,546,2.912,548,3.023]],["name/659",[550,65.638]],["parent/659",[545,2.912,546,2.912,548,3.023]],["name/660",[551,65.638]],["parent/660",[545,2.912,546,2.912,548,3.023]],["name/661",[400,41.716]],["parent/661",[545,2.912,546,2.912,548,3.023]],["name/662",[552,65.638]],["parent/662",[545,2.912,546,2.912,548,3.023]],["name/663",[553,65.638]],["parent/663",[545,2.912,546,2.912,548,3.023]],["name/664",[554,65.638]],["parent/664",[545,2.912,546,2.912,548,3.023]],["name/665",[555,65.638]],["parent/665",[545,2.912,546,2.912,548,3.023]],["name/666",[447,60.406]],["parent/666",[545,2.912,546,2.912,548,3.023]],["name/667",[370,29.451,556,40.839]],["parent/667",[]],["name/668",[557,65.638]],["parent/668",[370,3.455,556,4.79]],["name/669",[2,24.97]],["parent/669",[556,4.79,558,5.52]],["name/670",[559,60.406]],["parent/670",[]],["name/671",[560,65.638]],["parent/671",[559,6.733]],["name/672",[2,24.97]],["parent/672",[561,4.511]],["name/673",[562,65.638]],["parent/673",[561,4.511]],["name/674",[563,65.638]],["parent/674",[561,4.511]],["name/675",[475,60.406]],["parent/675",[561,4.511]],["name/676",[476,60.406]],["parent/676",[561,4.511]],["name/677",[326,56.959]],["parent/677",[561,4.511]],["name/678",[192,52.329]],["parent/678",[561,4.511]],["name/679",[433,60.406]],["parent/679",[561,4.511]],["name/680",[435,60.406]],["parent/680",[561,4.511]],["name/681",[477,52.329]],["parent/681",[561,4.511]],["name/682",[478,52.329]],["parent/682",[561,4.511]],["name/683",[400,41.716]],["parent/683",[561,4.511]],["name/684",[440,60.406]],["parent/684",[561,4.511]],["name/685",[479,52.329]],["parent/685",[561,4.511]],["name/686",[445,60.406]],["parent/686",[561,4.511]],["name/687",[564,65.638]],["parent/687",[561,4.511]],["name/688",[446,50.618]],["parent/688",[561,4.511]],["name/689",[565,60.406]],["parent/689",[]],["name/690",[566,65.638]],["parent/690",[565,6.733]],["name/691",[2,24.97]],["parent/691",[567,7.316]],["name/692",[568,34.322,569,43.31]],["parent/692",[]],["name/693",[570,65.638]],["parent/693",[568,4.026,569,5.08]],["name/694",[2,24.97]],["parent/694",[568,4.026,571,5.08]],["name/695",[572,65.638]],["parent/695",[568,4.026,571,5.08]],["name/696",[386,38.993,568,34.322]],["parent/696",[]],["name/697",[573,65.638]],["parent/697",[386,4.574,568,4.026]],["name/698",[2,24.97]],["parent/698",[568,4.026,574,5.08]],["name/699",[575,65.638]],["parent/699",[568,4.026,574,5.08]],["name/700",[576,60.406]],["parent/700",[]],["name/701",[577,65.638]],["parent/701",[576,6.733]],["name/702",[2,24.97]],["parent/702",[578,6.733]],["name/703",[579,60.406]],["parent/703",[578,6.733]],["name/704",[580,38.993,581,43.31]],["parent/704",[]],["name/705",[582,65.638]],["parent/705",[580,4.574,581,5.08]],["name/706",[2,24.97]],["parent/706",[580,4.574,583,5.08]],["name/707",[579,60.406]],["parent/707",[580,4.574,583,5.08]],["name/708",[584,30.392,585,30.392,586,33.757]],["parent/708",[]],["name/709",[587,65.638]],["parent/709",[584,3.672,585,3.672,586,4.079]],["name/710",[2,24.97]],["parent/710",[584,3.672,585,3.672,588,4.079]],["name/711",[123,52.329]],["parent/711",[584,3.672,585,3.672,588,4.079]],["name/712",[589,60.406]],["parent/712",[]],["name/713",[590,65.638]],["parent/713",[589,6.733]],["name/714",[2,24.97]],["parent/714",[591,6.733]],["name/715",[400,41.716]],["parent/715",[591,6.733]],["name/716",[592,60.406]],["parent/716",[]],["name/717",[593,65.638]],["parent/717",[592,6.733]],["name/718",[2,24.97]],["parent/718",[594,7.316]],["name/719",[595,60.406]],["parent/719",[]],["name/720",[596,65.638]],["parent/720",[595,6.733]],["name/721",[2,24.97]],["parent/721",[597,6.733]],["name/722",[400,41.716]],["parent/722",[597,6.733]],["name/723",[598,60.406]],["parent/723",[]],["name/724",[599,65.638]],["parent/724",[598,6.733]],["name/725",[2,24.97]],["parent/725",[600,6.733]],["name/726",[400,41.716]],["parent/726",[600,6.733]],["name/727",[601,52.329]],["parent/727",[]],["name/728",[602,65.638]],["parent/728",[601,5.833]],["name/729",[603,65.638]],["parent/729",[601,5.833]],["name/730",[604,65.638]],["parent/730",[601,5.833]],["name/731",[605,65.638]],["parent/731",[601,5.833]],["name/732",[606,60.406]],["parent/732",[]],["name/733",[607,52.329]],["parent/733",[]],["name/734",[185,50.618]],["parent/734",[607,5.833]],["name/735",[2,24.97]],["parent/735",[608,4.175]],["name/736",[609,65.638]],["parent/736",[608,4.175]],["name/737",[610,65.638]],["parent/737",[608,4.175]],["name/738",[611,65.638]],["parent/738",[608,4.175]],["name/739",[196,60.406]],["parent/739",[608,4.175]],["name/740",[198,60.406]],["parent/740",[608,4.175]],["name/741",[123,52.329]],["parent/741",[608,4.175]],["name/742",[612,65.638]],["parent/742",[608,4.175]],["name/743",[613,65.638]],["parent/743",[608,4.175]],["name/744",[614,65.638]],["parent/744",[608,4.175]],["name/745",[615,65.638]],["parent/745",[608,4.175]],["name/746",[616,65.638]],["parent/746",[608,4.175]],["name/747",[617,65.638]],["parent/747",[608,4.175]],["name/748",[618,65.638]],["parent/748",[608,4.175]],["name/749",[619,65.638]],["parent/749",[608,4.175]],["name/750",[620,65.638]],["parent/750",[608,4.175]],["name/751",[621,65.638]],["parent/751",[608,4.175]],["name/752",[622,65.638]],["parent/752",[608,4.175]],["name/753",[623,65.638]],["parent/753",[608,4.175]],["name/754",[624,65.638]],["parent/754",[608,4.175]],["name/755",[625,65.638]],["parent/755",[608,4.175]],["name/756",[626,65.638]],["parent/756",[608,4.175]],["name/757",[627,65.638]],["parent/757",[608,4.175]],["name/758",[628,65.638]],["parent/758",[607,5.833]],["name/759",[629,65.638]],["parent/759",[607,5.833]],["name/760",[204,60.406]],["parent/760",[607,5.833]],["name/761",[630,60.406]],["parent/761",[]],["name/762",[631,56.959]],["parent/762",[630,6.733]],["name/763",[51,42.4]],["parent/763",[632,7.316]],["name/764",[633,56.959]],["parent/764",[634,4.895]],["name/765",[635,56.959]],["parent/765",[634,4.895]],["name/766",[636,56.959]],["parent/766",[634,4.895]],["name/767",[637,56.959]],["parent/767",[634,4.895]],["name/768",[638,56.959]],["parent/768",[634,4.895]],["name/769",[639,56.959]],["parent/769",[634,4.895]],["name/770",[640,56.959]],["parent/770",[634,4.895]],["name/771",[641,56.959]],["parent/771",[634,4.895]],["name/772",[642,56.959]],["parent/772",[634,4.895]],["name/773",[643,56.959]],["parent/773",[634,4.895]],["name/774",[644,56.959]],["parent/774",[634,4.895]],["name/775",[645,56.959]],["parent/775",[634,4.895]],["name/776",[646,60.406]],["parent/776",[]],["name/777",[631,56.959]],["parent/777",[646,6.733]],["name/778",[51,42.4]],["parent/778",[647,7.316]],["name/779",[633,56.959]],["parent/779",[648,4.895]],["name/780",[635,56.959]],["parent/780",[648,4.895]],["name/781",[636,56.959]],["parent/781",[648,4.895]],["name/782",[637,56.959]],["parent/782",[648,4.895]],["name/783",[638,56.959]],["parent/783",[648,4.895]],["name/784",[639,56.959]],["parent/784",[648,4.895]],["name/785",[640,56.959]],["parent/785",[648,4.895]],["name/786",[641,56.959]],["parent/786",[648,4.895]],["name/787",[642,56.959]],["parent/787",[648,4.895]],["name/788",[643,56.959]],["parent/788",[648,4.895]],["name/789",[644,56.959]],["parent/789",[648,4.895]],["name/790",[645,56.959]],["parent/790",[648,4.895]],["name/791",[649,60.406]],["parent/791",[]],["name/792",[631,56.959]],["parent/792",[649,6.733]],["name/793",[51,42.4]],["parent/793",[650,7.316]],["name/794",[633,56.959]],["parent/794",[651,4.895]],["name/795",[635,56.959]],["parent/795",[651,4.895]],["name/796",[636,56.959]],["parent/796",[651,4.895]],["name/797",[637,56.959]],["parent/797",[651,4.895]],["name/798",[638,56.959]],["parent/798",[651,4.895]],["name/799",[639,56.959]],["parent/799",[651,4.895]],["name/800",[640,56.959]],["parent/800",[651,4.895]],["name/801",[641,56.959]],["parent/801",[651,4.895]],["name/802",[642,56.959]],["parent/802",[651,4.895]],["name/803",[643,56.959]],["parent/803",[651,4.895]],["name/804",[644,56.959]],["parent/804",[651,4.895]],["name/805",[645,56.959]],["parent/805",[651,4.895]],["name/806",[652,65.638]],["parent/806",[]],["name/807",[653,65.638]],["parent/807",[]],["name/808",[654,65.638]],["parent/808",[]],["name/809",[655,28.287,656,28.287,657,23.694]],["parent/809",[]],["name/810",[658,60.406]],["parent/810",[655,3.418,656,3.418,657,2.863]],["name/811",[2,24.97]],["parent/811",[655,3.418,656,3.418,659,3.672]],["name/812",[660,65.638]],["parent/812",[655,3.418,656,3.418,659,3.672]],["name/813",[661,65.638]],["parent/813",[655,3.418,656,3.418,659,3.672]],["name/814",[662,65.638]],["parent/814",[655,3.418,656,3.418,659,3.672]],["name/815",[663,46.731]],["parent/815",[]],["name/816",[657,19.412,664,23.175,665,23.175,666,23.175]],["parent/816",[]],["name/817",[667,60.406]],["parent/817",[657,2.392,664,2.855,665,2.855,666,2.855]],["name/818",[2,24.97]],["parent/818",[664,2.855,665,2.855,666,2.855,668,3.068]],["name/819",[669,65.638]],["parent/819",[664,2.855,665,2.855,666,2.855,668,3.068]],["name/820",[670,65.638]],["parent/820",[664,2.855,665,2.855,666,2.855,668,3.068]],["name/821",[671,65.638]],["parent/821",[664,2.855,665,2.855,666,2.855,668,3.068]],["name/822",[657,23.694,672,27.468,673,27.468]],["parent/822",[]],["name/823",[674,60.406]],["parent/823",[657,2.863,672,3.319,673,3.319]],["name/824",[2,24.97]],["parent/824",[672,3.319,673,3.319,675,4.432]],["name/825",[676,60.406]],["parent/825",[657,2.863,672,3.319,673,3.319]],["name/826",[2,24.97]],["parent/826",[672,3.319,673,3.319,677,4.432]],["name/827",[678,60.406]],["parent/827",[657,2.863,672,3.319,673,3.319]],["name/828",[2,24.97]],["parent/828",[672,3.319,673,3.319,679,4.432]],["name/829",[657,23.694,680,30.392,681,21.998]],["parent/829",[]],["name/830",[682,60.406]],["parent/830",[657,2.863,680,3.672,681,2.658]],["name/831",[2,24.97]],["parent/831",[680,3.672,681,2.658,683,4.079]],["name/832",[684,65.638]],["parent/832",[680,3.672,681,2.658,683,4.079]],["name/833",[657,23.694,681,21.998,685,28.287]],["parent/833",[]],["name/834",[686,60.406]],["parent/834",[657,2.863,681,2.658,685,3.418]],["name/835",[2,24.97]],["parent/835",[681,2.658,685,3.418,687,3.672]],["name/836",[332,60.406]],["parent/836",[681,2.658,685,3.418,687,3.672]],["name/837",[333,60.406]],["parent/837",[681,2.658,685,3.418,687,3.672]],["name/838",[330,60.406]],["parent/838",[681,2.658,685,3.418,687,3.672]],["name/839",[657,23.694,681,21.998,688,26.115]],["parent/839",[]],["name/840",[689,60.406]],["parent/840",[657,2.863,681,2.658,688,3.156]],["name/841",[2,24.97]],["parent/841",[681,2.658,688,3.156,690,3.319]],["name/842",[691,65.638]],["parent/842",[681,2.658,688,3.156,690,3.319]],["name/843",[345,56.959]],["parent/843",[681,2.658,688,3.156,690,3.319]],["name/844",[692,65.638]],["parent/844",[681,2.658,688,3.156,690,3.319]],["name/845",[693,65.638]],["parent/845",[681,2.658,688,3.156,690,3.319]],["name/846",[354,60.406]],["parent/846",[681,2.658,688,3.156,690,3.319]],["name/847",[355,56.959]],["parent/847",[681,2.658,688,3.156,690,3.319]],["name/848",[1,60.406]],["parent/848",[11,6.349]],["name/849",[14,56.959]],["parent/849",[11,6.349]],["name/850",[20,60.406]],["parent/850",[23,6.349]],["name/851",[25,60.406]],["parent/851",[23,6.349]],["name/852",[41,60.406]],["parent/852",[63,4.726]],["name/853",[37,60.406]],["parent/853",[63,4.726]],["name/854",[66,60.406]],["parent/854",[63,4.726]],["name/855",[69,60.406]],["parent/855",[63,4.726]],["name/856",[29,60.406]],["parent/856",[63,4.726]],["name/857",[62,60.406]],["parent/857",[63,4.726]],["name/858",[50,60.406]],["parent/858",[63,4.726]],["name/859",[54,60.406]],["parent/859",[63,4.726]],["name/860",[47,60.406]],["parent/860",[63,4.726]],["name/861",[76,60.406]],["parent/861",[63,4.726]],["name/862",[32,60.406]],["parent/862",[63,4.726]],["name/863",[79,60.406]],["parent/863",[63,4.726]],["name/864",[80,60.406]],["parent/864",[63,4.726]],["name/865",[82,60.406]],["parent/865",[88,6.062]],["name/866",[86,60.406]],["parent/866",[88,6.062]],["name/867",[90,60.406]],["parent/867",[88,6.062]],["name/868",[176,60.406]],["parent/868",[133,4.388]],["name/869",[183,60.406]],["parent/869",[133,4.388]],["name/870",[185,50.618]],["parent/870",[133,4.388]],["name/871",[192,52.329]],["parent/871",[133,4.388]],["name/872",[199,60.406]],["parent/872",[133,4.388]],["name/873",[148,60.406]],["parent/873",[133,4.388]],["name/874",[150,56.959]],["parent/874",[133,4.388]],["name/875",[93,60.406]],["parent/875",[133,4.388]],["name/876",[120,50.618]],["parent/876",[133,4.388]],["name/877",[126,60.406]],["parent/877",[133,4.388]],["name/878",[129,60.406]],["parent/878",[133,4.388]],["name/879",[132,60.406]],["parent/879",[133,4.388]],["name/880",[156,60.406]],["parent/880",[133,4.388]],["name/881",[162,54.385]],["parent/881",[133,4.388]],["name/882",[135,54.385]],["parent/882",[133,4.388]],["name/883",[113,56.959]],["parent/883",[133,4.388]],["name/884",[142,60.406]],["parent/884",[133,4.388]],["name/885",[145,60.406]],["parent/885",[133,4.388]],["name/886",[210,60.406]],["parent/886",[206,5.479]],["name/887",[237,56.959]],["parent/887",[206,5.479]],["name/888",[240,60.406]],["parent/888",[206,5.479]],["name/889",[120,50.618]],["parent/889",[206,5.479]],["name/890",[239,47.87]],["parent/890",[206,5.479]],["name/891",[250,60.406]],["parent/891",[206,5.479]],["name/892",[256,60.406]],["parent/892",[290,5.209]],["name/893",[324,60.406]],["parent/893",[290,5.209]],["name/894",[339,60.406]],["parent/894",[290,5.209]],["name/895",[317,60.406]],["parent/895",[290,5.209]],["name/896",[273,60.406]],["parent/896",[290,5.209]],["name/897",[292,60.406]],["parent/897",[290,5.209]],["name/898",[254,56.959]],["parent/898",[290,5.209]],["name/899",[285,60.406]],["parent/899",[290,5.209]],["name/900",[185,50.618]],["parent/900",[606,6.733]],["name/901",[658,60.406]],["parent/901",[663,5.209]],["name/902",[667,60.406]],["parent/902",[663,5.209]],["name/903",[674,60.406]],["parent/903",[663,5.209]],["name/904",[676,60.406]],["parent/904",[663,5.209]],["name/905",[678,60.406]],["parent/905",[663,5.209]],["name/906",[689,60.406]],["parent/906",[663,5.209]],["name/907",[682,60.406]],["parent/907",[663,5.209]],["name/908",[686,60.406]],["parent/908",[663,5.209]]],"invertedIndex":[["0xa686005ce37dce7738436256982c3903f2e4ea8e",{"_index":169,"name":{"171":{}},"parent":{}}],["__type",{"_index":51,"name":{"46":{},"63":{},"93":{},"95":{},"101":{},"108":{},"170":{},"172":{},"275":{},"295":{},"297":{},"763":{},"778":{},"793":{}},"parent":{}}],["_outbuffer",{"_index":618,"name":{"748":{}},"parent":{}}],["_outbuffercursor",{"_index":619,"name":{"749":{}},"parent":{}}],["_signatureset",{"_index":616,"name":{"746":{}},"parent":{}}],["_workbuffer",{"_index":617,"name":{"747":{}},"parent":{}}],["account",{"_index":426,"name":{"485":{}},"parent":{}}],["account.component",{"_index":486,"name":{"558":{}},"parent":{"559":{}}}],["account.component.createaccountcomponent",{"_index":488,"name":{},"parent":{"560":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{}}}],["account/create",{"_index":485,"name":{"558":{}},"parent":{"559":{},"560":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{}}}],["accountaddress",{"_index":427,"name":{"486":{}},"parent":{}}],["accountdetails",{"_index":93,"name":{"86":{},"875":{}},"parent":{}}],["accountdetailscomponent",{"_index":411,"name":{"470":{}},"parent":{}}],["accountindex",{"_index":1,"name":{"1":{},"848":{}},"parent":{}}],["accountinfoform",{"_index":425,"name":{"484":{}},"parent":{}}],["accountinfoformstub",{"_index":442,"name":{"507":{}},"parent":{}}],["accounts",{"_index":342,"name":{"400":{},"488":{},"541":{}},"parent":{}}],["accountscomponent",{"_index":471,"name":{"538":{}},"parent":{}}],["accountsearchcomponent",{"_index":450,"name":{"515":{}},"parent":{}}],["accountslist",{"_index":343,"name":{"401":{}},"parent":{}}],["accountsmodule",{"_index":482,"name":{"556":{}},"parent":{}}],["accountsroutingmodule",{"_index":468,"name":{"535":{}},"parent":{}}],["accountssubject",{"_index":344,"name":{"402":{}},"parent":{}}],["accountstatus",{"_index":428,"name":{"487":{}},"parent":{}}],["accountstype",{"_index":429,"name":{"489":{},"545":{}},"parent":{}}],["accounttypes",{"_index":434,"name":{"496":{},"546":{},"566":{}},"parent":{}}],["action",{"_index":135,"name":{"129":{},"133":{},"579":{},"882":{}},"parent":{}}],["actions",{"_index":345,"name":{"403":{},"580":{},"843":{}},"parent":{}}],["actionslist",{"_index":346,"name":{"404":{}},"parent":{}}],["actionssubject",{"_index":347,"name":{"405":{}},"parent":{}}],["activatedroutestub",{"_index":658,"name":{"810":{},"901":{}},"parent":{}}],["add0x",{"_index":605,"name":{"731":{}},"parent":{}}],["address",{"_index":165,"name":{"166":{},"187":{}},"parent":{}}],["addressof",{"_index":18,"name":{"19":{}},"parent":{}}],["addresssearchform",{"_index":458,"name":{"523":{}},"parent":{}}],["addresssearchformstub",{"_index":463,"name":{"530":{}},"parent":{}}],["addresssearchloading",{"_index":460,"name":{"525":{}},"parent":{}}],["addresssearchsubmitted",{"_index":459,"name":{"524":{}},"parent":{}}],["addtoaccountregistry",{"_index":10,"name":{"9":{}},"parent":{}}],["addtransaction",{"_index":334,"name":{"389":{}},"parent":{}}],["admincomponent",{"_index":495,"name":{"575":{}},"parent":{}}],["adminmodule",{"_index":501,"name":{"591":{}},"parent":{}}],["adminroutingmodule",{"_index":492,"name":{"572":{}},"parent":{}}],["age",{"_index":97,"name":{"89":{}},"parent":{}}],["alg",{"_index":181,"name":{"183":{}},"parent":{}}],["algo",{"_index":121,"name":{"115":{},"277":{},"290":{}},"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":{},"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":{"886":{},"887":{},"888":{},"889":{},"890":{},"891":{}}}],["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":{},"302":{}}}],["app/_services",{"_index":290,"name":{"339":{}},"parent":{"892":{},"893":{},"894":{},"895":{},"896":{},"897":{},"898":{},"899":{}}}],["app/_services/auth.service",{"_index":255,"name":{"303":{}},"parent":{"304":{}}}],["app/_services/auth.service.authservice",{"_index":257,"name":{},"parent":{"305":{},"306":{},"307":{},"308":{},"309":{},"310":{},"311":{},"312":{},"313":{},"314":{},"315":{},"316":{},"317":{},"318":{},"319":{},"320":{},"321":{}}}],["app/_services/block",{"_index":271,"name":{"322":{}},"parent":{"323":{},"324":{},"325":{},"326":{},"327":{},"328":{},"329":{},"330":{},"331":{},"332":{}}}],["app/_services/error",{"_index":283,"name":{"333":{}},"parent":{"334":{},"335":{},"336":{},"337":{},"338":{}}}],["app/_services/location.service",{"_index":291,"name":{"340":{}},"parent":{"341":{}}}],["app/_services/location.service.locationservice",{"_index":293,"name":{},"parent":{"342":{},"343":{},"344":{},"345":{},"346":{}}}],["app/_services/logging.service",{"_index":298,"name":{"347":{}},"parent":{"348":{}}}],["app/_services/logging.service.loggingservice",{"_index":299,"name":{},"parent":{"349":{},"350":{},"351":{},"352":{},"353":{},"354":{},"355":{},"356":{},"357":{},"358":{}}}],["app/_services/registry.service",{"_index":309,"name":{"359":{}},"parent":{"360":{}}}],["app/_services/registry.service.registryservice",{"_index":311,"name":{},"parent":{"361":{},"362":{},"363":{},"364":{},"365":{},"366":{}}}],["app/_services/token.service",{"_index":316,"name":{"367":{}},"parent":{"368":{}}}],["app/_services/token.service.tokenservice",{"_index":318,"name":{},"parent":{"369":{},"370":{},"371":{},"372":{},"373":{},"374":{},"375":{}}}],["app/_services/transaction.service",{"_index":323,"name":{"376":{}},"parent":{"377":{}}}],["app/_services/transaction.service.transactionservice",{"_index":325,"name":{},"parent":{"378":{},"379":{},"380":{},"381":{},"382":{},"383":{},"384":{},"385":{},"386":{},"387":{},"388":{},"389":{},"390":{},"391":{},"392":{}}}],["app/_services/user.service",{"_index":338,"name":{"393":{}},"parent":{"394":{}}}],["app/_services/user.service.userservice",{"_index":340,"name":{},"parent":{"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":{},"426":{}}}],["app/app",{"_index":369,"name":{"427":{}},"parent":{"428":{},"429":{}}}],["app/app.component",{"_index":373,"name":{"430":{}},"parent":{"431":{}}}],["app/app.component.appcomponent",{"_index":375,"name":{},"parent":{"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":405,"name":{"466":{}},"parent":{"467":{}}}],["app/auth/auth.module.authmodule",{"_index":407,"name":{},"parent":{"468":{}}}],["app/pages/accounts/account",{"_index":408,"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":467,"name":{"534":{}},"parent":{"535":{},"536":{}}}],["app/pages/accounts/accounts.component",{"_index":470,"name":{"537":{}},"parent":{"538":{}}}],["app/pages/accounts/accounts.component.accountscomponent",{"_index":472,"name":{},"parent":{"539":{},"540":{},"541":{},"542":{},"543":{},"544":{},"545":{},"546":{},"547":{},"548":{},"549":{},"550":{},"551":{},"552":{},"553":{},"554":{}}}],["app/pages/accounts/accounts.module",{"_index":481,"name":{"555":{}},"parent":{"556":{}}}],["app/pages/accounts/accounts.module.accountsmodule",{"_index":483,"name":{},"parent":{"557":{}}}],["app/pages/accounts/create",{"_index":484,"name":{"558":{}},"parent":{"559":{},"560":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{}}}],["app/pages/admin/admin",{"_index":491,"name":{"571":{}},"parent":{"572":{},"573":{}}}],["app/pages/admin/admin.component",{"_index":494,"name":{"574":{}},"parent":{"575":{}}}],["app/pages/admin/admin.component.admincomponent",{"_index":496,"name":{},"parent":{"576":{},"577":{},"578":{},"579":{},"580":{},"581":{},"582":{},"583":{},"584":{},"585":{},"586":{},"587":{},"588":{},"589":{}}}],["app/pages/admin/admin.module",{"_index":500,"name":{"590":{}},"parent":{"591":{}}}],["app/pages/admin/admin.module.adminmodule",{"_index":502,"name":{},"parent":{"592":{}}}],["app/pages/pages",{"_index":503,"name":{"593":{}},"parent":{"594":{},"595":{}}}],["app/pages/pages.component",{"_index":506,"name":{"596":{}},"parent":{"597":{}}}],["app/pages/pages.component.pagescomponent",{"_index":508,"name":{},"parent":{"598":{},"599":{}}}],["app/pages/pages.module",{"_index":510,"name":{"600":{}},"parent":{"601":{}}}],["app/pages/pages.module.pagesmodule",{"_index":512,"name":{},"parent":{"602":{}}}],["app/pages/settings/organization/organization.component",{"_index":513,"name":{"603":{}},"parent":{"604":{}}}],["app/pages/settings/organization/organization.component.organizationcomponent",{"_index":515,"name":{},"parent":{"605":{},"606":{},"607":{},"608":{},"609":{},"610":{},"611":{}}}],["app/pages/settings/settings",{"_index":518,"name":{"612":{}},"parent":{"613":{},"614":{}}}],["app/pages/settings/settings.component",{"_index":521,"name":{"615":{}},"parent":{"616":{}}}],["app/pages/settings/settings.component.settingscomponent",{"_index":523,"name":{},"parent":{"617":{},"618":{},"619":{},"620":{},"621":{},"622":{},"623":{},"624":{},"625":{},"626":{},"627":{}}}],["app/pages/settings/settings.module",{"_index":526,"name":{"628":{}},"parent":{"629":{}}}],["app/pages/settings/settings.module.settingsmodule",{"_index":528,"name":{},"parent":{"630":{}}}],["app/pages/tokens/token",{"_index":529,"name":{"631":{}},"parent":{"632":{},"633":{},"634":{},"635":{}}}],["app/pages/tokens/tokens",{"_index":533,"name":{"636":{}},"parent":{"637":{},"638":{}}}],["app/pages/tokens/tokens.component",{"_index":536,"name":{"639":{}},"parent":{"640":{}}}],["app/pages/tokens/tokens.component.tokenscomponent",{"_index":538,"name":{},"parent":{"641":{},"642":{},"643":{},"644":{},"645":{},"646":{},"647":{},"648":{},"649":{},"650":{}}}],["app/pages/tokens/tokens.module",{"_index":542,"name":{"651":{}},"parent":{"652":{}}}],["app/pages/tokens/tokens.module.tokensmodule",{"_index":544,"name":{},"parent":{"653":{}}}],["app/pages/transactions/transaction",{"_index":545,"name":{"654":{}},"parent":{"655":{},"656":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{},"665":{},"666":{}}}],["app/pages/transactions/transactions",{"_index":556,"name":{"667":{}},"parent":{"668":{},"669":{}}}],["app/pages/transactions/transactions.component",{"_index":559,"name":{"670":{}},"parent":{"671":{}}}],["app/pages/transactions/transactions.component.transactionscomponent",{"_index":561,"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":565,"name":{"689":{}},"parent":{"690":{}}}],["app/pages/transactions/transactions.module.transactionsmodule",{"_index":567,"name":{},"parent":{"691":{}}}],["app/shared/_directives/menu",{"_index":568,"name":{"692":{},"696":{}},"parent":{"693":{},"694":{},"695":{},"697":{},"698":{},"699":{}}}],["app/shared/_pipes/safe.pipe",{"_index":576,"name":{"700":{}},"parent":{"701":{}}}],["app/shared/_pipes/safe.pipe.safepipe",{"_index":578,"name":{},"parent":{"702":{},"703":{}}}],["app/shared/_pipes/token",{"_index":580,"name":{"704":{}},"parent":{"705":{},"706":{},"707":{}}}],["app/shared/error",{"_index":584,"name":{"708":{}},"parent":{"709":{},"710":{},"711":{}}}],["app/shared/footer/footer.component",{"_index":589,"name":{"712":{}},"parent":{"713":{}}}],["app/shared/footer/footer.component.footercomponent",{"_index":591,"name":{},"parent":{"714":{},"715":{}}}],["app/shared/shared.module",{"_index":592,"name":{"716":{}},"parent":{"717":{}}}],["app/shared/shared.module.sharedmodule",{"_index":594,"name":{},"parent":{"718":{}}}],["app/shared/sidebar/sidebar.component",{"_index":595,"name":{"719":{}},"parent":{"720":{}}}],["app/shared/sidebar/sidebar.component.sidebarcomponent",{"_index":597,"name":{},"parent":{"721":{},"722":{}}}],["app/shared/topbar/topbar.component",{"_index":598,"name":{"723":{}},"parent":{"724":{}}}],["app/shared/topbar/topbar.component.topbarcomponent",{"_index":600,"name":{},"parent":{"725":{},"726":{}}}],["appcomponent",{"_index":374,"name":{"431":{}},"parent":{}}],["appmodule",{"_index":382,"name":{"441":{}},"parent":{}}],["approutingmodule",{"_index":371,"name":{"428":{}},"parent":{}}],["approval",{"_index":139,"name":{"134":{}},"parent":{}}],["approvalstatus",{"_index":497,"name":{"585":{}},"parent":{}}],["approveaction",{"_index":355,"name":{"413":{},"586":{},"847":{}},"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":{},"884":{}},"parent":{}}],["areanames",{"_index":431,"name":{"491":{},"565":{}},"parent":{}}],["areatype",{"_index":145,"name":{"141":{},"885":{}},"parent":{}}],["areatypes",{"_index":432,"name":{"492":{}},"parent":{}}],["arraysum",{"_index":29,"name":{"30":{},"856":{}},"parent":{}}],["assets/js/ethtx/dist",{"_index":606,"name":{"732":{}},"parent":{"900":{}}}],["assets/js/ethtx/dist/hex",{"_index":601,"name":{"727":{}},"parent":{"728":{},"729":{},"730":{},"731":{}}}],["assets/js/ethtx/dist/tx",{"_index":607,"name":{"733":{}},"parent":{"734":{},"758":{},"759":{},"760":{}}}],["assets/js/ethtx/dist/tx.tx",{"_index":608,"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":{"454":{}},"parent":{}}],["authguard",{"_index":20,"name":{"21":{},"850":{}},"parent":{}}],["authmodule",{"_index":406,"name":{"467":{}},"parent":{}}],["authroutingmodule",{"_index":392,"name":{"451":{}},"parent":{}}],["authservice",{"_index":256,"name":{"304":{},"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":{},"174":{}},"parent":{}}],["block",{"_index":187,"name":{"192":{}},"parent":{}}],["blockfilter",{"_index":179,"name":{"181":{}},"parent":{}}],["blocksbloom",{"_index":176,"name":{"178":{},"868":{}},"parent":{}}],["blocksync",{"_index":277,"name":{"327":{}},"parent":{}}],["blocksyncservice",{"_index":273,"name":{"323":{},"896":{}},"parent":{}}],["blocktxfilter",{"_index":180,"name":{"182":{}},"parent":{}}],["bloxberg:8996",{"_index":103,"name":{"96":{}},"parent":{}}],["bloxbergchainid",{"_index":635,"name":{"765":{},"780":{},"795":{}},"parent":{}}],["bloxberglink",{"_index":437,"name":{"501":{}},"parent":{}}],["canactivate",{"_index":22,"name":{"23":{},"28":{}},"parent":{}}],["candebug",{"_index":301,"name":{"351":{}},"parent":{}}],["canonicalorder",{"_index":623,"name":{"753":{}},"parent":{}}],["categories",{"_index":430,"name":{"490":{},"564":{}},"parent":{}}],["category",{"_index":113,"name":{"106":{},"135":{},"883":{}},"parent":{}}],["chainid",{"_index":615,"name":{"745":{}},"parent":{}}],["changeaccountinfo",{"_index":351,"name":{"409":{}},"parent":{}}],["ciccacheurl",{"_index":641,"name":{"771":{},"786":{},"801":{}},"parent":{}}],["cicconvert",{"_index":380,"name":{"439":{}},"parent":{}}],["cicmetaurl",{"_index":639,"name":{"769":{},"784":{},"799":{}},"parent":{}}],["cictransfer",{"_index":379,"name":{"438":{}},"parent":{}}],["cicussdurl",{"_index":643,"name":{"773":{},"788":{},"803":{}},"parent":{}}],["clearkeysinkeyring",{"_index":235,"name":{"243":{},"269":{}},"parent":{}}],["clearsignature",{"_index":627,"name":{"757":{}},"parent":{}}],["columnstodisplay",{"_index":539,"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":{},"288":{},"305":{},"324":{},"335":{},"342":{},"349":{},"361":{},"369":{},"378":{},"395":{},"429":{},"432":{},"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":{},"721":{},"725":{},"735":{},"811":{},"818":{},"824":{},"826":{},"828":{},"831":{},"835":{},"841":{}},"parent":{}}],["contract",{"_index":6,"name":{"5":{},"16":{}},"parent":{}}],["contractaddress",{"_index":4,"name":{"3":{},"14":{}},"parent":{}}],["conversion",{"_index":199,"name":{"207":{},"872":{}},"parent":{}}],["copy",{"_index":31,"name":{"31":{}},"parent":{"32":{}}}],["copyaddress",{"_index":447,"name":{"513":{},"666":{}},"parent":{}}],["copytoclipboard",{"_index":32,"name":{"32":{},"862":{}},"parent":{}}],["createaccountcomponent",{"_index":487,"name":{"559":{}},"parent":{}}],["createform",{"_index":489,"name":{"561":{}},"parent":{}}],["createformstub",{"_index":490,"name":{"569":{}},"parent":{}}],["csv",{"_index":46,"name":{"42":{},"67":{}},"parent":{"43":{},"68":{}}}],["customerrorstatematcher",{"_index":37,"name":{"34":{},"853":{}},"parent":{}}],["customvalidator",{"_index":41,"name":{"38":{},"852":{}},"parent":{}}],["data",{"_index":123,"name":{"116":{},"120":{},"278":{},"711":{},"741":{}},"parent":{}}],["datasource",{"_index":473,"name":{"540":{},"577":{},"619":{},"642":{}},"parent":{}}],["date",{"_index":524,"name":{"618":{}},"parent":{}}],["date_registered",{"_index":94,"name":{"87":{}},"parent":{}}],["decimals",{"_index":167,"name":{"168":{}},"parent":{}}],["defaultaccount",{"_index":132,"name":{"126":{},"879":{}},"parent":{}}],["defaultpagesize",{"_index":475,"name":{"543":{},"675":{}},"parent":{}}],["destinationtoken",{"_index":201,"name":{"209":{}},"parent":{}}],["details.component",{"_index":410,"name":{"469":{},"631":{},"654":{}},"parent":{"470":{},"632":{},"655":{}}}],["details.component.accountdetailscomponent",{"_index":412,"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":532,"name":{},"parent":{"633":{},"634":{},"635":{}}}],["details.component.transactiondetailscomponent",{"_index":548,"name":{},"parent":{"656":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{},"665":{},"666":{}}}],["details/account",{"_index":409,"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":530,"name":{"631":{}},"parent":{"632":{},"633":{},"634":{},"635":{}}}],["details/transaction",{"_index":546,"name":{"654":{}},"parent":{"655":{},"656":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{},"665":{},"666":{}}}],["dgst",{"_index":252,"name":{"291":{}},"parent":{}}],["dialog",{"_index":288,"name":{"337":{}},"parent":{}}],["dialog.component",{"_index":586,"name":{"708":{}},"parent":{"709":{}}}],["dialog.component.errordialogcomponent",{"_index":588,"name":{},"parent":{"710":{},"711":{}}}],["dialog.service",{"_index":284,"name":{"333":{}},"parent":{"334":{}}}],["dialog.service.errordialogservice",{"_index":286,"name":{},"parent":{"335":{},"336":{},"337":{},"338":{}}}],["dialog/error",{"_index":585,"name":{"708":{}},"parent":{"709":{},"710":{},"711":{}}}],["digest",{"_index":124,"name":{"117":{},"273":{},"279":{}},"parent":{}}],["directive",{"_index":666,"name":{"816":{}},"parent":{"817":{},"818":{},"819":{},"820":{},"821":{}}}],["disapproveaction",{"_index":498,"name":{"587":{}},"parent":{}}],["displayedcolumns",{"_index":474,"name":{"542":{},"578":{},"620":{}},"parent":{}}],["dofilter",{"_index":479,"name":{"550":{},"584":{},"625":{},"648":{},"685":{}},"parent":{}}],["dotransactionfilter",{"_index":438,"name":{"503":{}},"parent":{}}],["douserfilter",{"_index":439,"name":{"504":{}},"parent":{}}],["downloadcsv",{"_index":446,"name":{"512":{},"554":{},"589":{},"626":{},"650":{},"688":{}},"parent":{}}],["email",{"_index":115,"name":{"109":{},"158":{}},"parent":{}}],["engine",{"_index":125,"name":{"118":{},"153":{},"276":{},"289":{}},"parent":{}}],["entry",{"_index":17,"name":{"18":{}},"parent":{}}],["env",{"_index":300,"name":{"350":{}},"parent":{}}],["environment",{"_index":631,"name":{"762":{},"777":{},"792":{}},"parent":{}}],["environments/environment",{"_index":649,"name":{"791":{}},"parent":{"792":{}}}],["environments/environment.dev",{"_index":630,"name":{"761":{}},"parent":{"762":{}}}],["environments/environment.dev.environment",{"_index":632,"name":{},"parent":{"763":{}}}],["environments/environment.dev.environment.__type",{"_index":634,"name":{},"parent":{"764":{},"765":{},"766":{},"767":{},"768":{},"769":{},"770":{},"771":{},"772":{},"773":{},"774":{},"775":{}}}],["environments/environment.environment",{"_index":650,"name":{},"parent":{"793":{}}}],["environments/environment.environment.__type",{"_index":651,"name":{},"parent":{"794":{},"795":{},"796":{},"797":{},"798":{},"799":{},"800":{},"801":{},"802":{},"803":{},"804":{},"805":{}}}],["environments/environment.prod",{"_index":646,"name":{"776":{}},"parent":{"777":{}}}],["environments/environment.prod.environment",{"_index":647,"name":{},"parent":{"778":{}}}],["environments/environment.prod.environment.__type",{"_index":648,"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":587,"name":{"709":{}},"parent":{}}],["errordialogservice",{"_index":285,"name":{"334":{},"899":{}},"parent":{}}],["errorinterceptor",{"_index":82,"name":{"73":{},"865":{}},"parent":{}}],["evm",{"_index":101,"name":{"94":{}},"parent":{}}],["expandcollapse",{"_index":499,"name":{"588":{}},"parent":{}}],["exportcsv",{"_index":47,"name":{"43":{},"860":{}},"parent":{}}],["fetcher",{"_index":282,"name":{"332":{}},"parent":{}}],["filegetter",{"_index":313,"name":{"363":{}},"parent":{}}],["filteraccounts",{"_index":444,"name":{"509":{},"552":{}},"parent":{}}],["filterrounds",{"_index":182,"name":{"184":{}},"parent":{}}],["filtertransactions",{"_index":445,"name":{"510":{},"686":{}},"parent":{}}],["fingerprint",{"_index":247,"name":{"283":{},"299":{}},"parent":{}}],["fn",{"_index":116,"name":{"110":{}},"parent":{}}],["footercomponent",{"_index":590,"name":{"713":{}},"parent":{}}],["footerstubcomponent",{"_index":678,"name":{"827":{},"905":{}},"parent":{}}],["from",{"_index":194,"name":{"199":{}},"parent":{}}],["fromhex",{"_index":602,"name":{"728":{}},"parent":{}}],["fromvalue",{"_index":202,"name":{"210":{}},"parent":{}}],["gaslimit",{"_index":611,"name":{"738":{}},"parent":{}}],["gasprice",{"_index":610,"name":{"737":{}},"parent":{}}],["gender",{"_index":96,"name":{"88":{}},"parent":{}}],["genders",{"_index":436,"name":{"498":{},"567":{}},"parent":{}}],["getaccountbyaddress",{"_index":360,"name":{"418":{}},"parent":{}}],["getaccountbyphone",{"_index":361,"name":{"419":{}},"parent":{}}],["getaccountdetailsfrommeta",{"_index":357,"name":{"415":{}},"parent":{}}],["getaccountinfo",{"_index":336,"name":{"391":{}},"parent":{}}],["getaccountstatus",{"_index":349,"name":{"407":{}},"parent":{}}],["getaccounttypes",{"_index":366,"name":{"424":{}},"parent":{}}],["getactionbyid",{"_index":354,"name":{"412":{},"846":{}},"parent":{}}],["getactions",{"_index":353,"name":{"411":{}},"parent":{}}],["getaddresstransactions",{"_index":331,"name":{"386":{}},"parent":{}}],["getalltransactions",{"_index":330,"name":{"385":{},"838":{}},"parent":{}}],["getareanamebylocation",{"_index":295,"name":{"344":{}},"parent":{}}],["getareanames",{"_index":294,"name":{"343":{}},"parent":{}}],["getareatypebyarea",{"_index":297,"name":{"346":{}},"parent":{}}],["getareatypes",{"_index":296,"name":{"345":{}},"parent":{}}],["getbysymbol",{"_index":684,"name":{"832":{}},"parent":{}}],["getcategories",{"_index":364,"name":{"422":{}},"parent":{}}],["getcategorybyproduct",{"_index":365,"name":{"423":{}},"parent":{}}],["getchallenge",{"_index":264,"name":{"313":{}},"parent":{}}],["getencryptkeys",{"_index":219,"name":{"227":{},"253":{}},"parent":{}}],["getfingerprint",{"_index":224,"name":{"232":{},"258":{}},"parent":{}}],["getgenders",{"_index":368,"name":{"426":{}},"parent":{}}],["getkeyid",{"_index":225,"name":{"233":{},"259":{}},"parent":{}}],["getkeysforid",{"_index":227,"name":{"235":{},"261":{}},"parent":{}}],["getlockedaccounts",{"_index":350,"name":{"408":{}},"parent":{}}],["getprivatekey",{"_index":221,"name":{"229":{},"255":{},"321":{}},"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":{},"320":{}},"parent":{}}],["getpublickeysforaddress",{"_index":231,"name":{"239":{},"265":{}},"parent":{}}],["getregistry",{"_index":314,"name":{"365":{}},"parent":{}}],["getter",{"_index":61,"name":{"55":{}},"parent":{"56":{}}}],["gettokenbalance",{"_index":322,"name":{"375":{}},"parent":{}}],["gettokenbysymbol",{"_index":321,"name":{"374":{}},"parent":{}}],["gettokens",{"_index":320,"name":{"373":{}},"parent":{}}],["gettransactiontypes",{"_index":367,"name":{"425":{}},"parent":{}}],["gettrustedactivekeys",{"_index":218,"name":{"226":{},"252":{}},"parent":{}}],["gettrustedkeys",{"_index":217,"name":{"225":{},"251":{}},"parent":{}}],["gettrustedusers",{"_index":270,"name":{"319":{}},"parent":{}}],["getuser",{"_index":693,"name":{"845":{}},"parent":{}}],["getuserbyid",{"_index":692,"name":{"844":{}},"parent":{}}],["getweb3",{"_index":315,"name":{"366":{}},"parent":{}}],["getwithtoken",{"_index":262,"name":{"311":{}},"parent":{}}],["globalerrorhandler",{"_index":54,"name":{"49":{},"859":{}},"parent":{}}],["handleerror",{"_index":57,"name":{"52":{}},"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":341,"name":{"396":{}},"parent":{}}],["hextovalue",{"_index":629,"name":{"759":{}},"parent":{}}],["httpconfiginterceptor",{"_index":86,"name":{"77":{},"866":{}},"parent":{}}],["httperror",{"_index":50,"name":{"45":{},"858":{}},"parent":{}}],["httpgetter",{"_index":62,"name":{"56":{},"857":{}},"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":260,"name":{"309":{}},"parent":{}}],["intercept",{"_index":68,"name":{"61":{},"75":{},"79":{},"84":{}},"parent":{}}],["isdialogopen",{"_index":287,"name":{"336":{}},"parent":{}}],["isencryptedprivatekey",{"_index":223,"name":{"231":{},"257":{}},"parent":{}}],["iserrorstate",{"_index":39,"name":{"36":{}},"parent":{}}],["isvalidkey",{"_index":222,"name":{"230":{},"256":{}},"parent":{}}],["iswarning",{"_index":59,"name":{"54":{}},"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":401,"name":{"461":{}},"parent":{}}],["keystore",{"_index":253,"name":{"293":{},"397":{}},"parent":{}}],["last",{"_index":9,"name":{"8":{}},"parent":{}}],["latitude",{"_index":106,"name":{"98":{}},"parent":{}}],["link",{"_index":665,"name":{"816":{}},"parent":{"817":{},"818":{},"819":{},"820":{},"821":{}}}],["linkparams",{"_index":669,"name":{"819":{}},"parent":{}}],["loadaccounts",{"_index":359,"name":{"417":{}},"parent":{}}],["loadevent",{"_index":319,"name":{"372":{}},"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":292,"name":{"341":{},"897":{}},"parent":{}}],["logerror",{"_index":58,"name":{"53":{}},"parent":{}}],["logginginterceptor",{"_index":90,"name":{"82":{},"867":{}},"parent":{}}],["loggingservice",{"_index":254,"name":{"298":{},"348":{},"898":{}},"parent":{}}],["loggingurl",{"_index":638,"name":{"768":{},"783":{},"798":{}},"parent":{}}],["login",{"_index":265,"name":{"314":{},"463":{}},"parent":{}}],["loginresponse",{"_index":266,"name":{"315":{}},"parent":{}}],["loginview",{"_index":267,"name":{"316":{}},"parent":{}}],["loglevel",{"_index":636,"name":{"766":{},"781":{},"796":{}},"parent":{}}],["logout",{"_index":269,"name":{"318":{},"627":{}},"parent":{}}],["longitude",{"_index":107,"name":{"99":{}},"parent":{}}],["low",{"_index":178,"name":{"180":{}},"parent":{}}],["m",{"_index":131,"name":{"125":{}},"parent":{}}],["main",{"_index":652,"name":{"806":{}},"parent":{}}],["matcher",{"_index":36,"name":{"33":{},"459":{},"499":{},"526":{},"562":{},"608":{}},"parent":{"34":{}}}],["matcher.customerrorstatematcher",{"_index":38,"name":{},"parent":{"35":{},"36":{}}}],["mediaquery",{"_index":377,"name":{"436":{}},"parent":{}}],["menuselectiondirective",{"_index":570,"name":{"693":{}},"parent":{}}],["menutoggledirective",{"_index":573,"name":{"697":{}},"parent":{}}],["message",{"_index":625,"name":{"755":{}},"parent":{}}],["meta",{"_index":126,"name":{"119":{},"877":{}},"parent":{}}],["metaresponse",{"_index":129,"name":{"123":{},"878":{}},"parent":{}}],["mockbackendinterceptor",{"_index":66,"name":{"59":{},"854":{}},"parent":{}}],["mockbackendprovider",{"_index":69,"name":{"62":{},"855":{}},"parent":{}}],["module",{"_index":673,"name":{"822":{}},"parent":{"823":{},"824":{},"825":{},"826":{},"827":{},"828":{}}}],["multi",{"_index":74,"name":{"66":{}},"parent":{}}],["mutablekeystore",{"_index":237,"name":{"245":{},"308":{},"887":{}},"parent":{}}],["mutablepgpkeystore",{"_index":210,"name":{"218":{},"886":{}},"parent":{}}],["n",{"_index":117,"name":{"111":{}},"parent":{}}],["name",{"_index":140,"name":{"136":{},"139":{},"142":{},"159":{},"164":{},"188":{}},"parent":{}}],["namesearchform",{"_index":452,"name":{"517":{}},"parent":{}}],["namesearchformstub",{"_index":461,"name":{"528":{}},"parent":{}}],["namesearchloading",{"_index":454,"name":{"519":{}},"parent":{}}],["namesearchsubmitted",{"_index":453,"name":{"518":{}},"parent":{}}],["navigatedto",{"_index":670,"name":{"820":{}},"parent":{}}],["newconversionevent",{"_index":280,"name":{"330":{}},"parent":{}}],["newtransferevent",{"_index":279,"name":{"329":{}},"parent":{}}],["ngafterviewinit",{"_index":564,"name":{"687":{}},"parent":{}}],["ngoninit",{"_index":400,"name":{"460":{},"502":{},"527":{},"549":{},"568":{},"583":{},"609":{},"624":{},"635":{},"647":{},"661":{},"683":{},"715":{},"722":{},"726":{}},"parent":{}}],["nonce",{"_index":609,"name":{"736":{}},"parent":{}}],["oldchain:1",{"_index":105,"name":{"97":{}},"parent":{}}],["onaddresssearch",{"_index":466,"name":{"533":{}},"parent":{}}],["onclick",{"_index":671,"name":{"821":{}},"parent":{}}],["onmenuselect",{"_index":572,"name":{"695":{}},"parent":{}}],["onmenutoggle",{"_index":575,"name":{"699":{}},"parent":{}}],["onnamesearch",{"_index":464,"name":{"531":{}},"parent":{}}],["onphonesearch",{"_index":465,"name":{"532":{}},"parent":{}}],["onresize",{"_index":378,"name":{"437":{}},"parent":{}}],["onsign",{"_index":244,"name":{"281":{},"294":{}},"parent":{}}],["onsubmit",{"_index":402,"name":{"462":{},"570":{},"611":{}},"parent":{}}],["onverify",{"_index":246,"name":{"282":{},"296":{}},"parent":{}}],["opendialog",{"_index":289,"name":{"338":{}},"parent":{}}],["organizationcomponent",{"_index":514,"name":{"604":{}},"parent":{}}],["organizationform",{"_index":516,"name":{"606":{}},"parent":{}}],["organizationformstub",{"_index":517,"name":{"610":{}},"parent":{}}],["owner",{"_index":174,"name":{"176":{}},"parent":{}}],["pagescomponent",{"_index":507,"name":{"597":{}},"parent":{}}],["pagesizeoptions",{"_index":476,"name":{"544":{},"676":{}},"parent":{}}],["pagesmodule",{"_index":511,"name":{"601":{}},"parent":{}}],["pagesroutingmodule",{"_index":504,"name":{"594":{}},"parent":{}}],["paginator",{"_index":477,"name":{"547":{},"581":{},"622":{},"644":{},"681":{}},"parent":{}}],["parammap",{"_index":661,"name":{"813":{}},"parent":{}}],["passwordmatchvalidator",{"_index":42,"name":{"39":{}},"parent":{}}],["passwordtoggledirective",{"_index":387,"name":{"445":{}},"parent":{}}],["patternvalidator",{"_index":44,"name":{"40":{}},"parent":{}}],["personvalidation",{"_index":79,"name":{"70":{},"863":{}},"parent":{}}],["pgpsigner",{"_index":250,"name":{"287":{},"891":{}},"parent":{}}],["phonesearchform",{"_index":455,"name":{"520":{}},"parent":{}}],["phonesearchformstub",{"_index":462,"name":{"529":{}},"parent":{}}],["phonesearchloading",{"_index":457,"name":{"522":{}},"parent":{}}],["phonesearchsubmitted",{"_index":456,"name":{"521":{}},"parent":{}}],["polyfills",{"_index":653,"name":{"807":{}},"parent":{}}],["prepare",{"_index":248,"name":{"284":{},"300":{}},"parent":{}}],["production",{"_index":633,"name":{"764":{},"779":{},"794":{}},"parent":{}}],["products",{"_index":112,"name":{"105":{},"137":{}},"parent":{}}],["provide",{"_index":71,"name":{"64":{}},"parent":{}}],["provider",{"_index":154,"name":{"154":{}},"parent":{}}],["publickeysurl",{"_index":640,"name":{"770":{},"785":{},"800":{}},"parent":{}}],["r",{"_index":613,"name":{"743":{}},"parent":{}}],["ratio.pipe",{"_index":581,"name":{"704":{}},"parent":{"705":{}}}],["ratio.pipe.tokenratiopipe",{"_index":583,"name":{},"parent":{"706":{},"707":{}}}],["readcsv",{"_index":76,"name":{"68":{},"861":{}},"parent":{}}],["readystate",{"_index":276,"name":{"326":{},"435":{}},"parent":{}}],["readystateprocessor",{"_index":278,"name":{"328":{}},"parent":{}}],["readystatetarget",{"_index":275,"name":{"325":{},"434":{}},"parent":{}}],["recipient",{"_index":197,"name":{"202":{}},"parent":{}}],["recipientbloxberglink",{"_index":550,"name":{"659":{}},"parent":{}}],["refreshpaginator",{"_index":480,"name":{"553":{}},"parent":{}}],["registry",{"_index":13,"name":{"11":{},"149":{},"364":{},"370":{},"384":{},"399":{}},"parent":{"12":{}}}],["registry.tokenregistry",{"_index":15,"name":{},"parent":{"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{}}}],["registryaddress",{"_index":644,"name":{"774":{},"789":{},"804":{}},"parent":{}}],["registryservice",{"_index":310,"name":{"360":{}},"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":362,"name":{"420":{}},"parent":{}}],["resetpin",{"_index":348,"name":{"406":{},"511":{}},"parent":{}}],["resettransactionslist",{"_index":335,"name":{"390":{}},"parent":{}}],["reversetransaction",{"_index":555,"name":{"665":{}},"parent":{}}],["revokeaction",{"_index":356,"name":{"414":{}},"parent":{}}],["role",{"_index":138,"name":{"132":{}},"parent":{}}],["roleguard",{"_index":25,"name":{"26":{},"851":{}},"parent":{}}],["route",{"_index":656,"name":{"809":{}},"parent":{"810":{},"811":{},"812":{},"813":{},"814":{}}}],["routerlinkdirectivestub",{"_index":667,"name":{"817":{},"902":{}},"parent":{}}],["routing.module",{"_index":370,"name":{"427":{},"450":{},"534":{},"571":{},"593":{},"612":{},"636":{},"667":{}},"parent":{"428":{},"451":{},"535":{},"572":{},"594":{},"613":{},"637":{},"668":{}}}],["routing.module.accountsroutingmodule",{"_index":469,"name":{},"parent":{"536":{}}}],["routing.module.adminroutingmodule",{"_index":493,"name":{},"parent":{"573":{}}}],["routing.module.approutingmodule",{"_index":372,"name":{},"parent":{"429":{}}}],["routing.module.authroutingmodule",{"_index":393,"name":{},"parent":{"452":{}}}],["routing.module.pagesroutingmodule",{"_index":505,"name":{},"parent":{"595":{}}}],["routing.module.settingsroutingmodule",{"_index":520,"name":{},"parent":{"614":{}}}],["routing.module.tokensroutingmodule",{"_index":535,"name":{},"parent":{"638":{}}}],["routing.module.transactionsroutingmodule",{"_index":558,"name":{},"parent":{"669":{}}}],["s",{"_index":614,"name":{"744":{}},"parent":{}}],["safepipe",{"_index":577,"name":{"701":{}},"parent":{}}],["saveinfo",{"_index":443,"name":{"508":{}},"parent":{}}],["scan",{"_index":281,"name":{"331":{}},"parent":{}}],["scanfilter",{"_index":151,"name":{"148":{}},"parent":{}}],["search.component",{"_index":449,"name":{"514":{}},"parent":{"515":{}}}],["search.component.accountsearchcomponent",{"_index":451,"name":{},"parent":{"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{},"532":{},"533":{}}}],["search/account",{"_index":448,"name":{"514":{}},"parent":{"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{},"532":{},"533":{}}}],["searchaccountbyname",{"_index":363,"name":{"421":{}},"parent":{}}],["selection.directive",{"_index":569,"name":{"692":{}},"parent":{"693":{}}}],["selection.directive.menuselectiondirective",{"_index":571,"name":{},"parent":{"694":{},"695":{}}}],["senddebuglevelmessage",{"_index":303,"name":{"353":{}},"parent":{}}],["sender",{"_index":195,"name":{"200":{}},"parent":{}}],["senderbloxberglink",{"_index":549,"name":{"658":{}},"parent":{}}],["senderrorlevelmessage",{"_index":307,"name":{"357":{}},"parent":{}}],["sendfatallevelmessage",{"_index":308,"name":{"358":{}},"parent":{}}],["sendinfolevelmessage",{"_index":304,"name":{"354":{}},"parent":{}}],["sendloglevelmessage",{"_index":305,"name":{"355":{}},"parent":{}}],["sendresponse",{"_index":263,"name":{"312":{}},"parent":{}}],["sendtracelevelmessage",{"_index":302,"name":{"352":{}},"parent":{}}],["sendwarnlevelmessage",{"_index":306,"name":{"356":{}},"parent":{}}],["sentencesforwarninglogging",{"_index":56,"name":{"51":{}},"parent":{}}],["serializebytes",{"_index":622,"name":{"752":{}},"parent":{}}],["serializenumber",{"_index":620,"name":{"750":{}},"parent":{}}],["serializerlp",{"_index":624,"name":{"754":{}},"parent":{}}],["serverloglevel",{"_index":637,"name":{"767":{},"782":{},"797":{}},"parent":{}}],["service",{"_index":681,"name":{"829":{},"833":{},"839":{}},"parent":{"830":{},"831":{},"832":{},"834":{},"835":{},"836":{},"837":{},"838":{},"840":{},"841":{},"842":{},"843":{},"844":{},"845":{},"846":{},"847":{}}}],["sessionlogincount",{"_index":259,"name":{"307":{}},"parent":{}}],["sessiontoken",{"_index":258,"name":{"306":{}},"parent":{}}],["setconversion",{"_index":333,"name":{"388":{},"837":{}},"parent":{}}],["setkey",{"_index":268,"name":{"317":{}},"parent":{}}],["setparammap",{"_index":662,"name":{"814":{}},"parent":{}}],["setsignature",{"_index":626,"name":{"756":{}},"parent":{}}],["setstate",{"_index":261,"name":{"310":{}},"parent":{}}],["settings",{"_index":148,"name":{"145":{},"873":{}},"parent":{}}],["settingscomponent",{"_index":522,"name":{"616":{}},"parent":{}}],["settingsmodule",{"_index":527,"name":{"629":{}},"parent":{}}],["settingsroutingmodule",{"_index":519,"name":{"613":{}},"parent":{}}],["settransaction",{"_index":332,"name":{"387":{},"836":{}},"parent":{}}],["sharedmodule",{"_index":593,"name":{"717":{}},"parent":{}}],["sidebarcomponent",{"_index":596,"name":{"720":{}},"parent":{}}],["sidebarstubcomponent",{"_index":674,"name":{"823":{},"903":{}},"parent":{}}],["sign",{"_index":236,"name":{"244":{},"270":{},"286":{},"302":{}},"parent":{}}],["signable",{"_index":240,"name":{"272":{},"888":{}},"parent":{}}],["signature",{"_index":120,"name":{"114":{},"122":{},"274":{},"292":{},"876":{},"889":{}},"parent":{}}],["signer",{"_index":239,"name":{"271":{},"280":{},"398":{},"890":{}},"parent":{"272":{},"274":{},"280":{},"287":{}}}],["signer.pgpsigner",{"_index":251,"name":{},"parent":{"288":{},"289":{},"290":{},"291":{},"292":{},"293":{},"294":{},"295":{},"296":{},"297":{},"298":{},"299":{},"300":{},"301":{},"302":{}}}],["signer.signable",{"_index":241,"name":{},"parent":{"273":{}}}],["signer.signature",{"_index":242,"name":{},"parent":{"275":{}}}],["signer.signature.__type",{"_index":243,"name":{},"parent":{"276":{},"277":{},"278":{},"279":{}}}],["signer.signer",{"_index":245,"name":{},"parent":{"281":{},"282":{},"283":{},"284":{},"285":{},"286":{}}}],["signeraddress",{"_index":5,"name":{"4":{},"15":{}},"parent":{}}],["sort",{"_index":478,"name":{"548":{},"582":{},"623":{},"645":{},"682":{}},"parent":{}}],["sourcetoken",{"_index":203,"name":{"211":{}},"parent":{}}],["staff",{"_index":156,"name":{"156":{},"880":{}},"parent":{}}],["state",{"_index":35,"name":{"33":{}},"parent":{"34":{},"35":{},"36":{}}}],["status",{"_index":53,"name":{"48":{}},"parent":{}}],["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":628,"name":{"758":{}},"parent":{}}],["strip0x",{"_index":604,"name":{"730":{}},"parent":{}}],["stub",{"_index":657,"name":{"809":{},"816":{},"822":{},"829":{},"833":{},"839":{}},"parent":{"810":{},"817":{},"823":{},"825":{},"827":{},"830":{},"834":{},"840":{}}}],["stub.activatedroutestub",{"_index":659,"name":{},"parent":{"811":{},"812":{},"813":{},"814":{}}}],["stub.footerstubcomponent",{"_index":679,"name":{},"parent":{"828":{}}}],["stub.routerlinkdirectivestub",{"_index":668,"name":{},"parent":{"818":{},"819":{},"820":{},"821":{}}}],["stub.sidebarstubcomponent",{"_index":675,"name":{},"parent":{"824":{}}}],["stub.tokenservicestub",{"_index":683,"name":{},"parent":{"831":{},"832":{}}}],["stub.topbarstubcomponent",{"_index":677,"name":{},"parent":{"826":{}}}],["stub.transactionservicestub",{"_index":687,"name":{},"parent":{"835":{},"836":{},"837":{},"838":{}}}],["stub.userservicestub",{"_index":690,"name":{},"parent":{"841":{},"842":{},"843":{},"844":{},"845":{},"846":{},"847":{}}}],["subject",{"_index":660,"name":{"812":{}},"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":403,"name":{"464":{}},"parent":{}}],["symbol",{"_index":164,"name":{"165":{},"189":{}},"parent":{}}],["sync.service",{"_index":272,"name":{"322":{}},"parent":{"323":{}}}],["sync.service.blocksyncservice",{"_index":274,"name":{},"parent":{"324":{},"325":{},"326":{},"327":{},"328":{},"329":{},"330":{},"331":{},"332":{}}}],["tag",{"_index":159,"name":{"160":{}},"parent":{}}],["tel",{"_index":118,"name":{"112":{}},"parent":{}}],["test",{"_index":654,"name":{"808":{}},"parent":{}}],["testing",{"_index":663,"name":{"815":{}},"parent":{"901":{},"902":{},"903":{},"904":{},"905":{},"906":{},"907":{},"908":{}}}],["testing/activated",{"_index":655,"name":{"809":{}},"parent":{"810":{},"811":{},"812":{},"813":{},"814":{}}}],["testing/router",{"_index":664,"name":{"816":{}},"parent":{"817":{},"818":{},"819":{},"820":{},"821":{}}}],["testing/shared",{"_index":672,"name":{"822":{}},"parent":{"823":{},"824":{},"825":{},"826":{},"827":{},"828":{}}}],["testing/token",{"_index":680,"name":{"829":{}},"parent":{"830":{},"831":{},"832":{}}}],["testing/transaction",{"_index":685,"name":{"833":{}},"parent":{"834":{},"835":{},"836":{},"837":{},"838":{}}}],["testing/user",{"_index":688,"name":{"839":{}},"parent":{"840":{},"841":{},"842":{},"843":{},"844":{},"845":{},"846":{},"847":{}}}],["timestamp",{"_index":189,"name":{"194":{}},"parent":{}}],["title",{"_index":376,"name":{"433":{}},"parent":{}}],["to",{"_index":196,"name":{"201":{},"739":{}},"parent":{}}],["toggle.directive",{"_index":386,"name":{"444":{},"696":{}},"parent":{"445":{},"697":{}}}],["toggle.directive.menutoggledirective",{"_index":574,"name":{},"parent":{"698":{},"699":{}}}],["toggle.directive.passwordtoggledirective",{"_index":388,"name":{},"parent":{"446":{},"447":{},"448":{},"449":{}}}],["toggledisplay",{"_index":404,"name":{"465":{}},"parent":{}}],["togglepasswordvisibility",{"_index":390,"name":{"449":{}},"parent":{}}],["tohex",{"_index":603,"name":{"729":{}},"parent":{}}],["token",{"_index":162,"name":{"163":{},"203":{},"634":{},"881":{}},"parent":{}}],["tokendetailscomponent",{"_index":531,"name":{"632":{}},"parent":{}}],["tokenratiopipe",{"_index":582,"name":{"705":{}},"parent":{}}],["tokenregistry",{"_index":14,"name":{"12":{},"371":{},"849":{}},"parent":{}}],["tokens",{"_index":540,"name":{"646":{}},"parent":{}}],["tokenscomponent",{"_index":537,"name":{"640":{}},"parent":{}}],["tokenservice",{"_index":317,"name":{"368":{},"895":{}},"parent":{}}],["tokenservicestub",{"_index":682,"name":{"830":{},"907":{}},"parent":{}}],["tokensmodule",{"_index":543,"name":{"652":{}},"parent":{}}],["tokensroutingmodule",{"_index":534,"name":{"637":{}},"parent":{}}],["topbarcomponent",{"_index":599,"name":{"724":{}},"parent":{}}],["topbarstubcomponent",{"_index":676,"name":{"825":{},"904":{}},"parent":{}}],["totalaccounts",{"_index":7,"name":{"6":{}},"parent":{}}],["totaltokens",{"_index":16,"name":{"17":{}},"parent":{}}],["tovalue",{"_index":204,"name":{"212":{},"760":{}},"parent":{}}],["trader",{"_index":205,"name":{"213":{}},"parent":{}}],["traderbloxberglink",{"_index":551,"name":{"660":{}},"parent":{}}],["transaction",{"_index":192,"name":{"197":{},"493":{},"657":{},"678":{},"871":{}},"parent":{}}],["transactiondatasource",{"_index":562,"name":{"673":{}},"parent":{}}],["transactiondetailscomponent",{"_index":547,"name":{"655":{}},"parent":{}}],["transactiondisplayedcolumns",{"_index":563,"name":{"674":{}},"parent":{}}],["transactionlist",{"_index":327,"name":{"380":{}},"parent":{}}],["transactions",{"_index":326,"name":{"379":{},"494":{},"677":{}},"parent":{}}],["transactionscomponent",{"_index":560,"name":{"671":{}},"parent":{}}],["transactionsdatasource",{"_index":413,"name":{"472":{}},"parent":{}}],["transactionsdefaultpagesize",{"_index":415,"name":{"474":{}},"parent":{}}],["transactionsdisplayedcolumns",{"_index":414,"name":{"473":{}},"parent":{}}],["transactionservice",{"_index":324,"name":{"377":{},"893":{}},"parent":{}}],["transactionservicestub",{"_index":686,"name":{"834":{},"908":{}},"parent":{}}],["transactionsmodule",{"_index":566,"name":{"690":{}},"parent":{}}],["transactionspagesizeoptions",{"_index":416,"name":{"475":{}},"parent":{}}],["transactionsroutingmodule",{"_index":557,"name":{"668":{}},"parent":{}}],["transactionssubject",{"_index":328,"name":{"381":{}},"parent":{}}],["transactionstype",{"_index":433,"name":{"495":{},"679":{}},"parent":{}}],["transactionstypes",{"_index":435,"name":{"497":{},"680":{}},"parent":{}}],["transactiontablepaginator",{"_index":417,"name":{"476":{}},"parent":{}}],["transactiontablesort",{"_index":418,"name":{"477":{}},"parent":{}}],["transferrequest",{"_index":337,"name":{"392":{}},"parent":{}}],["transform",{"_index":579,"name":{"703":{},"707":{}},"parent":{}}],["trusteddeclaratoraddress",{"_index":645,"name":{"775":{},"790":{},"805":{}},"parent":{}}],["trustedusers",{"_index":525,"name":{"621":{}},"parent":{}}],["tx",{"_index":185,"name":{"190":{},"204":{},"215":{},"734":{},"870":{},"900":{}},"parent":{}}],["txhash",{"_index":190,"name":{"195":{}},"parent":{}}],["txhelper",{"_index":152,"name":{"150":{}},"parent":{}}],["txindex",{"_index":191,"name":{"196":{}},"parent":{}}],["txtoken",{"_index":183,"name":{"185":{},"869":{}},"parent":{}}],["type",{"_index":98,"name":{"90":{},"206":{}},"parent":{}}],["updatemeta",{"_index":352,"name":{"410":{}},"parent":{}}],["url",{"_index":509,"name":{"599":{}},"parent":{}}],["useclass",{"_index":73,"name":{"65":{}},"parent":{}}],["user",{"_index":137,"name":{"131":{},"214":{}},"parent":{}}],["userdatasource",{"_index":419,"name":{"478":{}},"parent":{}}],["userdisplayedcolumns",{"_index":420,"name":{"479":{}},"parent":{}}],["userid",{"_index":160,"name":{"161":{}},"parent":{}}],["userinfo",{"_index":329,"name":{"382":{}},"parent":{}}],["users",{"_index":691,"name":{"842":{}},"parent":{}}],["usersdefaultpagesize",{"_index":421,"name":{"480":{}},"parent":{}}],["userservice",{"_index":339,"name":{"394":{},"894":{}},"parent":{}}],["userservicestub",{"_index":689,"name":{"840":{},"906":{}},"parent":{}}],["userspagesizeoptions",{"_index":422,"name":{"481":{}},"parent":{}}],["usertablepaginator",{"_index":423,"name":{"482":{}},"parent":{}}],["usertablesort",{"_index":424,"name":{"483":{}},"parent":{}}],["v",{"_index":612,"name":{"742":{}},"parent":{}}],["validation",{"_index":78,"name":{"69":{}},"parent":{"70":{},"71":{}}}],["value",{"_index":198,"name":{"205":{},"740":{}},"parent":{}}],["vcard",{"_index":114,"name":{"107":{}},"parent":{}}],["vcardvalidation",{"_index":80,"name":{"71":{},"864":{}},"parent":{}}],["verify",{"_index":249,"name":{"285":{},"301":{}},"parent":{}}],["version",{"_index":119,"name":{"113":{}},"parent":{}}],["viewaccount",{"_index":441,"name":{"506":{},"551":{}},"parent":{}}],["viewrecipient",{"_index":553,"name":{"663":{}},"parent":{}}],["viewsender",{"_index":552,"name":{"662":{}},"parent":{}}],["viewtoken",{"_index":541,"name":{"649":{}},"parent":{}}],["viewtrader",{"_index":554,"name":{"664":{}},"parent":{}}],["viewtransaction",{"_index":440,"name":{"505":{},"684":{}},"parent":{}}],["w3",{"_index":150,"name":{"147":{},"151":{},"874":{}},"parent":{}}],["web3",{"_index":312,"name":{"362":{},"383":{}},"parent":{}}],["web3provider",{"_index":642,"name":{"772":{},"787":{},"802":{}},"parent":{}}],["weight",{"_index":171,"name":{"173":{}},"parent":{}}],["wrap",{"_index":358,"name":{"416":{}},"parent":{}}],["write",{"_index":621,"name":{"751":{}},"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","4194304":"Type alias","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":"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":54,"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":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":4194304,"name":"Signature","url":"modules/app__pgp_pgp_signer.html#signature","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"app/_pgp/pgp-signer"},{"id":275,"kind":65536,"name":"__type","url":"modules/app__pgp_pgp_signer.html#signature.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"app/_pgp/pgp-signer.Signature"},{"id":276,"kind":1024,"name":"engine","url":"modules/app__pgp_pgp_signer.html#signature.__type.engine","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_pgp/pgp-signer.Signature.__type"},{"id":277,"kind":1024,"name":"algo","url":"modules/app__pgp_pgp_signer.html#signature.__type.algo","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_pgp/pgp-signer.Signature.__type"},{"id":278,"kind":1024,"name":"data","url":"modules/app__pgp_pgp_signer.html#signature.__type.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_pgp/pgp-signer.Signature.__type"},{"id":279,"kind":1024,"name":"digest","url":"modules/app__pgp_pgp_signer.html#signature.__type.digest","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"app/_pgp/pgp-signer.Signature.__type"},{"id":280,"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":281,"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":282,"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":283,"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":284,"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":285,"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":286,"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":287,"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":288,"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":289,"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":290,"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":291,"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":292,"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":293,"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":294,"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":295,"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":296,"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":297,"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":298,"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":299,"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":300,"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":301,"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":302,"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":303,"kind":1,"name":"app/_services/auth.service","url":"modules/app__services_auth_service.html","classes":"tsd-kind-module"},{"id":304,"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":305,"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":306,"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":307,"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":308,"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":309,"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":310,"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":311,"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":312,"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":313,"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":314,"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":315,"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":316,"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":317,"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":318,"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":319,"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":320,"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":321,"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":322,"kind":1,"name":"app/_services/block-sync.service","url":"modules/app__services_block_sync_service.html","classes":"tsd-kind-module"},{"id":323,"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":324,"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":325,"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":326,"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":327,"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":328,"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":329,"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":330,"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":331,"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":332,"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":333,"kind":1,"name":"app/_services/error-dialog.service","url":"modules/app__services_error_dialog_service.html","classes":"tsd-kind-module"},{"id":334,"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":335,"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":336,"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":337,"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":338,"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":339,"kind":1,"name":"app/_services","url":"modules/app__services.html","classes":"tsd-kind-module"},{"id":340,"kind":1,"name":"app/_services/location.service","url":"modules/app__services_location_service.html","classes":"tsd-kind-module"},{"id":341,"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":342,"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":343,"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":344,"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":345,"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":346,"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":347,"kind":1,"name":"app/_services/logging.service","url":"modules/app__services_logging_service.html","classes":"tsd-kind-module"},{"id":348,"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":349,"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":350,"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":351,"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":352,"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":353,"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":354,"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":355,"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":356,"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":357,"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":358,"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":359,"kind":1,"name":"app/_services/registry.service","url":"modules/app__services_registry_service.html","classes":"tsd-kind-module"},{"id":360,"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":361,"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":362,"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":363,"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":364,"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":365,"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":366,"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":367,"kind":1,"name":"app/_services/token.service","url":"modules/app__services_token_service.html","classes":"tsd-kind-module"},{"id":368,"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":369,"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":370,"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":371,"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":372,"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":373,"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":374,"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":375,"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":376,"kind":1,"name":"app/_services/transaction.service","url":"modules/app__services_transaction_service.html","classes":"tsd-kind-module"},{"id":377,"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":378,"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":379,"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":380,"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":381,"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":382,"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":383,"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":384,"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":385,"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":386,"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":387,"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":388,"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":389,"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":390,"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":391,"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":392,"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":393,"kind":1,"name":"app/_services/user.service","url":"modules/app__services_user_service.html","classes":"tsd-kind-module"},{"id":394,"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":395,"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":396,"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":397,"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":398,"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":399,"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":400,"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":401,"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":402,"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":403,"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":404,"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":405,"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":406,"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":407,"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":408,"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":409,"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":410,"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":411,"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":412,"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":413,"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":414,"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":415,"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":416,"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":417,"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":418,"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":419,"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":420,"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":421,"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":422,"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":423,"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":424,"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":425,"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":426,"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":427,"kind":1,"name":"app/app-routing.module","url":"modules/app_app_routing_module.html","classes":"tsd-kind-module"},{"id":428,"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":429,"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":430,"kind":1,"name":"app/app.component","url":"modules/app_app_component.html","classes":"tsd-kind-module"},{"id":431,"kind":128,"name":"AppComponent","url":"classes/app_app_component.appcomponent.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"app/app.component"},{"id":432,"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":433,"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":434,"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":435,"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":436,"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":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/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":"CustomValidator","url":"modules/app__helpers.html#customvalidator","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":853,"kind":16777216,"name":"CustomErrorStateMatcher","url":"modules/app__helpers.html#customerrorstatematcher","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":854,"kind":16777216,"name":"MockBackendInterceptor","url":"modules/app__helpers.html#mockbackendinterceptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":855,"kind":16777216,"name":"MockBackendProvider","url":"modules/app__helpers.html#mockbackendprovider","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":856,"kind":16777216,"name":"arraySum","url":"modules/app__helpers.html#arraysum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":857,"kind":16777216,"name":"HttpGetter","url":"modules/app__helpers.html#httpgetter","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":858,"kind":16777216,"name":"HttpError","url":"modules/app__helpers.html#httperror","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":859,"kind":16777216,"name":"GlobalErrorHandler","url":"modules/app__helpers.html#globalerrorhandler","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":860,"kind":16777216,"name":"exportCsv","url":"modules/app__helpers.html#exportcsv","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":861,"kind":16777216,"name":"readCsv","url":"modules/app__helpers.html#readcsv","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_helpers"},{"id":862,"kind":16777216,"name":"copyToClipboard","url":"modules/app__helpers.html#copytoclipboard","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":"BlocksBloom","url":"modules/app__models.html#blocksbloom","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":869,"kind":16777216,"name":"TxToken","url":"modules/app__models.html#txtoken","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":870,"kind":16777216,"name":"Tx","url":"modules/app__models.html#tx","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":871,"kind":16777216,"name":"Transaction","url":"modules/app__models.html#transaction","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":872,"kind":16777216,"name":"Conversion","url":"modules/app__models.html#conversion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":873,"kind":16777216,"name":"Settings","url":"modules/app__models.html#settings","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":874,"kind":16777216,"name":"W3","url":"modules/app__models.html#w3","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":875,"kind":16777216,"name":"AccountDetails","url":"modules/app__models.html#accountdetails","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":876,"kind":16777216,"name":"Signature","url":"modules/app__models.html#signature","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":877,"kind":16777216,"name":"Meta","url":"modules/app__models.html#meta","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":878,"kind":16777216,"name":"MetaResponse","url":"modules/app__models.html#metaresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":879,"kind":16777216,"name":"defaultAccount","url":"modules/app__models.html#defaultaccount","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":880,"kind":16777216,"name":"Staff","url":"modules/app__models.html#staff","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":881,"kind":16777216,"name":"Token","url":"modules/app__models.html#token","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":882,"kind":16777216,"name":"Action","url":"modules/app__models.html#action","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":883,"kind":16777216,"name":"Category","url":"modules/app__models.html#category","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":884,"kind":16777216,"name":"AreaName","url":"modules/app__models.html#areaname","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"app/_models"},{"id":885,"kind":16777216,"name":"AreaType","url":"modules/app__models.html#areatype","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.406]],["parent/0",[]],["name/1",[1,60.406]],["parent/1",[0,6.733]],["name/2",[2,24.97]],["parent/2",[3,5.336]],["name/3",[4,60.406]],["parent/3",[3,5.336]],["name/4",[5,60.406]],["parent/4",[3,5.336]],["name/5",[6,60.406]],["parent/5",[3,5.336]],["name/6",[7,65.638]],["parent/6",[3,5.336]],["name/7",[8,65.638]],["parent/7",[3,5.336]],["name/8",[9,65.638]],["parent/8",[3,5.336]],["name/9",[10,65.638]],["parent/9",[3,5.336]],["name/10",[11,56.959]],["parent/10",[]],["name/11",[12,33.506,13,35.242]],["parent/11",[]],["name/12",[14,56.959]],["parent/12",[12,3.93,13,4.134]],["name/13",[2,24.97]],["parent/13",[12,3.93,15,4.134]],["name/14",[4,60.406]],["parent/14",[12,3.93,15,4.134]],["name/15",[5,60.406]],["parent/15",[12,3.93,15,4.134]],["name/16",[6,60.406]],["parent/16",[12,3.93,15,4.134]],["name/17",[16,65.638]],["parent/17",[12,3.93,15,4.134]],["name/18",[17,65.638]],["parent/18",[12,3.93,15,4.134]],["name/19",[18,65.638]],["parent/19",[12,3.93,15,4.134]],["name/20",[19,60.406]],["parent/20",[]],["name/21",[20,60.406]],["parent/21",[19,6.733]],["name/22",[2,24.97]],["parent/22",[21,6.733]],["name/23",[22,60.406]],["parent/23",[21,6.733]],["name/24",[23,56.959]],["parent/24",[]],["name/25",[24,60.406]],["parent/25",[]],["name/26",[25,60.406]],["parent/26",[24,6.733]],["name/27",[2,24.97]],["parent/27",[26,6.733]],["name/28",[22,60.406]],["parent/28",[26,6.733]],["name/29",[27,43.31,28,43.31]],["parent/29",[]],["name/30",[29,60.406]],["parent/30",[27,5.08,28,5.08]],["name/31",[30,43.31,31,43.31]],["parent/31",[]],["name/32",[32,60.406]],["parent/32",[30,5.08,31,5.08]],["name/33",[33,24.9,34,19.099,35,24.9,36,22.504]],["parent/33",[]],["name/34",[37,60.406]],["parent/34",[33,3.068,34,2.353,35,3.068,36,2.773]],["name/35",[2,24.97]],["parent/35",[33,3.068,34,2.353,35,3.068,38,3.407]],["name/36",[39,65.638]],["parent/36",[33,3.068,34,2.353,35,3.068,38,3.407]],["name/37",[40,60.406]],["parent/37",[]],["name/38",[41,60.406]],["parent/38",[40,6.733]],["name/39",[42,65.638]],["parent/39",[43,6.349]],["name/40",[44,65.638]],["parent/40",[43,6.349]],["name/41",[2,24.97]],["parent/41",[43,6.349]],["name/42",[45,43.31,46,38.993]],["parent/42",[]],["name/43",[47,60.406]],["parent/43",[45,5.08,46,4.574]],["name/44",[34,23.312,48,25.021,49,31.831]],["parent/44",[]],["name/45",[50,60.406]],["parent/45",[34,2.817,48,3.023,49,3.846]],["name/46",[51,42.4]],["parent/46",[34,2.817,48,3.023,52,3.846]],["name/47",[2,24.97]],["parent/47",[34,2.817,48,3.023,52,3.846]],["name/48",[53,65.638]],["parent/48",[34,2.817,48,3.023,52,3.846]],["name/49",[54,60.406]],["parent/49",[34,2.817,48,3.023,49,3.846]],["name/50",[2,24.97]],["parent/50",[34,2.817,48,3.023,55,3.534]],["name/51",[56,65.638]],["parent/51",[34,2.817,48,3.023,55,3.534]],["name/52",[57,65.638]],["parent/52",[34,2.817,48,3.023,55,3.534]],["name/53",[58,65.638]],["parent/53",[34,2.817,48,3.023,55,3.534]],["name/54",[59,65.638]],["parent/54",[34,2.817,48,3.023,55,3.534]],["name/55",[60,43.31,61,43.31]],["parent/55",[]],["name/56",[62,60.406]],["parent/56",[60,5.08,61,5.08]],["name/57",[63,42.4]],["parent/57",[]],["name/58",[64,33.506,65,40.839]],["parent/58",[]],["name/59",[66,60.406]],["parent/59",[64,3.93,65,4.79]],["name/60",[2,24.97]],["parent/60",[64,3.93,67,5.08]],["name/61",[68,54.385]],["parent/61",[64,3.93,67,5.08]],["name/62",[69,60.406]],["parent/62",[64,3.93,65,4.79]],["name/63",[51,42.4]],["parent/63",[64,3.93,70,5.52]],["name/64",[71,65.638]],["parent/64",[64,3.93,72,4.79]],["name/65",[73,65.638]],["parent/65",[64,3.93,72,4.79]],["name/66",[74,65.638]],["parent/66",[64,3.93,72,4.79]],["name/67",[46,38.993,75,43.31]],["parent/67",[]],["name/68",[76,60.406]],["parent/68",[46,4.574,75,5.08]],["name/69",[77,40.839,78,40.839]],["parent/69",[]],["name/70",[79,60.406]],["parent/70",[77,4.79,78,4.79]],["name/71",[80,60.406]],["parent/71",[77,4.79,78,4.79]],["name/72",[81,60.406]],["parent/72",[]],["name/73",[82,60.406]],["parent/73",[81,6.733]],["name/74",[2,24.97]],["parent/74",[83,6.733]],["name/75",[68,54.385]],["parent/75",[83,6.733]],["name/76",[84,38.993,85,43.31]],["parent/76",[]],["name/77",[86,60.406]],["parent/77",[84,4.574,85,5.08]],["name/78",[2,24.97]],["parent/78",[84,4.574,87,5.08]],["name/79",[68,54.385]],["parent/79",[84,4.574,87,5.08]],["name/80",[88,54.385]],["parent/80",[]],["name/81",[89,60.406]],["parent/81",[]],["name/82",[90,60.406]],["parent/82",[89,6.733]],["name/83",[2,24.97]],["parent/83",[91,6.733]],["name/84",[68,54.385]],["parent/84",[91,6.733]],["name/85",[92,50.618]],["parent/85",[]],["name/86",[93,60.406]],["parent/86",[92,5.642]],["name/87",[94,65.638]],["parent/87",[95,4.808]],["name/88",[96,65.638]],["parent/88",[95,4.808]],["name/89",[97,65.638]],["parent/89",[95,4.808]],["name/90",[98,60.406]],["parent/90",[95,4.808]],["name/91",[99,60.406]],["parent/91",[95,4.808]],["name/92",[100,65.638]],["parent/92",[95,4.808]],["name/93",[51,42.4]],["parent/93",[95,4.808]],["name/94",[101,65.638]],["parent/94",[102,4.895]],["name/95",[51,42.4]],["parent/95",[102,4.895]],["name/96",[103,65.638]],["parent/96",[104,6.733]],["name/97",[105,65.638]],["parent/97",[104,6.733]],["name/98",[106,65.638]],["parent/98",[102,4.895]],["name/99",[107,65.638]],["parent/99",[102,4.895]],["name/100",[108,65.638]],["parent/100",[95,4.808]],["name/101",[51,42.4]],["parent/101",[95,4.808]],["name/102",[109,60.406]],["parent/102",[102,4.895]],["name/103",[110,65.638]],["parent/103",[102,4.895]],["name/104",[111,65.638]],["parent/104",[102,4.895]],["name/105",[112,60.406]],["parent/105",[95,4.808]],["name/106",[113,56.959]],["parent/106",[95,4.808]],["name/107",[114,65.638]],["parent/107",[95,4.808]],["name/108",[51,42.4]],["parent/108",[95,4.808]],["name/109",[115,60.406]],["parent/109",[102,4.895]],["name/110",[116,65.638]],["parent/110",[102,4.895]],["name/111",[117,65.638]],["parent/111",[102,4.895]],["name/112",[118,65.638]],["parent/112",[102,4.895]],["name/113",[119,65.638]],["parent/113",[102,4.895]],["name/114",[120,50.618]],["parent/114",[92,5.642]],["name/115",[121,56.959]],["parent/115",[122,6.062]],["name/116",[123,52.329]],["parent/116",[122,6.062]],["name/117",[124,56.959]],["parent/117",[122,6.062]],["name/118",[125,54.385]],["parent/118",[122,6.062]],["name/119",[126,60.406]],["parent/119",[92,5.642]],["name/120",[123,52.329]],["parent/120",[127,6.349]],["name/121",[128,54.385]],["parent/121",[127,6.349]],["name/122",[120,50.618]],["parent/122",[127,6.349]],["name/123",[129,60.406]],["parent/123",[92,5.642]],["name/124",[128,54.385]],["parent/124",[130,6.733]],["name/125",[131,65.638]],["parent/125",[130,6.733]],["name/126",[132,60.406]],["parent/126",[92,5.642]],["name/127",[133,39.365]],["parent/127",[]],["name/128",[134,52.329]],["parent/128",[]],["name/129",[135,54.385]],["parent/129",[134,5.833]],["name/130",[128,54.385]],["parent/130",[136,5.833]],["name/131",[137,60.406]],["parent/131",[136,5.833]],["name/132",[138,65.638]],["parent/132",[136,5.833]],["name/133",[135,54.385]],["parent/133",[136,5.833]],["name/134",[139,65.638]],["parent/134",[136,5.833]],["name/135",[113,56.959]],["parent/135",[134,5.833]],["name/136",[140,50.618]],["parent/136",[141,6.733]],["name/137",[112,60.406]],["parent/137",[141,6.733]],["name/138",[142,60.406]],["parent/138",[134,5.833]],["name/139",[140,50.618]],["parent/139",[143,6.733]],["name/140",[144,65.638]],["parent/140",[143,6.733]],["name/141",[145,60.406]],["parent/141",[134,5.833]],["name/142",[140,50.618]],["parent/142",[146,6.733]],["name/143",[109,60.406]],["parent/143",[146,6.733]],["name/144",[147,56.959]],["parent/144",[]],["name/145",[148,60.406]],["parent/145",[147,6.349]],["name/146",[2,24.97]],["parent/146",[149,5.833]],["name/147",[150,56.959]],["parent/147",[149,5.833]],["name/148",[151,65.638]],["parent/148",[149,5.833]],["name/149",[13,49.152]],["parent/149",[149,5.833]],["name/150",[152,65.638]],["parent/150",[149,5.833]],["name/151",[150,56.959]],["parent/151",[147,6.349]],["name/152",[2,24.97]],["parent/152",[153,6.349]],["name/153",[125,54.385]],["parent/153",[153,6.349]],["name/154",[154,65.638]],["parent/154",[153,6.349]],["name/155",[155,60.406]],["parent/155",[]],["name/156",[156,60.406]],["parent/156",[155,6.733]],["name/157",[157,65.638]],["parent/157",[158,5.833]],["name/158",[115,60.406]],["parent/158",[158,5.833]],["name/159",[140,50.618]],["parent/159",[158,5.833]],["name/160",[159,65.638]],["parent/160",[158,5.833]],["name/161",[160,65.638]],["parent/161",[158,5.833]],["name/162",[161,60.406]],["parent/162",[]],["name/163",[162,54.385]],["parent/163",[161,6.733]],["name/164",[140,50.618]],["parent/164",[163,5.209]],["name/165",[164,60.406]],["parent/165",[163,5.209]],["name/166",[165,60.406]],["parent/166",[163,5.209]],["name/167",[166,65.638]],["parent/167",[163,5.209]],["name/168",[167,65.638]],["parent/168",[163,5.209]],["name/169",[168,65.638]],["parent/169",[163,5.209]],["name/170",[51,42.4]],["parent/170",[163,5.209]],["name/171",[169,65.638]],["parent/171",[170,6.733]],["name/172",[51,42.4]],["parent/172",[170,6.733]],["name/173",[171,65.638]],["parent/173",[172,6.733]],["name/174",[99,60.406]],["parent/174",[172,6.733]],["name/175",[173,65.638]],["parent/175",[163,5.209]],["name/176",[174,65.638]],["parent/176",[163,5.209]],["name/177",[175,50.618]],["parent/177",[]],["name/178",[176,60.406]],["parent/178",[175,5.642]],["name/179",[2,24.97]],["parent/179",[177,5.642]],["name/180",[178,65.638]],["parent/180",[177,5.642]],["name/181",[179,65.638]],["parent/181",[177,5.642]],["name/182",[180,65.638]],["parent/182",[177,5.642]],["name/183",[181,65.638]],["parent/183",[177,5.642]],["name/184",[182,65.638]],["parent/184",[177,5.642]],["name/185",[183,60.406]],["parent/185",[175,5.642]],["name/186",[2,24.97]],["parent/186",[184,6.062]],["name/187",[165,60.406]],["parent/187",[184,6.062]],["name/188",[140,50.618]],["parent/188",[184,6.062]],["name/189",[164,60.406]],["parent/189",[184,6.062]],["name/190",[185,50.618]],["parent/190",[175,5.642]],["name/191",[2,24.97]],["parent/191",[186,5.642]],["name/192",[187,65.638]],["parent/192",[186,5.642]],["name/193",[188,65.638]],["parent/193",[186,5.642]],["name/194",[189,65.638]],["parent/194",[186,5.642]],["name/195",[190,65.638]],["parent/195",[186,5.642]],["name/196",[191,65.638]],["parent/196",[186,5.642]],["name/197",[192,52.329]],["parent/197",[175,5.642]],["name/198",[2,24.97]],["parent/198",[193,5.209]],["name/199",[194,65.638]],["parent/199",[193,5.209]],["name/200",[195,65.638]],["parent/200",[193,5.209]],["name/201",[196,60.406]],["parent/201",[193,5.209]],["name/202",[197,65.638]],["parent/202",[193,5.209]],["name/203",[162,54.385]],["parent/203",[193,5.209]],["name/204",[185,50.618]],["parent/204",[193,5.209]],["name/205",[198,60.406]],["parent/205",[193,5.209]],["name/206",[98,60.406]],["parent/206",[193,5.209]],["name/207",[199,60.406]],["parent/207",[175,5.642]],["name/208",[2,24.97]],["parent/208",[200,5.336]],["name/209",[201,65.638]],["parent/209",[200,5.336]],["name/210",[202,65.638]],["parent/210",[200,5.336]],["name/211",[203,65.638]],["parent/211",[200,5.336]],["name/212",[204,60.406]],["parent/212",[200,5.336]],["name/213",[205,65.638]],["parent/213",[200,5.336]],["name/214",[137,60.406]],["parent/214",[200,5.336]],["name/215",[185,50.618]],["parent/215",[200,5.336]],["name/216",[206,49.152]],["parent/216",[]],["name/217",[207,13.471,208,16.115,209,31.831]],["parent/217",[]],["name/218",[210,60.406]],["parent/218",[207,1.628,208,1.947,209,3.846]],["name/219",[2,24.97]],["parent/219",[207,1.628,208,1.947,211,2.446]],["name/220",[212,60.406]],["parent/220",[207,1.628,208,1.947,211,2.446]],["name/221",[213,60.406]],["parent/221",[207,1.628,208,1.947,211,2.446]],["name/222",[214,60.406]],["parent/222",[207,1.628,208,1.947,211,2.446]],["name/223",[215,60.406]],["parent/223",[207,1.628,208,1.947,211,2.446]],["name/224",[216,56.959]],["parent/224",[207,1.628,208,1.947,211,2.446]],["name/225",[217,60.406]],["parent/225",[207,1.628,208,1.947,211,2.446]],["name/226",[218,60.406]],["parent/226",[207,1.628,208,1.947,211,2.446]],["name/227",[219,60.406]],["parent/227",[207,1.628,208,1.947,211,2.446]],["name/228",[220,60.406]],["parent/228",[207,1.628,208,1.947,211,2.446]],["name/229",[221,56.959]],["parent/229",[207,1.628,208,1.947,211,2.446]],["name/230",[222,60.406]],["parent/230",[207,1.628,208,1.947,211,2.446]],["name/231",[223,60.406]],["parent/231",[207,1.628,208,1.947,211,2.446]],["name/232",[224,60.406]],["parent/232",[207,1.628,208,1.947,211,2.446]],["name/233",[225,60.406]],["parent/233",[207,1.628,208,1.947,211,2.446]],["name/234",[226,60.406]],["parent/234",[207,1.628,208,1.947,211,2.446]],["name/235",[227,60.406]],["parent/235",[207,1.628,208,1.947,211,2.446]],["name/236",[228,60.406]],["parent/236",[207,1.628,208,1.947,211,2.446]],["name/237",[229,60.406]],["parent/237",[207,1.628,208,1.947,211,2.446]],["name/238",[230,60.406]],["parent/238",[207,1.628,208,1.947,211,2.446]],["name/239",[231,60.406]],["parent/239",[207,1.628,208,1.947,211,2.446]],["name/240",[232,60.406]],["parent/240",[207,1.628,208,1.947,211,2.446]],["name/241",[233,60.406]],["parent/241",[207,1.628,208,1.947,211,2.446]],["name/242",[234,60.406]],["parent/242",[207,1.628,208,1.947,211,2.446]],["name/243",[235,60.406]],["parent/243",[207,1.628,208,1.947,211,2.446]],["name/244",[236,54.385]],["parent/244",[207,1.628,208,1.947,211,2.446]],["name/245",[237,56.959]],["parent/245",[207,1.628,208,1.947,209,3.846]],["name/246",[212,60.406]],["parent/246",[207,1.628,208,1.947,238,2.473]],["name/247",[213,60.406]],["parent/247",[207,1.628,208,1.947,238,2.473]],["name/248",[214,60.406]],["parent/248",[207,1.628,208,1.947,238,2.473]],["name/249",[215,60.406]],["parent/249",[207,1.628,208,1.947,238,2.473]],["name/250",[216,56.959]],["parent/250",[207,1.628,208,1.947,238,2.473]],["name/251",[217,60.406]],["parent/251",[207,1.628,208,1.947,238,2.473]],["name/252",[218,60.406]],["parent/252",[207,1.628,208,1.947,238,2.473]],["name/253",[219,60.406]],["parent/253",[207,1.628,208,1.947,238,2.473]],["name/254",[220,60.406]],["parent/254",[207,1.628,208,1.947,238,2.473]],["name/255",[221,56.959]],["parent/255",[207,1.628,208,1.947,238,2.473]],["name/256",[222,60.406]],["parent/256",[207,1.628,208,1.947,238,2.473]],["name/257",[223,60.406]],["parent/257",[207,1.628,208,1.947,238,2.473]],["name/258",[224,60.406]],["parent/258",[207,1.628,208,1.947,238,2.473]],["name/259",[225,60.406]],["parent/259",[207,1.628,208,1.947,238,2.473]],["name/260",[226,60.406]],["parent/260",[207,1.628,208,1.947,238,2.473]],["name/261",[227,60.406]],["parent/261",[207,1.628,208,1.947,238,2.473]],["name/262",[228,60.406]],["parent/262",[207,1.628,208,1.947,238,2.473]],["name/263",[229,60.406]],["parent/263",[207,1.628,208,1.947,238,2.473]],["name/264",[230,60.406]],["parent/264",[207,1.628,208,1.947,238,2.473]],["name/265",[231,60.406]],["parent/265",[207,1.628,208,1.947,238,2.473]],["name/266",[232,60.406]],["parent/266",[207,1.628,208,1.947,238,2.473]],["name/267",[233,60.406]],["parent/267",[207,1.628,208,1.947,238,2.473]],["name/268",[234,60.406]],["parent/268",[207,1.628,208,1.947,238,2.473]],["name/269",[235,60.406]],["parent/269",[207,1.628,208,1.947,238,2.473]],["name/270",[236,54.385]],["parent/270",[207,1.628,208,1.947,238,2.473]],["name/271",[207,17.283,239,34.322]],["parent/271",[]],["name/272",[240,60.406]],["parent/272",[207,2.027,239,4.026]],["name/273",[124,56.959]],["parent/273",[207,2.027,241,5.52]],["name/274",[120,50.618]],["parent/274",[207,2.027,239,4.026]],["name/275",[51,42.4]],["parent/275",[207,2.027,242,5.52]],["name/276",[125,54.385]],["parent/276",[207,2.027,243,4.574]],["name/277",[121,56.959]],["parent/277",[207,2.027,243,4.574]],["name/278",[123,52.329]],["parent/278",[207,2.027,243,4.574]],["name/279",[124,56.959]],["parent/279",[207,2.027,243,4.574]],["name/280",[239,47.87]],["parent/280",[207,2.027,239,4.026]],["name/281",[244,60.406]],["parent/281",[207,2.027,245,4.257]],["name/282",[246,60.406]],["parent/282",[207,2.027,245,4.257]],["name/283",[247,60.406]],["parent/283",[207,2.027,245,4.257]],["name/284",[248,60.406]],["parent/284",[207,2.027,245,4.257]],["name/285",[249,60.406]],["parent/285",[207,2.027,245,4.257]],["name/286",[236,54.385]],["parent/286",[207,2.027,245,4.257]],["name/287",[250,60.406]],["parent/287",[207,2.027,239,4.026]],["name/288",[2,24.97]],["parent/288",[207,2.027,251,3.508]],["name/289",[125,54.385]],["parent/289",[207,2.027,251,3.508]],["name/290",[121,56.959]],["parent/290",[207,2.027,251,3.508]],["name/291",[252,65.638]],["parent/291",[207,2.027,251,3.508]],["name/292",[120,50.618]],["parent/292",[207,2.027,251,3.508]],["name/293",[253,60.406]],["parent/293",[207,2.027,251,3.508]],["name/294",[244,60.406]],["parent/294",[207,2.027,251,3.508]],["name/295",[51,42.4]],["parent/295",[207,2.027,251,3.508]],["name/296",[246,60.406]],["parent/296",[207,2.027,251,3.508]],["name/297",[51,42.4]],["parent/297",[207,2.027,251,3.508]],["name/298",[254,56.959]],["parent/298",[207,2.027,251,3.508]],["name/299",[247,60.406]],["parent/299",[207,2.027,251,3.508]],["name/300",[248,60.406]],["parent/300",[207,2.027,251,3.508]],["name/301",[249,60.406]],["parent/301",[207,2.027,251,3.508]],["name/302",[236,54.385]],["parent/302",[207,2.027,251,3.508]],["name/303",[255,60.406]],["parent/303",[]],["name/304",[256,60.406]],["parent/304",[255,6.733]],["name/305",[2,24.97]],["parent/305",[257,4.511]],["name/306",[258,65.638]],["parent/306",[257,4.511]],["name/307",[259,65.638]],["parent/307",[257,4.511]],["name/308",[237,56.959]],["parent/308",[257,4.511]],["name/309",[260,65.638]],["parent/309",[257,4.511]],["name/310",[261,65.638]],["parent/310",[257,4.511]],["name/311",[262,65.638]],["parent/311",[257,4.511]],["name/312",[263,65.638]],["parent/312",[257,4.511]],["name/313",[264,65.638]],["parent/313",[257,4.511]],["name/314",[265,60.406]],["parent/314",[257,4.511]],["name/315",[266,65.638]],["parent/315",[257,4.511]],["name/316",[267,65.638]],["parent/316",[257,4.511]],["name/317",[268,65.638]],["parent/317",[257,4.511]],["name/318",[269,60.406]],["parent/318",[257,4.511]],["name/319",[270,65.638]],["parent/319",[257,4.511]],["name/320",[216,56.959]],["parent/320",[257,4.511]],["name/321",[221,56.959]],["parent/321",[257,4.511]],["name/322",[271,32.102,272,43.31]],["parent/322",[]],["name/323",[273,60.406]],["parent/323",[271,3.766,272,5.08]],["name/324",[2,24.97]],["parent/324",[271,3.766,274,3.93]],["name/325",[275,60.406]],["parent/325",[271,3.766,274,3.93]],["name/326",[276,60.406]],["parent/326",[271,3.766,274,3.93]],["name/327",[277,65.638]],["parent/327",[271,3.766,274,3.93]],["name/328",[278,65.638]],["parent/328",[271,3.766,274,3.93]],["name/329",[279,65.638]],["parent/329",[271,3.766,274,3.93]],["name/330",[280,65.638]],["parent/330",[271,3.766,274,3.93]],["name/331",[281,65.638]],["parent/331",[271,3.766,274,3.93]],["name/332",[282,65.638]],["parent/332",[271,3.766,274,3.93]],["name/333",[283,36.293,284,43.31]],["parent/333",[]],["name/334",[285,60.406]],["parent/334",[283,4.257,284,5.08]],["name/335",[2,24.97]],["parent/335",[283,4.257,286,4.574]],["name/336",[287,65.638]],["parent/336",[283,4.257,286,4.574]],["name/337",[288,65.638]],["parent/337",[283,4.257,286,4.574]],["name/338",[289,65.638]],["parent/338",[283,4.257,286,4.574]],["name/339",[290,46.731]],["parent/339",[]],["name/340",[291,60.406]],["parent/340",[]],["name/341",[292,60.406]],["parent/341",[291,6.733]],["name/342",[2,24.97]],["parent/342",[293,5.833]],["name/343",[294,65.638]],["parent/343",[293,5.833]],["name/344",[295,65.638]],["parent/344",[293,5.833]],["name/345",[296,65.638]],["parent/345",[293,5.833]],["name/346",[297,65.638]],["parent/346",[293,5.833]],["name/347",[298,60.406]],["parent/347",[]],["name/348",[254,56.959]],["parent/348",[298,6.733]],["name/349",[2,24.97]],["parent/349",[299,5.094]],["name/350",[300,65.638]],["parent/350",[299,5.094]],["name/351",[301,65.638]],["parent/351",[299,5.094]],["name/352",[302,65.638]],["parent/352",[299,5.094]],["name/353",[303,65.638]],["parent/353",[299,5.094]],["name/354",[304,65.638]],["parent/354",[299,5.094]],["name/355",[305,65.638]],["parent/355",[299,5.094]],["name/356",[306,65.638]],["parent/356",[299,5.094]],["name/357",[307,65.638]],["parent/357",[299,5.094]],["name/358",[308,65.638]],["parent/358",[299,5.094]],["name/359",[309,60.406]],["parent/359",[]],["name/360",[310,65.638]],["parent/360",[309,6.733]],["name/361",[2,24.97]],["parent/361",[311,5.642]],["name/362",[312,60.406]],["parent/362",[311,5.642]],["name/363",[313,65.638]],["parent/363",[311,5.642]],["name/364",[13,49.152]],["parent/364",[311,5.642]],["name/365",[314,65.638]],["parent/365",[311,5.642]],["name/366",[315,65.638]],["parent/366",[311,5.642]],["name/367",[316,60.406]],["parent/367",[]],["name/368",[317,60.406]],["parent/368",[316,6.733]],["name/369",[2,24.97]],["parent/369",[318,5.479]],["name/370",[13,49.152]],["parent/370",[318,5.479]],["name/371",[14,56.959]],["parent/371",[318,5.479]],["name/372",[319,65.638]],["parent/372",[318,5.479]],["name/373",[320,65.638]],["parent/373",[318,5.479]],["name/374",[321,65.638]],["parent/374",[318,5.479]],["name/375",[322,65.638]],["parent/375",[318,5.479]],["name/376",[323,60.406]],["parent/376",[]],["name/377",[324,60.406]],["parent/377",[323,6.733]],["name/378",[2,24.97]],["parent/378",[325,4.65]],["name/379",[326,56.959]],["parent/379",[325,4.65]],["name/380",[327,65.638]],["parent/380",[325,4.65]],["name/381",[328,65.638]],["parent/381",[325,4.65]],["name/382",[329,65.638]],["parent/382",[325,4.65]],["name/383",[312,60.406]],["parent/383",[325,4.65]],["name/384",[13,49.152]],["parent/384",[325,4.65]],["name/385",[330,60.406]],["parent/385",[325,4.65]],["name/386",[331,65.638]],["parent/386",[325,4.65]],["name/387",[332,60.406]],["parent/387",[325,4.65]],["name/388",[333,60.406]],["parent/388",[325,4.65]],["name/389",[334,65.638]],["parent/389",[325,4.65]],["name/390",[335,65.638]],["parent/390",[325,4.65]],["name/391",[336,65.638]],["parent/391",[325,4.65]],["name/392",[337,65.638]],["parent/392",[325,4.65]],["name/393",[338,60.406]],["parent/393",[]],["name/394",[339,60.406]],["parent/394",[338,6.733]],["name/395",[2,24.97]],["parent/395",[340,3.804]],["name/396",[341,65.638]],["parent/396",[340,3.804]],["name/397",[253,60.406]],["parent/397",[340,3.804]],["name/398",[239,47.87]],["parent/398",[340,3.804]],["name/399",[13,49.152]],["parent/399",[340,3.804]],["name/400",[342,56.959]],["parent/400",[340,3.804]],["name/401",[343,65.638]],["parent/401",[340,3.804]],["name/402",[344,65.638]],["parent/402",[340,3.804]],["name/403",[345,56.959]],["parent/403",[340,3.804]],["name/404",[346,65.638]],["parent/404",[340,3.804]],["name/405",[347,65.638]],["parent/405",[340,3.804]],["name/406",[348,60.406]],["parent/406",[340,3.804]],["name/407",[349,65.638]],["parent/407",[340,3.804]],["name/408",[350,65.638]],["parent/408",[340,3.804]],["name/409",[351,65.638]],["parent/409",[340,3.804]],["name/410",[352,65.638]],["parent/410",[340,3.804]],["name/411",[353,65.638]],["parent/411",[340,3.804]],["name/412",[354,60.406]],["parent/412",[340,3.804]],["name/413",[355,56.959]],["parent/413",[340,3.804]],["name/414",[356,65.638]],["parent/414",[340,3.804]],["name/415",[357,65.638]],["parent/415",[340,3.804]],["name/416",[358,65.638]],["parent/416",[340,3.804]],["name/417",[359,65.638]],["parent/417",[340,3.804]],["name/418",[360,65.638]],["parent/418",[340,3.804]],["name/419",[361,65.638]],["parent/419",[340,3.804]],["name/420",[362,65.638]],["parent/420",[340,3.804]],["name/421",[363,65.638]],["parent/421",[340,3.804]],["name/422",[364,65.638]],["parent/422",[340,3.804]],["name/423",[365,65.638]],["parent/423",[340,3.804]],["name/424",[366,65.638]],["parent/424",[340,3.804]],["name/425",[367,65.638]],["parent/425",[340,3.804]],["name/426",[368,65.638]],["parent/426",[340,3.804]],["name/427",[369,40.839,370,29.451]],["parent/427",[]],["name/428",[371,65.638]],["parent/428",[369,4.79,370,3.455]],["name/429",[2,24.97]],["parent/429",[369,4.79,372,5.52]],["name/430",[373,60.406]],["parent/430",[]],["name/431",[374,65.638]],["parent/431",[373,6.733]],["name/432",[2,24.97]],["parent/432",[375,5.336]],["name/433",[376,65.638]],["parent/433",[375,5.336]],["name/434",[275,60.406]],["parent/434",[375,5.336]],["name/435",[276,60.406]],["parent/435",[375,5.336]],["name/436",[377,65.638]],["parent/436",[375,5.336]],["name/437",[378,65.638]],["parent/437",[375,5.336]],["name/438",[379,65.638]],["parent/438",[375,5.336]],["name/439",[380,65.638]],["parent/439",[375,5.336]],["name/440",[381,60.406]],["parent/440",[]],["name/441",[382,65.638]],["parent/441",[381,6.733]],["name/442",[2,24.97]],["parent/442",[383,7.316]],["name/443",[384,65.638]],["parent/443",[]],["name/444",[385,36.293,386,38.993]],["parent/444",[]],["name/445",[387,65.638]],["parent/445",[385,4.257,386,4.574]],["name/446",[2,24.97]],["parent/446",[385,4.257,388,4.574]],["name/447",[128,54.385]],["parent/447",[385,4.257,388,4.574]],["name/448",[389,65.638]],["parent/448",[385,4.257,388,4.574]],["name/449",[390,65.638]],["parent/449",[385,4.257,388,4.574]],["name/450",[370,29.451,391,40.839]],["parent/450",[]],["name/451",[392,65.638]],["parent/451",[370,3.455,391,4.79]],["name/452",[2,24.97]],["parent/452",[391,4.79,393,5.52]],["name/453",[394,60.406]],["parent/453",[]],["name/454",[395,65.638]],["parent/454",[394,6.733]],["name/455",[2,24.97]],["parent/455",[396,4.991]],["name/456",[397,65.638]],["parent/456",[396,4.991]],["name/457",[398,54.385]],["parent/457",[396,4.991]],["name/458",[399,65.638]],["parent/458",[396,4.991]],["name/459",[36,49.152]],["parent/459",[396,4.991]],["name/460",[400,41.716]],["parent/460",[396,4.991]],["name/461",[401,65.638]],["parent/461",[396,4.991]],["name/462",[402,56.959]],["parent/462",[396,4.991]],["name/463",[265,60.406]],["parent/463",[396,4.991]],["name/464",[403,65.638]],["parent/464",[396,4.991]],["name/465",[404,65.638]],["parent/465",[396,4.991]],["name/466",[405,60.406]],["parent/466",[]],["name/467",[406,65.638]],["parent/467",[405,6.733]],["name/468",[2,24.97]],["parent/468",[407,7.316]],["name/469",[408,15.063,409,17.148,410,28.287]],["parent/469",[]],["name/470",[411,65.638]],["parent/470",[408,1.82,409,2.072,410,3.418]],["name/471",[2,24.97]],["parent/471",[408,1.82,409,2.072,412,2.103]],["name/472",[413,65.638]],["parent/472",[408,1.82,409,2.072,412,2.103]],["name/473",[414,65.638]],["parent/473",[408,1.82,409,2.072,412,2.103]],["name/474",[415,65.638]],["parent/474",[408,1.82,409,2.072,412,2.103]],["name/475",[416,65.638]],["parent/475",[408,1.82,409,2.072,412,2.103]],["name/476",[417,65.638]],["parent/476",[408,1.82,409,2.072,412,2.103]],["name/477",[418,65.638]],["parent/477",[408,1.82,409,2.072,412,2.103]],["name/478",[419,65.638]],["parent/478",[408,1.82,409,2.072,412,2.103]],["name/479",[420,65.638]],["parent/479",[408,1.82,409,2.072,412,2.103]],["name/480",[421,65.638]],["parent/480",[408,1.82,409,2.072,412,2.103]],["name/481",[422,65.638]],["parent/481",[408,1.82,409,2.072,412,2.103]],["name/482",[423,65.638]],["parent/482",[408,1.82,409,2.072,412,2.103]],["name/483",[424,65.638]],["parent/483",[408,1.82,409,2.072,412,2.103]],["name/484",[425,65.638]],["parent/484",[408,1.82,409,2.072,412,2.103]],["name/485",[426,65.638]],["parent/485",[408,1.82,409,2.072,412,2.103]],["name/486",[427,65.638]],["parent/486",[408,1.82,409,2.072,412,2.103]],["name/487",[428,65.638]],["parent/487",[408,1.82,409,2.072,412,2.103]],["name/488",[342,56.959]],["parent/488",[408,1.82,409,2.072,412,2.103]],["name/489",[429,60.406]],["parent/489",[408,1.82,409,2.072,412,2.103]],["name/490",[430,60.406]],["parent/490",[408,1.82,409,2.072,412,2.103]],["name/491",[431,60.406]],["parent/491",[408,1.82,409,2.072,412,2.103]],["name/492",[432,65.638]],["parent/492",[408,1.82,409,2.072,412,2.103]],["name/493",[192,52.329]],["parent/493",[408,1.82,409,2.072,412,2.103]],["name/494",[326,56.959]],["parent/494",[408,1.82,409,2.072,412,2.103]],["name/495",[433,60.406]],["parent/495",[408,1.82,409,2.072,412,2.103]],["name/496",[434,56.959]],["parent/496",[408,1.82,409,2.072,412,2.103]],["name/497",[435,60.406]],["parent/497",[408,1.82,409,2.072,412,2.103]],["name/498",[436,60.406]],["parent/498",[408,1.82,409,2.072,412,2.103]],["name/499",[36,49.152]],["parent/499",[408,1.82,409,2.072,412,2.103]],["name/500",[398,54.385]],["parent/500",[408,1.82,409,2.072,412,2.103]],["name/501",[437,65.638]],["parent/501",[408,1.82,409,2.072,412,2.103]],["name/502",[400,41.716]],["parent/502",[408,1.82,409,2.072,412,2.103]],["name/503",[438,65.638]],["parent/503",[408,1.82,409,2.072,412,2.103]],["name/504",[439,65.638]],["parent/504",[408,1.82,409,2.072,412,2.103]],["name/505",[440,60.406]],["parent/505",[408,1.82,409,2.072,412,2.103]],["name/506",[441,60.406]],["parent/506",[408,1.82,409,2.072,412,2.103]],["name/507",[442,65.638]],["parent/507",[408,1.82,409,2.072,412,2.103]],["name/508",[443,65.638]],["parent/508",[408,1.82,409,2.072,412,2.103]],["name/509",[444,60.406]],["parent/509",[408,1.82,409,2.072,412,2.103]],["name/510",[445,60.406]],["parent/510",[408,1.82,409,2.072,412,2.103]],["name/511",[348,60.406]],["parent/511",[408,1.82,409,2.072,412,2.103]],["name/512",[446,50.618]],["parent/512",[408,1.82,409,2.072,412,2.103]],["name/513",[447,60.406]],["parent/513",[408,1.82,409,2.072,412,2.103]],["name/514",[408,15.063,448,21.712,449,33.757]],["parent/514",[]],["name/515",[450,65.638]],["parent/515",[408,1.82,448,2.624,449,4.079]],["name/516",[2,24.97]],["parent/516",[408,1.82,448,2.624,451,2.695]],["name/517",[452,65.638]],["parent/517",[408,1.82,448,2.624,451,2.695]],["name/518",[453,65.638]],["parent/518",[408,1.82,448,2.624,451,2.695]],["name/519",[454,65.638]],["parent/519",[408,1.82,448,2.624,451,2.695]],["name/520",[455,65.638]],["parent/520",[408,1.82,448,2.624,451,2.695]],["name/521",[456,65.638]],["parent/521",[408,1.82,448,2.624,451,2.695]],["name/522",[457,65.638]],["parent/522",[408,1.82,448,2.624,451,2.695]],["name/523",[458,65.638]],["parent/523",[408,1.82,448,2.624,451,2.695]],["name/524",[459,65.638]],["parent/524",[408,1.82,448,2.624,451,2.695]],["name/525",[460,65.638]],["parent/525",[408,1.82,448,2.624,451,2.695]],["name/526",[36,49.152]],["parent/526",[408,1.82,448,2.624,451,2.695]],["name/527",[400,41.716]],["parent/527",[408,1.82,448,2.624,451,2.695]],["name/528",[461,65.638]],["parent/528",[408,1.82,448,2.624,451,2.695]],["name/529",[462,65.638]],["parent/529",[408,1.82,448,2.624,451,2.695]],["name/530",[463,65.638]],["parent/530",[408,1.82,448,2.624,451,2.695]],["name/531",[464,65.638]],["parent/531",[408,1.82,448,2.624,451,2.695]],["name/532",[465,65.638]],["parent/532",[408,1.82,448,2.624,451,2.695]],["name/533",[466,65.638]],["parent/533",[408,1.82,448,2.624,451,2.695]],["name/534",[370,29.451,467,40.839]],["parent/534",[]],["name/535",[468,65.638]],["parent/535",[370,3.455,467,4.79]],["name/536",[2,24.97]],["parent/536",[467,4.79,469,5.52]],["name/537",[470,60.406]],["parent/537",[]],["name/538",[471,65.638]],["parent/538",[470,6.733]],["name/539",[2,24.97]],["parent/539",[472,4.578]],["name/540",[473,54.385]],["parent/540",[472,4.578]],["name/541",[342,56.959]],["parent/541",[472,4.578]],["name/542",[474,56.959]],["parent/542",[472,4.578]],["name/543",[475,60.406]],["parent/543",[472,4.578]],["name/544",[476,60.406]],["parent/544",[472,4.578]],["name/545",[429,60.406]],["parent/545",[472,4.578]],["name/546",[434,56.959]],["parent/546",[472,4.578]],["name/547",[477,52.329]],["parent/547",[472,4.578]],["name/548",[478,52.329]],["parent/548",[472,4.578]],["name/549",[400,41.716]],["parent/549",[472,4.578]],["name/550",[479,52.329]],["parent/550",[472,4.578]],["name/551",[441,60.406]],["parent/551",[472,4.578]],["name/552",[444,60.406]],["parent/552",[472,4.578]],["name/553",[480,65.638]],["parent/553",[472,4.578]],["name/554",[446,50.618]],["parent/554",[472,4.578]],["name/555",[481,60.406]],["parent/555",[]],["name/556",[482,65.638]],["parent/556",[481,6.733]],["name/557",[2,24.97]],["parent/557",[483,7.316]],["name/558",[484,24.103,485,24.103,486,33.757]],["parent/558",[]],["name/559",[487,65.638]],["parent/559",[484,2.912,485,2.912,486,4.079]],["name/560",[2,24.97]],["parent/560",[484,2.912,485,2.912,488,3.023]],["name/561",[489,65.638]],["parent/561",[484,2.912,485,2.912,488,3.023]],["name/562",[36,49.152]],["parent/562",[484,2.912,485,2.912,488,3.023]],["name/563",[398,54.385]],["parent/563",[484,2.912,485,2.912,488,3.023]],["name/564",[430,60.406]],["parent/564",[484,2.912,485,2.912,488,3.023]],["name/565",[431,60.406]],["parent/565",[484,2.912,485,2.912,488,3.023]],["name/566",[434,56.959]],["parent/566",[484,2.912,485,2.912,488,3.023]],["name/567",[436,60.406]],["parent/567",[484,2.912,485,2.912,488,3.023]],["name/568",[400,41.716]],["parent/568",[484,2.912,485,2.912,488,3.023]],["name/569",[490,65.638]],["parent/569",[484,2.912,485,2.912,488,3.023]],["name/570",[402,56.959]],["parent/570",[484,2.912,485,2.912,488,3.023]],["name/571",[370,29.451,491,40.839]],["parent/571",[]],["name/572",[492,65.638]],["parent/572",[370,3.455,491,4.79]],["name/573",[2,24.97]],["parent/573",[491,4.79,493,5.52]],["name/574",[494,60.406]],["parent/574",[]],["name/575",[495,65.638]],["parent/575",[494,6.733]],["name/576",[2,24.97]],["parent/576",[496,4.726]],["name/577",[473,54.385]],["parent/577",[496,4.726]],["name/578",[474,56.959]],["parent/578",[496,4.726]],["name/579",[135,54.385]],["parent/579",[496,4.726]],["name/580",[345,56.959]],["parent/580",[496,4.726]],["name/581",[477,52.329]],["parent/581",[496,4.726]],["name/582",[478,52.329]],["parent/582",[496,4.726]],["name/583",[400,41.716]],["parent/583",[496,4.726]],["name/584",[479,52.329]],["parent/584",[496,4.726]],["name/585",[497,65.638]],["parent/585",[496,4.726]],["name/586",[355,56.959]],["parent/586",[496,4.726]],["name/587",[498,65.638]],["parent/587",[496,4.726]],["name/588",[499,65.638]],["parent/588",[496,4.726]],["name/589",[446,50.618]],["parent/589",[496,4.726]],["name/590",[500,60.406]],["parent/590",[]],["name/591",[501,65.638]],["parent/591",[500,6.733]],["name/592",[2,24.97]],["parent/592",[502,7.316]],["name/593",[370,29.451,503,40.839]],["parent/593",[]],["name/594",[504,65.638]],["parent/594",[370,3.455,503,4.79]],["name/595",[2,24.97]],["parent/595",[503,4.79,505,5.52]],["name/596",[506,60.406]],["parent/596",[]],["name/597",[507,65.638]],["parent/597",[506,6.733]],["name/598",[2,24.97]],["parent/598",[508,6.733]],["name/599",[509,65.638]],["parent/599",[508,6.733]],["name/600",[510,60.406]],["parent/600",[]],["name/601",[511,65.638]],["parent/601",[510,6.733]],["name/602",[2,24.97]],["parent/602",[512,7.316]],["name/603",[513,60.406]],["parent/603",[]],["name/604",[514,65.638]],["parent/604",[513,6.733]],["name/605",[2,24.97]],["parent/605",[515,5.479]],["name/606",[516,65.638]],["parent/606",[515,5.479]],["name/607",[398,54.385]],["parent/607",[515,5.479]],["name/608",[36,49.152]],["parent/608",[515,5.479]],["name/609",[400,41.716]],["parent/609",[515,5.479]],["name/610",[517,65.638]],["parent/610",[515,5.479]],["name/611",[402,56.959]],["parent/611",[515,5.479]],["name/612",[370,29.451,518,40.839]],["parent/612",[]],["name/613",[519,65.638]],["parent/613",[370,3.455,518,4.79]],["name/614",[2,24.97]],["parent/614",[518,4.79,520,5.52]],["name/615",[521,60.406]],["parent/615",[]],["name/616",[522,65.638]],["parent/616",[521,6.733]],["name/617",[2,24.97]],["parent/617",[523,4.991]],["name/618",[524,65.638]],["parent/618",[523,4.991]],["name/619",[473,54.385]],["parent/619",[523,4.991]],["name/620",[474,56.959]],["parent/620",[523,4.991]],["name/621",[525,65.638]],["parent/621",[523,4.991]],["name/622",[477,52.329]],["parent/622",[523,4.991]],["name/623",[478,52.329]],["parent/623",[523,4.991]],["name/624",[400,41.716]],["parent/624",[523,4.991]],["name/625",[479,52.329]],["parent/625",[523,4.991]],["name/626",[446,50.618]],["parent/626",[523,4.991]],["name/627",[269,60.406]],["parent/627",[523,4.991]],["name/628",[526,60.406]],["parent/628",[]],["name/629",[527,65.638]],["parent/629",[526,6.733]],["name/630",[2,24.97]],["parent/630",[528,7.316]],["name/631",[410,28.287,529,29.243,530,29.243]],["parent/631",[]],["name/632",[531,65.638]],["parent/632",[410,3.418,529,3.534,530,3.534]],["name/633",[2,24.97]],["parent/633",[529,3.534,530,3.534,532,3.846]],["name/634",[162,54.385]],["parent/634",[529,3.534,530,3.534,532,3.846]],["name/635",[400,41.716]],["parent/635",[529,3.534,530,3.534,532,3.846]],["name/636",[370,29.451,533,40.839]],["parent/636",[]],["name/637",[534,65.638]],["parent/637",[370,3.455,533,4.79]],["name/638",[2,24.97]],["parent/638",[533,4.79,535,5.52]],["name/639",[536,60.406]],["parent/639",[]],["name/640",[537,65.638]],["parent/640",[536,6.733]],["name/641",[2,24.97]],["parent/641",[538,5.094]],["name/642",[473,54.385]],["parent/642",[538,5.094]],["name/643",[539,65.638]],["parent/643",[538,5.094]],["name/644",[477,52.329]],["parent/644",[538,5.094]],["name/645",[478,52.329]],["parent/645",[538,5.094]],["name/646",[540,65.638]],["parent/646",[538,5.094]],["name/647",[400,41.716]],["parent/647",[538,5.094]],["name/648",[479,52.329]],["parent/648",[538,5.094]],["name/649",[541,65.638]],["parent/649",[538,5.094]],["name/650",[446,50.618]],["parent/650",[538,5.094]],["name/651",[542,60.406]],["parent/651",[]],["name/652",[543,65.638]],["parent/652",[542,6.733]],["name/653",[2,24.97]],["parent/653",[544,7.316]],["name/654",[410,28.287,545,24.103,546,24.103]],["parent/654",[]],["name/655",[547,65.638]],["parent/655",[410,3.418,545,2.912,546,2.912]],["name/656",[2,24.97]],["parent/656",[545,2.912,546,2.912,548,3.023]],["name/657",[192,52.329]],["parent/657",[545,2.912,546,2.912,548,3.023]],["name/658",[549,65.638]],["parent/658",[545,2.912,546,2.912,548,3.023]],["name/659",[550,65.638]],["parent/659",[545,2.912,546,2.912,548,3.023]],["name/660",[551,65.638]],["parent/660",[545,2.912,546,2.912,548,3.023]],["name/661",[400,41.716]],["parent/661",[545,2.912,546,2.912,548,3.023]],["name/662",[552,65.638]],["parent/662",[545,2.912,546,2.912,548,3.023]],["name/663",[553,65.638]],["parent/663",[545,2.912,546,2.912,548,3.023]],["name/664",[554,65.638]],["parent/664",[545,2.912,546,2.912,548,3.023]],["name/665",[555,65.638]],["parent/665",[545,2.912,546,2.912,548,3.023]],["name/666",[447,60.406]],["parent/666",[545,2.912,546,2.912,548,3.023]],["name/667",[370,29.451,556,40.839]],["parent/667",[]],["name/668",[557,65.638]],["parent/668",[370,3.455,556,4.79]],["name/669",[2,24.97]],["parent/669",[556,4.79,558,5.52]],["name/670",[559,60.406]],["parent/670",[]],["name/671",[560,65.638]],["parent/671",[559,6.733]],["name/672",[2,24.97]],["parent/672",[561,4.511]],["name/673",[562,65.638]],["parent/673",[561,4.511]],["name/674",[563,65.638]],["parent/674",[561,4.511]],["name/675",[475,60.406]],["parent/675",[561,4.511]],["name/676",[476,60.406]],["parent/676",[561,4.511]],["name/677",[326,56.959]],["parent/677",[561,4.511]],["name/678",[192,52.329]],["parent/678",[561,4.511]],["name/679",[433,60.406]],["parent/679",[561,4.511]],["name/680",[435,60.406]],["parent/680",[561,4.511]],["name/681",[477,52.329]],["parent/681",[561,4.511]],["name/682",[478,52.329]],["parent/682",[561,4.511]],["name/683",[400,41.716]],["parent/683",[561,4.511]],["name/684",[440,60.406]],["parent/684",[561,4.511]],["name/685",[479,52.329]],["parent/685",[561,4.511]],["name/686",[445,60.406]],["parent/686",[561,4.511]],["name/687",[564,65.638]],["parent/687",[561,4.511]],["name/688",[446,50.618]],["parent/688",[561,4.511]],["name/689",[565,60.406]],["parent/689",[]],["name/690",[566,65.638]],["parent/690",[565,6.733]],["name/691",[2,24.97]],["parent/691",[567,7.316]],["name/692",[568,34.322,569,43.31]],["parent/692",[]],["name/693",[570,65.638]],["parent/693",[568,4.026,569,5.08]],["name/694",[2,24.97]],["parent/694",[568,4.026,571,5.08]],["name/695",[572,65.638]],["parent/695",[568,4.026,571,5.08]],["name/696",[386,38.993,568,34.322]],["parent/696",[]],["name/697",[573,65.638]],["parent/697",[386,4.574,568,4.026]],["name/698",[2,24.97]],["parent/698",[568,4.026,574,5.08]],["name/699",[575,65.638]],["parent/699",[568,4.026,574,5.08]],["name/700",[576,60.406]],["parent/700",[]],["name/701",[577,65.638]],["parent/701",[576,6.733]],["name/702",[2,24.97]],["parent/702",[578,6.733]],["name/703",[579,60.406]],["parent/703",[578,6.733]],["name/704",[580,38.993,581,43.31]],["parent/704",[]],["name/705",[582,65.638]],["parent/705",[580,4.574,581,5.08]],["name/706",[2,24.97]],["parent/706",[580,4.574,583,5.08]],["name/707",[579,60.406]],["parent/707",[580,4.574,583,5.08]],["name/708",[584,30.392,585,30.392,586,33.757]],["parent/708",[]],["name/709",[587,65.638]],["parent/709",[584,3.672,585,3.672,586,4.079]],["name/710",[2,24.97]],["parent/710",[584,3.672,585,3.672,588,4.079]],["name/711",[123,52.329]],["parent/711",[584,3.672,585,3.672,588,4.079]],["name/712",[589,60.406]],["parent/712",[]],["name/713",[590,65.638]],["parent/713",[589,6.733]],["name/714",[2,24.97]],["parent/714",[591,6.733]],["name/715",[400,41.716]],["parent/715",[591,6.733]],["name/716",[592,60.406]],["parent/716",[]],["name/717",[593,65.638]],["parent/717",[592,6.733]],["name/718",[2,24.97]],["parent/718",[594,7.316]],["name/719",[595,60.406]],["parent/719",[]],["name/720",[596,65.638]],["parent/720",[595,6.733]],["name/721",[2,24.97]],["parent/721",[597,6.733]],["name/722",[400,41.716]],["parent/722",[597,6.733]],["name/723",[598,60.406]],["parent/723",[]],["name/724",[599,65.638]],["parent/724",[598,6.733]],["name/725",[2,24.97]],["parent/725",[600,6.733]],["name/726",[400,41.716]],["parent/726",[600,6.733]],["name/727",[601,52.329]],["parent/727",[]],["name/728",[602,65.638]],["parent/728",[601,5.833]],["name/729",[603,65.638]],["parent/729",[601,5.833]],["name/730",[604,65.638]],["parent/730",[601,5.833]],["name/731",[605,65.638]],["parent/731",[601,5.833]],["name/732",[606,60.406]],["parent/732",[]],["name/733",[607,52.329]],["parent/733",[]],["name/734",[185,50.618]],["parent/734",[607,5.833]],["name/735",[2,24.97]],["parent/735",[608,4.175]],["name/736",[609,65.638]],["parent/736",[608,4.175]],["name/737",[610,65.638]],["parent/737",[608,4.175]],["name/738",[611,65.638]],["parent/738",[608,4.175]],["name/739",[196,60.406]],["parent/739",[608,4.175]],["name/740",[198,60.406]],["parent/740",[608,4.175]],["name/741",[123,52.329]],["parent/741",[608,4.175]],["name/742",[612,65.638]],["parent/742",[608,4.175]],["name/743",[613,65.638]],["parent/743",[608,4.175]],["name/744",[614,65.638]],["parent/744",[608,4.175]],["name/745",[615,65.638]],["parent/745",[608,4.175]],["name/746",[616,65.638]],["parent/746",[608,4.175]],["name/747",[617,65.638]],["parent/747",[608,4.175]],["name/748",[618,65.638]],["parent/748",[608,4.175]],["name/749",[619,65.638]],["parent/749",[608,4.175]],["name/750",[620,65.638]],["parent/750",[608,4.175]],["name/751",[621,65.638]],["parent/751",[608,4.175]],["name/752",[622,65.638]],["parent/752",[608,4.175]],["name/753",[623,65.638]],["parent/753",[608,4.175]],["name/754",[624,65.638]],["parent/754",[608,4.175]],["name/755",[625,65.638]],["parent/755",[608,4.175]],["name/756",[626,65.638]],["parent/756",[608,4.175]],["name/757",[627,65.638]],["parent/757",[608,4.175]],["name/758",[628,65.638]],["parent/758",[607,5.833]],["name/759",[629,65.638]],["parent/759",[607,5.833]],["name/760",[204,60.406]],["parent/760",[607,5.833]],["name/761",[630,60.406]],["parent/761",[]],["name/762",[631,56.959]],["parent/762",[630,6.733]],["name/763",[51,42.4]],["parent/763",[632,7.316]],["name/764",[633,56.959]],["parent/764",[634,4.895]],["name/765",[635,56.959]],["parent/765",[634,4.895]],["name/766",[636,56.959]],["parent/766",[634,4.895]],["name/767",[637,56.959]],["parent/767",[634,4.895]],["name/768",[638,56.959]],["parent/768",[634,4.895]],["name/769",[639,56.959]],["parent/769",[634,4.895]],["name/770",[640,56.959]],["parent/770",[634,4.895]],["name/771",[641,56.959]],["parent/771",[634,4.895]],["name/772",[642,56.959]],["parent/772",[634,4.895]],["name/773",[643,56.959]],["parent/773",[634,4.895]],["name/774",[644,56.959]],["parent/774",[634,4.895]],["name/775",[645,56.959]],["parent/775",[634,4.895]],["name/776",[646,60.406]],["parent/776",[]],["name/777",[631,56.959]],["parent/777",[646,6.733]],["name/778",[51,42.4]],["parent/778",[647,7.316]],["name/779",[633,56.959]],["parent/779",[648,4.895]],["name/780",[635,56.959]],["parent/780",[648,4.895]],["name/781",[636,56.959]],["parent/781",[648,4.895]],["name/782",[637,56.959]],["parent/782",[648,4.895]],["name/783",[638,56.959]],["parent/783",[648,4.895]],["name/784",[639,56.959]],["parent/784",[648,4.895]],["name/785",[640,56.959]],["parent/785",[648,4.895]],["name/786",[641,56.959]],["parent/786",[648,4.895]],["name/787",[642,56.959]],["parent/787",[648,4.895]],["name/788",[643,56.959]],["parent/788",[648,4.895]],["name/789",[644,56.959]],["parent/789",[648,4.895]],["name/790",[645,56.959]],["parent/790",[648,4.895]],["name/791",[649,60.406]],["parent/791",[]],["name/792",[631,56.959]],["parent/792",[649,6.733]],["name/793",[51,42.4]],["parent/793",[650,7.316]],["name/794",[633,56.959]],["parent/794",[651,4.895]],["name/795",[635,56.959]],["parent/795",[651,4.895]],["name/796",[636,56.959]],["parent/796",[651,4.895]],["name/797",[637,56.959]],["parent/797",[651,4.895]],["name/798",[638,56.959]],["parent/798",[651,4.895]],["name/799",[639,56.959]],["parent/799",[651,4.895]],["name/800",[640,56.959]],["parent/800",[651,4.895]],["name/801",[641,56.959]],["parent/801",[651,4.895]],["name/802",[642,56.959]],["parent/802",[651,4.895]],["name/803",[643,56.959]],["parent/803",[651,4.895]],["name/804",[644,56.959]],["parent/804",[651,4.895]],["name/805",[645,56.959]],["parent/805",[651,4.895]],["name/806",[652,65.638]],["parent/806",[]],["name/807",[653,65.638]],["parent/807",[]],["name/808",[654,65.638]],["parent/808",[]],["name/809",[655,28.287,656,28.287,657,23.694]],["parent/809",[]],["name/810",[658,60.406]],["parent/810",[655,3.418,656,3.418,657,2.863]],["name/811",[2,24.97]],["parent/811",[655,3.418,656,3.418,659,3.672]],["name/812",[660,65.638]],["parent/812",[655,3.418,656,3.418,659,3.672]],["name/813",[661,65.638]],["parent/813",[655,3.418,656,3.418,659,3.672]],["name/814",[662,65.638]],["parent/814",[655,3.418,656,3.418,659,3.672]],["name/815",[663,46.731]],["parent/815",[]],["name/816",[657,19.412,664,23.175,665,23.175,666,23.175]],["parent/816",[]],["name/817",[667,60.406]],["parent/817",[657,2.392,664,2.855,665,2.855,666,2.855]],["name/818",[2,24.97]],["parent/818",[664,2.855,665,2.855,666,2.855,668,3.068]],["name/819",[669,65.638]],["parent/819",[664,2.855,665,2.855,666,2.855,668,3.068]],["name/820",[670,65.638]],["parent/820",[664,2.855,665,2.855,666,2.855,668,3.068]],["name/821",[671,65.638]],["parent/821",[664,2.855,665,2.855,666,2.855,668,3.068]],["name/822",[657,23.694,672,27.468,673,27.468]],["parent/822",[]],["name/823",[674,60.406]],["parent/823",[657,2.863,672,3.319,673,3.319]],["name/824",[2,24.97]],["parent/824",[672,3.319,673,3.319,675,4.432]],["name/825",[676,60.406]],["parent/825",[657,2.863,672,3.319,673,3.319]],["name/826",[2,24.97]],["parent/826",[672,3.319,673,3.319,677,4.432]],["name/827",[678,60.406]],["parent/827",[657,2.863,672,3.319,673,3.319]],["name/828",[2,24.97]],["parent/828",[672,3.319,673,3.319,679,4.432]],["name/829",[657,23.694,680,30.392,681,21.998]],["parent/829",[]],["name/830",[682,60.406]],["parent/830",[657,2.863,680,3.672,681,2.658]],["name/831",[2,24.97]],["parent/831",[680,3.672,681,2.658,683,4.079]],["name/832",[684,65.638]],["parent/832",[680,3.672,681,2.658,683,4.079]],["name/833",[657,23.694,681,21.998,685,28.287]],["parent/833",[]],["name/834",[686,60.406]],["parent/834",[657,2.863,681,2.658,685,3.418]],["name/835",[2,24.97]],["parent/835",[681,2.658,685,3.418,687,3.672]],["name/836",[332,60.406]],["parent/836",[681,2.658,685,3.418,687,3.672]],["name/837",[333,60.406]],["parent/837",[681,2.658,685,3.418,687,3.672]],["name/838",[330,60.406]],["parent/838",[681,2.658,685,3.418,687,3.672]],["name/839",[657,23.694,681,21.998,688,26.115]],["parent/839",[]],["name/840",[689,60.406]],["parent/840",[657,2.863,681,2.658,688,3.156]],["name/841",[2,24.97]],["parent/841",[681,2.658,688,3.156,690,3.319]],["name/842",[691,65.638]],["parent/842",[681,2.658,688,3.156,690,3.319]],["name/843",[345,56.959]],["parent/843",[681,2.658,688,3.156,690,3.319]],["name/844",[692,65.638]],["parent/844",[681,2.658,688,3.156,690,3.319]],["name/845",[693,65.638]],["parent/845",[681,2.658,688,3.156,690,3.319]],["name/846",[354,60.406]],["parent/846",[681,2.658,688,3.156,690,3.319]],["name/847",[355,56.959]],["parent/847",[681,2.658,688,3.156,690,3.319]],["name/848",[1,60.406]],["parent/848",[11,6.349]],["name/849",[14,56.959]],["parent/849",[11,6.349]],["name/850",[20,60.406]],["parent/850",[23,6.349]],["name/851",[25,60.406]],["parent/851",[23,6.349]],["name/852",[41,60.406]],["parent/852",[63,4.726]],["name/853",[37,60.406]],["parent/853",[63,4.726]],["name/854",[66,60.406]],["parent/854",[63,4.726]],["name/855",[69,60.406]],["parent/855",[63,4.726]],["name/856",[29,60.406]],["parent/856",[63,4.726]],["name/857",[62,60.406]],["parent/857",[63,4.726]],["name/858",[50,60.406]],["parent/858",[63,4.726]],["name/859",[54,60.406]],["parent/859",[63,4.726]],["name/860",[47,60.406]],["parent/860",[63,4.726]],["name/861",[76,60.406]],["parent/861",[63,4.726]],["name/862",[32,60.406]],["parent/862",[63,4.726]],["name/863",[79,60.406]],["parent/863",[63,4.726]],["name/864",[80,60.406]],["parent/864",[63,4.726]],["name/865",[82,60.406]],["parent/865",[88,6.062]],["name/866",[86,60.406]],["parent/866",[88,6.062]],["name/867",[90,60.406]],["parent/867",[88,6.062]],["name/868",[176,60.406]],["parent/868",[133,4.388]],["name/869",[183,60.406]],["parent/869",[133,4.388]],["name/870",[185,50.618]],["parent/870",[133,4.388]],["name/871",[192,52.329]],["parent/871",[133,4.388]],["name/872",[199,60.406]],["parent/872",[133,4.388]],["name/873",[148,60.406]],["parent/873",[133,4.388]],["name/874",[150,56.959]],["parent/874",[133,4.388]],["name/875",[93,60.406]],["parent/875",[133,4.388]],["name/876",[120,50.618]],["parent/876",[133,4.388]],["name/877",[126,60.406]],["parent/877",[133,4.388]],["name/878",[129,60.406]],["parent/878",[133,4.388]],["name/879",[132,60.406]],["parent/879",[133,4.388]],["name/880",[156,60.406]],["parent/880",[133,4.388]],["name/881",[162,54.385]],["parent/881",[133,4.388]],["name/882",[135,54.385]],["parent/882",[133,4.388]],["name/883",[113,56.959]],["parent/883",[133,4.388]],["name/884",[142,60.406]],["parent/884",[133,4.388]],["name/885",[145,60.406]],["parent/885",[133,4.388]],["name/886",[210,60.406]],["parent/886",[206,5.479]],["name/887",[237,56.959]],["parent/887",[206,5.479]],["name/888",[240,60.406]],["parent/888",[206,5.479]],["name/889",[120,50.618]],["parent/889",[206,5.479]],["name/890",[239,47.87]],["parent/890",[206,5.479]],["name/891",[250,60.406]],["parent/891",[206,5.479]],["name/892",[256,60.406]],["parent/892",[290,5.209]],["name/893",[324,60.406]],["parent/893",[290,5.209]],["name/894",[339,60.406]],["parent/894",[290,5.209]],["name/895",[317,60.406]],["parent/895",[290,5.209]],["name/896",[273,60.406]],["parent/896",[290,5.209]],["name/897",[292,60.406]],["parent/897",[290,5.209]],["name/898",[254,56.959]],["parent/898",[290,5.209]],["name/899",[285,60.406]],["parent/899",[290,5.209]],["name/900",[185,50.618]],["parent/900",[606,6.733]],["name/901",[658,60.406]],["parent/901",[663,5.209]],["name/902",[667,60.406]],["parent/902",[663,5.209]],["name/903",[674,60.406]],["parent/903",[663,5.209]],["name/904",[676,60.406]],["parent/904",[663,5.209]],["name/905",[678,60.406]],["parent/905",[663,5.209]],["name/906",[689,60.406]],["parent/906",[663,5.209]],["name/907",[682,60.406]],["parent/907",[663,5.209]],["name/908",[686,60.406]],["parent/908",[663,5.209]]],"invertedIndex":[["0xa686005ce37dce7738436256982c3903f2e4ea8e",{"_index":169,"name":{"171":{}},"parent":{}}],["__type",{"_index":51,"name":{"46":{},"63":{},"93":{},"95":{},"101":{},"108":{},"170":{},"172":{},"275":{},"295":{},"297":{},"763":{},"778":{},"793":{}},"parent":{}}],["_outbuffer",{"_index":618,"name":{"748":{}},"parent":{}}],["_outbuffercursor",{"_index":619,"name":{"749":{}},"parent":{}}],["_signatureset",{"_index":616,"name":{"746":{}},"parent":{}}],["_workbuffer",{"_index":617,"name":{"747":{}},"parent":{}}],["account",{"_index":426,"name":{"485":{}},"parent":{}}],["account.component",{"_index":486,"name":{"558":{}},"parent":{"559":{}}}],["account.component.createaccountcomponent",{"_index":488,"name":{},"parent":{"560":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{}}}],["account/create",{"_index":485,"name":{"558":{}},"parent":{"559":{},"560":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{}}}],["accountaddress",{"_index":427,"name":{"486":{}},"parent":{}}],["accountdetails",{"_index":93,"name":{"86":{},"875":{}},"parent":{}}],["accountdetailscomponent",{"_index":411,"name":{"470":{}},"parent":{}}],["accountindex",{"_index":1,"name":{"1":{},"848":{}},"parent":{}}],["accountinfoform",{"_index":425,"name":{"484":{}},"parent":{}}],["accountinfoformstub",{"_index":442,"name":{"507":{}},"parent":{}}],["accounts",{"_index":342,"name":{"400":{},"488":{},"541":{}},"parent":{}}],["accountscomponent",{"_index":471,"name":{"538":{}},"parent":{}}],["accountsearchcomponent",{"_index":450,"name":{"515":{}},"parent":{}}],["accountslist",{"_index":343,"name":{"401":{}},"parent":{}}],["accountsmodule",{"_index":482,"name":{"556":{}},"parent":{}}],["accountsroutingmodule",{"_index":468,"name":{"535":{}},"parent":{}}],["accountssubject",{"_index":344,"name":{"402":{}},"parent":{}}],["accountstatus",{"_index":428,"name":{"487":{}},"parent":{}}],["accountstype",{"_index":429,"name":{"489":{},"545":{}},"parent":{}}],["accounttypes",{"_index":434,"name":{"496":{},"546":{},"566":{}},"parent":{}}],["action",{"_index":135,"name":{"129":{},"133":{},"579":{},"882":{}},"parent":{}}],["actions",{"_index":345,"name":{"403":{},"580":{},"843":{}},"parent":{}}],["actionslist",{"_index":346,"name":{"404":{}},"parent":{}}],["actionssubject",{"_index":347,"name":{"405":{}},"parent":{}}],["activatedroutestub",{"_index":658,"name":{"810":{},"901":{}},"parent":{}}],["add0x",{"_index":605,"name":{"731":{}},"parent":{}}],["address",{"_index":165,"name":{"166":{},"187":{}},"parent":{}}],["addressof",{"_index":16,"name":{"17":{}},"parent":{}}],["addresssearchform",{"_index":458,"name":{"523":{}},"parent":{}}],["addresssearchformstub",{"_index":463,"name":{"530":{}},"parent":{}}],["addresssearchloading",{"_index":460,"name":{"525":{}},"parent":{}}],["addresssearchsubmitted",{"_index":459,"name":{"524":{}},"parent":{}}],["addtoaccountregistry",{"_index":7,"name":{"6":{}},"parent":{}}],["addtransaction",{"_index":334,"name":{"389":{}},"parent":{}}],["admincomponent",{"_index":495,"name":{"575":{}},"parent":{}}],["adminmodule",{"_index":501,"name":{"591":{}},"parent":{}}],["adminroutingmodule",{"_index":492,"name":{"572":{}},"parent":{}}],["age",{"_index":97,"name":{"89":{}},"parent":{}}],["alg",{"_index":181,"name":{"183":{}},"parent":{}}],["algo",{"_index":121,"name":{"115":{},"277":{},"290":{}},"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":{},"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":{"886":{},"887":{},"888":{},"889":{},"890":{},"891":{}}}],["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":{},"302":{}}}],["app/_services",{"_index":290,"name":{"339":{}},"parent":{"892":{},"893":{},"894":{},"895":{},"896":{},"897":{},"898":{},"899":{}}}],["app/_services/auth.service",{"_index":255,"name":{"303":{}},"parent":{"304":{}}}],["app/_services/auth.service.authservice",{"_index":257,"name":{},"parent":{"305":{},"306":{},"307":{},"308":{},"309":{},"310":{},"311":{},"312":{},"313":{},"314":{},"315":{},"316":{},"317":{},"318":{},"319":{},"320":{},"321":{}}}],["app/_services/block",{"_index":271,"name":{"322":{}},"parent":{"323":{},"324":{},"325":{},"326":{},"327":{},"328":{},"329":{},"330":{},"331":{},"332":{}}}],["app/_services/error",{"_index":283,"name":{"333":{}},"parent":{"334":{},"335":{},"336":{},"337":{},"338":{}}}],["app/_services/location.service",{"_index":291,"name":{"340":{}},"parent":{"341":{}}}],["app/_services/location.service.locationservice",{"_index":293,"name":{},"parent":{"342":{},"343":{},"344":{},"345":{},"346":{}}}],["app/_services/logging.service",{"_index":298,"name":{"347":{}},"parent":{"348":{}}}],["app/_services/logging.service.loggingservice",{"_index":299,"name":{},"parent":{"349":{},"350":{},"351":{},"352":{},"353":{},"354":{},"355":{},"356":{},"357":{},"358":{}}}],["app/_services/registry.service",{"_index":309,"name":{"359":{}},"parent":{"360":{}}}],["app/_services/registry.service.registryservice",{"_index":311,"name":{},"parent":{"361":{},"362":{},"363":{},"364":{},"365":{},"366":{}}}],["app/_services/token.service",{"_index":316,"name":{"367":{}},"parent":{"368":{}}}],["app/_services/token.service.tokenservice",{"_index":318,"name":{},"parent":{"369":{},"370":{},"371":{},"372":{},"373":{},"374":{},"375":{}}}],["app/_services/transaction.service",{"_index":323,"name":{"376":{}},"parent":{"377":{}}}],["app/_services/transaction.service.transactionservice",{"_index":325,"name":{},"parent":{"378":{},"379":{},"380":{},"381":{},"382":{},"383":{},"384":{},"385":{},"386":{},"387":{},"388":{},"389":{},"390":{},"391":{},"392":{}}}],["app/_services/user.service",{"_index":338,"name":{"393":{}},"parent":{"394":{}}}],["app/_services/user.service.userservice",{"_index":340,"name":{},"parent":{"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":{},"426":{}}}],["app/app",{"_index":369,"name":{"427":{}},"parent":{"428":{},"429":{}}}],["app/app.component",{"_index":373,"name":{"430":{}},"parent":{"431":{}}}],["app/app.component.appcomponent",{"_index":375,"name":{},"parent":{"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":405,"name":{"466":{}},"parent":{"467":{}}}],["app/auth/auth.module.authmodule",{"_index":407,"name":{},"parent":{"468":{}}}],["app/pages/accounts/account",{"_index":408,"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":467,"name":{"534":{}},"parent":{"535":{},"536":{}}}],["app/pages/accounts/accounts.component",{"_index":470,"name":{"537":{}},"parent":{"538":{}}}],["app/pages/accounts/accounts.component.accountscomponent",{"_index":472,"name":{},"parent":{"539":{},"540":{},"541":{},"542":{},"543":{},"544":{},"545":{},"546":{},"547":{},"548":{},"549":{},"550":{},"551":{},"552":{},"553":{},"554":{}}}],["app/pages/accounts/accounts.module",{"_index":481,"name":{"555":{}},"parent":{"556":{}}}],["app/pages/accounts/accounts.module.accountsmodule",{"_index":483,"name":{},"parent":{"557":{}}}],["app/pages/accounts/create",{"_index":484,"name":{"558":{}},"parent":{"559":{},"560":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{}}}],["app/pages/admin/admin",{"_index":491,"name":{"571":{}},"parent":{"572":{},"573":{}}}],["app/pages/admin/admin.component",{"_index":494,"name":{"574":{}},"parent":{"575":{}}}],["app/pages/admin/admin.component.admincomponent",{"_index":496,"name":{},"parent":{"576":{},"577":{},"578":{},"579":{},"580":{},"581":{},"582":{},"583":{},"584":{},"585":{},"586":{},"587":{},"588":{},"589":{}}}],["app/pages/admin/admin.module",{"_index":500,"name":{"590":{}},"parent":{"591":{}}}],["app/pages/admin/admin.module.adminmodule",{"_index":502,"name":{},"parent":{"592":{}}}],["app/pages/pages",{"_index":503,"name":{"593":{}},"parent":{"594":{},"595":{}}}],["app/pages/pages.component",{"_index":506,"name":{"596":{}},"parent":{"597":{}}}],["app/pages/pages.component.pagescomponent",{"_index":508,"name":{},"parent":{"598":{},"599":{}}}],["app/pages/pages.module",{"_index":510,"name":{"600":{}},"parent":{"601":{}}}],["app/pages/pages.module.pagesmodule",{"_index":512,"name":{},"parent":{"602":{}}}],["app/pages/settings/organization/organization.component",{"_index":513,"name":{"603":{}},"parent":{"604":{}}}],["app/pages/settings/organization/organization.component.organizationcomponent",{"_index":515,"name":{},"parent":{"605":{},"606":{},"607":{},"608":{},"609":{},"610":{},"611":{}}}],["app/pages/settings/settings",{"_index":518,"name":{"612":{}},"parent":{"613":{},"614":{}}}],["app/pages/settings/settings.component",{"_index":521,"name":{"615":{}},"parent":{"616":{}}}],["app/pages/settings/settings.component.settingscomponent",{"_index":523,"name":{},"parent":{"617":{},"618":{},"619":{},"620":{},"621":{},"622":{},"623":{},"624":{},"625":{},"626":{},"627":{}}}],["app/pages/settings/settings.module",{"_index":526,"name":{"628":{}},"parent":{"629":{}}}],["app/pages/settings/settings.module.settingsmodule",{"_index":528,"name":{},"parent":{"630":{}}}],["app/pages/tokens/token",{"_index":529,"name":{"631":{}},"parent":{"632":{},"633":{},"634":{},"635":{}}}],["app/pages/tokens/tokens",{"_index":533,"name":{"636":{}},"parent":{"637":{},"638":{}}}],["app/pages/tokens/tokens.component",{"_index":536,"name":{"639":{}},"parent":{"640":{}}}],["app/pages/tokens/tokens.component.tokenscomponent",{"_index":538,"name":{},"parent":{"641":{},"642":{},"643":{},"644":{},"645":{},"646":{},"647":{},"648":{},"649":{},"650":{}}}],["app/pages/tokens/tokens.module",{"_index":542,"name":{"651":{}},"parent":{"652":{}}}],["app/pages/tokens/tokens.module.tokensmodule",{"_index":544,"name":{},"parent":{"653":{}}}],["app/pages/transactions/transaction",{"_index":545,"name":{"654":{}},"parent":{"655":{},"656":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{},"665":{},"666":{}}}],["app/pages/transactions/transactions",{"_index":556,"name":{"667":{}},"parent":{"668":{},"669":{}}}],["app/pages/transactions/transactions.component",{"_index":559,"name":{"670":{}},"parent":{"671":{}}}],["app/pages/transactions/transactions.component.transactionscomponent",{"_index":561,"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":565,"name":{"689":{}},"parent":{"690":{}}}],["app/pages/transactions/transactions.module.transactionsmodule",{"_index":567,"name":{},"parent":{"691":{}}}],["app/shared/_directives/menu",{"_index":568,"name":{"692":{},"696":{}},"parent":{"693":{},"694":{},"695":{},"697":{},"698":{},"699":{}}}],["app/shared/_pipes/safe.pipe",{"_index":576,"name":{"700":{}},"parent":{"701":{}}}],["app/shared/_pipes/safe.pipe.safepipe",{"_index":578,"name":{},"parent":{"702":{},"703":{}}}],["app/shared/_pipes/token",{"_index":580,"name":{"704":{}},"parent":{"705":{},"706":{},"707":{}}}],["app/shared/error",{"_index":584,"name":{"708":{}},"parent":{"709":{},"710":{},"711":{}}}],["app/shared/footer/footer.component",{"_index":589,"name":{"712":{}},"parent":{"713":{}}}],["app/shared/footer/footer.component.footercomponent",{"_index":591,"name":{},"parent":{"714":{},"715":{}}}],["app/shared/shared.module",{"_index":592,"name":{"716":{}},"parent":{"717":{}}}],["app/shared/shared.module.sharedmodule",{"_index":594,"name":{},"parent":{"718":{}}}],["app/shared/sidebar/sidebar.component",{"_index":595,"name":{"719":{}},"parent":{"720":{}}}],["app/shared/sidebar/sidebar.component.sidebarcomponent",{"_index":597,"name":{},"parent":{"721":{},"722":{}}}],["app/shared/topbar/topbar.component",{"_index":598,"name":{"723":{}},"parent":{"724":{}}}],["app/shared/topbar/topbar.component.topbarcomponent",{"_index":600,"name":{},"parent":{"725":{},"726":{}}}],["appcomponent",{"_index":374,"name":{"431":{}},"parent":{}}],["appmodule",{"_index":382,"name":{"441":{}},"parent":{}}],["approutingmodule",{"_index":371,"name":{"428":{}},"parent":{}}],["approval",{"_index":139,"name":{"134":{}},"parent":{}}],["approvalstatus",{"_index":497,"name":{"585":{}},"parent":{}}],["approveaction",{"_index":355,"name":{"413":{},"586":{},"847":{}},"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":{},"884":{}},"parent":{}}],["areanames",{"_index":431,"name":{"491":{},"565":{}},"parent":{}}],["areatype",{"_index":145,"name":{"141":{},"885":{}},"parent":{}}],["areatypes",{"_index":432,"name":{"492":{}},"parent":{}}],["arraysum",{"_index":29,"name":{"30":{},"856":{}},"parent":{}}],["assets/js/ethtx/dist",{"_index":606,"name":{"732":{}},"parent":{"900":{}}}],["assets/js/ethtx/dist/hex",{"_index":601,"name":{"727":{}},"parent":{"728":{},"729":{},"730":{},"731":{}}}],["assets/js/ethtx/dist/tx",{"_index":607,"name":{"733":{}},"parent":{"734":{},"758":{},"759":{},"760":{}}}],["assets/js/ethtx/dist/tx.tx",{"_index":608,"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":{"454":{}},"parent":{}}],["authguard",{"_index":20,"name":{"21":{},"850":{}},"parent":{}}],["authmodule",{"_index":406,"name":{"467":{}},"parent":{}}],["authroutingmodule",{"_index":392,"name":{"451":{}},"parent":{}}],["authservice",{"_index":256,"name":{"304":{},"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":{},"174":{}},"parent":{}}],["block",{"_index":187,"name":{"192":{}},"parent":{}}],["blockfilter",{"_index":179,"name":{"181":{}},"parent":{}}],["blocksbloom",{"_index":176,"name":{"178":{},"868":{}},"parent":{}}],["blocksync",{"_index":277,"name":{"327":{}},"parent":{}}],["blocksyncservice",{"_index":273,"name":{"323":{},"896":{}},"parent":{}}],["blocktxfilter",{"_index":180,"name":{"182":{}},"parent":{}}],["bloxberg:8996",{"_index":103,"name":{"96":{}},"parent":{}}],["bloxbergchainid",{"_index":635,"name":{"765":{},"780":{},"795":{}},"parent":{}}],["bloxberglink",{"_index":437,"name":{"501":{}},"parent":{}}],["canactivate",{"_index":22,"name":{"23":{},"28":{}},"parent":{}}],["candebug",{"_index":301,"name":{"351":{}},"parent":{}}],["canonicalorder",{"_index":623,"name":{"753":{}},"parent":{}}],["categories",{"_index":430,"name":{"490":{},"564":{}},"parent":{}}],["category",{"_index":113,"name":{"106":{},"135":{},"883":{}},"parent":{}}],["chainid",{"_index":615,"name":{"745":{}},"parent":{}}],["changeaccountinfo",{"_index":351,"name":{"409":{}},"parent":{}}],["ciccacheurl",{"_index":641,"name":{"771":{},"786":{},"801":{}},"parent":{}}],["cicconvert",{"_index":380,"name":{"439":{}},"parent":{}}],["cicmetaurl",{"_index":639,"name":{"769":{},"784":{},"799":{}},"parent":{}}],["cictransfer",{"_index":379,"name":{"438":{}},"parent":{}}],["cicussdurl",{"_index":643,"name":{"773":{},"788":{},"803":{}},"parent":{}}],["clearkeysinkeyring",{"_index":235,"name":{"243":{},"269":{}},"parent":{}}],["clearsignature",{"_index":627,"name":{"757":{}},"parent":{}}],["columnstodisplay",{"_index":539,"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":{},"288":{},"305":{},"324":{},"335":{},"342":{},"349":{},"361":{},"369":{},"378":{},"395":{},"429":{},"432":{},"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":{},"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":199,"name":{"207":{},"872":{}},"parent":{}}],["copy",{"_index":31,"name":{"31":{}},"parent":{"32":{}}}],["copyaddress",{"_index":447,"name":{"513":{},"666":{}},"parent":{}}],["copytoclipboard",{"_index":32,"name":{"32":{},"862":{}},"parent":{}}],["createaccountcomponent",{"_index":487,"name":{"559":{}},"parent":{}}],["createform",{"_index":489,"name":{"561":{}},"parent":{}}],["createformstub",{"_index":490,"name":{"569":{}},"parent":{}}],["csv",{"_index":46,"name":{"42":{},"67":{}},"parent":{"43":{},"68":{}}}],["customerrorstatematcher",{"_index":37,"name":{"34":{},"853":{}},"parent":{}}],["customvalidator",{"_index":41,"name":{"38":{},"852":{}},"parent":{}}],["data",{"_index":123,"name":{"116":{},"120":{},"278":{},"711":{},"741":{}},"parent":{}}],["datasource",{"_index":473,"name":{"540":{},"577":{},"619":{},"642":{}},"parent":{}}],["date",{"_index":524,"name":{"618":{}},"parent":{}}],["date_registered",{"_index":94,"name":{"87":{}},"parent":{}}],["decimals",{"_index":167,"name":{"168":{}},"parent":{}}],["defaultaccount",{"_index":132,"name":{"126":{},"879":{}},"parent":{}}],["defaultpagesize",{"_index":475,"name":{"543":{},"675":{}},"parent":{}}],["destinationtoken",{"_index":201,"name":{"209":{}},"parent":{}}],["details.component",{"_index":410,"name":{"469":{},"631":{},"654":{}},"parent":{"470":{},"632":{},"655":{}}}],["details.component.accountdetailscomponent",{"_index":412,"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":532,"name":{},"parent":{"633":{},"634":{},"635":{}}}],["details.component.transactiondetailscomponent",{"_index":548,"name":{},"parent":{"656":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{},"665":{},"666":{}}}],["details/account",{"_index":409,"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":530,"name":{"631":{}},"parent":{"632":{},"633":{},"634":{},"635":{}}}],["details/transaction",{"_index":546,"name":{"654":{}},"parent":{"655":{},"656":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{},"665":{},"666":{}}}],["dgst",{"_index":252,"name":{"291":{}},"parent":{}}],["dialog",{"_index":288,"name":{"337":{}},"parent":{}}],["dialog.component",{"_index":586,"name":{"708":{}},"parent":{"709":{}}}],["dialog.component.errordialogcomponent",{"_index":588,"name":{},"parent":{"710":{},"711":{}}}],["dialog.service",{"_index":284,"name":{"333":{}},"parent":{"334":{}}}],["dialog.service.errordialogservice",{"_index":286,"name":{},"parent":{"335":{},"336":{},"337":{},"338":{}}}],["dialog/error",{"_index":585,"name":{"708":{}},"parent":{"709":{},"710":{},"711":{}}}],["digest",{"_index":124,"name":{"117":{},"273":{},"279":{}},"parent":{}}],["directive",{"_index":666,"name":{"816":{}},"parent":{"817":{},"818":{},"819":{},"820":{},"821":{}}}],["disapproveaction",{"_index":498,"name":{"587":{}},"parent":{}}],["displayedcolumns",{"_index":474,"name":{"542":{},"578":{},"620":{}},"parent":{}}],["dofilter",{"_index":479,"name":{"550":{},"584":{},"625":{},"648":{},"685":{}},"parent":{}}],["dotransactionfilter",{"_index":438,"name":{"503":{}},"parent":{}}],["douserfilter",{"_index":439,"name":{"504":{}},"parent":{}}],["downloadcsv",{"_index":446,"name":{"512":{},"554":{},"589":{},"626":{},"650":{},"688":{}},"parent":{}}],["email",{"_index":115,"name":{"109":{},"158":{}},"parent":{}}],["engine",{"_index":125,"name":{"118":{},"153":{},"276":{},"289":{}},"parent":{}}],["entry",{"_index":17,"name":{"18":{}},"parent":{}}],["env",{"_index":300,"name":{"350":{}},"parent":{}}],["environment",{"_index":631,"name":{"762":{},"777":{},"792":{}},"parent":{}}],["environments/environment",{"_index":649,"name":{"791":{}},"parent":{"792":{}}}],["environments/environment.dev",{"_index":630,"name":{"761":{}},"parent":{"762":{}}}],["environments/environment.dev.environment",{"_index":632,"name":{},"parent":{"763":{}}}],["environments/environment.dev.environment.__type",{"_index":634,"name":{},"parent":{"764":{},"765":{},"766":{},"767":{},"768":{},"769":{},"770":{},"771":{},"772":{},"773":{},"774":{},"775":{}}}],["environments/environment.environment",{"_index":650,"name":{},"parent":{"793":{}}}],["environments/environment.environment.__type",{"_index":651,"name":{},"parent":{"794":{},"795":{},"796":{},"797":{},"798":{},"799":{},"800":{},"801":{},"802":{},"803":{},"804":{},"805":{}}}],["environments/environment.prod",{"_index":646,"name":{"776":{}},"parent":{"777":{}}}],["environments/environment.prod.environment",{"_index":647,"name":{},"parent":{"778":{}}}],["environments/environment.prod.environment.__type",{"_index":648,"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":587,"name":{"709":{}},"parent":{}}],["errordialogservice",{"_index":285,"name":{"334":{},"899":{}},"parent":{}}],["errorinterceptor",{"_index":82,"name":{"73":{},"865":{}},"parent":{}}],["evm",{"_index":101,"name":{"94":{}},"parent":{}}],["expandcollapse",{"_index":499,"name":{"588":{}},"parent":{}}],["exportcsv",{"_index":47,"name":{"43":{},"860":{}},"parent":{}}],["fetcher",{"_index":282,"name":{"332":{}},"parent":{}}],["filegetter",{"_index":313,"name":{"363":{}},"parent":{}}],["filteraccounts",{"_index":444,"name":{"509":{},"552":{}},"parent":{}}],["filterrounds",{"_index":182,"name":{"184":{}},"parent":{}}],["filtertransactions",{"_index":445,"name":{"510":{},"686":{}},"parent":{}}],["fingerprint",{"_index":247,"name":{"283":{},"299":{}},"parent":{}}],["fn",{"_index":116,"name":{"110":{}},"parent":{}}],["footercomponent",{"_index":590,"name":{"713":{}},"parent":{}}],["footerstubcomponent",{"_index":678,"name":{"827":{},"905":{}},"parent":{}}],["from",{"_index":194,"name":{"199":{}},"parent":{}}],["fromhex",{"_index":602,"name":{"728":{}},"parent":{}}],["fromvalue",{"_index":202,"name":{"210":{}},"parent":{}}],["gaslimit",{"_index":611,"name":{"738":{}},"parent":{}}],["gasprice",{"_index":610,"name":{"737":{}},"parent":{}}],["gender",{"_index":96,"name":{"88":{}},"parent":{}}],["genders",{"_index":436,"name":{"498":{},"567":{}},"parent":{}}],["getaccountbyaddress",{"_index":360,"name":{"418":{}},"parent":{}}],["getaccountbyphone",{"_index":361,"name":{"419":{}},"parent":{}}],["getaccountdetailsfrommeta",{"_index":357,"name":{"415":{}},"parent":{}}],["getaccountinfo",{"_index":336,"name":{"391":{}},"parent":{}}],["getaccountstatus",{"_index":349,"name":{"407":{}},"parent":{}}],["getaccounttypes",{"_index":366,"name":{"424":{}},"parent":{}}],["getactionbyid",{"_index":354,"name":{"412":{},"846":{}},"parent":{}}],["getactions",{"_index":353,"name":{"411":{}},"parent":{}}],["getaddresstransactions",{"_index":331,"name":{"386":{}},"parent":{}}],["getalltransactions",{"_index":330,"name":{"385":{},"838":{}},"parent":{}}],["getareanamebylocation",{"_index":295,"name":{"344":{}},"parent":{}}],["getareanames",{"_index":294,"name":{"343":{}},"parent":{}}],["getareatypebyarea",{"_index":297,"name":{"346":{}},"parent":{}}],["getareatypes",{"_index":296,"name":{"345":{}},"parent":{}}],["getbysymbol",{"_index":684,"name":{"832":{}},"parent":{}}],["getcategories",{"_index":364,"name":{"422":{}},"parent":{}}],["getcategorybyproduct",{"_index":365,"name":{"423":{}},"parent":{}}],["getchallenge",{"_index":264,"name":{"313":{}},"parent":{}}],["getencryptkeys",{"_index":219,"name":{"227":{},"253":{}},"parent":{}}],["getfingerprint",{"_index":224,"name":{"232":{},"258":{}},"parent":{}}],["getgenders",{"_index":368,"name":{"426":{}},"parent":{}}],["getkeyid",{"_index":225,"name":{"233":{},"259":{}},"parent":{}}],["getkeysforid",{"_index":227,"name":{"235":{},"261":{}},"parent":{}}],["getlockedaccounts",{"_index":350,"name":{"408":{}},"parent":{}}],["getprivatekey",{"_index":221,"name":{"229":{},"255":{},"321":{}},"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":{},"320":{}},"parent":{}}],["getpublickeysforaddress",{"_index":231,"name":{"239":{},"265":{}},"parent":{}}],["getregistry",{"_index":314,"name":{"365":{}},"parent":{}}],["getter",{"_index":61,"name":{"55":{}},"parent":{"56":{}}}],["gettokenbalance",{"_index":322,"name":{"375":{}},"parent":{}}],["gettokenbysymbol",{"_index":321,"name":{"374":{}},"parent":{}}],["gettokens",{"_index":320,"name":{"373":{}},"parent":{}}],["gettransactiontypes",{"_index":367,"name":{"425":{}},"parent":{}}],["gettrustedactivekeys",{"_index":218,"name":{"226":{},"252":{}},"parent":{}}],["gettrustedkeys",{"_index":217,"name":{"225":{},"251":{}},"parent":{}}],["gettrustedusers",{"_index":270,"name":{"319":{}},"parent":{}}],["getuser",{"_index":693,"name":{"845":{}},"parent":{}}],["getuserbyid",{"_index":692,"name":{"844":{}},"parent":{}}],["getweb3",{"_index":315,"name":{"366":{}},"parent":{}}],["getwithtoken",{"_index":262,"name":{"311":{}},"parent":{}}],["globalerrorhandler",{"_index":54,"name":{"49":{},"859":{}},"parent":{}}],["handleerror",{"_index":57,"name":{"52":{}},"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":341,"name":{"396":{}},"parent":{}}],["hextovalue",{"_index":629,"name":{"759":{}},"parent":{}}],["httpconfiginterceptor",{"_index":86,"name":{"77":{},"866":{}},"parent":{}}],["httperror",{"_index":50,"name":{"45":{},"858":{}},"parent":{}}],["httpgetter",{"_index":62,"name":{"56":{},"857":{}},"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":260,"name":{"309":{}},"parent":{}}],["intercept",{"_index":68,"name":{"61":{},"75":{},"79":{},"84":{}},"parent":{}}],["isdialogopen",{"_index":287,"name":{"336":{}},"parent":{}}],["isencryptedprivatekey",{"_index":223,"name":{"231":{},"257":{}},"parent":{}}],["iserrorstate",{"_index":39,"name":{"36":{}},"parent":{}}],["isvalidkey",{"_index":222,"name":{"230":{},"256":{}},"parent":{}}],["iswarning",{"_index":59,"name":{"54":{}},"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":401,"name":{"461":{}},"parent":{}}],["keystore",{"_index":253,"name":{"293":{},"397":{}},"parent":{}}],["last",{"_index":9,"name":{"8":{}},"parent":{}}],["latitude",{"_index":106,"name":{"98":{}},"parent":{}}],["link",{"_index":665,"name":{"816":{}},"parent":{"817":{},"818":{},"819":{},"820":{},"821":{}}}],["linkparams",{"_index":669,"name":{"819":{}},"parent":{}}],["loadaccounts",{"_index":359,"name":{"417":{}},"parent":{}}],["loadevent",{"_index":319,"name":{"372":{}},"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":292,"name":{"341":{},"897":{}},"parent":{}}],["logerror",{"_index":58,"name":{"53":{}},"parent":{}}],["logginginterceptor",{"_index":90,"name":{"82":{},"867":{}},"parent":{}}],["loggingservice",{"_index":254,"name":{"298":{},"348":{},"898":{}},"parent":{}}],["loggingurl",{"_index":638,"name":{"768":{},"783":{},"798":{}},"parent":{}}],["login",{"_index":265,"name":{"314":{},"463":{}},"parent":{}}],["loginresponse",{"_index":266,"name":{"315":{}},"parent":{}}],["loginview",{"_index":267,"name":{"316":{}},"parent":{}}],["loglevel",{"_index":636,"name":{"766":{},"781":{},"796":{}},"parent":{}}],["logout",{"_index":269,"name":{"318":{},"627":{}},"parent":{}}],["longitude",{"_index":107,"name":{"99":{}},"parent":{}}],["low",{"_index":178,"name":{"180":{}},"parent":{}}],["m",{"_index":131,"name":{"125":{}},"parent":{}}],["main",{"_index":652,"name":{"806":{}},"parent":{}}],["matcher",{"_index":36,"name":{"33":{},"459":{},"499":{},"526":{},"562":{},"608":{}},"parent":{"34":{}}}],["matcher.customerrorstatematcher",{"_index":38,"name":{},"parent":{"35":{},"36":{}}}],["mediaquery",{"_index":377,"name":{"436":{}},"parent":{}}],["menuselectiondirective",{"_index":570,"name":{"693":{}},"parent":{}}],["menutoggledirective",{"_index":573,"name":{"697":{}},"parent":{}}],["message",{"_index":625,"name":{"755":{}},"parent":{}}],["meta",{"_index":126,"name":{"119":{},"877":{}},"parent":{}}],["metaresponse",{"_index":129,"name":{"123":{},"878":{}},"parent":{}}],["mockbackendinterceptor",{"_index":66,"name":{"59":{},"854":{}},"parent":{}}],["mockbackendprovider",{"_index":69,"name":{"62":{},"855":{}},"parent":{}}],["module",{"_index":673,"name":{"822":{}},"parent":{"823":{},"824":{},"825":{},"826":{},"827":{},"828":{}}}],["multi",{"_index":74,"name":{"66":{}},"parent":{}}],["mutablekeystore",{"_index":237,"name":{"245":{},"308":{},"887":{}},"parent":{}}],["mutablepgpkeystore",{"_index":210,"name":{"218":{},"886":{}},"parent":{}}],["n",{"_index":117,"name":{"111":{}},"parent":{}}],["name",{"_index":140,"name":{"136":{},"139":{},"142":{},"159":{},"164":{},"188":{}},"parent":{}}],["namesearchform",{"_index":452,"name":{"517":{}},"parent":{}}],["namesearchformstub",{"_index":461,"name":{"528":{}},"parent":{}}],["namesearchloading",{"_index":454,"name":{"519":{}},"parent":{}}],["namesearchsubmitted",{"_index":453,"name":{"518":{}},"parent":{}}],["navigatedto",{"_index":670,"name":{"820":{}},"parent":{}}],["newconversionevent",{"_index":280,"name":{"330":{}},"parent":{}}],["newtransferevent",{"_index":279,"name":{"329":{}},"parent":{}}],["ngafterviewinit",{"_index":564,"name":{"687":{}},"parent":{}}],["ngoninit",{"_index":400,"name":{"460":{},"502":{},"527":{},"549":{},"568":{},"583":{},"609":{},"624":{},"635":{},"647":{},"661":{},"683":{},"715":{},"722":{},"726":{}},"parent":{}}],["nonce",{"_index":609,"name":{"736":{}},"parent":{}}],["oldchain:1",{"_index":105,"name":{"97":{}},"parent":{}}],["onaddresssearch",{"_index":466,"name":{"533":{}},"parent":{}}],["onclick",{"_index":671,"name":{"821":{}},"parent":{}}],["onmenuselect",{"_index":572,"name":{"695":{}},"parent":{}}],["onmenutoggle",{"_index":575,"name":{"699":{}},"parent":{}}],["onnamesearch",{"_index":464,"name":{"531":{}},"parent":{}}],["onphonesearch",{"_index":465,"name":{"532":{}},"parent":{}}],["onresize",{"_index":378,"name":{"437":{}},"parent":{}}],["onsign",{"_index":244,"name":{"281":{},"294":{}},"parent":{}}],["onsubmit",{"_index":402,"name":{"462":{},"570":{},"611":{}},"parent":{}}],["onverify",{"_index":246,"name":{"282":{},"296":{}},"parent":{}}],["opendialog",{"_index":289,"name":{"338":{}},"parent":{}}],["organizationcomponent",{"_index":514,"name":{"604":{}},"parent":{}}],["organizationform",{"_index":516,"name":{"606":{}},"parent":{}}],["organizationformstub",{"_index":517,"name":{"610":{}},"parent":{}}],["owner",{"_index":174,"name":{"176":{}},"parent":{}}],["pagescomponent",{"_index":507,"name":{"597":{}},"parent":{}}],["pagesizeoptions",{"_index":476,"name":{"544":{},"676":{}},"parent":{}}],["pagesmodule",{"_index":511,"name":{"601":{}},"parent":{}}],["pagesroutingmodule",{"_index":504,"name":{"594":{}},"parent":{}}],["paginator",{"_index":477,"name":{"547":{},"581":{},"622":{},"644":{},"681":{}},"parent":{}}],["parammap",{"_index":661,"name":{"813":{}},"parent":{}}],["passwordmatchvalidator",{"_index":42,"name":{"39":{}},"parent":{}}],["passwordtoggledirective",{"_index":387,"name":{"445":{}},"parent":{}}],["patternvalidator",{"_index":44,"name":{"40":{}},"parent":{}}],["personvalidation",{"_index":79,"name":{"70":{},"863":{}},"parent":{}}],["pgpsigner",{"_index":250,"name":{"287":{},"891":{}},"parent":{}}],["phonesearchform",{"_index":455,"name":{"520":{}},"parent":{}}],["phonesearchformstub",{"_index":462,"name":{"529":{}},"parent":{}}],["phonesearchloading",{"_index":457,"name":{"522":{}},"parent":{}}],["phonesearchsubmitted",{"_index":456,"name":{"521":{}},"parent":{}}],["polyfills",{"_index":653,"name":{"807":{}},"parent":{}}],["prepare",{"_index":248,"name":{"284":{},"300":{}},"parent":{}}],["production",{"_index":633,"name":{"764":{},"779":{},"794":{}},"parent":{}}],["products",{"_index":112,"name":{"105":{},"137":{}},"parent":{}}],["provide",{"_index":71,"name":{"64":{}},"parent":{}}],["provider",{"_index":154,"name":{"154":{}},"parent":{}}],["publickeysurl",{"_index":640,"name":{"770":{},"785":{},"800":{}},"parent":{}}],["r",{"_index":613,"name":{"743":{}},"parent":{}}],["ratio.pipe",{"_index":581,"name":{"704":{}},"parent":{"705":{}}}],["ratio.pipe.tokenratiopipe",{"_index":583,"name":{},"parent":{"706":{},"707":{}}}],["readcsv",{"_index":76,"name":{"68":{},"861":{}},"parent":{}}],["readystate",{"_index":276,"name":{"326":{},"435":{}},"parent":{}}],["readystateprocessor",{"_index":278,"name":{"328":{}},"parent":{}}],["readystatetarget",{"_index":275,"name":{"325":{},"434":{}},"parent":{}}],["recipient",{"_index":197,"name":{"202":{}},"parent":{}}],["recipientbloxberglink",{"_index":550,"name":{"659":{}},"parent":{}}],["refreshpaginator",{"_index":480,"name":{"553":{}},"parent":{}}],["registry",{"_index":13,"name":{"11":{},"149":{},"364":{},"370":{},"384":{},"399":{}},"parent":{"12":{}}}],["registry.tokenregistry",{"_index":15,"name":{},"parent":{"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{}}}],["registryaddress",{"_index":644,"name":{"774":{},"789":{},"804":{}},"parent":{}}],["registryservice",{"_index":310,"name":{"360":{}},"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":362,"name":{"420":{}},"parent":{}}],["resetpin",{"_index":348,"name":{"406":{},"511":{}},"parent":{}}],["resettransactionslist",{"_index":335,"name":{"390":{}},"parent":{}}],["reversetransaction",{"_index":555,"name":{"665":{}},"parent":{}}],["revokeaction",{"_index":356,"name":{"414":{}},"parent":{}}],["role",{"_index":138,"name":{"132":{}},"parent":{}}],["roleguard",{"_index":25,"name":{"26":{},"851":{}},"parent":{}}],["route",{"_index":656,"name":{"809":{}},"parent":{"810":{},"811":{},"812":{},"813":{},"814":{}}}],["routerlinkdirectivestub",{"_index":667,"name":{"817":{},"902":{}},"parent":{}}],["routing.module",{"_index":370,"name":{"427":{},"450":{},"534":{},"571":{},"593":{},"612":{},"636":{},"667":{}},"parent":{"428":{},"451":{},"535":{},"572":{},"594":{},"613":{},"637":{},"668":{}}}],["routing.module.accountsroutingmodule",{"_index":469,"name":{},"parent":{"536":{}}}],["routing.module.adminroutingmodule",{"_index":493,"name":{},"parent":{"573":{}}}],["routing.module.approutingmodule",{"_index":372,"name":{},"parent":{"429":{}}}],["routing.module.authroutingmodule",{"_index":393,"name":{},"parent":{"452":{}}}],["routing.module.pagesroutingmodule",{"_index":505,"name":{},"parent":{"595":{}}}],["routing.module.settingsroutingmodule",{"_index":520,"name":{},"parent":{"614":{}}}],["routing.module.tokensroutingmodule",{"_index":535,"name":{},"parent":{"638":{}}}],["routing.module.transactionsroutingmodule",{"_index":558,"name":{},"parent":{"669":{}}}],["s",{"_index":614,"name":{"744":{}},"parent":{}}],["safepipe",{"_index":577,"name":{"701":{}},"parent":{}}],["saveinfo",{"_index":443,"name":{"508":{}},"parent":{}}],["scan",{"_index":281,"name":{"331":{}},"parent":{}}],["scanfilter",{"_index":151,"name":{"148":{}},"parent":{}}],["search.component",{"_index":449,"name":{"514":{}},"parent":{"515":{}}}],["search.component.accountsearchcomponent",{"_index":451,"name":{},"parent":{"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{},"532":{},"533":{}}}],["search/account",{"_index":448,"name":{"514":{}},"parent":{"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{},"532":{},"533":{}}}],["searchaccountbyname",{"_index":363,"name":{"421":{}},"parent":{}}],["selection.directive",{"_index":569,"name":{"692":{}},"parent":{"693":{}}}],["selection.directive.menuselectiondirective",{"_index":571,"name":{},"parent":{"694":{},"695":{}}}],["senddebuglevelmessage",{"_index":303,"name":{"353":{}},"parent":{}}],["sender",{"_index":195,"name":{"200":{}},"parent":{}}],["senderbloxberglink",{"_index":549,"name":{"658":{}},"parent":{}}],["senderrorlevelmessage",{"_index":307,"name":{"357":{}},"parent":{}}],["sendfatallevelmessage",{"_index":308,"name":{"358":{}},"parent":{}}],["sendinfolevelmessage",{"_index":304,"name":{"354":{}},"parent":{}}],["sendloglevelmessage",{"_index":305,"name":{"355":{}},"parent":{}}],["sendresponse",{"_index":263,"name":{"312":{}},"parent":{}}],["sendtracelevelmessage",{"_index":302,"name":{"352":{}},"parent":{}}],["sendwarnlevelmessage",{"_index":306,"name":{"356":{}},"parent":{}}],["sentencesforwarninglogging",{"_index":56,"name":{"51":{}},"parent":{}}],["serializebytes",{"_index":622,"name":{"752":{}},"parent":{}}],["serializenumber",{"_index":620,"name":{"750":{}},"parent":{}}],["serializerlp",{"_index":624,"name":{"754":{}},"parent":{}}],["serverloglevel",{"_index":637,"name":{"767":{},"782":{},"797":{}},"parent":{}}],["service",{"_index":681,"name":{"829":{},"833":{},"839":{}},"parent":{"830":{},"831":{},"832":{},"834":{},"835":{},"836":{},"837":{},"838":{},"840":{},"841":{},"842":{},"843":{},"844":{},"845":{},"846":{},"847":{}}}],["sessionlogincount",{"_index":259,"name":{"307":{}},"parent":{}}],["sessiontoken",{"_index":258,"name":{"306":{}},"parent":{}}],["setconversion",{"_index":333,"name":{"388":{},"837":{}},"parent":{}}],["setkey",{"_index":268,"name":{"317":{}},"parent":{}}],["setparammap",{"_index":662,"name":{"814":{}},"parent":{}}],["setsignature",{"_index":626,"name":{"756":{}},"parent":{}}],["setstate",{"_index":261,"name":{"310":{}},"parent":{}}],["settings",{"_index":148,"name":{"145":{},"873":{}},"parent":{}}],["settingscomponent",{"_index":522,"name":{"616":{}},"parent":{}}],["settingsmodule",{"_index":527,"name":{"629":{}},"parent":{}}],["settingsroutingmodule",{"_index":519,"name":{"613":{}},"parent":{}}],["settransaction",{"_index":332,"name":{"387":{},"836":{}},"parent":{}}],["sharedmodule",{"_index":593,"name":{"717":{}},"parent":{}}],["sidebarcomponent",{"_index":596,"name":{"720":{}},"parent":{}}],["sidebarstubcomponent",{"_index":674,"name":{"823":{},"903":{}},"parent":{}}],["sign",{"_index":236,"name":{"244":{},"270":{},"286":{},"302":{}},"parent":{}}],["signable",{"_index":240,"name":{"272":{},"888":{}},"parent":{}}],["signature",{"_index":120,"name":{"114":{},"122":{},"274":{},"292":{},"876":{},"889":{}},"parent":{}}],["signer",{"_index":239,"name":{"271":{},"280":{},"398":{},"890":{}},"parent":{"272":{},"274":{},"280":{},"287":{}}}],["signer.pgpsigner",{"_index":251,"name":{},"parent":{"288":{},"289":{},"290":{},"291":{},"292":{},"293":{},"294":{},"295":{},"296":{},"297":{},"298":{},"299":{},"300":{},"301":{},"302":{}}}],["signer.signable",{"_index":241,"name":{},"parent":{"273":{}}}],["signer.signature",{"_index":242,"name":{},"parent":{"275":{}}}],["signer.signature.__type",{"_index":243,"name":{},"parent":{"276":{},"277":{},"278":{},"279":{}}}],["signer.signer",{"_index":245,"name":{},"parent":{"281":{},"282":{},"283":{},"284":{},"285":{},"286":{}}}],["signeraddress",{"_index":6,"name":{"5":{},"16":{}},"parent":{}}],["sort",{"_index":478,"name":{"548":{},"582":{},"623":{},"645":{},"682":{}},"parent":{}}],["sourcetoken",{"_index":203,"name":{"211":{}},"parent":{}}],["staff",{"_index":156,"name":{"156":{},"880":{}},"parent":{}}],["state",{"_index":35,"name":{"33":{}},"parent":{"34":{},"35":{},"36":{}}}],["status",{"_index":53,"name":{"48":{}},"parent":{}}],["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":628,"name":{"758":{}},"parent":{}}],["strip0x",{"_index":604,"name":{"730":{}},"parent":{}}],["stub",{"_index":657,"name":{"809":{},"816":{},"822":{},"829":{},"833":{},"839":{}},"parent":{"810":{},"817":{},"823":{},"825":{},"827":{},"830":{},"834":{},"840":{}}}],["stub.activatedroutestub",{"_index":659,"name":{},"parent":{"811":{},"812":{},"813":{},"814":{}}}],["stub.footerstubcomponent",{"_index":679,"name":{},"parent":{"828":{}}}],["stub.routerlinkdirectivestub",{"_index":668,"name":{},"parent":{"818":{},"819":{},"820":{},"821":{}}}],["stub.sidebarstubcomponent",{"_index":675,"name":{},"parent":{"824":{}}}],["stub.tokenservicestub",{"_index":683,"name":{},"parent":{"831":{},"832":{}}}],["stub.topbarstubcomponent",{"_index":677,"name":{},"parent":{"826":{}}}],["stub.transactionservicestub",{"_index":687,"name":{},"parent":{"835":{},"836":{},"837":{},"838":{}}}],["stub.userservicestub",{"_index":690,"name":{},"parent":{"841":{},"842":{},"843":{},"844":{},"845":{},"846":{},"847":{}}}],["subject",{"_index":660,"name":{"812":{}},"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":403,"name":{"464":{}},"parent":{}}],["symbol",{"_index":164,"name":{"165":{},"189":{}},"parent":{}}],["sync.service",{"_index":272,"name":{"322":{}},"parent":{"323":{}}}],["sync.service.blocksyncservice",{"_index":274,"name":{},"parent":{"324":{},"325":{},"326":{},"327":{},"328":{},"329":{},"330":{},"331":{},"332":{}}}],["tag",{"_index":159,"name":{"160":{}},"parent":{}}],["tel",{"_index":118,"name":{"112":{}},"parent":{}}],["test",{"_index":654,"name":{"808":{}},"parent":{}}],["testing",{"_index":663,"name":{"815":{}},"parent":{"901":{},"902":{},"903":{},"904":{},"905":{},"906":{},"907":{},"908":{}}}],["testing/activated",{"_index":655,"name":{"809":{}},"parent":{"810":{},"811":{},"812":{},"813":{},"814":{}}}],["testing/router",{"_index":664,"name":{"816":{}},"parent":{"817":{},"818":{},"819":{},"820":{},"821":{}}}],["testing/shared",{"_index":672,"name":{"822":{}},"parent":{"823":{},"824":{},"825":{},"826":{},"827":{},"828":{}}}],["testing/token",{"_index":680,"name":{"829":{}},"parent":{"830":{},"831":{},"832":{}}}],["testing/transaction",{"_index":685,"name":{"833":{}},"parent":{"834":{},"835":{},"836":{},"837":{},"838":{}}}],["testing/user",{"_index":688,"name":{"839":{}},"parent":{"840":{},"841":{},"842":{},"843":{},"844":{},"845":{},"846":{},"847":{}}}],["timestamp",{"_index":189,"name":{"194":{}},"parent":{}}],["title",{"_index":376,"name":{"433":{}},"parent":{}}],["to",{"_index":196,"name":{"201":{},"739":{}},"parent":{}}],["toggle.directive",{"_index":386,"name":{"444":{},"696":{}},"parent":{"445":{},"697":{}}}],["toggle.directive.menutoggledirective",{"_index":574,"name":{},"parent":{"698":{},"699":{}}}],["toggle.directive.passwordtoggledirective",{"_index":388,"name":{},"parent":{"446":{},"447":{},"448":{},"449":{}}}],["toggledisplay",{"_index":404,"name":{"465":{}},"parent":{}}],["togglepasswordvisibility",{"_index":390,"name":{"449":{}},"parent":{}}],["tohex",{"_index":603,"name":{"729":{}},"parent":{}}],["token",{"_index":162,"name":{"163":{},"203":{},"634":{},"881":{}},"parent":{}}],["tokendetailscomponent",{"_index":531,"name":{"632":{}},"parent":{}}],["tokenratiopipe",{"_index":582,"name":{"705":{}},"parent":{}}],["tokenregistry",{"_index":14,"name":{"12":{},"371":{},"849":{}},"parent":{}}],["tokens",{"_index":540,"name":{"646":{}},"parent":{}}],["tokenscomponent",{"_index":537,"name":{"640":{}},"parent":{}}],["tokenservice",{"_index":317,"name":{"368":{},"895":{}},"parent":{}}],["tokenservicestub",{"_index":682,"name":{"830":{},"907":{}},"parent":{}}],["tokensmodule",{"_index":543,"name":{"652":{}},"parent":{}}],["tokensroutingmodule",{"_index":534,"name":{"637":{}},"parent":{}}],["topbarcomponent",{"_index":599,"name":{"724":{}},"parent":{}}],["topbarstubcomponent",{"_index":676,"name":{"825":{},"904":{}},"parent":{}}],["totalaccounts",{"_index":10,"name":{"9":{}},"parent":{}}],["totaltokens",{"_index":18,"name":{"19":{}},"parent":{}}],["tovalue",{"_index":204,"name":{"212":{},"760":{}},"parent":{}}],["trader",{"_index":205,"name":{"213":{}},"parent":{}}],["traderbloxberglink",{"_index":551,"name":{"660":{}},"parent":{}}],["transaction",{"_index":192,"name":{"197":{},"493":{},"657":{},"678":{},"871":{}},"parent":{}}],["transactiondatasource",{"_index":562,"name":{"673":{}},"parent":{}}],["transactiondetailscomponent",{"_index":547,"name":{"655":{}},"parent":{}}],["transactiondisplayedcolumns",{"_index":563,"name":{"674":{}},"parent":{}}],["transactionlist",{"_index":327,"name":{"380":{}},"parent":{}}],["transactions",{"_index":326,"name":{"379":{},"494":{},"677":{}},"parent":{}}],["transactionscomponent",{"_index":560,"name":{"671":{}},"parent":{}}],["transactionsdatasource",{"_index":413,"name":{"472":{}},"parent":{}}],["transactionsdefaultpagesize",{"_index":415,"name":{"474":{}},"parent":{}}],["transactionsdisplayedcolumns",{"_index":414,"name":{"473":{}},"parent":{}}],["transactionservice",{"_index":324,"name":{"377":{},"893":{}},"parent":{}}],["transactionservicestub",{"_index":686,"name":{"834":{},"908":{}},"parent":{}}],["transactionsmodule",{"_index":566,"name":{"690":{}},"parent":{}}],["transactionspagesizeoptions",{"_index":416,"name":{"475":{}},"parent":{}}],["transactionsroutingmodule",{"_index":557,"name":{"668":{}},"parent":{}}],["transactionssubject",{"_index":328,"name":{"381":{}},"parent":{}}],["transactionstype",{"_index":433,"name":{"495":{},"679":{}},"parent":{}}],["transactionstypes",{"_index":435,"name":{"497":{},"680":{}},"parent":{}}],["transactiontablepaginator",{"_index":417,"name":{"476":{}},"parent":{}}],["transactiontablesort",{"_index":418,"name":{"477":{}},"parent":{}}],["transferrequest",{"_index":337,"name":{"392":{}},"parent":{}}],["transform",{"_index":579,"name":{"703":{},"707":{}},"parent":{}}],["trusteddeclaratoraddress",{"_index":645,"name":{"775":{},"790":{},"805":{}},"parent":{}}],["trustedusers",{"_index":525,"name":{"621":{}},"parent":{}}],["tx",{"_index":185,"name":{"190":{},"204":{},"215":{},"734":{},"870":{},"900":{}},"parent":{}}],["txhash",{"_index":190,"name":{"195":{}},"parent":{}}],["txhelper",{"_index":152,"name":{"150":{}},"parent":{}}],["txindex",{"_index":191,"name":{"196":{}},"parent":{}}],["txtoken",{"_index":183,"name":{"185":{},"869":{}},"parent":{}}],["type",{"_index":98,"name":{"90":{},"206":{}},"parent":{}}],["updatemeta",{"_index":352,"name":{"410":{}},"parent":{}}],["url",{"_index":509,"name":{"599":{}},"parent":{}}],["useclass",{"_index":73,"name":{"65":{}},"parent":{}}],["user",{"_index":137,"name":{"131":{},"214":{}},"parent":{}}],["userdatasource",{"_index":419,"name":{"478":{}},"parent":{}}],["userdisplayedcolumns",{"_index":420,"name":{"479":{}},"parent":{}}],["userid",{"_index":160,"name":{"161":{}},"parent":{}}],["userinfo",{"_index":329,"name":{"382":{}},"parent":{}}],["users",{"_index":691,"name":{"842":{}},"parent":{}}],["usersdefaultpagesize",{"_index":421,"name":{"480":{}},"parent":{}}],["userservice",{"_index":339,"name":{"394":{},"894":{}},"parent":{}}],["userservicestub",{"_index":689,"name":{"840":{},"906":{}},"parent":{}}],["userspagesizeoptions",{"_index":422,"name":{"481":{}},"parent":{}}],["usertablepaginator",{"_index":423,"name":{"482":{}},"parent":{}}],["usertablesort",{"_index":424,"name":{"483":{}},"parent":{}}],["v",{"_index":612,"name":{"742":{}},"parent":{}}],["validation",{"_index":78,"name":{"69":{}},"parent":{"70":{},"71":{}}}],["value",{"_index":198,"name":{"205":{},"740":{}},"parent":{}}],["vcard",{"_index":114,"name":{"107":{}},"parent":{}}],["vcardvalidation",{"_index":80,"name":{"71":{},"864":{}},"parent":{}}],["verify",{"_index":249,"name":{"285":{},"301":{}},"parent":{}}],["version",{"_index":119,"name":{"113":{}},"parent":{}}],["viewaccount",{"_index":441,"name":{"506":{},"551":{}},"parent":{}}],["viewrecipient",{"_index":553,"name":{"663":{}},"parent":{}}],["viewsender",{"_index":552,"name":{"662":{}},"parent":{}}],["viewtoken",{"_index":541,"name":{"649":{}},"parent":{}}],["viewtrader",{"_index":554,"name":{"664":{}},"parent":{}}],["viewtransaction",{"_index":440,"name":{"505":{},"684":{}},"parent":{}}],["w3",{"_index":150,"name":{"147":{},"151":{},"874":{}},"parent":{}}],["web3",{"_index":312,"name":{"362":{},"383":{}},"parent":{}}],["web3provider",{"_index":642,"name":{"772":{},"787":{},"802":{}},"parent":{}}],["weight",{"_index":171,"name":{"173":{}},"parent":{}}],["wrap",{"_index":358,"name":{"416":{}},"parent":{}}],["write",{"_index":621,"name":{"751":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file diff --git a/docs/typedoc/classes/app__eth_accountindex.accountindex.html b/docs/typedoc/classes/app__eth_accountindex.accountindex.html index 00230b6..525d621 100644 --- a/docs/typedoc/classes/app__eth_accountindex.accountindex.html +++ b/docs/typedoc/classes/app__eth_accountindex.accountindex.html @@ -68,6 +68,19 @@
+
+
+
+

Provides an instance of the accounts registry contract. + Allows querying of accounts that have been registered as valid accounts in the network.

+
+
+
remarks
+

This is our interface to the accounts registry contract.

+
+
+
+

Hierarchy

    @@ -118,16 +131,27 @@
  • +
    +
    +

    Create a connection to the deployed account registry contract.

    +
    +

    Parameters

    • contractAddress: string
      +
      +

      The deployed account registry contract's address.

      +
    • Optional signerAddress: string
      +
      +

      The account address of the account that deployed the account registry contract.

      +

    Returns AccountIndex

    @@ -143,9 +167,14 @@
    contract: any
    +
    +
    +

    The instance of the account registry contract.

    +
    +
@@ -153,9 +182,14 @@
contractAddress: string
+
+
+

The deployed account registry contract's address.

+
+
@@ -163,9 +197,14 @@
signerAddress: string
+
+
+

The account address of the account that deployed the account registry contract.

+
+
@@ -180,16 +219,35 @@
  • +
    +
    +

    Registers an account to the accounts registry. + Requires availability of the signer address.

    +
    +
    +
    async
    +
    +
    example
    +

    Prints "true" for registration of '0xc0ffee254729296a45a3885639AC7E10F9d54979':

    +
    console.log(await addToAccountRegistry('0xc0ffee254729296a45a3885639AC7E10F9d54979'));
    +
    +
    +
    +

    Parameters

    • address: string
      +
      +

      The account address to be registered to the accounts registry contract.

      +

    Returns Promise<boolean>

    +

    true - If registration is successful or account had already been registered.

  • @@ -203,16 +261,35 @@
  • +
    +
    +

    Checks whether a specific account address has been registered in the accounts registry. + Returns "true" for available and "false" otherwise.

    +
    +
    +
    async
    +
    +
    example
    +

    Prints "true" or "false" depending on whether '0xc0ffee254729296a45a3885639AC7E10F9d54979' has been registered:

    +
    console.log(await haveAccount('0xc0ffee254729296a45a3885639AC7E10F9d54979'));
    +
    +
    +
    +

    Parameters

    • address: string
      +
      +

      The account address to be validated.

      +

    Returns Promise<boolean>

    +

    true - If the address has been registered in the accounts registry.

  • @@ -226,16 +303,34 @@
  • +
    +
    +

    Returns a specified number of the most recently registered accounts.

    +
    +
    +
    async
    +
    +
    example
    +

    Prints an array of accounts:

    +
    console.log(await last(5));
    +
    +
    +
    +

    Parameters

    • numberOfAccounts: number
      +
      +

      The number of accounts to return from the accounts registry.

      +

    Returns Promise<string[]>

    +

    An array of registered account addresses.

  • @@ -249,10 +344,25 @@
  • +
    +
    +

    Returns the total number of accounts that have been registered in the network.

    +
    +
    +
    async
    +
    +
    example
    +

    Prints the total number of registered accounts:

    +
    console.log(await totalAccounts());
    +
    +
    +
    +

    Returns Promise<number>

    +

    The total number of registered accounts.

  • diff --git a/docs/typedoc/classes/app__eth_token_registry.tokenregistry.html b/docs/typedoc/classes/app__eth_token_registry.tokenregistry.html index faa2085..bd8620b 100644 --- a/docs/typedoc/classes/app__eth_token_registry.tokenregistry.html +++ b/docs/typedoc/classes/app__eth_token_registry.tokenregistry.html @@ -68,6 +68,19 @@
    +
    +
    +
    +

    Provides an instance of the token registry contract. + Allows querying of tokens that have been registered as valid tokens in the network.

    +
    +
    +
    remarks
    +

    This is our interface to the token registry contract.

    +
    +
    +
    +

    Hierarchy

      @@ -117,16 +130,27 @@
    • +
      +
      +

      Create a connection to the deployed token registry contract.

      +
      +

      Parameters

      • contractAddress: string
        +
        +

        The deployed token registry contract's address.

        +
      • Optional signerAddress: string
        +
        +

        The account address of the account that deployed the token registry contract.

        +

      Returns TokenRegistry

      @@ -142,9 +166,14 @@
      contract: any
      +
      +
      +

      The instance of the token registry contract.

      +
      +
    @@ -152,9 +181,14 @@
    contractAddress: string
    +
    +
    +

    The deployed token registry contract's address.

    +
    +
    @@ -162,9 +196,14 @@
    signerAddress: string
    +
    +
    +

    The account address of the account that deployed the token registry contract.

    +
    +
    @@ -179,16 +218,34 @@
  • +
    +
    +

    Returns the address of the token with a given identifier.

    +
    +
    +
    async
    +
    +
    example
    +

    Prints the address of the token with the identifier 'sarafu':

    +
    console.log(await addressOf('sarafu'));
    +
    +
    +
    +

    Parameters

    • identifier: string
      +
      +

      The name or identifier of the token to be fetched from the token registry.

      +

    Returns Promise<string>

    +

    The address of the token assigned the specified identifier in the token registry.

  • @@ -202,16 +259,34 @@
  • +
    +
    +

    Returns the address of a token with the given serial in the token registry.

    +
    +
    +
    async
    +
    +
    example
    +

    Prints the address of the token with the serial '2':

    +
    console.log(await entry(2));
    +
    +
    +
    +

    Parameters

    • serial: number
      +
      +

      The serial number of the token to be fetched.

      +

    Returns Promise<string>

    +

    The address of the token with the specified serial number.

  • @@ -225,10 +300,25 @@
  • +
    +
    +

    Returns the total number of tokens that have been registered in the network.

    +
    +
    +
    async
    +
    +
    example
    +

    Prints the total number of registered tokens:

    +
    console.log(await totalTokens());
    +
    +
    +
    +

    Returns Promise<number>

    +

    The total number of registered tokens.

  • diff --git a/docs/typedoc/classes/app__helpers_global_error_handler.globalerrorhandler.html b/docs/typedoc/classes/app__helpers_global_error_handler.globalerrorhandler.html index 40e08d6..1518749 100644 --- a/docs/typedoc/classes/app__helpers_global_error_handler.globalerrorhandler.html +++ b/docs/typedoc/classes/app__helpers_global_error_handler.globalerrorhandler.html @@ -187,7 +187,7 @@
  • Parameters

    diff --git a/docs/typedoc/classes/app__pgp_pgp_key_store.mutablepgpkeystore.html b/docs/typedoc/classes/app__pgp_pgp_key_store.mutablepgpkeystore.html index 56d49b2..95ba05d 100644 --- a/docs/typedoc/classes/app__pgp_pgp_key_store.mutablepgpkeystore.html +++ b/docs/typedoc/classes/app__pgp_pgp_key_store.mutablepgpkeystore.html @@ -68,6 +68,14 @@
    +
    +
    +
    +
    implements
    +
    +
    +
    +

    Hierarchy

      @@ -155,7 +163,7 @@

      Returns void

      @@ -173,7 +181,7 @@

      Returns any[]

      @@ -191,7 +199,7 @@

      Returns string

      @@ -209,7 +217,7 @@

      Parameters

      @@ -233,7 +241,7 @@

      Parameters

      @@ -257,7 +265,7 @@

      Returns any

      @@ -275,7 +283,7 @@

      Parameters

      @@ -299,7 +307,7 @@

      Returns string

      @@ -317,7 +325,7 @@

      Returns any[]

      @@ -335,7 +343,7 @@

      Parameters

      @@ -359,7 +367,7 @@

      Parameters

      @@ -383,7 +391,7 @@

      Returns any[]

      @@ -401,7 +409,7 @@

      Parameters

      @@ -425,7 +433,7 @@

      Returns any[]

      @@ -443,7 +451,7 @@

      Returns any[]

      @@ -461,7 +469,7 @@

      Parameters

      @@ -488,7 +496,7 @@

      Parameters

      @@ -512,7 +520,7 @@

      Parameters

      @@ -536,7 +544,7 @@

      Parameters

      @@ -560,7 +568,7 @@

      Parameters

      @@ -584,7 +592,7 @@

      Returns Promise<void>

      @@ -602,7 +610,7 @@

      Parameters

      @@ -626,7 +634,7 @@

      Parameters

      @@ -650,7 +658,7 @@

      Parameters

      @@ -674,7 +682,7 @@

      Parameters

      diff --git a/docs/typedoc/classes/app__services_auth_service.authservice.html b/docs/typedoc/classes/app__services_auth_service.authservice.html index 29ce90b..9b2b959 100644 --- a/docs/typedoc/classes/app__services_auth_service.authservice.html +++ b/docs/typedoc/classes/app__services_auth_service.authservice.html @@ -209,7 +209,7 @@
    • Returns any

      @@ -226,7 +226,7 @@
    • Returns Promise<any>

      @@ -243,7 +243,7 @@
    • Returns any

      @@ -359,7 +359,7 @@
    • Returns void

      @@ -399,13 +399,21 @@
    • +
      +
      +
      throws
      +
      +
      +

      Parameters

      • privateKeyArmored: any
        +
        +

      Returns Promise<boolean>

      diff --git a/docs/typedoc/interfaces/app__pgp_pgp_key_store.mutablekeystore.html b/docs/typedoc/interfaces/app__pgp_pgp_key_store.mutablekeystore.html index e92ee74..ebca0bb 100644 --- a/docs/typedoc/interfaces/app__pgp_pgp_key_store.mutablekeystore.html +++ b/docs/typedoc/interfaces/app__pgp_pgp_key_store.mutablekeystore.html @@ -136,7 +136,7 @@
    • Returns void

      @@ -154,7 +154,7 @@

      Returns any[]

      @@ -172,7 +172,7 @@

      Returns string

      @@ -189,7 +189,7 @@
    • Parameters

      @@ -212,7 +212,7 @@
    • Parameters

      @@ -236,7 +236,7 @@

      Returns any

      @@ -253,7 +253,7 @@
    • Parameters

      @@ -276,7 +276,7 @@
    • Returns string

      @@ -293,7 +293,7 @@
    • Returns any[]

      @@ -310,7 +310,7 @@
    • Parameters

      @@ -333,7 +333,7 @@
    • Parameters

      @@ -356,7 +356,7 @@
    • Returns any[]

      @@ -373,7 +373,7 @@
    • Parameters

      @@ -397,7 +397,7 @@

      Returns any[]

      @@ -415,7 +415,7 @@

      Returns any[]

      @@ -432,7 +432,7 @@
    • Parameters

      @@ -458,7 +458,7 @@
    • Parameters

      @@ -481,7 +481,7 @@
    • Parameters

      @@ -504,7 +504,7 @@
    • Parameters

      @@ -527,7 +527,7 @@
    • Parameters

      @@ -550,7 +550,7 @@
    • Returns void

      @@ -567,7 +567,7 @@
    • Parameters

      @@ -590,7 +590,7 @@
    • Parameters

      @@ -613,7 +613,7 @@
    • Parameters

      @@ -636,7 +636,7 @@
    • Parameters

      diff --git a/package.json b/package.json index 0c63ccf..23c83e3 100644 --- a/package.json +++ b/package.json @@ -12,8 +12,9 @@ "lint": "ng lint", "e2e": "ng e2e", "postinstall": "node patch-webpack.js", - "typedoc": "typedoc --tsconfig tsconfig.json --exclude **/*.spec.ts --out docs/typedoc --name CICADA src", - "compodoc": "npx compodoc -p tsconfig.doc.json -d docs/compodoc -n CICADA" + "compodoc": "npx compodoc -p tsconfig.doc.json -d docs/compodoc -n CICADA", + "typedoc": "npx typedoc --tsconfig tsconfig.json --exclude **/*.spec.ts --out docs/typedoc --name CICADA src", + "docs": "npm run typedoc && npm run compodoc" }, "private": true, "dependencies": { diff --git a/src/app/_eth/accountIndex.ts b/src/app/_eth/accountIndex.ts index 5519340..5889710 100644 --- a/src/app/_eth/accountIndex.ts +++ b/src/app/_eth/accountIndex.ts @@ -1,14 +1,35 @@ -import {environment} from '@src/environments/environment'; +// Third party imports import Web3 from 'web3'; +// Application imports +import {environment} from '@src/environments/environment'; + +/** Fetch the account registry contract's ABI. */ const abi: Array = require('@src/assets/js/block-sync/data/AccountRegistry.json'); +/** Establish a connection to the blockchain network. */ const web3: Web3 = new Web3(environment.web3Provider); +/** + * Provides an instance of the accounts registry contract. + * Allows querying of accounts that have been registered as valid accounts in the network. + * + * @remarks + * This is our interface to the accounts registry contract. + */ export class AccountIndex { - contractAddress: string; - signerAddress: string; + /** The instance of the account registry contract. */ contract: any; + /** The deployed account registry contract's address. */ + contractAddress: string; + /** The account address of the account that deployed the account registry contract. */ + signerAddress: string; + /** + * Create a connection to the deployed account registry contract. + * + * @param contractAddress - The deployed account registry contract's address. + * @param signerAddress - The account address of the account that deployed the account registry contract. + */ constructor(contractAddress: string, signerAddress?: string) { this.contractAddress = contractAddress; this.contract = new web3.eth.Contract(abi, this.contractAddress); @@ -19,14 +40,58 @@ export class AccountIndex { } } - public async totalAccounts(): Promise { - return await this.contract.methods.count().call(); + /** + * Registers an account to the accounts registry. + * Requires availability of the signer address. + * + * @async + * @example + * Prints "true" for registration of '0xc0ffee254729296a45a3885639AC7E10F9d54979': + * ```typescript + * console.log(await addToAccountRegistry('0xc0ffee254729296a45a3885639AC7E10F9d54979')); + * ``` + * + * @param address - The account address to be registered to the accounts registry contract. + * @returns true - If registration is successful or account had already been registered. + */ + public async addToAccountRegistry(address: string): Promise { + if (!await this.haveAccount(address)) { + return await this.contract.methods.add(address).send({from: this.signerAddress}); + } + return true; } + /** + * Checks whether a specific account address has been registered in the accounts registry. + * Returns "true" for available and "false" otherwise. + * + * @async + * @example + * Prints "true" or "false" depending on whether '0xc0ffee254729296a45a3885639AC7E10F9d54979' has been registered: + * ```typescript + * console.log(await haveAccount('0xc0ffee254729296a45a3885639AC7E10F9d54979')); + * ``` + * + * @param address - The account address to be validated. + * @returns true - If the address has been registered in the accounts registry. + */ public async haveAccount(address: string): Promise { return await this.contract.methods.accountIndex(address).call() !== 0; } + /** + * Returns a specified number of the most recently registered accounts. + * + * @async + * @example + * Prints an array of accounts: + * ```typescript + * console.log(await last(5)); + * ``` + * + * @param numberOfAccounts - The number of accounts to return from the accounts registry. + * @returns An array of registered account addresses. + */ public async last(numberOfAccounts: number): Promise> { const count: number = await this.totalAccounts(); let lowest: number = count - numberOfAccounts - 1; @@ -41,10 +106,19 @@ export class AccountIndex { return accounts; } - public async addToAccountRegistry(address: string): Promise { - if (!await this.haveAccount(address)) { - return await this.contract.methods.add(address).send({from: this.signerAddress}); - } - return true; + /** + * Returns the total number of accounts that have been registered in the network. + * + * @async + * @example + * Prints the total number of registered accounts: + * ```typescript + * console.log(await totalAccounts()); + * ``` + * + * @returns The total number of registered accounts. + */ + public async totalAccounts(): Promise { + return await this.contract.methods.count().call(); } } diff --git a/src/app/_eth/token-registry.spec.ts b/src/app/_eth/token-registry.spec.ts index 9c5b881..274900c 100644 --- a/src/app/_eth/token-registry.spec.ts +++ b/src/app/_eth/token-registry.spec.ts @@ -1,3 +1,4 @@ +// Application imports import { TokenRegistry } from '@app/_eth/token-registry'; import {environment} from '@src/environments/environment'; diff --git a/src/app/_eth/token-registry.ts b/src/app/_eth/token-registry.ts index f4dc384..c5bdb88 100644 --- a/src/app/_eth/token-registry.ts +++ b/src/app/_eth/token-registry.ts @@ -1,14 +1,36 @@ +// Third party imports import Web3 from 'web3'; + +// Application imports import {environment} from '@src/environments/environment'; + +/** Fetch the token registry contract's ABI. */ const abi: Array = require('@src/assets/js/block-sync/data/TokenUniqueSymbolIndex.json'); +/** Establish a connection to the blockchain network. */ const web3: Web3 = new Web3(environment.web3Provider); +/** + * Provides an instance of the token registry contract. + * Allows querying of tokens that have been registered as valid tokens in the network. + * + * @remarks + * This is our interface to the token registry contract. + */ export class TokenRegistry { - contractAddress: string; - signerAddress: string; + /** The instance of the token registry contract. */ contract: any; + /** The deployed token registry contract's address. */ + contractAddress: string; + /** The account address of the account that deployed the token registry contract. */ + signerAddress: string; + /** + * Create a connection to the deployed token registry contract. + * + * @param contractAddress - The deployed token registry contract's address. + * @param signerAddress - The account address of the account that deployed the token registry contract. + */ constructor(contractAddress: string, signerAddress?: string) { this.contractAddress = contractAddress; this.contract = new web3.eth.Contract(abi, this.contractAddress); @@ -19,16 +41,54 @@ export class TokenRegistry { } } - public async totalTokens(): Promise { - return await this.contract.methods.entryCount().call(); - } - - public async entry(serial: number): Promise { - return await this.contract.methods.entry(serial).call(); - } - + /** + * Returns the address of the token with a given identifier. + * + * @async + * @example + * Prints the address of the token with the identifier 'sarafu': + * ```typescript + * console.log(await addressOf('sarafu')); + * ``` + * + * @param identifier - The name or identifier of the token to be fetched from the token registry. + * @returns The address of the token assigned the specified identifier in the token registry. + */ public async addressOf(identifier: string): Promise { const id: string = web3.eth.abi.encodeParameter('bytes32', web3.utils.toHex(identifier)); return await this.contract.methods.addressOf(id).call(); } + + /** + * Returns the address of a token with the given serial in the token registry. + * + * @async + * @example + * Prints the address of the token with the serial '2': + * ```typescript + * console.log(await entry(2)); + * ``` + * + * @param serial - The serial number of the token to be fetched. + * @return The address of the token with the specified serial number. + */ + public async entry(serial: number): Promise { + return await this.contract.methods.entry(serial).call(); + } + + /** + * Returns the total number of tokens that have been registered in the network. + * + * @async + * @example + * Prints the total number of registered tokens: + * ```typescript + * console.log(await totalTokens()); + * ``` + * + * @returns The total number of registered tokens. + */ + public async totalTokens(): Promise { + return await this.contract.methods.entryCount().call(); + } }