From c9f73899c3ae25dc0db7be9d5d2887c1ea38fcb0 Mon Sep 17 00:00:00 2001 From: Spencer Ofwiti Date: Tue, 11 May 2021 12:28:45 +0300 Subject: [PATCH] Add documentation to the guards module. --- docs/compodoc/coverage.html | 16 ++-- docs/compodoc/guards/AuthGuard.html | 72 ++++++++++++++-- docs/compodoc/guards/RoleGuard.html | 72 ++++++++++++++-- .../images/coverage-badge-documentation.svg | 2 +- docs/compodoc/js/search/search_index.js | 4 +- docs/compodoc/modules/AppModule.html | 86 +++++++++---------- .../modules/AppModule/dependencies.svg | 86 +++++++++---------- docs/compodoc/modules/AuthModule.html | 38 ++++---- .../modules/AuthModule/dependencies.svg | 38 ++++---- docs/compodoc/modules/PagesModule.html | 38 ++++---- .../modules/PagesModule/dependencies.svg | 38 ++++---- docs/compodoc/modules/TransactionsModule.html | 56 ++++++------ .../TransactionsModule/dependencies.svg | 56 ++++++------ .../app__guards_auth_guard.authguard.html | 39 ++++++++- .../app__guards_role_guard.roleguard.html | 39 ++++++++- src/app/_guards/auth.guard.spec.ts | 2 + src/app/_guards/auth.guard.ts | 25 +++++- src/app/_guards/role.guard.spec.ts | 2 + src/app/_guards/role.guard.ts | 25 +++++- 19 files changed, 489 insertions(+), 245 deletions(-) diff --git a/docs/compodoc/coverage.html b/docs/compodoc/coverage.html index a5984b4..0d42668 100644 --- a/docs/compodoc/coverage.html +++ b/docs/compodoc/coverage.html @@ -136,28 +136,28 @@ (1/1) - + src/app/_guards/auth.guard.ts guard AuthGuard - - 0 % - (0/3) + + 100 % + (3/3) - + src/app/_guards/role.guard.ts guard RoleGuard - - 0 % - (0/3) + + 100 % + (3/3) diff --git a/docs/compodoc/guards/AuthGuard.html b/docs/compodoc/guards/AuthGuard.html index 6487ccc..9d539d0 100644 --- a/docs/compodoc/guards/AuthGuard.html +++ b/docs/compodoc/guards/AuthGuard.html @@ -61,9 +61,22 @@ src/app/_guards/auth.guard.ts

+

+

Description

+

+

+

Auth guard implementation. +Dictates access to routes depending on the authentication status.

+ +

+

+

Example

+

+
+

Index

@@ -104,12 +117,14 @@ - + +

Instantiates the auth guard class.

+
Parameters : @@ -118,6 +133,7 @@ + @@ -132,6 +148,12 @@ No +
Name Type OptionalDescription
+
    +
  • A service that provides navigation among views and URL manipulation capabilities.
  • +
+
+
@@ -169,14 +191,17 @@ - + +

Returns whether navigation to a specific route is acceptable. +Checks if the user has uploaded a private key.

+
Parameters : @@ -186,6 +211,7 @@ Name Type Optional + Description @@ -200,6 +226,13 @@ + +
    +
  • Contains the information about a route associated with a component loaded in an outlet at a particular moment in time. +ActivatedRouteSnapshot can also be used to traverse the router state tree.
  • +
+ + state @@ -212,6 +245,12 @@ + +
    +
  • Represents the state of the router at a moment in time.
  • +
+ + @@ -223,7 +262,8 @@
- +

true - If there is an active private key in the user's localStorage.

+
@@ -235,16 +275,38 @@
import { Injectable } from '@angular/core';
-import {CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot, UrlTree, Router} from '@angular/router';
+import {ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot, UrlTree} from '@angular/router';
+
+// Third party imports
 import { Observable } from 'rxjs';
 
+/**
+ * Auth guard implementation.
+ * Dictates access to routes depending on the authentication status.
+ *
+ * @implements CanActivate
+ */
 @Injectable({
   providedIn: 'root'
 })
 export class AuthGuard implements CanActivate {
 
+  /**
+   * Instantiates the auth guard class.
+   *
+   * @param router - A service that provides navigation among views and URL manipulation capabilities.
+   */
   constructor(private router: Router) {}
 
+  /**
+   * Returns whether navigation to a specific route is acceptable.
+   * Checks if the user has uploaded a private key.
+   *
+   * @param route - Contains the information about a route associated with a component loaded in an outlet at a particular moment in time.
+   * ActivatedRouteSnapshot can also be used to traverse the router state tree.
+   * @param state - Represents the state of the router at a moment in time.
+   * @returns true - If there is an active private key in the user's localStorage.
+   */
   canActivate(
     route: ActivatedRouteSnapshot,
     state: RouterStateSnapshot): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree {
diff --git a/docs/compodoc/guards/RoleGuard.html b/docs/compodoc/guards/RoleGuard.html
index 435bd87..7869ed3 100644
--- a/docs/compodoc/guards/RoleGuard.html
+++ b/docs/compodoc/guards/RoleGuard.html
@@ -61,9 +61,22 @@
                 src/app/_guards/role.guard.ts
             

+

+

Description

+

+

+

Role guard implementation. +Dictates access to routes depending on the user's role.

+ +

+

+

Example

+

+
+

Index

@@ -104,12 +117,14 @@ - + +

Instantiates the role guard class.

+
Parameters : @@ -118,6 +133,7 @@ + @@ -132,6 +148,12 @@ No +
Name Type OptionalDescription
+
    +
  • A service that provides navigation among views and URL manipulation capabilities.
  • +
+
+
@@ -169,14 +191,17 @@ - + +

Returns whether navigation to a specific route is acceptable. +Checks if the user has the required role to access the route.

+
Parameters : @@ -186,6 +211,7 @@ Name Type Optional + Description @@ -200,6 +226,13 @@ + +
    +
  • Contains the information about a route associated with a component loaded in an outlet at a particular moment in time. +ActivatedRouteSnapshot can also be used to traverse the router state tree.
  • +
+ + state @@ -212,6 +245,12 @@ + +
    +
  • Represents the state of the router at a moment in time.
  • +
+ + @@ -223,7 +262,8 @@
- +

true - If the user's role matches with accepted roles.

+
@@ -235,16 +275,38 @@
import { Injectable } from '@angular/core';
-import {CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot, UrlTree, Router} from '@angular/router';
+import {ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot, UrlTree} from '@angular/router';
+
+// Third party imports
 import { Observable } from 'rxjs';
 
+/**
+ * Role guard implementation.
+ * Dictates access to routes depending on the user's role.
+ *
+ * @implements CanActivate
+ */
 @Injectable({
   providedIn: 'root'
 })
 export class RoleGuard implements CanActivate {
 
+  /**
+   * Instantiates the role guard class.
+   *
+   * @param router - A service that provides navigation among views and URL manipulation capabilities.
+   */
   constructor(private router: Router) {}
 
+  /**
+   * Returns whether navigation to a specific route is acceptable.
+   * Checks if the user has the required role to access the route.
+   *
+   * @param route - Contains the information about a route associated with a component loaded in an outlet at a particular moment in time.
+   * ActivatedRouteSnapshot can also be used to traverse the router state tree.
+   * @param state - Represents the state of the router at a moment in time.
+   * @returns true - If the user's role matches with accepted roles.
+   */
   canActivate(
     route: ActivatedRouteSnapshot,
     state: RouterStateSnapshot): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree {
diff --git a/docs/compodoc/images/coverage-badge-documentation.svg b/docs/compodoc/images/coverage-badge-documentation.svg
index 38f5363..33b8e5e 100644
--- a/docs/compodoc/images/coverage-badge-documentation.svg
+++ b/docs/compodoc/images/coverage-badge-documentation.svg
@@ -4,6 +4,6 @@
         
         
         documentation
-        6%
+        8%
     
 
diff --git a/docs/compodoc/js/search/search_index.js b/docs/compodoc/js/search/search_index.js
index c1bc622..313e2a9 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.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"}}
+    "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.88,1,3.599,2,1.935,3,0.115,4,0.092,5,0.081,6,2.836,7,0.348,8,1.08,9,1.318,10,5.33,11,4.046,12,3.574,13,5.213,14,4.656,15,5.213,16,4.231,17,3.887,18,0.699,19,4.051,20,1.495,21,0.011,22,2.054,23,5.377,24,4.09,25,4.09,26,4.09,27,3.855,28,3.855,29,2.078,30,4.09,31,3.218,32,3.653,33,2.105,34,4.09,35,4.09,36,4.09,37,3.738,38,4.09,39,3.653,40,3.874,41,2.688,42,2.629,43,2.688,44,2.443,45,2.458,46,3.855,47,2.339,48,0.99,49,3.653,50,2.836,51,2.629,52,2.836,53,3.653,54,3.653,55,3.01,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.725,3,0.074,4,0.059,5,0.052,7,0.222,8,0.78,9,0.952,18,0.554,20,1.361,21,0.011,22,2.028,48,1.33,51,1.236,54,4.978,56,0.074,57,0.003,58,0.005,59,0.003,60,0.003,61,3.416,62,1.084,63,2.223,64,4.36,65,3.16,66,5.138,67,5.582,68,4.979,69,3.759,70,3.759,71,7.342,72,3.16,73,3.894,74,4.782,75,5.854,76,6.454,77,0.717,78,3.988,79,3.349,80,4.28,81,4.28,82,4.28,83,6.665,84,0.599,85,3.759,86,0.857,87,4.28,88,1.433,89,3.849,90,6.589,91,2.814,92,1.037,93,0.547,94,5.039,95,3.059,96,2.223,97,2.785,98,2.785,99,4.28,100,2.785,101,4.28,102,3.759,103,4.28,104,2.786,105,6.293,106,4.28,107,5.85,108,4.28,109,6.293,110,6.293,111,2.785,112,1.327,113,2.703,114,2.689,115,4.28,116,3.759,117,4.28,118,2.785,119,3.416,120,4.32,121,3.16,122,3.416,123,2.163,124,3.759,125,4.28,126,2.785,127,3.416,128,2.785,129,4.28,130,2.785,131,3.416,132,4.28,133,5.213,134,1.712,135,2.382,136,4.28,137,4.28,138,2.785,139,5.854,140,0.26,141,3.608,142,2.446,143,1.019,144,1.195,145,1.434,146,2.223,147,2.956,148,2.223,149,2.446,150,2.223,151,2.223,152,1.393,153,2.056,154,2.446,155,3.894,156,3.759,157,2.446,158,2.446,159,4.579,160,2.446,161,4.28,162,2.785,163,2.859,164,2.785,165,2.785,166,2.785,167,2.785,168,4.579,169,2.785,170,5.213,171,2.64,172,2.785,173,2.785,174,2.785]],["title/components/AccountSearchComponent.html",[175,0.652,176,1.383]],["body/components/AccountSearchComponent.html",[3,0.076,4,0.061,5,0.054,7,0.23,8,0.801,9,0.469,18,0.615,21,0.011,22,1.509,33,1.781,56,0.076,57,0.003,58,0.005,59,0.003,60,0.003,67,3.877,77,0.736,79,2.804,84,0.946,86,0.985,88,0.966,91,2.57,92,0.511,93,0.6,95,2.347,112,0.997,113,2.248,114,2.473,123,3.343,134,1.666,140,0.426,144,1.237,145,1.485,152,1.43,163,2.556,175,0.817,176,1.938,177,1.609,178,1.055,179,1.197,180,1.088,181,0.966,182,7.272,183,6.113,184,2.532,185,1.314,186,2.449,187,0.912,188,1.824,189,1.824,190,2.861,191,3.086,192,4.814,193,1.824,194,5.326,195,1.824,196,4.395,197,5.326,198,5.326,199,5.326,200,3.933,201,5.326,202,5.326,203,5.326,204,5.326,205,5.326,206,5.326,207,2.739,208,5.956,209,5.956,210,5.956,211,3.245,212,5.326,213,5.326,214,5.326,215,2.301,216,4.989,217,4.334,218,3.771,219,4.395,220,2.883,221,1.469,222,2.883,223,2.883,224,2.883,225,5.188,226,2.883,227,2.399,228,2.222,229,2.883,230,2.883,231,3.955,232,2.883,233,2.883,234,2.883,235,2.883,236,2.883,237,2.883,238,2.883,239,2.883,240,2.883,241,2.883,242,2.883,243,2.883,244,1.197,245,0.345,246,2.129,247,1.547,248,1.428,249,1.428,250,1.024,251,2.129,252,2.129,253,1.637,254,2.883,255,3.933,256,3.933,257,2.883,258,2.532,259,2.883,260,2.883,261,2.883,262,2.883,263,2.883,264,2.883,265,4.395,266,2.883,267,2.883,268,2.883,269,4.395,270,2.883,271,4.395,272,3.877,273,3.035,274,4.395,275,4.395,276,3.508,277,2.883,278,2.883,279,4.395,280,2.883,281,2.176,282,4.398,283,3.877,284,4.395,285,0.815,286,1.658,287,1.658,288,0.838,289,2.248,290,1.088,291,0.966,292,2.01,293,0.938,294,1.088,295,1.088,296,0.938,297,1.088,298,0.966,299,1.088,300,0.938,301,1.088,302,0.938,303,1.088,304,0.938,305,0.731,306,1.088,307,0.966,308,1.658,309,1.024,310,0.938,311,1.088,312,0.938,313,1.088,314,0.938,315,1.088,316,0.966,317,1.658,318,1.024,319,0.938,320,0.731,321,0.938,322,1.088,323,0.966,324,1.658,325,1.024,326,0.966,327,0.793,328,0.938,329,0.966,330,0.938,331,0.938,332,1.088,333,0.938,334,1.088,335,0.938,336,1.088,337,0.994,338,1.055,339,1.088]],["title/components/AccountsComponent.html",[175,0.652,293,1.383]],["body/components/AccountsComponent.html",[1,1.422,3,0.079,4,0.063,5,0.055,7,0.238,8,0.822,9,0.885,11,3.397,16,3.397,18,0.635,20,1.09,21,0.011,22,1.536,33,1.735,56,0.144,57,0.004,58,0.005,59,0.004,60,0.004,67,5.23,77,0.755,79,2.515,84,0.971,86,0.977,88,0.999,91,2.118,92,0.964,93,0.715,112,1.146,113,1.702,135,2.762,140,0.471,144,1.28,145,1.536,152,0.971,163,1.935,175,0.834,176,0.971,177,1.651,178,1.092,179,1.238,180,1.126,181,0.999,185,1.348,186,2.787,187,0.943,188,1.872,189,1.872,190,2.871,191,3.099,192,3.738,193,1.872,195,1.872,207,2.787,217,4.222,218,3.815,221,1.883,228,2.058,244,1.238,245,0.357,248,1.477,249,1.477,250,1.059,251,2.202,252,2.202,253,1.671,272,1.941,281,2.233,282,3.945,285,0.843,286,1.702,287,1.702,288,0.867,289,2.287,290,1.126,291,0.999,292,2.052,293,1.972,294,1.126,295,1.126,296,0.971,297,1.126,298,0.999,299,1.126,300,0.971,301,1.126,302,0.971,303,1.126,304,0.971,305,1.378,306,1.126,307,0.999,308,1.702,309,1.059,310,0.971,311,1.126,312,0.971,313,1.126,314,0.971,315,1.126,316,0.999,317,1.702,318,1.059,319,0.971,320,0.756,321,0.971,322,1.126,323,0.999,324,1.702,325,1.059,326,0.999,327,0.82,328,0.971,329,0.999,330,0.971,331,0.971,332,1.126,333,0.971,334,1.126,335,0.971,336,1.126,337,1.029,338,1.092,339,1.126,340,2.62,341,5.437,342,4.51,343,5.437,344,3.755,345,3.755,346,4.776,347,4.34,348,4.776,349,3.755,350,3.755,351,3.114,352,4.186,353,6.061,354,6.061,355,4.51,356,2.62,357,2.95,358,4.51,359,3.114,360,2.983,361,2.983,362,2.983,363,2.983,364,2.983,365,4.51,366,2.983,367,2.983,368,2.983,369,2.983,370,3.755,371,2.983,372,4.186,373,2.983,374,4.838,375,2.983,376,3.6,377,3.961,378,2.647,379,2.983,380,3.755,381,2.935,382,3.114,383,2.983,384,3.755,385,3.114,386,2.06,387,1.536,388,1.601,389,1.601,390,1.84,391,1.672,392,1.477,393,1.941,394,2.202,395,1.601,396,2.983,397,2.62,398,2.983,399,2.381,400,2.983,401,2.62,402,2.62,403,2.62,404,4.51,405,2.202,406,2.983,407,4.015,408,3.114,409,2.202,410,2.06,411,4.51,412,2.202,413,2.06,414,2.983,415,4.51,416,4.51,417,2.983,418,2.983,419,2.983,420,2.983,421,3.961,422,3.6,423,3.114,424,4.51,425,4.51,426,4.51,427,3.114,428,4.51,429,2.935,430,4.51]],["title/modules/AccountsModule.html",[431,1.138,432,3.139]],["body/modules/AccountsModule.html",[3,0.126,4,0.101,5,0.088,21,0.011,56,0.126,57,0.006,58,0.007,59,0.006,60,0.006,91,1.548,140,0.54,143,2.299,176,2.598,183,3.513,245,0.569,247,2.553,285,1.345,291,2.674,293,2.598,302,2.598,387,2.45,388,2.553,389,2.553,431,1.273,432,6.483,433,1.742,434,2.356,435,3.774,436,2.45,437,2.553,438,1.912,439,4.179,440,4.179,441,4.179,442,5.515,443,4.113,444,5.515,445,3.371,446,2.553,447,2.269,448,4.758,449,2.607,450,3.687,451,2.667,452,4.758,453,2.793,454,4.179,455,2.935,456,4.179,457,3.798,458,3.286,459,5.014,460,2.793,461,3.513,462,4.179,463,3.513,464,4.179,465,4.088,466,4.338,467,4.638,468,3.513,469,4.338,470,3.874,471,2.935,472,4.088,473,3.097,474,3.097,475,3.874,476,2.935,477,3.874,478,2.935,479,4.088,480,3.097,481,4.338,482,3.286,483,4.758,484,6.281,485,4.758,486,4.338,487,3.097,488,6.281,489,4.758,490,4.758,491,5.014,492,4.179,493,5.517,494,3.798,495,3.286]],["title/modules/AccountsRoutingModule.html",[431,1.138,442,2.936]],["body/modules/AccountsRoutingModule.html",[3,0.155,4,0.124,5,0.109,21,0.011,45,2.428,48,1.33,56,0.155,57,0.007,58,0.009,59,0.007,60,0.007,88,1.959,140,0.511,143,2.141,175,1.238,176,2.331,183,4.32,192,3.608,245,0.7,250,2.078,291,2.399,293,2.331,302,2.331,433,2.141,438,2.351,442,4.948,449,2.973,454,5.139,456,6.293,457,4.67,458,4.04,462,5.139,463,4.32,464,5.139,492,5.139,496,5.85,497,3.434,498,3.692,499,4.015,500,4.86,501,4.04,502,4.04,503,3.808,504,3.608]],["title/interfaces/Action.html",[0,1.107,505,2.281]],["body/interfaces/Action.html",[0,2.1,2,2.592,3,0.154,4,0.124,5,0.108,7,0.466,8,1.305,12,3.543,17,3.007,18,0.661,20,1.475,21,0.011,22,1.961,29,2.784,45,3.347,56,0.154,57,0.007,58,0.009,59,0.007,93,0.724,135,2.92,227,2.379,505,4.578,506,4.033,507,4.734,508,4.52,509,2.952,510,4.2,511,3.8,512,4.414]],["title/classes/ActivatedRouteStub.html",[60,0.005,513,3.393]],["body/classes/ActivatedRouteStub.html",[3,0.134,4,0.107,5,0.094,7,0.404,8,1.192,9,1.064,18,0.522,21,0.011,33,2.058,56,0.134,57,0.006,58,0.008,59,0.006,60,0.006,62,1.97,64,3.495,77,1.095,84,1.089,86,0.916,92,1.159,93,0.612,96,5.22,112,0.847,140,0.397,152,2.357,221,1.613,228,2.068,250,1.797,253,2.227,513,5.22,514,6.965,515,4.444,516,2.836,517,6.539,518,6.539,519,6.539,520,8.687,521,3.926,522,5.35,523,7.658,524,4.828,525,5.22,526,4.984,527,7.245,528,6.364,529,6.539,530,7.356,531,5.744,532,5.06,533,6.539,534,5.06,535,6.539,536,7.658,537,6.539,538,4.445,539,4.828,540,6.539,541,5.06,542,2.413,543,4.445,544,4.445,545,6.539,546,5.06,547,5.06,548,5.06,549,5.06]],["title/components/AdminComponent.html",[175,0.652,296,1.383]],["body/components/AdminComponent.html",[3,0.081,4,0.065,5,0.057,7,0.244,8,0.837,9,1.124,18,0.623,20,1.101,21,0.011,33,1.164,51,1.357,56,0.146,57,0.004,58,0.005,59,0.004,60,0.004,77,0.769,84,0.988,86,0.966,88,1.023,91,1.494,92,1.225,93,0.748,112,1.2,134,1.361,135,2.315,140,0.458,152,0.994,171,1.885,175,0.847,176,0.994,177,1.681,178,1.119,179,1.268,180,1.153,181,1.023,185,1.373,186,2.537,187,0.966,188,1.906,189,1.906,190,2.879,191,3.108,192,2.833,193,1.906,195,1.906,207,2.821,217,4.262,221,1.95,227,1.696,228,0.966,244,1.268,245,0.366,248,1.513,249,1.513,253,1.412,281,2.274,285,0.864,286,1.733,287,1.733,288,0.888,289,2.315,290,1.153,291,1.023,292,2.082,293,0.994,294,1.153,295,1.153,296,1.996,297,1.153,298,1.023,299,1.153,300,0.994,301,1.153,302,0.994,303,1.153,304,0.994,305,0.774,306,1.153,307,1.023,308,1.733,309,1.085,310,0.994,311,1.153,312,0.994,313,1.153,314,0.994,315,1.153,316,1.023,317,1.733,318,1.085,319,0.994,320,0.774,321,0.994,322,1.153,323,1.023,324,1.733,325,1.085,326,1.023,327,0.841,328,0.994,329,1.023,330,0.994,331,0.994,332,1.153,333,0.994,334,1.153,335,0.994,336,1.153,337,1.054,338,1.119,339,1.153,345,3.811,347,4.405,349,3.811,350,3.811,351,3.172,352,4.237,356,2.684,357,2.975,359,3.172,370,3.811,380,3.811,381,2.989,382,3.172,384,3.811,385,3.172,386,2.111,387,1.574,388,1.64,389,1.64,390,1.885,391,1.713,392,1.513,405,2.257,407,2.257,408,2.111,409,2.257,410,2.111,412,2.257,413,2.111,423,3.172,505,4.402,507,2.696,508,3.873,509,1.681,550,2.684,551,3.601,552,5.518,553,4.593,554,4.665,555,4.593,556,3.666,557,4.593,558,4.593,559,4.593,560,4.593,561,3.056,562,4.133,563,4.593,564,3.056,565,4.593,566,3.056,567,3.056,568,3.056,569,4.593,570,3.056,571,3.056,572,3.056,573,3.056,574,3.056,575,3.056,576,6.136,577,6.909,578,3.056,579,3.056,580,3.056,581,1.989,582,2.684,583,3.056,584,2.684,585,2.684,586,2.439,587,3.056,588,3.056,589,3.056,590,4.593,591,3.056,592,3.056,593,4.593,594,3.056,595,3.056,596,2.684,597,3.056,598,3.056,599,3.056,600,3.056,601,3.056,602,3.056,603,3.056,604,5.518,605,3.056,606,3.056,607,3.056,608,2.684,609,2.684,610,3.056,611,3.056,612,4.593,613,3.056,614,3.056,615,4.593,616,3.056,617,6.136,618,6.136,619,6.136,620,6.136,621,4.593,622,2.574,623,3.391,624,4.593,625,2.684,626,2.257,627,3.056]],["title/modules/AdminModule.html",[431,1.138,628,3.139]],["body/modules/AdminModule.html",[3,0.145,4,0.117,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.526,245,0.659,285,1.557,296,2.701,387,2.837,388,2.956,389,2.956,431,1.474,433,2.016,434,2.727,435,4.045,436,2.837,437,2.956,438,2.213,443,4.276,445,3.704,446,2.956,447,2.626,449,2.864,450,4.051,451,3.087,453,3.233,455,3.397,465,4.492,466,4.767,469,4.767,470,4.257,471,3.397,472,4.492,473,3.585,474,3.585,475,4.257,476,3.397,477,4.257,478,3.397,479,4.492,480,3.585,486,4.767,487,3.585,628,6.39,629,4.838,630,4.838,631,4.838,632,5.734,633,5.508,634,5.508,635,4.838]],["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.45,56,0.168,57,0.008,58,0.009,59,0.008,60,0.008,140,0.488,143,2.334,175,0.979,245,0.763,250,2.265,296,2.456,433,2.334,438,2.563,449,3.132,497,3.744,498,3.832,499,4.23,500,3.744,504,3.934,632,5.212,635,5.602,636,6.378]],["title/components/AppComponent.html",[175,0.652,298,1.424]],["body/components/AppComponent.html",[3,0.09,4,0.072,5,0.064,7,0.273,8,0.911,9,0.813,18,0.551,20,0.573,21,0.011,22,1.643,33,1.643,48,1.636,51,2.217,56,0.09,57,0.004,58,0.006,59,0.004,60,0.004,77,0.836,78,1.763,79,2.448,84,1.075,86,0.912,88,1.146,91,1.625,92,0.885,93,0.645,112,0.573,113,1.885,140,0.358,163,2.958,175,0.905,176,1.114,177,1.828,178,1.253,179,1.42,180,1.292,181,1.146,187,1.082,188,2.073,189,2.073,190,2.911,191,3.149,193,2.073,195,2.073,221,1.232,228,2.05,244,1.42,245,0.41,249,1.695,253,1.993,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,2.172,299,1.292,300,1.114,301,1.292,302,1.114,303,1.292,304,1.114,305,1.643,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,1.114,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,1.374,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,357,3.085,378,2.932,392,1.695,394,4.355,395,1.837,399,2.732,401,4.387,509,1.253,626,3.688,637,3.006,638,2.572,639,5.898,640,4.995,641,5.181,642,5.181,643,5.181,644,5.898,645,4.995,646,4.387,647,4.995,648,4.995,649,2.732,650,4.441,651,4.585,652,4.839,653,4.995,654,4.995,655,5.176,656,3.423,657,6.484,658,3.423,659,3.423,660,3.423,661,4.995,662,3.423,663,2.228,664,4.995,665,4.387,666,4.387,667,3.423,668,3.45,669,3.423,670,4.355,671,3.423,672,3.006,673,3.006,674,3.006,675,4.995,676,3.423,677,3.423,678,5.181,679,4.355,680,4.387,681,4.995,682,4.995,683,4.995,684,3.987,685,4.995,686,3.45,687,3.423,688,2.527,689,3.423,690,2.732,691,3.423,692,3.423,693,3.423,694,3.006,695,3.423,696,3.423,697,3.423,698,2.111,699,4.073,700,2.732,701,2.527,702,2.732,703,2.732,704,2.732,705,3.006,706,3.006,707,3.423,708,4.387,709,3.006,710,4.387,711,3.006,712,3.423,713,3.423,714,3.423,715,3.423,716,4.995,717,3.423,718,3.423,719,3.423,720,1.763,721,3.423]],["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.572,123,1.972,140,0.528,143,2.297,144,2.038,145,2.447,245,0.568,248,2.352,285,1.343,298,2.868,387,2.447,431,1.271,433,1.739,434,2.352,435,3.771,436,3.619,437,3.771,438,1.909,443,4.111,445,3.368,446,2.55,447,2.265,449,2.604,453,2.789,455,2.93,459,5.009,460,2.789,461,3.508,465,4.084,722,6.499,723,4.173,724,4.173,725,4.173,726,4.173,727,4.173,728,5.513,729,5.513,730,5.298,731,5.513,732,5.513,733,4.751,734,6.275,735,5.009,736,2.789,737,5.009,738,4.751,739,4.751,740,6.275,741,4.751,742,5.966,743,6.275,744,2.447,745,4.634,746,4.334,747,4.173,748,4.751,749,3.792,750,3.792,751,4.751,752,4.084,753,4.173,754,4.751,755,4.751,756,4.751,757,4.173,758,4.751,759,4.751,760,4.751,761,4.751,762,5.519,763,5.966,764,5.609]],["title/modules/AppRoutingModule.html",[431,1.138,728,2.936]],["body/modules/AppRoutingModule.html",[3,0.16,4,0.128,5,0.112,21,0.011,48,1.374,56,0.16,57,0.007,58,0.009,59,0.007,60,0.007,140,0.477,143,2.212,245,0.723,250,2.147,433,2.212,438,2.428,449,3.033,497,3.547,498,3.745,499,4.096,500,4.611,501,4.174,502,4.174,503,3.933,728,5.047,746,5.047,747,5.308,765,6.044,766,7.307,767,4.824,768,6.419,769,6.044,770,6.044,771,6.044,772,6.044,773,4.824,774,6.044,775,6.044]],["title/interfaces/AreaName.html",[0,1.107,510,2.495]],["body/interfaces/AreaName.html",[0,2.129,2,2.699,3,0.161,4,0.129,5,0.113,7,0.486,8,1.337,12,3.631,17,3.131,18,0.586,20,1.453,21,0.011,22,1.54,29,2.899,45,2.523,56,0.161,57,0.007,58,0.009,59,0.007,93,0.796,135,3.158,227,1.869,505,4.226,506,4.198,507,3.568,508,3.407,509,2.225,510,4.622,511,5.322,512,4.523]],["title/interfaces/AreaType.html",[0,1.107,512,2.622]],["body/interfaces/AreaType.html",[0,2.129,2,2.699,3,0.161,4,0.129,5,0.113,7,0.486,8,1.337,12,3.631,17,3.131,18,0.586,20,1.453,21,0.011,22,1.54,29,3.899,45,2.523,56,0.161,57,0.007,58,0.009,59,0.007,93,0.796,135,3.158,227,1.869,505,4.226,506,4.198,507,3.568,508,3.407,509,2.225,510,4.304,511,3.957,512,4.857]],["title/components/AuthComponent.html",[175,0.652,300,1.383]],["body/components/AuthComponent.html",[3,0.087,4,0.07,5,0.061,7,0.264,8,0.887,9,0.791,18,0.568,20,0.552,21,0.011,33,1.463,37,1.634,48,1.448,56,0.087,57,0.004,58,0.006,59,0.004,60,0.004,77,0.814,79,2.949,84,1.046,86,0.95,88,1.105,91,1.582,92,0.862,93,0.636,112,1.137,113,2.404,114,1.78,123,2.819,134,1.199,140,0.412,152,1.582,163,2.477,175,0.886,176,1.073,177,1.78,178,1.208,179,1.369,180,1.245,181,1.105,185,1.453,186,2.655,187,1.043,188,2.018,189,2.018,190,2.901,191,3.136,193,2.018,195,2.018,200,4.264,207,2.93,211,3.59,216,5.427,218,3.944,221,1.753,225,4.264,227,1.959,228,1.826,231,4.19,244,1.369,245,0.395,246,2.436,247,1.771,248,1.634,249,1.634,250,1.172,253,2.517,255,2.436,256,2.436,273,3.358,281,2.407,283,3.165,285,0.933,286,1.835,287,2.179,288,0.959,289,2.404,290,1.245,291,1.105,292,2.179,293,1.073,294,1.245,295,1.245,296,1.073,297,1.245,298,1.105,299,1.245,300,2.073,301,1.245,302,1.073,303,1.245,304,1.073,305,1.232,306,1.245,307,1.105,308,1.835,309,1.172,310,1.073,311,1.245,312,1.073,313,1.245,314,1.073,315,1.245,316,1.105,317,1.835,318,1.172,319,1.073,320,0.836,321,1.073,322,1.245,323,1.105,324,1.835,325,1.172,326,1.105,327,0.907,328,1.073,329,1.105,330,1.073,331,1.073,332,1.245,333,1.073,334,1.245,335,1.073,336,1.245,337,1.138,338,1.208,339,1.245,395,1.771,525,5.086,582,4.271,649,2.634,650,4.383,670,3.59,674,2.898,699,3.358,767,3.881,776,2.898,777,5.774,778,4.862,779,5.774,780,5.072,781,4.609,782,6.242,783,5.086,784,6.371,785,4.862,786,5.774,787,4.862,788,3.299,789,3.299,790,3.299,791,3.299,792,4.862,793,3.299,794,3.299,795,3.299,796,3.299,797,3.299,798,3.299,799,3.299,800,3.903,801,3.299,802,2.898,803,3.299,804,3.299,805,2.634,806,3.299,807,4.862,808,3.299,809,2.898,810,2.436,811,2.898,812,3.299,813,3.299,814,2.147,815,3.299,816,2.436,817,2.278,818,2.898,819,3.299,820,3.299,821,3.299,822,3.299,823,3.299,824,3.299,825,3.299,826,3.299,827,3.299,828,3.299,829,2.725,830,4.862,831,2.436,832,2.999,833,4.862]],["title/guards/AuthGuard.html",[746,2.936,834,2.622]],["body/guards/AuthGuard.html",[3,0.118,4,0.094,5,0.083,7,0.356,9,0.978,18,0.48,21,0.011,56,0.118,57,0.005,58,0.007,59,0.005,60,0.008,64,4.7,65,4.441,74,2.901,77,1.007,84,0.959,86,0.72,92,1.066,93,0.563,112,1.22,113,2.269,114,2.491,119,4.801,120,4.441,121,4.441,123,1.85,127,4.801,134,1.483,140,0.413,143,1.632,155,4.198,175,0.923,181,2.014,185,1.798,218,4.518,227,1.849,245,0.533,250,1.583,253,2.24,498,2.868,509,2.201,515,4.491,521,3.37,542,2.126,562,3.371,581,5.303,638,2.296,746,4.154,767,5.816,773,6.257,800,3.474,834,4.494,835,3.559,836,3.916,837,4.801,838,5.283,839,4.441,840,5.283,841,3.559,842,4.458,843,5.283,844,3.228,845,6.4,846,5.283,847,4.154,848,5.283,849,5.283,850,3.916,851,6.885,852,6.4,853,4.458,854,5.283,855,6.014,856,4.441,857,3.709,858,4.801,859,4.801,860,5.283,861,4.801,862,6.4,863,5.816,864,4.801,865,5.283,866,5.283,867,5.978,868,6.014,869,5.283,870,6.014,871,1.902,872,3.559,873,3.559,874,2.392,875,3.292,876,3.916,877,3.916]],["title/modules/AuthModule.html",[431,1.138,878,3.139]],["body/modules/AuthModule.html",[3,0.149,4,0.119,5,0.104,21,0.011,56,0.149,57,0.007,58,0.008,59,0.007,60,0.007,140,0.53,143,2.56,245,0.673,247,3.02,285,1.591,300,2.716,335,2.716,431,1.506,433,2.06,434,2.787,435,4.085,436,2.898,437,3.02,438,2.261,445,3.754,446,3.02,447,2.683,449,2.903,450,4.106,451,3.154,453,3.303,470,4.314,471,3.471,475,4.314,476,3.471,477,4.314,478,3.471,481,4.831,482,3.887,486,4.831,487,3.663,491,5.584,878,6.411,879,4.943,880,4.943,881,4.943,882,5.764,883,5.628,884,5.628,885,4.943,886,5.628,887,4.943]],["title/modules/AuthRoutingModule.html",[431,1.138,882,2.936]],["body/modules/AuthRoutingModule.html",[3,0.165,4,0.132,5,0.116,21,0.011,48,1.423,56,0.165,57,0.007,58,0.009,59,0.007,60,0.007,140,0.484,143,2.292,175,0.961,245,0.749,250,2.224,300,2.429,433,2.292,438,2.516,449,3.098,497,3.676,498,3.803,499,4.184,500,4.382,501,4.325,502,4.325,503,4.076,504,3.863,882,5.156,885,5.501,888,6.263]],["title/injectables/AuthService.html",[650,2.622,871,1.344]],["body/injectables/AuthService.html",[0,0.687,3,0.07,4,0.056,5,0.049,7,0.211,8,0.748,9,1.001,18,0.59,20,0.441,21,0.011,22,1.039,23,2.833,33,0.668,48,1.737,51,1.821,56,0.07,57,0.003,58,0.005,59,0.003,60,0.003,77,0.687,79,3.215,84,0.883,86,0.964,92,1.091,93,0.576,112,1.297,113,2.788,114,1.501,123,1.702,134,1.91,135,0.995,140,0.439,144,1.131,145,1.358,152,2.289,155,1.626,163,3.019,221,1.822,227,1.548,228,0.834,245,0.315,253,1.892,273,2.833,305,1.832,320,0.668,357,2.824,394,4.195,395,3.303,397,2.316,399,4.535,447,1.257,460,1.547,522,1.947,539,3.718,622,1.478,625,4.423,638,1.358,650,2.53,652,4.429,663,4.429,680,2.316,684,2.104,744,1.358,752,2.67,753,2.316,782,4.991,800,3.245,802,3.603,811,2.316,817,1.821,829,1.478,831,3.718,839,1.947,844,1.415,871,1.297,874,1.415,876,2.316,889,1.415,890,2.316,891,3.826,892,5.035,893,5.035,894,5.682,895,4.535,896,4.535,897,5.682,898,5.682,899,5.682,900,4.102,901,5.682,902,4.991,903,4.102,904,4.102,905,1.947,906,4.813,907,4.102,908,2.636,909,2.636,910,2.636,911,2.636,912,2.636,913,2.636,914,2.636,915,4.102,916,2.636,917,4.102,918,2.636,919,2.636,920,4.102,921,2.636,922,4.102,923,4.102,924,2.636,925,5.035,926,4.102,927,2.636,928,3.603,929,2.636,930,2.636,931,2.636,932,2.636,933,2.636,934,2.636,935,2.636,936,1.478,937,2.636,938,2.636,939,2.833,940,2.636,941,4.102,942,2.636,943,2.636,944,2.636,945,2.636,946,3.603,947,6.518,948,2.636,949,2.636,950,5.035,951,6.518,952,5.035,953,3.274,954,5.035,955,5.682,956,5.035,957,4.102,958,2.316,959,4.102,960,4.102,961,4.102,962,2.201,963,4.102,964,4.102,965,5.682,966,4.423,967,4.535,968,2.636,969,2.636,970,4.102,971,5.035,972,5.035,973,5.035,974,2.636,975,2.636,976,5.035,977,2.636,978,2.316,979,2.316,980,2.636,981,4.102,982,2.636,983,2.636,984,2.636,985,2.636,986,2.636,987,2.636,988,2.636,989,2.636,990,2.636,991,2.636,992,4.102,993,2.636,994,2.636,995,2.636,996,4.102,997,4.423,998,2.636,999,2.636,1000,2.636,1001,2.636,1002,2.316,1003,2.636,1004,2.636,1005,2.636,1006,2.636,1007,1.821,1008,3.274,1009,2.316,1010,5.035,1011,2.401,1012,2.316,1013,1.947,1014,2.636,1015,2.316,1016,2.104,1017,2.104,1018,2.636,1019,2.636,1020,2.636,1021,2.636,1022,2.636,1023,2.636,1024,2.636,1025,2.636,1026,1.947,1027,2.636,1028,2.636,1029,4.102,1030,2.636,1031,4.102,1032,2.636,1033,2.636,1034,2.636,1035,4.102,1036,2.636,1037,2.636,1038,1.358,1039,2.636,1040,2.636,1041,3.603,1042,2.636,1043,4.102,1044,4.102,1045,2.636,1046,2.636,1047,2.636,1048,3.603,1049,2.636,1050,2.636,1051,2.636,1052,2.636,1053,2.636,1054,2.636,1055,2.636,1056,2.636,1057,2.636,1058,2.636]],["title/injectables/BlockSyncService.html",[871,1.344,1059,3.139]],["body/injectables/BlockSyncService.html",[3,0.086,4,0.068,5,0.06,7,0.259,8,0.874,9,1.188,18,0.612,20,1.256,21,0.011,22,2.191,33,1.447,47,2.573,48,1.705,51,2.803,56,0.086,57,0.004,58,0.006,59,0.004,60,0.004,73,3.522,77,0.803,79,2.797,84,1.032,86,0.917,92,1.295,93,0.684,95,2.583,112,1.182,113,2.382,134,1.182,140,0.455,144,1.389,145,1.667,152,2.441,221,1.801,228,1.806,245,0.387,253,1.755,272,3.121,327,1.319,357,3.032,378,2.814,391,1.814,392,1.603,393,2.107,638,1.667,642,5.016,643,5.016,651,4.353,871,1.516,874,1.737,889,1.737,936,1.814,962,1.737,1059,3.54,1060,6.846,1061,2.844,1062,4.795,1063,4.795,1064,4.795,1065,4.795,1066,4.795,1067,4.795,1068,3.237,1069,4.754,1070,4.795,1071,4.795,1072,5.988,1073,5.394,1074,3.237,1075,4.217,1076,4.795,1077,4.609,1078,5.71,1079,3.237,1080,4.795,1081,3.237,1082,3.388,1083,4.795,1084,3.237,1085,4.795,1086,6.313,1087,3.237,1088,4.795,1089,6.313,1090,6.313,1091,6.313,1092,7.501,1093,6.313,1094,6.313,1095,3.237,1096,3.522,1097,3.237,1098,3.237,1099,1.737,1100,3.237,1101,2.584,1102,3.237,1103,3.237,1104,3.237,1105,5.71,1106,3.237,1107,3.237,1108,2.844,1109,4.795,1110,3.237,1111,3.237,1112,3.237,1113,3.237,1114,3.237,1115,3.237,1116,3.237,1117,3.237,1118,4.795,1119,3.237,1120,3.237,1121,3.237,1122,3.237,1123,3.237,1124,4.795,1125,4.795,1126,3.237,1127,3.827,1128,4.795,1129,3.237,1130,3.237,1131,4.795,1132,3.237,1133,4.795,1134,3.237,1135,4.795,1136,4.795,1137,3.237,1138,3.237,1139,4.212,1140,3.237,1141,2.844,1142,3.237,1143,3.237,1144,3.237,1145,3.237,1146,3.237,1147,3.237,1148,3.237,1149,4.795,1150,3.237,1151,3.237,1152,3.827,1153,4.795,1154,3.237,1155,3.237,1156,3.237,1157,4.795,1158,3.237,1159,3.237,1160,3.237,1161,3.237,1162,3.237,1163,3.237,1164,3.237]],["title/classes/BlocksBloom.html",[60,0.005,1165,2.622]],["body/classes/BlocksBloom.html",[1,3.748,3,0.143,4,0.115,5,0.101,7,0.434,8,1.247,18,0.661,20,1.473,21,0.011,22,2.188,33,1.376,56,0.143,57,0.006,58,0.008,59,0.006,60,0.01,62,2.114,86,0.97,93,0.508,95,1.988,140,0.33,227,1.67,320,1.376,327,1.882,509,1.988,720,3.523,829,3.044,1082,4.44,1165,4.619,1166,3.535,1167,5.172,1168,5.172,1169,5.172,1170,5.172,1171,5.172,1172,5.431,1173,5.431,1174,5.431,1175,5.431,1176,5.431,1177,3.751,1178,4.998,1179,2.59,1180,3.535,1181,3.535,1182,3.751,1183,3.751,1184,3.35,1185,3.188,1186,3.751,1187,3.751,1188,3.751,1189,3.535,1190,3.535]],["title/interfaces/Category.html",[0,1.107,12,2.105]],["body/interfaces/Category.html",[0,2.129,2,2.699,3,0.161,4,0.129,5,0.113,7,0.486,8,1.337,12,3.899,17,4.211,18,0.586,20,1.453,21,0.011,22,1.54,29,2.899,45,2.523,56,0.161,57,0.007,58,0.009,59,0.007,93,0.796,135,3.158,227,1.869,505,4.226,506,4.198,507,3.568,508,3.407,509,2.225,510,4.304,511,3.957,512,4.523]],["title/classes/Conversion.html",[60,0.005,720,2.189]],["body/classes/Conversion.html",[1,3.836,3,0.14,4,0.112,5,0.098,7,0.423,8,1.228,18,0.675,20,1.457,21,0.011,22,2.179,33,1.343,56,0.14,57,0.006,58,0.008,59,0.006,60,0.01,62,2.064,86,1,93,0.496,95,1.94,140,0.322,227,1.63,320,1.343,327,1.853,509,2.711,720,3.814,829,2.972,1082,4.58,1165,4.155,1166,3.451,1167,3.661,1168,3.661,1169,3.661,1170,3.661,1171,3.661,1177,3.661,1178,5.152,1179,2.528,1180,3.451,1181,3.451,1182,3.661,1183,3.661,1184,3.27,1185,3.112,1186,5.115,1187,5.115,1188,5.115,1189,4.82,1190,4.82,1191,5.302,1192,5.302,1193,5.302,1194,5.302,1195,5.302,1196,5.302,1197,5.302]],["title/components/CreateAccountComponent.html",[175,0.652,302,1.383]],["body/components/CreateAccountComponent.html",[3,0.081,4,0.065,5,0.057,7,0.245,8,0.841,9,0.5,12,3.555,14,4.428,16,3.694,18,0.632,21,0.011,22,1.95,29,2.198,33,1.168,45,2.553,56,0.081,57,0.004,58,0.006,59,0.004,60,0.004,67,3,77,0.772,84,0.992,86,0.935,88,2.651,91,2.604,92,0.544,93,0.576,112,0.772,114,1.124,123,2.297,134,1.137,135,2.787,140,0.42,152,1.5,175,0.849,176,0.999,177,1.687,178,1.124,179,1.275,180,1.159,181,1.029,185,1.378,186,2.545,187,0.971,188,1.913,189,1.913,190,2.88,191,3.11,193,1.913,195,1.913,200,4.087,207,2.828,211,3.404,215,2.451,216,5.111,217,4.428,221,1.517,225,4.087,227,1.417,228,1.458,231,4.065,244,1.275,245,0.367,246,2.268,247,1.648,248,1.521,249,1.521,253,1.701,255,2.268,256,5.681,258,2.698,272,4.003,281,2.283,282,4.505,283,5.465,285,0.868,286,1.74,287,1.74,288,0.893,289,2.321,290,1.159,291,1.029,292,2.088,293,0.999,294,1.159,295,1.159,296,0.999,297,1.159,298,1.029,299,1.159,300,0.999,301,1.159,302,2.001,303,1.159,304,0.999,305,0.778,306,1.159,307,1.029,308,1.74,309,1.091,310,0.999,311,1.159,312,0.999,313,1.159,314,0.999,315,1.159,316,1.029,317,1.74,318,1.091,319,0.999,320,0.778,321,0.999,322,1.159,323,1.029,324,1.74,325,1.091,326,1.029,327,0.845,328,0.999,329,1.029,330,0.999,331,0.999,332,1.159,333,0.999,334,1.159,335,0.999,336,1.159,337,1.059,338,1.124,339,1.159,344,3.822,391,1.721,392,1.521,393,1.999,402,2.698,403,2.698,421,4.861,422,5.526,463,5.844,509,1.687,510,1.803,781,4.418,783,4.91,805,3.68,1198,6.952,1199,2.698,1200,5.534,1201,4.61,1202,4.087,1203,4.087,1204,5.534,1205,4.087,1206,5.534,1207,5.301,1208,4.61,1209,3.071,1210,3.071,1211,3.071,1212,3.071,1213,3.071,1214,3.071,1215,3.071,1216,3.071,1217,3.071,1218,3.071,1219,3.071,1220,3.071,1221,3.071,1222,5.534,1223,3.071,1224,6.592,1225,3.071,1226,3.071,1227,3.071,1228,3.071,1229,3.071,1230,3.071,1231,3.071,1232,3.071,1233,3.071,1234,3.071,1235,4.91,1236,4.61,1237,4.049,1238,4.61,1239,5.403,1240,5.403,1241,4.542,1242,4.61,1243,4.049]],["title/classes/CustomErrorStateMatcher.html",[60,0.005,231,2.622]],["body/classes/CustomErrorStateMatcher.html",[3,0.153,4,0.123,5,0.108,7,0.463,9,0.943,18,0.463,21,0.011,48,1.317,56,0.153,57,0.007,58,0.009,59,0.007,60,0.007,62,2.256,77,1.193,86,0.694,92,1.027,93,0.542,112,0.97,134,1.429,140,0.432,185,2.129,227,2.371,231,4.393,247,3.11,305,1.805,487,3.772,581,4.636,1075,6.208,1244,6.257,1245,5.091,1246,7.712,1247,7.123,1248,7.123,1249,8.044,1250,7.066,1251,8.044,1252,8.044,1253,5.796,1254,5.686,1255,7.123,1256,5.796,1257,5.796,1258,5.796,1259,5.796]],["title/classes/CustomValidator.html",[60,0.005,1260,3.393]],["body/classes/CustomValidator.html",[3,0.145,4,0.117,5,0.102,7,0.44,9,1.123,18,0.551,20,1.262,21,0.011,48,1.713,56,0.145,57,0.007,58,0.008,59,0.007,60,0.007,62,2.144,72,5.096,77,1.156,86,0.826,92,1.223,93,0.646,112,1.156,114,2.016,134,1.859,140,0.334,221,1.702,227,1.693,247,2.956,305,2.002,800,2.626,1038,3.554,1075,5.834,1254,5.509,1260,5.509,1261,4.838,1262,8.302,1263,6.902,1264,6.902,1265,6.902,1266,8.137,1267,5.508,1268,6.902,1269,7.538,1270,8.302,1271,5.508,1272,5.508,1273,5.508,1274,6.902,1275,5.508,1276,5.508,1277,5.508,1278,5.508,1279,5.508]],["title/components/ErrorDialogComponent.html",[175,0.652,304,1.383]],["body/components/ErrorDialogComponent.html",[3,0.122,4,0.098,5,0.086,7,0.369,8,1.123,9,0.751,18,0.492,21,0.011,42,3.28,56,0.122,57,0.006,58,0.007,59,0.006,60,0.006,78,3.568,84,0.994,86,0.737,88,1.546,91,2.003,92,0.818,93,0.692,140,0.374,175,1.063,176,1.502,177,2.254,178,1.69,179,1.916,180,1.742,181,1.546,187,1.46,188,2.555,189,2.555,190,2.984,191,3.241,193,2.555,195,2.555,244,1.916,245,0.552,285,1.305,286,2.323,287,2.323,288,1.342,289,2.788,290,1.742,291,1.546,292,2.614,293,1.502,294,1.742,295,1.742,296,1.502,297,1.742,298,1.546,299,1.742,300,1.502,301,1.742,302,1.502,303,1.742,304,2.404,305,2.081,306,1.742,307,1.546,308,2.323,309,1.64,310,1.502,311,1.742,312,1.502,313,1.742,314,1.502,315,1.742,316,1.546,317,2.323,318,1.64,319,1.502,320,1.17,321,1.502,322,1.742,323,1.546,324,2.323,325,1.64,326,1.546,327,1.27,328,1.502,329,1.546,330,1.502,331,1.502,332,1.742,333,1.502,334,1.742,335,1.502,336,1.742,337,1.592,338,1.69,339,1.742,381,3.005,562,3.451,1011,2.936,1280,6.085,1281,5.115,1282,4.055,1283,5.408,1284,6.927,1285,6.157,1286,4.617,1287,4.617,1288,4.617,1289,4.617,1290,4.617,1291,4.617,1292,3.685,1293,4.617,1294,6.157,1295,6.157]],["title/injectables/ErrorDialogService.html",[652,2.767,871,1.344]],["body/injectables/ErrorDialogService.html",[3,0.145,4,0.116,5,0.102,7,0.438,8,1.256,9,1.12,18,0.601,21,0.011,33,1.391,42,3.057,48,1.248,56,0.145,57,0.007,58,0.008,59,0.007,60,0.007,77,1.153,78,4.272,84,1.482,86,0.944,92,1.221,93,0.645,112,0.919,114,2.009,123,3.275,134,1.354,140,0.457,227,2.117,228,1.736,245,0.657,304,1.786,626,4.053,638,2.827,652,4.482,871,2.178,874,2.946,889,2.946,1281,4.053,1283,6.931,1292,4.381,1296,7.14,1297,4.821,1298,7.525,1299,6.887,1300,5.489,1301,8.129,1302,6.887,1303,6.887,1304,5.489,1305,5.489,1306,6.887,1307,4.821,1308,4.821,1309,7.525,1310,5.489,1311,5.489,1312,5.489,1313,5.489]],["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.396,9,1.05,18,0.516,20,0.831,21,0.011,56,0.131,57,0.006,58,0.008,59,0.006,60,0.006,73,3.061,77,1.081,84,1.39,86,0.773,92,1.145,93,0.604,112,0.831,134,1.77,140,0.49,185,1.483,218,4.415,245,0.594,249,2.457,250,1.763,253,2.206,305,1.926,357,3.414,392,2.457,509,1.817,521,3.764,526,4.672,542,2.367,652,5.258,673,4.36,729,4.46,744,2.556,816,3.665,871,2.042,966,4.36,1007,3.428,1009,4.36,1011,2.367,1041,4.36,1099,2.664,1314,3.665,1315,4.36,1316,4.768,1317,4.963,1318,4.963,1319,4.768,1320,5.613,1321,5.613,1322,4.963,1323,3.665,1324,3.665,1325,4.768,1326,5.155,1327,4.36,1328,4.963,1329,4.963,1330,7.178,1331,4.963,1332,4.963,1333,4.963,1334,6.458,1335,4.963,1336,4.963,1337,6.458,1338,6.458,1339,4.963,1340,4.46,1341,4.203,1342,5.155,1343,4.36,1344,4.963,1345,4.963,1346,4.963,1347,6.458,1348,4.963,1349,4.963,1350,4.36,1351,5.155,1352,4.963,1353,4.963,1354,6.458,1355,4.963,1356,4.963,1357,4.963,1358,4.36,1359,4.963,1360,4.963]],["title/components/FooterComponent.html",[175,0.652,307,1.424]],["body/components/FooterComponent.html",[3,0.127,4,0.102,5,0.089,7,0.385,21,0.01,56,0.127,57,0.006,58,0.008,59,0.006,60,0.006,77,1.06,84,1.523,86,0.758,88,1.613,91,2.06,93,0.662,112,0.807,140,0.292,175,1.085,176,1.567,177,2.318,178,1.763,179,1.999,180,1.818,181,1.613,185,1.893,186,3.253,187,1.523,188,2.628,189,2.628,190,2.993,191,3.252,193,2.628,195,2.628,207,3.455,221,1.562,244,1.999,245,0.576,285,1.362,286,2.39,287,2.39,288,1.4,289,2.836,290,1.818,291,1.613,292,2.67,293,1.567,294,1.818,295,1.818,296,1.567,297,1.818,298,1.613,299,1.818,300,1.567,301,1.818,302,1.567,303,1.818,304,1.567,305,1.221,306,1.818,307,2.517,308,2.39,309,1.711,310,1.567,311,1.818,312,1.567,313,1.818,314,1.567,315,1.818,316,1.613,317,2.39,318,1.711,319,1.567,320,1.221,321,1.567,322,1.818,323,1.613,324,2.39,325,1.711,326,1.613,327,1.325,328,1.567,329,1.613,330,1.567,331,1.567,332,1.818,333,1.567,334,1.818,335,1.567,336,1.818,337,1.661,338,1.763,339,1.818,1016,5.055,1017,5.055,1361,4.231,1362,4.676,1363,7.074,1364,6.333,1365,4.817,1366,4.817,1367,6.333]],["title/components/FooterStubComponent.html",[175,0.652,309,1.51]],["body/components/FooterStubComponent.html",[3,0.134,4,0.107,5,0.094,21,0.01,56,0.192,57,0.006,58,0.008,59,0.006,60,0.009,88,1.697,91,2.13,93,0.679,140,0.308,175,1.004,176,1.649,177,2.396,178,2.654,180,1.913,181,1.697,187,1.603,190,2.999,191,3.274,245,0.606,285,1.433,286,2.47,287,2.47,288,1.473,289,2.892,290,1.913,291,1.697,292,2.736,293,1.649,294,1.913,295,1.913,296,1.649,297,1.913,298,1.697,299,1.913,300,1.649,301,1.913,302,1.649,303,1.913,304,1.649,305,1.284,306,1.913,307,1.697,308,2.47,309,2.722,310,1.649,311,1.913,312,1.649,313,1.913,314,1.649,315,1.913,316,1.697,317,2.47,318,2.325,319,1.649,320,1.284,321,1.649,322,1.913,323,1.697,324,2.47,325,2.325,326,1.697,327,1.394,328,1.649,329,1.697,330,1.649,331,1.649,332,1.913,333,1.649,334,1.913,335,1.649,336,1.913,337,1.748,338,1.855,339,1.913,431,1.356,516,2.841,698,3.126,1362,4.834,1368,3.743,1369,5.788,1370,3.743]],["title/injectables/GlobalErrorHandler.html",[730,2.767,871,1.344]],["body/injectables/GlobalErrorHandler.html",[3,0.109,4,0.088,5,0.077,7,0.331,8,1.042,9,1.149,18,0.612,20,1.34,21,0.011,22,1.448,33,1.048,48,1.605,56,0.151,57,0.005,58,0.007,59,0.005,60,0.007,77,0.957,78,2.131,84,1.23,86,0.887,92,1.252,93,0.661,112,1.096,114,2.092,123,1.717,134,1.02,135,2.157,140,0.429,152,1.346,155,2.552,218,4.216,221,1.742,227,2.171,228,1.308,245,0.495,250,1.47,253,2.498,305,2.252,357,3.181,515,4.296,562,3.67,690,3.303,730,3.72,737,5.227,744,2.131,871,1.807,889,2.221,936,2.319,939,3.947,967,3.303,1007,4.522,1008,3.303,1011,1.973,1326,4.563,1340,2.858,1341,2.693,1371,6.118,1372,3.303,1373,4.835,1374,5.752,1375,5.716,1376,7.032,1377,5.716,1378,3.634,1379,5.716,1380,5.02,1381,4.138,1382,5.02,1383,4.138,1384,5.752,1385,5.02,1386,4.138,1387,3.634,1388,5.02,1389,3.634,1390,3.634,1391,3.634,1392,3.634,1393,3.634,1394,3.634,1395,5.02,1396,3.634,1397,3.303,1398,3.634,1399,3.634,1400,3.634,1401,3.634,1402,3.634,1403,3.634,1404,3.634,1405,3.634,1406,3.634,1407,3.634,1408,3.634,1409,5.02,1410,5.02,1411,3.303,1412,3.634,1413,3.634,1414,3.634,1415,3.634,1416,3.634,1417,3.634]],["title/interceptors/HttpConfigInterceptor.html",[731,2.936,814,2.767]],["body/interceptors/HttpConfigInterceptor.html",[3,0.153,4,0.123,5,0.108,7,0.463,9,0.943,18,0.463,20,0.97,21,0.011,48,1.317,56,0.153,57,0.007,58,0.009,59,0.007,60,0.007,77,1.193,84,1.66,86,0.852,92,1.027,93,0.542,112,0.97,134,1.429,140,0.468,185,1.732,245,0.694,320,1.954,521,3.819,526,5.019,542,2.764,731,4.919,744,2.985,871,2.252,946,5.091,958,5.091,1314,4.28,1316,5.26,1319,5.26,1320,5.94,1321,5.94,1323,5.26,1324,4.28,1325,5.26,1418,6.774,1419,5.091,1420,5.796,1421,5.796,1422,5.796,1423,5.796,1424,4.626]],["title/classes/HttpError.html",[60,0.005,939,2.936]],["body/classes/HttpError.html",[3,0.119,4,0.095,5,0.083,7,0.359,8,1.103,9,0.732,18,0.546,20,1.367,21,0.011,22,1.933,48,1.662,56,0.16,57,0.005,58,0.007,59,0.005,60,0.007,62,1.75,78,3.521,84,1.302,86,0.724,92,0.797,93,0.421,114,2.214,123,1.866,134,1.109,135,1.697,140,0.444,152,1.463,155,2.773,218,3.669,221,1.492,227,2.101,245,0.538,250,1.597,253,2.345,305,2.246,357,2.837,515,4.404,562,4.5,690,3.589,730,2.927,737,4.829,744,2.316,871,1.913,936,2.52,939,4.721,967,3.589,1007,4.721,1008,3.589,1011,2.884,1326,4.829,1340,3.106,1341,2.927,1371,5.457,1372,3.589,1373,5.048,1374,3.95,1376,6.902,1380,3.95,1382,3.95,1384,5.313,1385,3.95,1387,3.95,1388,5.313,1389,5.313,1390,3.95,1391,3.95,1392,3.95,1393,3.95,1394,3.95,1395,5.313,1396,3.95,1397,3.589,1398,3.95,1399,3.95,1400,3.95,1401,3.95,1402,3.95,1403,3.95,1404,3.95,1405,3.95,1406,3.95,1407,3.95,1408,3.95,1409,5.313,1410,5.313,1411,3.589,1412,3.95,1413,3.95,1414,3.95,1415,3.95,1416,3.95,1417,3.95,1425,6.049]],["title/injectables/LocationService.html",[871,1.344,1207,3.139]],["body/injectables/LocationService.html",[3,0.144,4,0.115,5,0.101,7,0.435,9,1.219,16,3.05,18,0.599,20,1.386,21,0.011,29,2.594,56,0.144,57,0.006,58,0.008,59,0.006,60,0.006,77,1.147,84,1.474,86,0.97,92,1.329,93,0.701,112,1.317,134,1.94,140,0.492,144,2.334,145,2.802,245,0.651,253,1.673,391,3.05,392,2.694,521,4.245,542,2.594,638,2.802,744,2.802,871,2.166,874,2.92,889,2.92,905,4.018,906,6.111,1207,5.057,1426,4.779,1427,6.016,1428,6.91,1429,6.016,1430,6.91,1431,5.441,1432,6.849,1433,5.441,1434,5.441,1435,6.849,1436,5.441,1437,5.441,1438,5.441,1439,5.441,1440,5.441,1441,5.441]],["title/interceptors/LoggingInterceptor.html",[732,2.936,814,2.767]],["body/interceptors/LoggingInterceptor.html",[3,0.138,4,0.11,5,0.097,7,0.416,9,1.084,18,0.532,20,1.116,21,0.011,22,1.689,48,1.67,50,4.338,56,0.138,57,0.006,58,0.008,59,0.006,60,0.006,77,1.116,84,1.434,86,0.798,92,1.181,93,0.624,112,0.873,134,1.644,140,0.486,185,1.558,245,0.624,253,1.602,305,1.321,357,3.397,392,2.581,521,3.638,526,4.782,542,2.486,562,4.486,655,4.161,732,4.603,744,2.685,871,2.108,936,2.922,997,4.579,1007,3.6,1011,2.486,1314,3.849,1316,4.922,1319,4.922,1320,5.718,1321,5.718,1323,4.922,1324,3.849,1325,4.922,1378,4.579,1424,4.161,1442,4.579,1443,5.213,1444,5.213,1445,5.854,1446,6.665,1447,5.213,1448,5.213,1449,6.665,1450,5.213,1451,5.213,1452,6.665,1453,5.213,1454,5.213,1455,5.213,1456,5.213]],["title/injectables/LoggingService.html",[357,1.764,871,1.344]],["body/injectables/LoggingService.html",[3,0.119,4,0.186,5,0.083,7,0.359,8,1.103,9,1.328,18,0.668,20,1.013,21,0.011,56,0.119,57,0.005,58,0.007,59,0.005,60,0.005,77,1.013,84,0.968,86,1,92,1.447,93,0.764,112,1.344,140,0.367,221,2.119,227,1.86,245,0.538,305,2.243,357,2.511,638,2.316,749,3.589,750,5.457,871,1.913,874,2.413,875,3.32,889,2.413,1011,3.829,1457,3.95,1458,6.836,1459,6.005,1460,6.049,1461,6.049,1462,6.049,1463,6.049,1464,6.049,1465,6.049,1466,6.049,1467,4.497,1468,7.311,1469,6.049,1470,6.049,1471,4.497,1472,6.049,1473,4.497,1474,6.049,1475,4.497,1476,6.049,1477,4.497,1478,6.049,1479,4.497,1480,6.049,1481,4.497,1482,6.049,1483,4.497,1484,4.497,1485,6.049,1486,4.497,1487,4.497,1488,4.497,1489,3.95,1490,4.497,1491,4.497,1492,4.497,1493,4.497,1494,4.497,1495,4.497,1496,4.497]],["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.449,9,0.914,18,0.449,21,0.011,48,1.808,56,0.148,57,0.007,58,0.008,59,0.007,60,0.007,77,1.17,84,1.504,86,0.836,92,0.996,93,0.526,112,0.941,140,0.341,187,1.776,190,2.34,221,1.723,245,0.672,253,2.148,288,2.031,330,1.828,331,2.273,626,4.148,641,4.934,665,4.934,666,4.934,698,3.465,699,5.252,700,4.484,701,4.148,702,4.484,703,4.484,704,4.484,705,4.934,706,4.934,708,4.934,709,4.934,710,4.934,711,4.934,1497,6.071,1498,4.934,1499,6.987,1500,7.957,1501,4.484,1502,6.66,1503,6.071,1504,6.352,1505,5.618,1506,5.618,1507,4.484,1508,4.148,1509,5.618,1510,5.618]],["title/directives/MenuToggleDirective.html",[288,1.236,333,1.383]],["body/directives/MenuToggleDirective.html",[3,0.153,4,0.122,5,0.107,7,0.461,9,0.939,18,0.461,21,0.011,48,1.75,56,0.153,57,0.007,58,0.008,59,0.007,60,0.007,77,1.19,84,1.53,86,0.85,92,1.024,93,0.54,112,0.967,140,0.35,187,1.826,190,2.38,221,1.753,245,0.691,253,2.185,288,2.066,330,1.879,333,2.312,584,5.072,698,3.561,699,5.317,700,4.609,701,4.264,702,4.609,703,4.609,704,4.609,1497,6.146,1501,4.609,1502,6.705,1503,6.146,1504,6.413,1507,4.609,1508,4.264,1511,4.609,1512,7.107,1513,8.034,1514,5.774,1515,5.774,1516,5.774,1517,5.072,1518,5.774,1519,5.774,1520,5.774]],["title/interfaces/Meta.html",[0,1.107,37,2.105]],["body/interfaces/Meta.html",[0,1.951,1,3.813,2,2.122,3,0.126,4,0.101,5,0.089,6,3.111,7,0.382,8,1.149,10,3.53,11,2.679,12,2.367,13,4.351,14,3.886,15,4.351,16,3.531,17,3.245,18,0.598,19,3.381,20,1.489,21,0.011,22,1.898,24,4.351,25,4.351,26,4.351,27,4.101,28,4.101,29,2.279,30,4.351,31,3.53,32,3.886,33,2.141,34,4.351,35,4.351,36,4.351,37,3.959,38,4.351,39,3.886,40,4.493,41,2.948,42,3.457,43,2.948,44,2.679,45,3.232,46,4.101,47,2.565,48,1.086,49,3.886,50,3.111,51,2.797,52,3.111,53,3.886,54,3.886,55,3.301,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.959,1,3.587,2,2.145,3,0.128,4,0.102,5,0.09,6,3.145,7,0.386,8,1.157,10,3.568,11,2.708,12,2.393,13,4.382,14,3.914,15,4.382,16,3.557,17,3.268,18,0.566,19,3.405,20,1.49,21,0.011,22,1.907,24,4.382,25,4.382,26,4.382,27,4.13,28,4.13,29,2.304,30,4.382,31,3.568,32,3.914,33,2.146,34,4.382,35,4.382,36,4.382,37,4.047,38,4.382,39,3.914,40,4.038,41,2.98,42,2.817,43,2.98,44,2.708,45,3.243,46,4.611,47,4.038,48,1.098,49,3.914,50,3.145,51,2.817,52,3.145,53,3.914,54,3.914,55,3.337,56,0.128,57,0.006,58,0.008,59,0.006]],["title/interceptors/MockBackendInterceptor.html",[814,2.767,1521,3.139]],["body/interceptors/MockBackendInterceptor.html",[3,0.037,4,0.03,5,0.026,7,0.113,9,0.229,11,2.454,12,1.211,17,3.473,18,0.113,20,0.41,21,0.011,22,0.62,29,1.845,42,0.626,45,1.991,47,0.757,48,1.677,52,2.109,56,0.065,57,0.002,58,0.003,59,0.002,60,0.002,77,0.41,86,0.169,92,0.25,93,0.752,95,1.756,112,0.236,114,1.602,123,1.345,134,1.959,135,2.443,140,0.266,144,0.605,171,1.999,181,0.472,185,0.421,228,0.446,245,0.169,282,2.109,305,0.357,320,0.98,329,0.472,344,0.974,372,0.974,378,0.828,392,0.698,393,0.918,495,0.974,505,3.188,507,3.024,508,2.689,509,2.174,510,1.436,511,3.996,512,1.509,515,0.79,521,3.618,524,4.979,526,2.109,539,1.041,542,0.672,551,1.436,554,0.918,556,1.953,562,1.816,622,0.79,668,0.974,742,1.953,744,0.726,745,1.041,762,1.041,763,1.125,764,1.125,817,1.69,831,2.393,832,1.509,834,0.87,844,0.757,847,0.974,857,0.87,871,0.774,1011,1.167,1013,1.806,1096,0.87,1127,1.953,1179,2.288,1202,1.041,1203,1.041,1205,1.041,1241,1.041,1314,1.041,1316,1.806,1319,1.806,1320,2.857,1321,2.857,1323,1.806,1324,1.041,1325,1.806,1327,2.149,1340,0.974,1342,1.953,1350,1.238,1351,5.281,1397,1.125,1424,1.125,1427,2.149,1428,2.149,1429,2.149,1430,2.149,1445,2.149,1521,2.393,1522,1.953,1523,1.125,1524,1.41,1525,2.446,1526,2.446,1527,2.446,1528,1.41,1529,1.125,1530,3.088,1531,1.125,1532,2.393,1533,1.125,1534,1.125,1535,1.953,1536,1.125,1537,0.974,1538,1.125,1539,1.125,1540,1.125,1541,1.041,1542,1.125,1543,1.041,1544,1.125,1545,0.828,1546,1.238,1547,1.041,1548,1.238,1549,3.83,1550,3.314,1551,1.238,1552,3.83,1553,3.83,1554,3.83,1555,2.846,1556,1.238,1557,2.149,1558,3.232,1559,5.218,1560,3.494,1561,3.232,1562,3.845,1563,2.149,1564,1.238,1565,2.149,1566,1.238,1567,1.238,1568,1.238,1569,2.149,1570,1.238,1571,1.238,1572,1.238,1573,2.149,1574,1.238,1575,1.238,1576,1.238,1577,2.149,1578,2.846,1579,2.149,1580,2.149,1581,1.238,1582,1.238,1583,1.238,1584,1.238,1585,1.125,1586,1.238,1587,1.238,1588,1.238,1589,1.238,1590,1.238,1591,1.238,1592,1.238,1593,1.238,1594,1.238,1595,1.238,1596,1.238,1597,1.238,1598,1.238,1599,1.238,1600,1.238,1601,1.238,1602,1.238,1603,1.238,1604,1.238,1605,1.125,1606,1.238,1607,1.238,1608,1.238,1609,1.238,1610,1.238,1611,1.238,1612,1.238,1613,1.238,1614,1.238,1615,1.238,1616,1.238,1617,1.238,1618,1.238,1619,1.238,1620,1.238,1621,1.238,1622,2.149,1623,3.398,1624,1.238,1625,1.238,1626,1.238,1627,1.238,1628,1.238,1629,1.238,1630,1.238,1631,1.238,1632,1.238,1633,1.238,1634,1.238,1635,1.238,1636,1.238,1637,1.238,1638,1.238,1639,1.238,1640,1.238,1641,1.238,1642,1.238,1643,1.238,1644,1.238,1645,1.238,1646,1.238,1647,2.149,1648,1.238,1649,1.238,1650,1.238,1651,1.041,1652,1.238,1653,1.238,1654,1.238,1655,1.238,1656,1.238,1657,1.238,1658,1.238,1659,1.238,1660,1.238,1661,1.238,1662,1.238,1663,1.238,1664,1.238,1665,1.238,1666,1.238,1667,1.238,1668,1.238,1669,1.238,1670,1.238,1671,1.238,1672,1.238,1673,1.238,1674,1.238,1675,1.238,1676,1.238,1677,1.238,1678,1.238,1679,1.238,1680,1.238,1681,1.238,1682,2.149,1683,1.238,1684,1.238,1685,1.238,1686,1.238,1687,1.238,1688,1.238,1689,1.238,1690,1.238,1691,2.149,1692,1.238,1693,1.125,1694,1.238,1695,1.238,1696,1.238,1697,1.238,1698,1.238,1699,1.238,1700,1.238,1701,1.238,1702,1.238,1703,2.149,1704,1.238,1705,1.238,1706,1.238,1707,1.238,1708,1.238,1709,1.238,1710,1.238,1711,1.238,1712,1.238,1713,1.238,1714,1.238,1715,1.238,1716,1.238,1717,1.238,1718,1.238,1719,1.238,1720,1.238,1721,2.149,1722,1.953,1723,1.238,1724,1.238,1725,1.238,1726,1.238,1727,1.238,1728,1.238,1729,1.238,1730,1.238,1731,1.238,1732,1.238,1733,1.238,1734,1.238,1735,1.238,1736,1.238,1737,1.238,1738,1.238,1739,1.238,1740,1.238,1741,1.238,1742,1.125,1743,1.238,1744,1.238,1745,1.238,1746,1.238,1747,1.238,1748,1.238,1749,1.238,1750,1.238,1751,1.238,1752,1.238,1753,1.238,1754,1.238,1755,1.238,1756,1.238,1757,1.238,1758,1.238,1759,1.238,1760,1.238,1761,1.125,1762,1.238,1763,1.238,1764,1.238,1765,1.238,1766,1.238,1767,1.238,1768,1.238,1769,1.238,1770,1.238,1771,1.238,1772,1.238,1773,1.238,1774,1.238,1775,1.238,1776,1.238,1777,1.238,1778,1.238,1779,1.238,1780,2.149,1781,1.238,1782,1.238,1783,1.238,1784,1.238,1785,1.238,1786,1.238,1787,1.238,1788,1.125,1789,1.238,1790,1.125,1791,1.238,1792,1.238,1793,1.238,1794,1.238,1795,1.238,1796,1.125,1797,1.238,1798,1.238,1799,1.238,1800,1.238,1801,1.238,1802,1.238,1803,1.238,1804,1.238,1805,1.125,1806,1.238,1807,1.238,1808,1.953,1809,1.238,1810,1.238,1811,1.238,1812,1.238,1813,1.238,1814,1.125,1815,1.238,1816,1.125,1817,1.238,1818,1.238,1819,1.953,1820,1.238,1821,1.238,1822,1.238,1823,1.238,1824,2.149,1825,1.238,1826,1.238,1827,1.238,1828,1.238,1829,1.238,1830,1.238,1831,1.238,1832,1.238,1833,1.238,1834,1.238,1835,1.238,1836,1.238,1837,1.238,1838,1.238,1839,1.238,1840,1.238,1841,1.238,1842,1.238,1843,1.238,1844,1.238,1845,1.238,1846,1.238,1847,1.238,1848,1.238,1849,1.238,1850,1.238,1851,1.238,1852,1.238,1853,1.238,1854,1.238,1855,1.238,1856,1.238,1857,1.238,1858,1.238,1859,1.238,1860,1.238,1861,1.238,1862,1.238,1863,1.238,1864,1.238,1865,1.238,1866,1.238,1867,1.238,1868,2.149,1869,1.238,1870,1.238,1871,1.238,1872,1.238,1873,1.238,1874,1.238,1875,1.238,1876,1.238,1877,1.238,1878,1.238,1879,1.238,1880,1.238,1881,1.238,1882,1.238,1883,1.238,1884,1.238,1885,1.238,1886,2.846,1887,1.238,1888,1.238,1889,1.238,1890,1.238,1891,1.238,1892,1.238,1893,1.238,1894,1.238,1895,1.238,1896,1.238,1897,1.238,1898,1.238,1899,1.238,1900,1.238,1901,1.238,1902,1.238,1903,1.238,1904,1.238,1905,1.238,1906,1.238,1907,1.238,1908,1.238,1909,1.238,1910,1.238,1911,1.238,1912,1.238,1913,1.238,1914,1.238,1915,1.238,1916,1.238,1917,1.238,1918,1.238,1919,1.238,1920,1.238,1921,1.238,1922,1.238,1923,1.238,1924,1.238,1925,1.238,1926,1.238,1927,1.238,1928,1.238,1929,1.238,1930,1.238,1931,1.238,1932,1.238,1933,1.238,1934,1.238,1935,1.238,1936,1.238,1937,1.238,1938,1.238,1939,1.238,1940,1.238,1941,1.238,1942,1.238,1943,1.238,1944,1.238,1945,1.238,1946,1.238,1947,1.238,1948,1.238,1949,1.238,1950,1.238,1951,1.238,1952,1.238,1953,1.238,1954,1.238,1955,1.238,1956,1.238,1957,1.238,1958,1.238,1959,1.238,1960,1.238,1961,1.238,1962,1.238,1963,1.238,1964,1.238,1965,1.238,1966,1.238,1967,1.238,1968,1.238,1969,1.238,1970,1.238,1971,1.238,1972,1.238,1973,1.238,1974,1.238,1975,2.149,1976,1.238,1977,1.953,1978,1.238,1979,1.238,1980,1.238,1981,1.238,1982,1.238,1983,1.238,1984,1.238,1985,1.238,1986,1.238,1987,1.238,1988,1.238,1989,1.238,1990,1.238,1991,1.238,1992,1.238,1993,1.238,1994,1.125,1995,1.238,1996,1.238,1997,1.238,1998,1.238,1999,1.238,2000,1.238,2001,1.238,2002,1.238,2003,1.238,2004,1.238,2005,1.238,2006,2.149,2007,2.149,2008,1.238,2009,1.953,2010,1.238,2011,1.238,2012,1.238,2013,1.238,2014,1.238,2015,1.953,2016,1.238,2017,1.238,2018,1.238,2019,1.238,2020,1.238,2021,1.238,2022,1.238,2023,1.238,2024,1.238,2025,1.238,2026,1.238,2027,1.238,2028,1.238,2029,1.238,2030,1.238,2031,1.238,2032,1.238,2033,1.238,2034,1.238,2035,1.238,2036,1.238,2037,1.125,2038,1.125,2039,1.238,2040,1.238,2041,1.238,2042,2.149,2043,1.238,2044,1.238,2045,1.238,2046,1.238,2047,1.238,2048,1.238,2049,1.238,2050,2.149,2051,1.238,2052,1.238,2053,1.238,2054,1.238,2055,1.238,2056,1.238,2057,1.238,2058,1.238,2059,1.238,2060,1.238,2061,1.238,2062,1.238,2063,1.238,2064,1.238,2065,1.238,2066,1.238,2067,1.238,2068,1.238,2069,1.238,2070,1.238,2071,1.238,2072,1.238,2073,1.238,2074,1.238,2075,1.238,2076,1.238,2077,1.125,2078,1.238,2079,1.238,2080,1.238,2081,1.238,2082,1.238,2083,1.953,2084,1.238,2085,1.238,2086,1.238,2087,1.238,2088,1.238,2089,1.238,2090,1.238,2091,1.125,2092,1.238,2093,1.238,2094,1.238,2095,1.238,2096,1.238,2097,1.238,2098,1.238,2099,1.238,2100,1.238,2101,1.238,2102,1.238,2103,1.238,2104,1.238,2105,1.238,2106,1.238,2107,1.238,2108,1.238,2109,1.238,2110,1.238,2111,1.238,2112,1.238,2113,1.238,2114,1.238,2115,1.238,2116,1.238,2117,1.238,2118,1.238,2119,1.238,2120,1.238,2121,1.238,2122,1.238,2123,1.238,2124,1.238,2125,1.238,2126,1.238,2127,1.238,2128,1.238,2129,1.238,2130,1.238,2131,1.238,2132,1.238,2133,1.238,2134,1.238,2135,1.238,2136,1.238,2137,1.238,2138,1.238,2139,1.238,2140,1.238,2141,1.238,2142,1.953,2143,2.149,2144,3.398,2145,1.238,2146,1.238,2147,1.238,2148,1.238,2149,1.238,2150,1.238,2151,1.238,2152,1.238,2153,1.238,2154,1.238,2155,1.238,2156,1.238,2157,1.238,2158,1.238,2159,1.238,2160,2.149,2161,1.238,2162,1.238,2163,2.149,2164,1.238,2165,1.238,2166,1.238,2167,2.846,2168,2.846,2169,1.238,2170,1.238,2171,2.149,2172,2.149,2173,2.149,2174,1.238,2175,1.238,2176,1.238,2177,1.238,2178,1.238,2179,1.238,2180,1.238,2181,1.238,2182,1.238,2183,1.238,2184,1.238,2185,1.238,2186,1.238,2187,1.238,2188,1.238,2189,1.238,2190,1.238,2191,1.238,2192,1.238,2193,1.238,2194,1.238,2195,1.238,2196,1.238,2197,1.238,2198,1.238,2199,1.238,2200,1.238,2201,1.238,2202,1.238,2203,1.238,2204,1.238,2205,1.238,2206,1.238,2207,2.149,2208,1.238,2209,1.238,2210,1.238,2211,1.238,2212,1.238,2213,1.238,2214,1.238,2215,1.238,2216,1.238,2217,1.238,2218,1.238,2219,1.238,2220,2.149,2221,1.238,2222,1.238,2223,1.238,2224,2.149,2225,1.238,2226,1.238,2227,1.238,2228,1.238,2229,1.238,2230,1.238,2231,1.238,2232,1.238,2233,1.238,2234,1.238,2235,1.238,2236,1.238,2237,1.238,2238,1.238,2239,1.238,2240,1.238,2241,1.238,2242,1.238,2243,1.238,2244,1.238,2245,1.238,2246,1.238,2247,1.238,2248,1.238,2249,1.238,2250,1.238,2251,2.846,2252,1.238,2253,1.238,2254,1.238,2255,1.238,2256,1.238,2257,1.238,2258,1.238,2259,1.238,2260,1.238,2261,1.238,2262,1.238,2263,1.238,2264,1.238,2265,2.149,2266,1.238,2267,1.238,2268,1.238,2269,1.238,2270,1.238,2271,1.238,2272,1.238,2273,2.149,2274,1.238,2275,1.238,2276,1.238,2277,1.238,2278,1.238,2279,1.125,2280,1.238,2281,1.238,2282,1.238,2283,1.238,2284,0.87,2285,1.238,2286,1.238,2287,1.238,2288,1.238,2289,1.238,2290,1.238,2291,1.238,2292,2.149,2293,1.238,2294,1.238,2295,2.149,2296,1.238,2297,1.238,2298,1.238,2299,1.238,2300,1.238,2301,1.238,2302,1.238,2303,1.238,2304,1.238,2305,1.238,2306,1.238,2307,1.238,2308,1.238,2309,1.238,2310,1.238,2311,1.238,2312,2.846,2313,1.238,2314,1.238,2315,1.238,2316,1.238,2317,1.238,2318,1.238,2319,1.238,2320,1.238,2321,1.238,2322,1.238,2323,1.238,2324,1.238,2325,1.238,2326,1.238,2327,1.238,2328,1.238,2329,1.238,2330,1.238,2331,2.149,2332,1.238,2333,1.238,2334,1.238,2335,1.238,2336,1.238,2337,1.238,2338,1.238,2339,1.238,2340,1.238,2341,1.238,2342,1.238,2343,1.238,2344,1.238,2345,1.238,2346,1.238,2347,1.238,2348,1.238,2349,2.149,2350,1.238,2351,1.238,2352,1.238,2353,1.238,2354,2.846,2355,2.846,2356,1.238,2357,2.149,2358,1.238,2359,1.238,2360,1.238,2361,1.238,2362,1.238,2363,1.238,2364,1.238,2365,1.238,2366,1.238,2367,1.238,2368,1.238,2369,1.238,2370,1.238,2371,1.238,2372,2.846,2373,1.238,2374,1.238,2375,1.238,2376,1.238,2377,1.238,2378,1.238,2379,1.238,2380,1.238,2381,1.238,2382,1.238,2383,1.238,2384,1.238,2385,1.238,2386,1.238,2387,1.238,2388,1.238,2389,1.238,2390,1.238,2391,1.125,2392,2.149,2393,2.149,2394,1.238,2395,1.238,2396,1.125,2397,1.238,2398,1.238,2399,1.238,2400,1.238,2401,1.125,2402,1.125,2403,1.41,2404,1.41,2405,1.41,2406,1.41,2407,1.125,2408,1.41,2409,2.446,2410,1.238,2411,1.238,2412,1.41,2413,1.41,2414,1.41,2415,1.41,2416,1.41,2417,1.41,2418,5.707,2419,1.41,2420,1.41,2421,2.446,2422,2.446,2423,2.149,2424,1.41,2425,1.41,2426,2.149,2427,1.41,2428,2.149,2429,1.41,2430,2.446,2431,1.41,2432,2.446,2433,1.41,2434,1.41,2435,1.41,2436,1.41,2437,1.41,2438,2.446,2439,1.41,2440,2.446,2441,1.41,2442,2.446,2443,1.238,2444,1.238,2445,1.41,2446,1.41,2447,1.238,2448,1.953,2449,1.41,2450,2.446,2451,2.446,2452,2.446,2453,3.241,2454,1.41,2455,1.41,2456,2.446,2457,1.238,2458,1.41,2459,1.41,2460,1.41,2461,1.41,2462,1.125,2463,2.446,2464,1.41,2465,1.41,2466,1.41,2467,1.41,2468,1.41,2469,1.41,2470,1.41,2471,1.41,2472,1.41,2473,1.41,2474,1.41,2475,1.41,2476,1.41,2477,1.41,2478,1.41,2479,1.41,2480,1.41,2481,1.41,2482,1.41,2483,1.41,2484,1.41,2485,1.41,2486,1.41,2487,1.41,2488,1.41,2489,1.41,2490,1.41,2491,1.41,2492,1.41,2493,1.41,2494,1.41,2495,1.41,2496,1.41,2497,2.446,2498,2.446,2499,1.41,2500,1.41]],["title/interfaces/MutableKeyStore.html",[0,1.107,891,2.495]],["body/interfaces/MutableKeyStore.html",[0,0.707,2,1.205,3,0.072,4,0.057,5,0.05,7,0.217,9,1.295,18,0.636,20,1.445,21,0.011,37,1.344,48,1.657,56,0.072,57,0.003,58,0.005,59,0.003,60,0.003,77,0.703,79,2.738,86,1.009,92,1.412,93,0.745,95,0.994,112,1.411,113,3.031,114,1.877,123,1.127,134,2.044,135,3.169,140,0.255,152,0.883,163,3.128,185,1.254,221,1.752,395,2.753,460,1.593,524,2.004,679,2.004,752,2.731,800,4.079,810,5.246,816,2.004,891,3.388,895,4.981,896,4.981,962,1.457,1011,1.294,1038,1.398,1099,1.457,1373,3.788,2501,4.964,2502,2.004,2503,3.543,2504,5.481,2505,5.481,2506,5.481,2507,3.686,2508,3.686,2509,3.686,2510,5.481,2511,5.481,2512,3.686,2513,3.686,2514,3.686,2515,5.481,2516,5.481,2517,3.686,2518,3.686,2519,3.686,2520,3.686,2521,3.686,2522,5.481,2523,3.686,2524,3.686,2525,3.686,2526,2.898,2527,2.715,2528,2.715,2529,2.715,2530,4.506,2531,2.715,2532,4.506,2533,2.715,2534,5.794,2535,2.715,2536,4.506,2537,2.715,2538,2.715,2539,2.715,2540,4.506,2541,2.715,2542,4.506,2543,2.715,2544,2.384,2545,2.715,2546,4.506,2547,2.715,2548,2.715,2549,2.715,2550,4.506,2551,2.715,2552,4.506,2553,4.506,2554,2.715,2555,4.506,2556,2.715,2557,4.506,2558,2.715,2559,4.506,2560,2.715,2561,2.715,2562,4.506,2563,2.715,2564,4.506,2565,2.715,2566,4.506,2567,2.715,2568,4.506,2569,2.715,2570,2.384,2571,2.384,2572,2.384,2573,1.875,2574,2.004,2575,2.463,2576,2.004,2577,2.167,2578,2.384,2579,2.384,2580,3.686,2581,3.686,2582,4.506,2583,2.384,2584,4.506,2585,4.506,2586,2.384,2587,2.384,2588,2.384,2589,2.167,2590,2.384,2591,2.384,2592,2.384,2593,2.384,2594,2.384,2595,2.384,2596,2.384,2597,2.384,2598,2.384,2599,2.384,2600,2.384,2601,2.167,2602,2.167,2603,2.384,2604,2.384,2605,2.384,2606,2.384,2607,2.384,2608,2.384,2609,2.384,2610,2.384,2611,3.686,2612,2.384,2613,2.384,2614,2.384,2615,2.167,2616,1.767,2617,2.167,2618,1.875,2619,2.384,2620,1.875,2621,1.875,2622,2.167,2623,2.384,2624,2.384]],["title/classes/MutablePgpKeyStore.html",[60,0.005,752,2.767]],["body/classes/MutablePgpKeyStore.html",[0,0.712,3,0.072,4,0.058,5,0.051,7,0.219,9,1.297,18,0.551,20,1.383,21,0.011,37,1.355,48,1.661,56,0.072,57,0.003,58,0.005,59,0.003,60,0.003,62,1.065,74,1.781,77,0.707,79,3.387,86,1.01,92,1.414,93,0.746,95,1.001,112,1.413,113,3.059,114,1.887,123,1.136,134,2.047,135,3.172,140,0.256,152,0.89,163,3.136,185,1.541,221,1.701,395,2.766,460,1.606,524,2.02,679,2.02,752,3.355,800,4.082,810,5.26,816,2.02,891,3.402,895,4.999,896,4.999,962,1.468,1011,1.305,1038,1.409,1099,1.468,1373,3.117,2501,4.969,2502,2.02,2503,2.916,2504,5.501,2505,5.501,2506,5.501,2507,3.708,2508,3.708,2509,3.708,2510,5.501,2511,5.501,2512,3.708,2513,3.708,2514,3.708,2515,5.501,2516,5.501,2517,3.708,2518,3.708,2519,3.708,2520,3.708,2521,3.708,2522,5.501,2523,3.708,2524,3.708,2525,3.708,2526,2.916,2530,4.528,2532,4.528,2534,5.813,2536,4.528,2540,4.528,2542,4.528,2544,2.403,2546,4.528,2550,4.528,2552,4.528,2553,4.528,2555,4.528,2557,4.528,2559,4.528,2562,4.528,2564,4.528,2566,4.528,2568,4.528,2570,2.403,2571,2.403,2572,2.403,2573,1.89,2574,2.02,2575,2.478,2576,2.02,2577,2.184,2578,2.403,2579,2.403,2580,3.708,2581,3.708,2582,4.528,2583,2.403,2584,4.528,2585,4.528,2586,2.403,2587,2.403,2588,2.403,2589,2.184,2590,2.403,2591,2.403,2592,2.403,2593,2.403,2594,2.403,2595,2.403,2596,2.403,2597,2.403,2598,2.403,2599,2.403,2600,2.403,2601,2.184,2602,2.184,2603,2.403,2604,2.403,2605,2.403,2606,2.403,2607,2.403,2608,2.403,2609,2.403,2610,2.403,2611,3.708,2612,2.403,2613,2.403,2614,2.403,2615,2.184,2616,1.781,2617,2.184,2618,1.89,2619,2.403,2620,1.89,2621,1.89,2622,2.184,2623,2.403,2624,2.403,2625,2.736,2626,2.736,2627,2.736,2628,2.736,2629,2.736,2630,2.736,2631,2.736,2632,2.736,2633,2.736,2634,2.736,2635,2.736,2636,2.736,2637,2.736,2638,2.736,2639,2.736,2640,2.736,2641,2.736,2642,2.736,2643,2.736,2644,2.736,2645,2.736,2646,2.736,2647,2.736,2648,2.736,2649,2.736]],["title/components/OrganizationComponent.html",[175,0.652,310,1.383]],["body/components/OrganizationComponent.html",[3,0.1,4,0.08,5,0.07,7,0.302,8,0.977,9,0.614,18,0.542,21,0.011,33,1.358,56,0.1,57,0.005,58,0.006,59,0.005,60,0.005,77,0.898,84,1.154,86,0.916,88,1.265,91,1.744,92,0.669,93,0.635,112,0.898,114,1.382,123,2.587,134,1.322,140,0.378,152,1.744,175,0.956,176,1.229,177,1.962,178,1.382,179,1.567,180,1.425,181,1.265,185,1.602,186,2.866,187,1.194,188,2.225,189,2.225,190,2.937,191,3.182,193,2.225,195,2.225,200,4.603,207,3.12,211,3.959,215,3.014,216,5.497,221,1.673,225,4.603,227,1.648,228,2.552,231,4.42,244,1.567,245,0.452,246,2.788,247,2.026,248,1.87,253,1.161,255,2.788,256,3.959,281,2.654,283,4.416,285,1.068,286,2.023,287,2.023,288,1.098,289,2.56,290,1.425,291,1.265,292,2.352,293,1.229,294,1.425,295,1.425,296,1.229,297,1.425,298,1.265,299,1.425,300,1.229,301,1.425,302,1.229,303,1.425,304,1.229,305,0.957,306,1.425,307,1.265,308,2.023,309,1.341,310,2.208,311,1.425,312,1.229,313,1.425,314,1.229,315,1.425,316,1.265,317,2.023,318,1.341,319,1.229,320,0.957,321,1.229,322,1.425,323,1.265,324,2.023,325,1.341,326,1.265,327,1.039,328,1.229,329,1.265,330,1.229,331,1.229,332,1.425,333,1.229,334,1.425,335,1.229,336,1.425,337,1.302,338,1.382,339,1.425,781,4.976,783,5.416,805,4.279,857,2.329,1077,4.172,1243,4.709,1341,4.416,1651,5.01,2650,3.317,2651,5.291,2652,6.233,2653,5.361,2654,6.233,2655,6.233,2656,5.361,2657,3.776,2658,3.776,2659,3.776,2660,3.776,2661,3.776,2662,3.776,2663,3.776,2664,7.166,2665,4.976,2666,3.776,2667,3.776,2668,3.776,2669,3.776,2670,5.361,2671,5.361,2672,4.709,2673,5.361,2674,5.361,2675,5.361,2676,5.361,2677,4.709,2678,5.361,2679,5.361,2680,5.361,2681,5.361,2682,5.361,2683,5.361]],["title/classes/PGPSigner.html",[60,0.005,2684,2.936]],["body/classes/PGPSigner.html",[0,1.374,3,0.097,4,0.078,5,0.069,7,0.295,8,0.962,9,1.092,18,0.662,20,1.439,21,0.011,33,1.337,40,4.627,41,4.381,42,2.341,43,4.381,44,3.981,47,2.831,48,1.679,51,2.341,56,0.097,57,0.004,58,0.006,59,0.004,60,0.004,62,1.437,77,0.883,78,4.228,79,2.554,84,0.794,86,0.991,92,1.19,93,0.628,104,4.371,112,1.124,113,2.323,114,1.931,134,1.301,140,0.32,163,1.583,185,1.577,221,1.876,227,2.271,228,1.668,305,1.337,357,3.066,395,1.981,663,3.433,686,2.549,688,2.725,736,2.166,800,1.76,891,4.337,936,2.069,1011,2.515,1026,3.895,1038,1.901,2418,4.21,2501,4.897,2503,4.906,2526,3.643,2573,2.549,2575,2.166,2616,2.402,2618,3.643,2620,2.549,2621,2.549,2684,4.251,2685,2.402,2686,4.913,2687,4.913,2688,4.913,2689,5.67,2690,4.633,2691,4.633,2692,4.21,2693,5.275,2694,4.21,2695,3.691,2696,3.691,2697,3.691,2698,3.691,2699,3.691,2700,3.691,2701,3.691,2702,3.691,2703,4.913,2704,5.102,2705,3.691,2706,2.946,2707,4.913,2708,3.691,2709,4.913,2710,3.691,2711,2.946,2712,2.725,2713,2.946,2714,2.946,2715,4.21,2716,2.946,2717,2.946,2718,2.946,2719,2.946,2720,2.946,2721,2.946,2722,2.946,2723,4.21,2724,2.946,2725,2.946,2726,2.946,2727,4.21,2728,2.946,2729,4.21,2730,2.946,2731,2.946,2732,2.946,2733,2.946,2734,2.946,2735,2.946,2736,2.946,2737,2.946,2738,2.946,2739,2.946,2740,2.946,2741,2.946]],["title/components/PagesComponent.html",[175,0.652,312,1.383]],["body/components/PagesComponent.html",[3,0.127,4,0.102,5,0.09,7,0.385,8,1.156,18,0.385,20,1.061,21,0.01,33,1.223,56,0.127,57,0.006,58,0.008,59,0.006,60,0.006,84,1.524,86,0.759,88,1.616,91,2.063,93,0.663,140,0.293,175,1.086,176,1.57,177,2.32,178,1.766,179,2.002,180,1.821,181,1.616,187,1.526,188,2.631,189,2.631,190,2.993,191,3.252,193,2.631,195,2.631,228,1.526,244,2.002,245,0.577,281,3.139,285,1.364,286,2.392,287,2.392,288,1.402,289,2.837,290,1.821,291,1.616,292,2.672,293,1.57,294,1.821,295,1.821,296,1.57,297,1.821,298,1.616,299,1.821,300,1.57,301,1.821,302,1.57,303,1.821,304,1.57,305,1.223,306,1.821,307,1.616,308,2.392,309,1.714,310,1.57,311,1.821,312,2.447,313,1.821,314,1.57,315,1.821,316,1.616,317,2.392,318,1.714,319,1.57,320,1.223,321,1.57,322,1.821,323,1.616,324,2.392,325,1.714,326,1.616,327,1.327,328,1.57,329,1.616,330,1.57,331,1.57,332,1.821,333,1.57,334,1.821,335,1.57,336,1.821,337,1.664,338,1.766,339,1.821,736,3.721,847,4.89,2742,4.238,2743,6.339,2744,7.08,2745,6.339,2746,6.339,2747,6.339,2748,5.06,2749,6.339]],["title/modules/PagesModule.html",[431,1.138,2750,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.557,245,0.672,285,1.588,312,2.715,431,1.503,433,2.056,434,2.782,435,4.081,436,2.893,437,3.015,438,2.257,443,4.297,445,3.75,446,3.015,447,2.679,449,2.9,450,4.101,451,3.149,453,3.297,455,3.465,470,4.309,471,3.465,472,4.548,473,3.656,474,3.656,475,4.309,476,3.465,477,4.309,478,3.465,481,4.826,482,3.88,2750,6.409,2751,4.934,2752,4.934,2753,4.934,2754,5.762,2755,5.618,2756,5.618,2757,5.618,2758,6.987,2759,4.934,2760,4.934]],["title/modules/PagesRoutingModule.html",[431,1.138,2754,2.936]],["body/modules/PagesRoutingModule.html",[3,0.15,4,0.12,5,0.106,21,0.011,48,1.293,56,0.15,57,0.007,58,0.008,59,0.007,60,0.007,67,3.703,140,0.464,143,2.082,175,0.873,245,0.681,250,2.021,281,3.487,312,2.291,433,2.082,438,2.286,449,2.923,497,3.34,498,3.647,499,3.947,500,4.979,501,3.929,502,3.929,503,3.703,504,3.509,551,3.34,768,7.215,1077,3.189,1082,3.053,1545,3.34,2754,4.864,2761,5.69,2762,5.69,2763,5.69,2764,5.69,2765,5.69,2766,5.69,2767,5.69,2768,5.69,2769,5.69,2770,5.69,2771,5.69,2772,5.69]],["title/directives/PasswordToggleDirective.html",[288,1.236,335,1.383]],["body/directives/PasswordToggleDirective.html",[3,0.141,4,0.113,5,0.099,7,0.425,9,0.865,18,0.593,20,1.306,21,0.011,45,3.078,48,1.535,56,0.141,57,0.006,58,0.008,59,0.006,60,0.006,77,1.131,84,1.453,86,0.934,92,0.943,93,0.498,112,0.891,140,0.323,187,1.682,190,2.261,221,1.665,245,0.637,253,2.076,288,1.963,330,1.731,335,2.197,699,4.663,953,4.247,1038,3.82,1501,4.247,1502,6.569,1503,5.921,1504,6.228,1507,4.247,1508,3.928,1511,4.247,2773,7.073,2774,6.752,2775,7.802,2776,5.39,2777,7.418,2778,6.752,2779,5.32,2780,5.32,2781,5.477,2782,5.32,2783,5.32,2784,5.32,2785,5.32,2786,7.418,2787,7.418,2788,7.418,2789,6.752,2790,7.802,2791,6.752,2792,6.752]],["title/injectables/RegistryService.html",[871,1.344,1069,2.767]],["body/injectables/RegistryService.html",[3,0.142,4,0.114,5,0.1,7,0.431,8,1.242,18,0.596,21,0.011,33,1.892,56,0.142,57,0.006,58,0.008,59,0.006,60,0.006,68,4.382,77,1.14,84,1.607,86,0.988,112,1.14,134,1.68,140,0.491,141,5.172,144,2.314,145,2.778,152,2.687,153,5.029,228,2.361,245,0.645,248,2.671,638,2.778,871,2.154,874,2.895,889,2.895,962,2.895,1069,4.433,1099,2.895,2793,4.738,2794,8.258,2795,7.842,2796,7.842,2797,5.394,2798,5.394,2799,5.394,2800,5.959,2801,5.394,2802,6.455,2803,6.811,2804,6.811,2805,6.811,2806,6.811,2807,6.811,2808,5.394,2809,5.394,2810,5.394,2811,4.305,2812,4.305,2813,4.738]],["title/guards/RoleGuard.html",[834,2.622,2814,3.393]],["body/guards/RoleGuard.html",[3,0.114,4,0.091,5,0.08,7,0.345,9,0.958,18,0.47,21,0.011,48,0.982,56,0.114,57,0.005,58,0.007,59,0.005,60,0.008,64,4.626,65,4.348,74,2.813,77,0.986,84,0.93,86,0.705,92,1.044,93,0.551,112,1.204,113,2.222,114,2.452,119,4.701,120,4.348,121,4.348,123,2.444,127,4.701,134,1.652,140,0.407,143,1.582,155,4.132,171,2.666,175,0.904,181,1.972,185,1.76,218,4.494,227,1.81,245,0.517,250,1.535,283,3.833,498,2.808,508,4.649,509,2.155,515,4.597,521,3.317,542,2.061,581,5.265,638,2.226,773,6.2,834,4.437,835,3.45,837,4.701,838,5.173,839,5.311,841,3.45,843,5.173,844,3.16,845,6.318,846,5.173,847,4.067,848,5.173,849,5.173,850,3.796,851,6.822,852,6.318,854,5.173,856,4.348,857,3.632,858,4.701,859,4.701,860,5.173,861,4.701,862,6.318,863,5.742,864,4.701,865,5.173,866,5.173,867,5.884,869,6.318,871,1.862,872,3.45,873,3.45,874,2.319,875,3.191,877,3.796,2814,4.701,2815,3.796,2816,4.322,2817,4.322,2818,5.889,2819,5.889,2820,5.889,2821,5.889,2822,4.322,2823,4.322,2824,4.322,2825,4.322,2826,4.322,2827,4.322,2828,4.322]],["title/directives/RouterLinkDirectiveStub.html",[288,1.236,337,1.466]],["body/directives/RouterLinkDirectiveStub.html",[3,0.158,4,0.127,5,0.111,7,0.478,8,1.325,18,0.58,21,0.011,33,1.517,56,0.158,57,0.007,58,0.009,59,0.007,60,0.007,86,0.936,140,0.363,187,1.893,190,2.433,221,1.476,228,1.893,245,0.716,288,2.463,330,1.948,337,2.505,338,2.977,516,3.355,531,5.257,646,6.381,672,5.257,1075,5.364,1508,5.776,2776,5.799,2781,4.42,2829,7.145,2830,6.493,2831,7.822,2832,5.985,2833,5.257,2834,5.985,2835,5.985,2836,5.985,2837,5.985,2838,5.985,2839,5.985]],["title/pipes/SafePipe.html",[2284,2.622,2840,2.936]],["body/pipes/SafePipe.html",[3,0.162,4,0.13,5,0.114,9,0.999,18,0.49,20,1.324,21,0.011,56,0.162,57,0.007,58,0.009,59,0.007,60,0.007,77,1.028,86,0.735,92,1.088,93,0.74,112,1.028,134,1.514,140,0.448,185,1.835,187,1.941,245,0.735,735,4.9,736,3.603,847,4.24,875,4.533,2142,6.699,2284,4.55,2840,5.095,2841,4.9,2842,5.392,2843,7.377,2844,5.392,2845,7.377,2846,6.946,2847,6.139,2848,6.479,2849,7.377,2850,6.139,2851,6.139]],["title/classes/Settings.html",[60,0.005,1077,2.383]],["body/classes/Settings.html",[3,0.155,4,0.124,5,0.109,7,0.469,8,1.309,9,0.955,18,0.662,21,0.011,33,1.488,44,4.348,56,0.155,57,0.007,58,0.009,59,0.007,60,0.009,62,2.286,68,4.553,84,1.264,86,0.992,92,1.041,93,0.55,228,1.857,273,5.581,1077,4.348,2852,4.688,2853,7.281,2854,6.813,2855,6.306,2856,6.307,2857,7.181,2858,5.872,2859,5.872,2860,6.813,2861,5.872,2862,5.158]],["title/components/SettingsComponent.html",[175,0.652,314,1.383]],["body/components/SettingsComponent.html",[3,0.091,4,0.073,5,0.064,7,0.275,8,0.914,9,0.816,18,0.61,20,1.157,21,0.011,32,4.01,33,1.271,45,2.081,48,0.782,56,0.156,57,0.004,58,0.006,59,0.004,60,0.004,77,0.84,84,1.079,86,0.959,88,1.153,91,2.483,92,0.889,93,0.728,112,1.089,135,2.453,140,0.452,152,1.632,175,0.908,176,1.12,177,1.836,178,1.26,179,1.428,180,1.299,181,1.153,185,1.499,186,2.721,187,1.088,188,2.081,189,2.081,190,2.913,191,3.151,192,3.093,193,2.081,195,2.081,207,2.989,221,1.882,228,1.088,244,1.428,245,0.412,248,1.704,249,1.704,253,1.058,281,2.483,285,0.973,286,1.892,287,1.892,288,1,289,2.453,290,1.299,291,1.153,292,2.233,293,1.12,294,1.299,295,1.299,296,1.12,297,1.299,298,1.153,299,1.299,300,1.12,301,1.299,302,1.12,303,1.299,304,1.12,305,0.872,306,1.299,307,1.153,308,1.892,309,1.222,310,1.12,311,1.299,312,1.12,313,1.299,314,2.115,315,1.299,316,1.153,317,1.892,318,1.222,319,1.12,320,0.872,321,1.12,322,1.299,323,1.153,324,1.892,325,1.222,326,1.153,327,0.947,328,1.12,329,1.153,330,1.12,331,1.12,332,1.299,333,1.12,334,1.299,335,1.12,336,1.299,337,1.187,338,1.26,339,1.299,345,4.086,347,4.723,349,4.086,350,4.086,351,3.464,352,4.49,359,3.464,370,4.086,380,4.086,381,3.264,382,3.464,384,4.086,385,3.464,386,2.377,387,1.772,388,1.847,389,1.847,390,2.123,405,2.541,407,2.541,408,2.377,409,2.541,410,2.377,412,2.541,413,2.377,423,3.464,427,4.49,509,1.836,551,2.944,622,1.929,649,2.747,650,4.449,678,4.405,832,4.01,840,4.405,902,6.336,1038,3.715,1048,5.197,1077,4.432,2651,4.801,2863,3.023,2864,5.917,2865,5.015,2866,5.015,2867,3.442,2868,3.442,2869,3.442,2870,3.442,2871,3.442,2872,3.442,2873,4.405,2874,3.442,2875,3.442,2876,3.442,2877,3.442,2878,3.023,2879,3.442,2880,3.442,2881,3.442,2882,3.442,2883,3.442,2884,3.442,2885,4.369,2886,3.442,2887,5.015,2888,5.015,2889,5.015,2890,5.015,2891,5.015,2892,5.015,2893,5.015,2894,5.711,2895,6.501,2896,5.015,2897,5.015,2898,5.015,2899,5.015,2900,5.015]],["title/modules/SettingsModule.html",[431,1.138,2901,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.447,245,0.627,247,2.812,285,1.481,310,2.667,314,2.667,387,2.698,388,2.812,389,2.812,431,1.402,433,1.918,434,2.594,435,3.952,436,2.698,437,2.812,438,2.105,443,4.221,445,3.588,446,2.812,447,2.498,449,2.775,450,3.925,451,2.936,453,3.075,455,3.231,465,4.352,466,4.618,467,4.937,468,3.869,469,4.618,470,4.124,471,3.231,472,4.352,473,3.41,474,3.41,475,4.124,476,3.231,477,4.124,478,3.231,479,4.352,480,3.41,481,4.618,482,3.618,491,5.338,2901,6.414,2902,4.602,2903,4.602,2904,4.602,2905,5.661,2906,5.239,2907,5.239,2908,4.602,2909,4.602,2910,6.687,2911,5.239,2912,6.687,2913,5.239]],["title/modules/SettingsRoutingModule.html",[431,1.138,2905,2.936]],["body/modules/SettingsRoutingModule.html",[3,0.162,4,0.13,5,0.114,21,0.011,48,1.395,56,0.162,57,0.007,58,0.009,59,0.007,60,0.007,140,0.498,143,2.247,175,1.132,245,0.735,250,2.18,310,2.4,314,2.4,433,2.247,438,2.467,449,3.061,497,3.603,498,3.771,499,4.135,500,4.642,501,4.24,502,4.24,503,3.996,504,3.786,2651,4.533,2905,5.095,2908,5.392,2909,5.392,2914,6.139]],["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.72,245,0.562,250,1.67,285,1.329,304,2.59,307,2.864,316,2.864,323,2.864,331,2.782,333,2.59,431,1.258,433,1.72,434,2.327,435,3.751,436,2.421,437,2.523,438,2.808,443,4.588,445,3.344,446,2.523,447,2.241,449,2.586,450,3.657,451,2.635,479,4.055,480,3.059,499,3.492,887,4.129,1281,3.471,1292,3.752,1307,4.129,1308,4.129,2840,5.906,2915,4.129,2916,4.129,2917,4.129,2918,5.906,2919,4.701,2920,4.701,2921,4.701,2922,4.701,2923,6.231,2924,4.701,2925,4.701,2926,4.701,2927,6.231,2928,4.701]],["title/components/SidebarComponent.html",[175,0.652,316,1.424]],["body/components/SidebarComponent.html",[3,0.126,4,0.101,5,0.088,7,0.381,21,0.01,56,0.126,57,0.006,58,0.008,59,0.006,60,0.006,67,4.092,77,1.053,84,1.515,86,0.752,88,1.596,91,2.046,93,0.659,112,0.798,140,0.289,175,1.08,176,1.551,177,2.301,178,1.744,179,1.978,180,1.798,181,1.596,185,1.879,186,3.236,187,1.507,188,2.61,189,2.61,190,2.99,191,3.249,193,2.61,195,2.61,207,3.441,221,1.551,244,1.978,245,0.57,285,1.347,286,2.373,287,2.373,288,1.385,289,2.824,290,1.798,291,1.596,292,2.655,293,1.551,294,1.798,295,1.798,296,1.551,297,1.798,298,1.596,299,1.798,300,1.551,301,1.798,302,1.551,303,1.798,304,1.551,305,1.208,306,1.798,307,1.596,308,2.373,309,1.693,310,1.551,311,1.798,312,1.551,313,1.798,314,1.551,315,1.798,316,2.506,317,2.373,318,1.693,319,1.551,320,1.208,321,1.551,322,1.798,323,1.596,324,2.373,325,1.693,326,1.596,327,1.311,328,1.551,329,2.357,330,1.551,331,1.551,332,1.798,333,1.551,334,1.798,335,1.551,336,1.798,337,1.643,338,1.744,339,1.798,551,3.691,670,4.643,698,3.878,1077,3.524,1545,3.691,2929,4.186,2930,7.037,2931,6.288,2932,4.765,2933,4.765,2934,6.288]],["title/components/SidebarStubComponent.html",[175,0.652,318,1.51]],["body/components/SidebarStubComponent.html",[3,0.134,4,0.107,5,0.094,21,0.01,56,0.192,57,0.006,58,0.008,59,0.006,60,0.009,88,1.697,91,2.13,93,0.679,140,0.308,175,1.004,176,1.649,177,2.396,178,2.654,180,1.913,181,1.697,187,1.603,190,2.999,191,3.274,245,0.606,285,1.433,286,2.47,287,2.47,288,1.473,289,2.892,290,1.913,291,1.697,292,2.736,293,1.649,294,1.913,295,1.913,296,1.649,297,1.913,298,1.697,299,1.913,300,1.649,301,1.913,302,1.649,303,1.913,304,1.649,305,1.284,306,1.913,307,1.697,308,2.47,309,2.325,310,1.649,311,1.913,312,1.649,313,1.913,314,1.649,315,1.913,316,1.697,317,2.47,318,2.722,319,1.649,320,1.284,321,1.649,322,1.913,323,1.697,324,2.47,325,2.325,326,1.697,327,1.394,328,1.649,329,1.697,330,1.649,331,1.649,332,1.913,333,1.649,334,1.913,335,1.649,336,1.913,337,1.748,338,1.855,339,1.913,431,1.356,516,2.841,698,4.037,1362,3.743,1368,3.743,1369,5.788,1370,3.743]],["title/interfaces/Signable.html",[0,1.107,2704,2.936]],["body/interfaces/Signable.html",[0,1.58,2,2.005,3,0.119,4,0.096,5,0.084,7,0.361,18,0.361,20,1.432,21,0.011,40,4.614,41,4.226,42,2.693,43,4.853,44,3.84,47,3.256,48,1.788,51,2.693,56,0.119,57,0.005,58,0.007,59,0.005,60,0.005,77,1.016,78,3.772,79,1.874,86,0.54,104,4.459,112,0.756,113,2.289,114,2.221,134,1.496,140,0.368,163,1.938,185,1.35,221,1.94,227,2.349,305,1.537,357,2.843,395,2.424,663,3.949,686,3.119,688,3.335,736,2.651,800,2.153,891,4.021,936,2.531,1011,2.893,1026,3.335,1038,2.326,2501,3.561,2503,4.19,2573,3.119,2575,2.651,2616,2.939,2618,4.19,2620,3.119,2621,3.119,2684,4.19,2685,2.939,2686,3.605,2687,3.605,2688,3.605,2689,4.843,2692,3.605,2694,3.605,2703,4.843,2704,5.277,2707,4.843,2709,4.843,2711,3.605,2712,3.335,2713,3.605,2714,3.605,2715,4.843,2716,3.605,2717,3.605,2718,3.605,2719,3.605,2720,3.605,2721,3.605,2722,3.605,2723,4.843,2724,3.605,2725,3.605,2726,3.605,2727,4.843,2728,3.605,2729,4.843,2730,3.605,2731,3.605,2732,3.605,2733,3.605,2734,3.605,2735,3.605,2736,3.605,2737,3.605,2738,3.605,2739,3.605,2740,3.605,2741,3.605,2935,4.516]],["title/interfaces/Signature.html",[0,1.107,40,2.281]],["body/interfaces/Signature.html",[0,1.943,1,3.557,2,2.099,3,0.125,4,0.1,5,0.088,6,3.078,7,0.378,8,1.141,10,3.492,11,2.651,12,2.342,13,4.321,14,3.859,15,4.321,16,3.506,17,3.222,18,0.62,19,3.357,20,1.499,21,0.011,22,1.891,24,4.321,25,4.321,26,4.321,27,4.072,28,4.072,29,2.255,30,4.321,31,3.492,32,3.859,33,2.137,34,4.321,35,4.321,36,4.321,37,3.842,38,4.321,39,3.859,40,4.164,41,4.601,42,3.445,43,4.601,44,4.182,45,2.596,46,4.072,47,2.538,48,1.075,49,3.859,50,3.078,51,2.777,52,3.078,53,3.859,54,3.859,55,3.266,56,0.125,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.454,2,1.775,3,0.106,4,0.085,5,0.074,7,0.319,9,1.191,18,0.606,20,1.436,21,0.011,40,4.667,41,3.966,42,2.478,43,4.515,44,3.604,47,2.996,48,1.724,51,2.478,56,0.106,57,0.005,58,0.007,59,0.005,60,0.005,77,0.935,78,3.584,79,1.66,86,0.907,92,1.298,93,0.685,104,4.53,112,1.27,113,2.427,114,2.043,134,1.377,140,0.339,163,1.716,185,1.195,221,1.989,227,2.44,305,1.415,357,2.669,395,2.146,663,3.633,686,2.762,688,2.953,736,2.347,800,1.907,891,3.775,936,2.242,1011,2.662,1026,2.953,1038,2.06,2501,4.568,2503,3.855,2526,3.855,2573,2.762,2575,2.347,2616,2.603,2618,3.855,2620,2.762,2621,2.762,2684,3.855,2685,2.603,2686,3.192,2687,5.133,2688,5.133,2689,5.844,2690,4.903,2691,4.903,2692,3.192,2694,3.192,2703,5.133,2704,5.237,2706,3.192,2707,5.133,2709,5.133,2711,3.192,2712,2.953,2713,4.456,2714,4.456,2715,5.133,2716,3.192,2717,3.192,2718,3.192,2719,3.192,2720,3.192,2721,3.192,2722,3.192,2723,4.456,2724,3.192,2725,3.192,2726,3.192,2727,4.456,2728,3.192,2729,4.456,2730,3.192,2731,3.192,2732,3.192,2733,3.192,2734,3.192,2735,3.192,2736,3.192,2737,3.192,2738,3.192,2739,3.192,2740,3.192,2741,3.192,2936,3.999,2937,3.999,2938,3.999,2939,3.999,2940,3.999,2941,3.999]],["title/interfaces/Staff.html",[0,1.107,622,2.383]],["body/interfaces/Staff.html",[0,1.602,2,2.731,3,0.162,4,0.13,5,0.114,7,0.491,8,1.347,18,0.671,20,1.485,21,0.011,22,2.006,32,5.063,56,0.162,57,0.007,58,0.009,59,0.007,93,0.768,622,4.436,2873,7.211,2942,5.403,2943,8.209,2944,8.209]],["title/interfaces/Token.html",[0,1.107,320,1.077]],["body/interfaces/Token.html",[0,1.482,2,2.526,3,0.15,4,0.12,5,0.106,7,0.454,8,1.284,9,1.3,11,3.189,18,0.695,20,1.506,21,0.011,23,4.864,56,0.15,57,0.007,58,0.008,59,0.007,93,0.748,95,2.925,320,1.938,1179,3.811,1549,4.542,1550,5.52,1552,6.38,1554,6.38,1558,4.201,1560,6.38,1561,5.902,2945,4.998]],["title/components/TokenDetailsComponent.html",[175,0.652,319,1.383]],["body/components/TokenDetailsComponent.html",[3,0.107,4,0.086,5,0.076,7,0.325,8,1.03,9,0.662,18,0.451,21,0.011,56,0.107,57,0.005,58,0.007,59,0.005,60,0.005,77,0.946,84,1.216,86,0.776,88,1.362,91,1.838,92,0.721,93,0.713,95,2.067,112,0.681,140,0.447,175,0.996,176,1.323,177,2.067,178,1.489,179,1.688,180,1.535,181,1.362,185,1.688,186,2.984,187,1.286,188,2.344,189,2.344,190,2.955,191,3.204,193,2.344,195,2.344,207,3.223,221,1.393,244,1.688,245,0.487,249,2.014,250,1.445,253,1.736,272,2.647,281,2.797,285,1.15,286,2.131,287,2.131,288,1.182,289,2.645,290,1.535,291,1.362,292,2.449,293,1.323,294,1.535,295,1.535,296,1.323,297,1.535,298,1.362,299,1.535,300,1.323,301,1.535,302,1.323,303,1.535,304,1.323,305,1.031,306,1.535,307,1.362,308,2.131,309,1.445,310,1.323,311,1.535,312,1.323,313,1.535,314,1.323,315,1.535,316,1.362,317,2.131,318,1.445,319,2.281,320,2.169,321,1.323,322,1.535,323,1.362,324,2.131,325,1.445,326,1.362,327,1.119,328,1.323,329,1.362,330,1.323,331,1.323,332,1.535,333,1.323,334,1.535,335,1.323,336,1.535,337,1.403,338,1.489,339,1.535,391,2.28,392,2.014,429,3.676,515,3.166,530,4.961,586,3.247,623,5.177,1179,2.693,1545,3.315,1547,4.171,1550,3.901,1558,4.171,1561,4.171,1994,4.509,2462,4.509,2946,6.158,2947,5.177,2948,3.247,2949,5.7,2950,4.961,2951,4.067,2952,7.011,2953,5.4,2954,5.648,2955,4.067,2956,4.067,2957,4.067,2958,4.067,2959,6.158,2960,4.961,2961,5.648,2962,5.648,2963,5.648,2964,5.648,2965,5.648,2966,5.648,2967,5.648,2968,4.961,2969,5.648,2970,5.648]],["title/pipes/TokenRatioPipe.html",[2284,2.622,2918,2.936]],["body/pipes/TokenRatioPipe.html",[3,0.167,4,0.134,5,0.117,9,1.029,18,0.505,21,0.01,33,1.603,56,0.167,57,0.008,58,0.009,59,0.008,60,0.008,77,1.059,86,0.757,92,1.121,93,0.703,112,1.059,134,1.56,140,0.384,185,1.891,187,2.001,245,0.757,429,4.888,1543,4.671,2284,3.902,2841,5.05,2844,5.557,2846,7.036,2848,6.597,2918,5.187,2971,6.597,2972,5.557,2973,7.51,2974,6.326,2975,6.326,2976,6.326,2977,6.326]],["title/classes/TokenRegistry.html",[60,0.005,2978,2.936]],["body/classes/TokenRegistry.html",[0,0.827,3,0.084,4,0.067,5,0.059,7,0.254,8,0.862,9,0.918,18,0.56,20,1.361,21,0.011,22,2.041,45,1.318,48,1.283,53,1.958,54,5.014,56,0.084,57,0.004,58,0.006,59,0.004,60,0.004,62,1.236,64,4.318,65,3.489,66,5.492,68,4.99,69,4.151,70,4.151,71,6.551,72,3.489,73,4.123,74,4.724,75,6.156,76,6.694,77,0.791,78,3.925,79,3.308,84,0.683,85,4.151,86,0.869,88,1.583,89,4.168,90,6.814,91,2.427,92,1.001,93,0.626,94,5.336,95,3.087,96,2.534,105,6.156,109,6.156,110,6.156,112,1.318,113,2.644,131,4.991,134,1.542,135,1.198,139,6.156,140,0.287,141,3.857,142,2.788,143,1.162,144,1.362,145,1.635,146,2.534,147,3.264,148,2.534,150,2.534,151,2.534,152,1.538,153,2.344,154,2.788,155,3.857,156,4.151,157,2.788,158,2.788,159,4.151,160,2.788,163,2.422,320,2.229,1096,1.958,1235,4.991,1240,4.151,1545,4.553,2978,3.264,2979,5.954,2980,2.534,2981,4.725,2982,7.008,2983,4.725,2984,3.175,2985,3.175,2986,4.725,2987,3.175,2988,6.814,2989,6.253,2990,3.175,2991,3.175,2992,4.725,2993,4.725,2994,3.175,2995,7.757,2996,3.175,2997,4.725,2998,3.175,2999,2.788,3000,3.175,3001,3.175,3002,3.175,3003,3.175,3004,3.175,3005,3.175]],["title/injectables/TokenService.html",[871,1.344,2953,2.936]],["body/injectables/TokenService.html",[3,0.125,4,0.1,5,0.088,7,0.38,8,1.144,9,1.143,18,0.638,20,1.363,21,0.011,22,1.204,33,1.204,48,1.426,56,0.125,57,0.006,58,0.007,59,0.006,60,0.006,68,4.124,77,1.051,79,3.43,84,1.351,86,0.974,92,1.246,93,0.658,95,2.297,112,1.177,113,2.932,134,1.733,140,0.494,144,2.038,145,2.447,152,2.286,163,3.207,168,5.512,228,1.502,245,0.568,253,1.929,521,3.479,542,2.265,638,2.447,744,2.447,871,1.984,874,2.55,889,2.55,905,3.508,906,5.894,962,2.55,1069,5.298,1099,2.55,1101,3.792,1152,3.792,1179,2.265,2426,6.565,2428,5.512,2802,5.609,2811,3.792,2812,3.792,2953,4.334,2978,5.513,3006,4.173,3007,7.027,3008,6.275,3009,6.275,3010,6.275,3011,4.751,3012,6.275,3013,4.751,3014,4.751,3015,7.771,3016,4.751,3017,4.751,3018,4.173,3019,4.751,3020,4.173,3021,4.751,3022,4.751,3023,4.751,3024,4.751,3025,4.751,3026,4.751,3027,4.751,3028,4.751,3029,4.751,3030,4.751,3031,4.751,3032,4.751,3033,4.751]],["title/classes/TokenServiceStub.html",[60,0.005,3034,3.393]],["body/classes/TokenServiceStub.html",[3,0.168,4,0.135,5,0.118,7,0.509,9,1.038,18,0.509,20,1.346,21,0.011,56,0.168,57,0.008,58,0.009,59,0.008,60,0.008,62,2.483,77,1.264,86,0.763,92,1.131,93,0.706,112,1.068,134,1.573,516,3.575,844,4.05,1179,3.598,1532,4.71,1547,4.71,3034,6.024,3035,6.629,3036,7.547,3037,7.547,3038,6.378]],["title/components/TokensComponent.html",[175,0.652,321,1.383]],["body/components/TokensComponent.html",[3,0.094,4,0.075,5,0.066,7,0.283,8,0.935,9,0.979,18,0.6,20,1.008,21,0.011,33,1.299,56,0.159,57,0.004,58,0.006,59,0.004,60,0.004,77,0.858,79,3.026,84,1.103,86,0.953,88,1.188,91,1.668,92,1.067,93,0.745,95,2.414,112,1.104,113,2.488,135,2.488,140,0.476,152,1.154,163,2.583,175,0.924,176,1.154,177,1.876,178,1.298,179,1.472,180,1.339,181,1.188,185,1.532,186,2.768,187,1.122,188,2.128,189,2.128,190,2.921,191,3.161,192,3.162,193,2.128,195,2.128,207,3.032,218,4.034,221,1.626,228,1.122,244,1.472,245,0.424,248,1.757,249,1.757,250,1.26,253,1.851,281,2.538,285,1.003,286,1.935,287,1.935,288,1.031,289,2.488,290,1.339,291,1.188,292,2.272,293,1.154,294,1.339,295,1.339,296,1.154,297,1.339,298,1.188,299,1.339,300,1.154,301,1.339,302,1.154,303,1.339,304,1.154,305,0.899,306,1.339,307,1.188,308,1.935,309,1.26,310,1.154,311,1.339,312,1.154,313,1.339,314,1.154,315,1.339,316,1.188,317,1.935,318,1.26,319,1.154,320,1.525,321,2.146,322,1.339,323,1.188,324,1.935,325,1.26,326,1.188,327,0.976,328,1.154,329,1.188,330,1.154,331,1.154,332,1.339,333,1.154,334,1.339,335,1.154,336,1.339,337,1.223,338,1.298,339,1.339,345,4.158,349,4.158,350,4.158,351,3.541,352,4.554,357,3.12,359,3.541,370,4.158,380,4.158,381,3.337,382,3.541,384,4.158,385,3.541,386,2.45,387,1.827,388,1.904,389,1.904,390,2.188,405,2.62,407,2.62,408,2.45,409,2.62,410,2.45,412,2.62,413,2.45,423,3.541,429,3.337,586,2.832,1179,3.144,1545,4.673,1550,4.554,2462,4.092,2953,5.035,2959,4.503,2960,4.503,2968,4.503,2978,2.45,3039,3.116,3040,6.02,3041,5.127,3042,6.02,3043,5.127,3044,3.548,3045,5.127,3046,3.548,3047,3.548,3048,3.548,3049,5.127,3050,3.548,3051,3.548,3052,3.548,3053,3.548,3054,3.548,3055,3.548,3056,3.548,3057,5.127,3058,5.127,3059,3.548,3060,3.548,3061,3.548,3062,3.548]],["title/modules/TokensModule.html",[431,1.138,3063,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.447,245,0.627,285,1.481,319,2.667,321,2.667,387,2.698,388,2.812,389,2.812,431,1.402,433,1.918,434,2.594,435,3.952,436,2.698,437,2.812,438,2.105,443,4.221,445,3.588,446,2.812,447,2.498,449,2.775,450,3.925,451,2.936,453,3.075,455,3.231,458,3.618,465,4.352,466,4.618,467,4.937,468,3.869,469,4.618,470,4.124,471,3.231,472,4.352,473,3.41,474,3.41,475,4.124,476,3.231,477,4.124,478,3.231,479,4.352,480,3.41,486,4.618,487,3.41,2947,3.869,3063,6.414,3064,4.602,3065,4.602,3066,4.602,3067,5.661,3068,5.239,3069,5.239,3070,4.602,3071,4.602,3072,6.687,3073,6.687,3074,5.239,3075,6.687,3076,5.239]],["title/modules/TokensRoutingModule.html",[431,1.138,3067,2.936]],["body/modules/TokensRoutingModule.html",[3,0.164,4,0.131,5,0.115,21,0.011,45,2.578,48,1.412,56,0.164,57,0.007,58,0.009,59,0.007,60,0.007,140,0.5,143,2.274,175,1.14,245,0.743,250,2.207,319,2.417,321,2.417,433,2.274,438,2.496,449,3.083,458,4.291,497,3.647,498,3.79,499,4.164,500,4.361,504,3.832,2947,4.587,3067,5.131,3070,5.457,3071,5.457,3077,6.213]],["title/components/TopbarComponent.html",[175,0.652,323,1.424]],["body/components/TopbarComponent.html",[3,0.129,4,0.103,5,0.09,7,0.389,21,0.01,56,0.129,57,0.006,58,0.008,59,0.006,60,0.006,77,1.068,84,1.531,86,0.763,88,1.631,91,2.075,93,0.666,112,0.815,140,0.296,175,1.091,176,1.585,177,2.334,178,1.782,179,2.021,180,1.838,181,1.631,185,1.906,186,3.27,187,1.54,188,2.647,189,2.647,190,2.995,191,3.255,193,2.647,195,2.647,207,3.47,221,1.573,244,2.021,245,0.583,285,1.377,286,2.407,287,2.407,288,1.416,289,2.848,290,1.838,291,1.631,292,2.684,293,1.585,294,1.838,295,1.838,296,1.585,297,1.838,298,1.631,299,1.838,300,1.585,301,1.838,302,1.585,303,1.838,304,1.585,305,1.234,306,1.838,307,1.631,308,2.407,309,1.73,310,1.585,311,1.838,312,1.585,313,1.838,314,1.585,315,1.838,316,1.631,317,2.407,318,1.73,319,1.585,320,1.234,321,1.585,322,1.838,323,2.527,324,2.407,325,1.73,326,1.631,327,1.34,328,1.585,329,1.631,330,1.585,331,1.585,332,1.838,333,1.585,334,1.838,335,1.585,336,1.838,337,1.679,338,1.782,339,1.838,1370,4.71,3078,4.278,3079,7.112,3080,6.378,3081,4.87,3082,4.87]],["title/components/TopbarStubComponent.html",[175,0.652,325,1.51]],["body/components/TopbarStubComponent.html",[3,0.134,4,0.107,5,0.094,21,0.01,56,0.192,57,0.006,58,0.008,59,0.006,60,0.009,88,1.697,91,2.13,93,0.679,140,0.308,175,1.004,176,1.649,177,2.396,178,2.654,180,1.913,181,1.697,187,1.603,190,2.999,191,3.274,245,0.606,285,1.433,286,2.47,287,2.47,288,1.473,289,2.892,290,1.913,291,1.697,292,2.736,293,1.649,294,1.913,295,1.913,296,1.649,297,1.913,298,1.697,299,1.913,300,1.649,301,1.913,302,1.649,303,1.913,304,1.649,305,1.284,306,1.913,307,1.697,308,2.47,309,2.325,310,1.649,311,1.913,312,1.649,313,1.913,314,1.649,315,1.913,316,1.697,317,2.47,318,2.325,319,1.649,320,1.284,321,1.649,322,1.913,323,1.697,324,2.47,325,2.722,326,1.697,327,1.394,328,1.649,329,1.697,330,1.649,331,1.649,332,1.913,333,1.649,334,1.913,335,1.649,336,1.913,337,1.748,338,1.855,339,1.913,431,1.356,516,2.841,698,3.126,1362,3.743,1368,3.743,1369,5.788,1370,4.834]],["title/classes/Transaction.html",[60,0.005,327,1.169]],["body/classes/Transaction.html",[1,3.912,3,0.139,4,0.111,5,0.098,7,0.42,8,1.222,9,1.09,18,0.69,20,1.468,21,0.011,22,2.159,33,1.869,56,0.139,57,0.006,58,0.008,59,0.006,60,0.01,62,2.046,86,1.01,93,0.492,95,1.924,140,0.319,227,1.616,320,1.869,327,2.029,509,1.924,720,3.451,829,2.946,1082,4.573,1165,4.133,1166,3.421,1167,3.631,1168,3.631,1169,3.631,1170,3.631,1171,3.631,1177,3.631,1178,5.06,1179,2.507,1180,3.421,1181,3.421,1182,3.631,1183,3.631,1184,4.55,1185,4.33,1186,3.631,1187,3.631,1188,3.631,1189,3.421,1190,3.421,3083,5.257,3084,5.257,3085,5.257,3086,5.257,3087,5.257,3088,5.257,3089,5.257,3090,5.257]],["title/components/TransactionDetailsComponent.html",[175,0.652,326,1.424]],["body/components/TransactionDetailsComponent.html",[3,0.077,4,0.114,5,0.054,7,0.429,8,0.809,9,0.722,18,0.515,20,1.247,21,0.011,53,2.738,56,0.077,57,0.003,58,0.005,59,0.003,60,0.003,77,0.743,79,3.249,84,0.955,86,0.924,88,0.978,91,1.444,92,0.787,93,0.723,95,2.899,112,1.137,113,2.744,140,0.412,163,2.573,175,0.824,176,0.95,177,1.625,178,1.069,179,1.212,180,1.102,181,0.978,185,1.327,186,2.468,187,0.924,188,1.842,189,1.842,190,2.865,191,3.091,193,1.842,195,1.842,207,2.757,218,3.645,221,1.479,244,1.212,245,0.35,248,1.446,249,1.446,250,1.038,251,2.157,252,2.157,253,1.65,285,0.826,286,1.675,287,1.675,288,0.849,289,2.263,290,1.102,291,0.978,292,2.026,293,0.95,294,1.102,295,1.102,296,0.95,297,1.102,298,0.978,299,1.102,300,0.95,301,1.102,302,0.95,303,1.102,304,0.95,305,0.74,306,1.102,307,0.978,308,1.675,309,1.038,310,0.95,311,1.102,312,0.95,313,1.102,314,0.95,315,1.102,316,0.978,317,1.675,318,1.038,319,0.95,320,1.888,321,0.95,322,1.102,323,0.978,324,1.675,325,1.038,326,2.008,327,2.282,328,0.95,329,2.008,330,0.95,331,0.95,332,1.102,333,0.95,334,1.102,335,0.95,336,1.102,337,1.007,338,1.069,339,1.102,427,3.066,429,2.889,494,2.332,495,2.017,623,4.428,651,4.353,720,1.504,829,2.488,841,2.332,1179,3.238,1180,2.889,1181,2.889,1184,4.189,1185,3.986,1190,4.42,2457,2.566,2776,3.543,2781,3.278,2948,2.332,2949,4.716,2950,3.899,3091,6.876,3092,6.249,3093,5.369,3094,5.369,3095,5.369,3096,4.439,3097,5.997,3098,5.997,3099,5.997,3100,5.997,3101,5.369,3102,5.997,3103,4.439,3104,2.921,3105,4.439,3106,2.921,3107,2.921,3108,2.921,3109,2.921,3110,2.921,3111,2.921,3112,2.921,3113,2.921,3114,2.332,3115,2.921,3116,2.921,3117,5.369,3118,2.921,3119,2.921,3120,2.921,3121,2.921,3122,2.921,3123,2.921,3124,2.921,3125,2.921,3126,2.921,3127,2.921,3128,2.921,3129,2.921,3130,2.921,3131,2.921,3132,2.921,3133,2.921,3134,5.369,3135,2.921,3136,2.921,3137,5.997,3138,5.997,3139,4.439,3140,5.965,3141,4.439,3142,4.439,3143,6.791,3144,5.997,3145,3.899,3146,4.439,3147,4.439,3148,4.439,3149,3.899,3150,3.899,3151,4.439,3152,4.439,3153,5.997,3154,5.997,3155,5.997,3156,4.439,3157,4.439,3158,4.439,3159,5.997,3160,4.439,3161,4.439,3162,4.439,3163,4.439,3164,5.997,3165,4.439]],["title/injectables/TransactionService.html",[651,2.622,871,1.344]],["body/injectables/TransactionService.html",[3,0.074,4,0.059,5,0.052,7,0.223,8,0.783,9,1.167,18,0.61,19,1.5,20,1.341,21,0.011,22,2.11,33,1.761,37,1.384,42,1.905,48,1.873,49,3.615,56,0.074,57,0.006,58,0.005,59,0.003,60,0.003,68,3.067,77,0.719,79,3.053,84,0.924,86,0.958,91,0.909,92,1.271,93,0.671,95,1.912,112,1.201,113,2.519,134,1.559,140,0.5,141,4.287,144,1.199,145,1.439,147,1.93,152,2.058,163,2.864,217,4.287,221,1.445,228,1.652,245,0.334,251,2.064,252,2.064,253,2.205,305,1.324,327,1.739,329,1.75,357,2.884,391,1.567,392,1.384,393,1.819,394,3.169,509,1.023,521,3.131,542,1.333,638,1.439,650,4.287,651,2.647,720,2.21,744,1.439,810,2.064,871,1.357,874,1.5,889,1.5,905,2.064,906,4.929,928,3.77,936,1.567,962,2.303,1002,2.455,1038,1.439,1069,4.523,1072,4.679,1073,4.929,1082,2.303,1099,2.303,1101,2.231,1108,2.455,1152,3.426,1189,1.819,2615,2.231,2616,1.819,2617,2.231,2622,2.231,2802,4.17,2811,2.231,2812,2.231,2813,2.455,3018,2.455,3020,2.455,3145,2.455,3149,2.455,3150,2.455,3166,2.231,3167,5.224,3168,5.224,3169,5.224,3170,4.292,3171,4.292,3172,4.292,3173,3.77,3174,5.861,3175,3.77,3176,3.77,3177,4.292,3178,4.292,3179,4.292,3180,6.893,3181,2.795,3182,4.292,3183,2.795,3184,4.292,3185,2.795,3186,3.77,3187,2.795,3188,2.795,3189,3.77,3190,2.795,3191,3.77,3192,2.795,3193,4.292,3194,5.861,3195,5.861,3196,2.795,3197,4.292,3198,4.292,3199,2.795,3200,2.795,3201,4.292,3202,2.795,3203,2.795,3204,2.795,3205,2.795,3206,2.795,3207,2.795,3208,2.455,3209,2.795,3210,2.455,3211,2.795,3212,2.795,3213,2.795,3214,2.795,3215,2.795,3216,4.292,3217,2.795,3218,2.455,3219,2.231,3220,2.795,3221,2.795,3222,4.292,3223,4.292,3224,2.795,3225,2.455,3226,5.224,3227,2.795,3228,4.292,3229,5.224,3230,2.795,3231,4.292,3232,3.77,3233,2.795,3234,2.795,3235,2.795,3236,2.795,3237,2.795,3238,2.795,3239,2.795,3240,2.795,3241,4.292,3242,4.292,3243,2.795,3244,2.795,3245,4.292,3246,4.292,3247,2.455,3248,4.292,3249,2.795,3250,2.795,3251,2.795,3252,2.795,3253,2.795,3254,2.795,3255,2.795,3256,2.795,3257,2.795,3258,2.795,3259,2.795,3260,2.795,3261,2.795,3262,2.795,3263,2.795,3264,2.795,3265,2.795,3266,2.795,3267,2.795,3268,2.795,3269,2.795,3270,2.795,3271,2.795,3272,2.795,3273,2.795,3274,2.795,3275,2.795,3276,2.795,3277,2.795,3278,2.795,3279,2.795,3280,2.795,3281,2.795,3282,2.795,3283,2.795,3284,2.795,3285,2.795,3286,2.795,3287,2.795,3288,2.795,3289,2.795,3290,2.795,3291,2.795,3292,2.795,3293,2.795,3294,2.795,3295,2.795]],["title/classes/TransactionServiceStub.html",[60,0.005,3296,3.393]],["body/classes/TransactionServiceStub.html",[3,0.153,4,0.122,5,0.107,7,0.461,9,1.252,18,0.615,21,0.011,22,2.195,56,0.153,57,0.007,58,0.008,59,0.007,60,0.007,62,2.248,77,1.19,86,0.921,92,1.365,93,0.721,112,1.289,134,1.424,140,0.35,221,1.981,327,1.588,516,3.236,521,3.812,542,2.753,720,2.974,844,4.312,1072,4.609,1073,5.685,2833,5.072,3173,6.242,3175,6.242,3176,6.242,3180,6.763,3186,6.242,3189,6.242,3191,6.242,3296,5.673,3297,7.057,3298,5.774,3299,5.072,3300,5.774,3301,5.774]],["title/components/TransactionsComponent.html",[175,0.652,328,1.383]],["body/components/TransactionsComponent.html",[3,0.08,4,0.064,5,0.056,7,0.243,8,0.834,9,0.895,18,0.663,20,1.099,21,0.011,22,1.16,33,1.909,56,0.145,57,0.004,58,0.005,59,0.004,60,0.004,77,0.766,84,0.985,86,0.987,88,1.018,91,1.489,92,0.975,93,0.645,112,1.155,135,2.779,140,0.447,152,0.989,175,0.844,176,0.989,177,1.675,178,1.113,179,1.262,180,1.148,181,1.018,185,1.368,186,2.53,187,0.962,188,1.899,189,1.899,190,2.877,191,3.106,192,2.822,193,1.899,195,1.899,207,2.814,217,4.414,221,1.948,228,1.935,244,1.262,245,0.364,248,1.506,249,1.506,253,1.691,272,1.979,281,2.266,285,0.86,286,1.727,287,1.727,288,0.884,289,2.31,290,1.148,291,1.018,292,2.076,293,0.989,294,1.148,295,1.148,296,0.989,297,1.148,298,1.018,299,1.148,300,0.989,301,1.148,302,0.989,303,1.148,304,0.989,305,0.771,306,1.148,307,1.018,308,1.727,309,1.08,310,0.989,311,1.148,312,0.989,313,1.148,314,0.989,315,1.148,316,1.018,317,1.727,318,1.08,319,0.989,320,0.771,321,0.989,322,1.148,323,1.018,324,1.727,325,1.08,326,1.018,327,2.072,328,1.992,329,2.645,330,0.989,331,0.989,332,1.148,333,0.989,334,1.148,335,0.989,336,1.148,337,1.049,338,1.113,339,1.148,345,3.8,346,4.832,348,4.832,349,3.8,350,3.8,351,3.16,352,4.227,359,3.16,370,3.8,372,4.227,374,4.886,376,3.653,377,4.019,378,2.686,380,3.8,381,2.978,382,3.16,384,3.8,385,3.16,386,2.1,387,1.566,388,1.632,389,1.632,390,1.876,391,1.704,392,1.506,393,1.979,408,3.16,410,3.16,413,2.1,422,3.653,423,3.16,427,3.16,429,3.984,651,4.414,1059,5.092,1184,3.775,1185,3.593,2665,3.653,3225,2.671,3247,4.019,3302,2.671,3303,5.502,3304,5.502,3305,4.576,3306,5.502,3307,5.502,3308,5.502,3309,5.502,3310,6.121,3311,6.121,3312,4.576,3313,3.041,3314,4.576,3315,3.041,3316,3.041,3317,3.041,3318,3.041,3319,3.041,3320,4.576,3321,3.041,3322,3.041,3323,3.041,3324,3.041,3325,3.041,3326,3.041,3327,3.041,3328,3.041,3329,3.041,3330,3.041,3331,3.041,3332,4.576,3333,3.041,3334,3.041,3335,4.576,3336,4.576,3337,3.041,3338,3.041,3339,3.041,3340,3.041,3341,4.576,3342,4.576,3343,3.041,3344,3.041,3345,6.121,3346,4.576,3347,4.576,3348,4.576,3349,4.576,3350,4.576,3351,4.576,3352,4.576]],["title/modules/TransactionsModule.html",[431,1.138,444,2.936]],["body/modules/TransactionsModule.html",[3,0.135,4,0.108,5,0.095,21,0.011,56,0.135,57,0.006,58,0.008,59,0.006,60,0.006,140,0.538,143,2.403,245,0.609,285,1.44,326,2.898,328,2.647,387,2.623,388,2.733,389,2.733,431,1.363,433,1.864,434,2.522,435,3.9,436,2.623,437,2.733,438,2.92,443,4.19,444,6.005,445,3.524,446,2.733,447,2.429,449,2.725,450,3.854,451,2.855,453,2.99,455,3.141,458,3.518,459,5.242,460,2.99,461,3.761,465,4.274,466,4.535,467,4.849,468,3.761,469,4.535,470,4.05,471,3.141,472,4.274,473,3.315,474,3.315,475,4.05,476,3.141,477,4.05,478,3.141,479,4.274,480,3.315,481,4.535,482,3.518,486,4.535,487,3.315,493,5.768,494,4.066,495,3.518,3092,4.066,3353,4.474,3354,4.474,3355,4.474,3356,4.474,3357,5.619,3358,5.093,3359,5.093,3360,4.474,3361,5.093]],["title/modules/TransactionsRoutingModule.html",[431,1.138,3357,2.936]],["body/modules/TransactionsRoutingModule.html",[3,0.168,4,0.135,5,0.118,21,0.011,48,1.45,56,0.168,57,0.008,58,0.009,59,0.008,60,0.008,140,0.488,143,2.334,175,0.979,245,0.763,250,2.265,328,2.456,433,2.334,438,2.563,449,3.132,497,3.744,498,3.832,499,4.23,500,3.744,504,3.934,3357,5.212,3360,5.602,3362,6.378]],["title/classes/Tx.html",[60,0.005,1082,2.281]],["body/classes/Tx.html",[1,3.748,3,0.143,4,0.115,5,0.101,7,0.434,8,1.247,18,0.661,20,1.462,21,0.011,22,2.201,33,1.376,56,0.143,57,0.006,58,0.008,59,0.006,60,0.01,62,2.114,86,0.97,93,0.508,95,1.988,140,0.33,227,2.103,320,1.376,327,1.882,509,1.988,720,3.523,829,4.198,1082,4.507,1165,4.219,1166,3.535,1167,3.751,1168,3.751,1169,3.751,1170,3.751,1171,3.751,1177,3.751,1178,4.998,1179,2.59,1180,4.874,1181,4.874,1182,5.172,1183,5.172,1184,3.35,1185,3.188,1186,3.751,1187,3.751,1188,3.751,1189,3.535,1190,3.535,3363,5.431,3364,5.431,3365,5.431,3366,5.431,3367,5.431]],["title/classes/TxToken.html",[60,0.005,1178,2.622]],["body/classes/TxToken.html",[1,3.782,3,0.147,4,0.118,5,0.103,7,0.445,8,1.267,18,0.634,20,1.477,21,0.011,22,2.163,33,1.411,56,0.147,57,0.007,58,0.008,59,0.007,60,0.01,62,2.167,86,0.906,93,0.709,95,2.772,140,0.338,227,1.711,320,1.411,327,1.911,509,2.038,720,3.578,829,3.12,1082,4.467,1165,4.285,1166,3.624,1167,3.845,1168,3.845,1169,3.845,1170,3.845,1171,3.845,1177,3.845,1178,5.134,1179,3.611,1180,3.624,1181,3.624,1182,3.845,1183,3.845,1184,3.434,1185,3.268,1186,3.845,1187,3.845,1188,3.845,1189,3.624,1190,3.624,3368,5.567,3369,5.567,3370,5.567]],["title/classes/UserServiceStub.html",[60,0.005,3371,3.393]],["body/classes/UserServiceStub.html",[3,0.077,4,0.061,5,0.054,7,0.232,8,0.805,9,0.972,11,4.32,14,4.754,16,1.625,18,0.654,19,1.556,20,1.245,21,0.011,22,1.629,27,1.887,28,1.887,33,1.118,45,3.557,51,2.652,56,0.077,57,0.003,58,0.005,59,0.003,60,0.003,62,1.129,77,0.739,86,0.81,92,1.059,93,0.755,95,2.821,112,1,114,2.577,123,2.922,134,1.473,140,0.176,144,1.244,171,4.676,228,1.396,282,5.148,320,1.118,374,6.152,378,3.506,505,4.288,507,4.691,508,4.479,509,3.11,516,1.625,521,2.646,538,2.547,542,1.382,551,2.591,554,3.478,556,3.523,562,4.32,608,6.184,609,5.247,668,4.677,800,1.382,817,3.048,832,3.684,844,3.778,857,2.722,1096,4.176,1529,4.768,1530,6.052,1531,4.768,1532,5.358,1533,3.523,1534,3.523,1535,4.768,1536,3.523,1537,4.126,1538,3.523,1539,3.523,1540,3.523,1541,4.411,1542,3.523,1543,3.259,1544,3.523,1693,3.523,1788,3.523,1808,3.523,1819,3.523,1977,2.314,2009,3.523,2015,3.523,2083,2.314,2091,4.266,2401,5.62,2402,4.768,2423,3.877,2885,3.946,3299,2.547,3371,3.523,3372,6.184,3373,4.414,3374,4.414,3375,2.899,3376,5.344,3377,5.344,3378,5.344,3379,7.707,3380,5.344,3381,5.344,3382,7.707,3383,7.707,3384,4.414,3385,4.414,3386,4.414,3387,4.414,3388,4.414,3389,4.414,3390,4.414,3391,4.414,3392,4.414,3393,4.414,3394,4.414,3395,4.414,3396,4.414,3397,4.414,3398,4.414,3399,4.414,3400,4.414,3401,4.414,3402,4.414,3403,4.414,3404,4.414,3405,4.414,3406,2.899,3407,4.414,3408,2.899,3409,4.414,3410,2.899,3411,2.899,3412,4.414,3413,2.899,3414,2.899,3415,2.899,3416,2.899,3417,2.899,3418,2.899,3419,2.899,3420,2.899,3421,2.899,3422,2.547,3423,2.899]],["title/classes/W3.html",[60,0.005,2855,3.139]],["body/classes/W3.html",[3,0.165,4,0.132,5,0.116,7,0.499,8,1.359,18,0.596,21,0.011,44,4.625,56,0.165,57,0.007,58,0.009,59,0.007,60,0.009,62,2.433,68,3.669,86,0.892,273,5.149,1077,4.179,2852,4.989,2853,6.549,2854,5.49,2855,6.227,2856,5.49,2860,7.249,2862,5.49,3424,6.25,3425,6.25]],["title/coverage.html",[3426,4.648]],["body/coverage.html",[0,2.025,1,1.28,5,0.05,6,4.04,12,1.329,18,0.214,19,2.232,21,0.011,37,1.329,40,1.44,46,1.747,49,1.655,51,4,57,0.003,58,0.005,59,0.003,60,0.01,61,2.143,63,4.066,104,1.747,141,2.566,144,2.185,147,2.873,152,0.873,175,1.27,176,0.873,182,3.654,183,1.982,184,2.358,217,1.655,231,1.655,288,1.804,291,0.899,293,0.873,296,0.873,298,0.899,300,0.873,302,0.873,304,0.873,305,1.291,307,0.899,309,0.953,310,0.873,312,0.873,314,0.873,316,0.899,318,0.953,319,0.873,320,0.68,321,0.873,323,0.899,325,0.953,326,0.899,327,0.738,328,0.873,331,0.873,333,0.873,335,0.873,337,0.926,340,2.358,344,1.854,357,1.114,378,4.155,390,1.655,431,1.363,457,2.143,463,1.982,505,1.44,506,3.962,510,1.575,512,1.655,513,2.143,514,2.358,515,1.504,516,3.967,550,2.358,554,1.747,581,1.747,622,1.504,637,2.358,650,1.655,651,1.655,652,1.747,720,1.382,729,1.854,730,1.747,731,1.854,732,1.854,745,1.982,746,1.854,752,1.747,776,2.358,800,2.428,814,3.734,834,2.566,836,2.358,844,2.733,871,2.348,890,2.358,891,1.575,939,1.854,1059,1.982,1060,2.358,1061,2.358,1069,1.747,1077,1.504,1082,1.44,1165,1.655,1166,4.04,1178,1.655,1198,2.358,1199,2.358,1202,1.982,1203,1.982,1205,1.982,1207,1.982,1244,2.358,1245,2.358,1260,2.143,1261,2.358,1280,2.358,1281,1.982,1282,2.358,1296,2.358,1297,2.358,1315,2.358,1361,2.358,1368,3.761,1371,3.32,1372,3.32,1418,2.358,1419,2.358,1426,2.358,1442,2.358,1457,2.358,1497,3.32,1498,2.358,1511,3.32,1521,1.982,1522,5.928,1523,5.928,1545,1.575,2077,2.143,2284,2.566,2391,2.143,2396,2.143,2418,5.801,2501,4.02,2502,3.761,2575,1.575,2576,1.982,2650,2.358,2684,1.854,2685,3.734,2704,1.854,2742,2.358,2773,2.358,2793,2.358,2800,2.143,2814,2.143,2815,2.358,2829,2.358,2830,2.143,2840,1.854,2842,2.358,2852,3.32,2855,1.982,2863,2.358,2918,1.854,2929,2.358,2942,2.358,2945,2.358,2946,2.358,2947,1.982,2948,4.066,2953,1.854,2971,2.358,2972,2.358,2978,1.854,2979,4.066,2980,4.066,2988,2.358,3006,2.358,3034,2.143,3035,2.358,3039,2.358,3078,2.358,3091,2.358,3092,2.143,3114,2.143,3166,3.32,3296,2.143,3297,2.358,3302,2.358,3371,2.143,3372,2.358,3426,2.143,3427,2.684,3428,2.684,3429,2.684,3430,8.316,3431,5.737,3432,2.684,3433,4.16,3434,2.358,3435,2.358,3436,2.358,3437,8.584,3438,2.358,3439,2.358,3440,5.737,3441,8.079,3442,3.654,3443,4.955,3444,2.358,3445,6.85,3446,2.358,3447,2.358,3448,4.066,3449,2.358,3450,2.358,3451,2.358,3452,3.654,3453,3.654,3454,2.358,3455,2.358,3456,6.207,3457,6.207,3458,5.093,3459,5.093,3460,4.16,3461,4.16,3462,2.684,3463,5.737,3464,4.16,3465,2.684,3466,4.16,3467,3.654,3468,2.684,3469,2.684,3470,2.684,3471,2.684,3472,4.16,3473,2.358,3474,2.358,3475,2.358,3476,2.358,3477,2.684,3478,2.684]],["title/dependencies.html",[434,2.534,3479,3.54]],["body/dependencies.html",[19,2.94,21,0.011,37,2.713,42,2.432,57,0.007,58,0.008,59,0.007,141,3.379,245,0.656,247,2.94,250,1.946,434,2.713,436,2.822,451,3.071,460,3.216,461,4.046,542,2.613,585,4.813,735,5.491,736,4.038,749,4.374,750,4.374,829,3.071,962,4.035,1099,3.692,2575,3.216,2759,4.813,2760,4.813,3208,4.813,3210,4.813,3219,4.374,3480,7.474,3481,5.479,3482,6.879,3483,5.479,3484,5.479,3485,5.479,3486,5.479,3487,5.479,3488,5.479,3489,5.479,3490,5.479,3491,5.479,3492,5.479,3493,5.479,3494,5.479,3495,5.479,3496,5.479,3497,5.479,3498,5.479,3499,6.879,3500,5.479,3501,6.879,3502,6.879,3503,5.479,3504,5.479,3505,5.479,3506,5.479,3507,5.479,3508,5.479,3509,5.479,3510,5.479,3511,5.479,3512,5.479,3513,5.479,3514,5.479,3515,5.479,3516,5.479,3517,5.479,3518,5.479,3519,5.479,3520,5.479,3521,5.479,3522,5.479,3523,5.479,3524,5.479,3525,5.479]],["title/miscellaneous/functions.html",[2448,4.086,3526,2.304]],["body/miscellaneous/functions.html",[7,0.427,9,1.378,18,0.644,19,2.87,20,0.895,21,0.011,22,1.355,42,2.374,57,0.006,58,0.008,59,0.006,92,1.501,93,0.793,112,1.431,113,2.556,135,2.556,221,1.834,227,1.644,390,4.178,953,4.268,2448,4.268,2781,3.948,2800,5.935,3114,5.407,3434,4.697,3435,5.95,3436,5.95,3438,4.697,3439,5.95,3442,4.697,3443,6.577,3444,5.95,3446,4.697,3447,5.95,3448,4.268,3449,5.95,3450,5.95,3452,4.697,3453,6.531,3454,5.95,3455,5.95,3526,3.48,3527,5.347,3528,5.347,3529,6.774,3530,5.347,3531,5.95,3532,6.774,3533,5.347,3534,5.347,3535,5.347,3536,5.347,3537,6.774,3538,6.774,3539,5.347,3540,5.347,3541,5.347,3542,5.347,3543,5.347,3544,5.347,3545,5.347,3546,5.347]],["title/index.html",[7,0.283,3547,3.109,3548,3.109]],["body/index.html",[4,0.104,5,0.133,21,0.009,39,3.032,57,0.006,58,0.008,59,0.006,73,3.032,88,1.646,93,0.709,144,3.457,152,2.088,175,1.096,178,1.799,191,2.349,228,1.555,276,3.924,329,1.646,395,2.638,431,2.197,433,1.799,447,2.344,460,4.73,515,3.597,522,5.276,539,5.95,551,2.886,670,3.63,694,4.318,780,4.318,809,4.318,818,4.318,832,3.032,856,3.63,859,3.924,962,2.638,1099,2.638,1239,5.637,1341,3.2,1459,5.637,1722,5.703,2407,5.123,2885,3.63,3480,4.318,3549,4.916,3550,4.916,3551,6.418,3552,4.916,3553,7.857,3554,7.46,3555,7.574,3556,5.637,3557,4.916,3558,4.916,3559,5.637,3560,4.916,3561,4.916,3562,4.916,3563,4.916,3564,4.318,3565,4.916,3566,4.318,3567,4.916,3568,7.857,3569,6.902,3570,4.916,3571,4.916,3572,4.318,3573,4.916,3574,7.574,3575,6.433,3576,7.145,3577,6.418,3578,4.916,3579,4.916,3580,5.637,3581,4.916,3582,4.916,3583,4.916,3584,4.916,3585,4.916,3586,4.916,3587,5.637,3588,5.637,3589,6.418,3590,7.574,3591,4.916,3592,5.637,3593,4.916,3594,6.653,3595,4.916,3596,4.916,3597,4.916,3598,4.318,3599,4.916,3600,4.916,3601,4.916,3602,4.916,3603,4.916,3604,4.916,3605,4.318,3606,4.318,3607,3.924,3608,4.916,3609,4.916]],["title/license.html",[3547,3.109,3548,3.109,3610,3.109]],["body/license.html",[0,1.04,2,1.01,4,0.16,5,0.031,17,1.171,18,0.132,21,0.002,22,0.419,29,0.432,39,4.167,42,1.01,57,0.002,58,0.002,59,0.002,60,0.001,72,2.069,73,2.652,74,2.119,77,0.152,78,3.48,86,0.109,89,2.069,95,0.332,102,0.797,116,0.797,120,2.404,121,1.679,122,3.65,124,3.206,131,1.319,134,0.224,140,0.055,152,1.3,171,2.008,175,0.5,221,0.224,253,0.279,276,0.724,283,1.824,327,1.099,372,1.571,376,0.724,391,0.926,427,0.626,447,0.432,503,0.59,509,2.097,522,4.934,525,2.237,526,0.59,528,0.797,543,1.451,544,1.451,554,0.59,562,0.508,581,0.59,596,0.797,622,0.508,623,1.22,655,0.724,663,1.075,668,2.249,679,0.67,684,0.724,686,2.249,701,0.67,762,2.404,800,0.432,832,2.008,837,1.319,839,2.695,844,0.886,856,1.22,857,2.652,858,0.724,861,3.844,863,2.237,864,4.177,872,3.65,873,4.019,962,0.487,978,0.797,979,1.451,1012,0.797,1013,2.404,1015,0.797,1016,1.319,1017,1.319,1038,0.467,1073,1.22,1096,2.008,1099,0.487,1139,0.797,1141,1.451,1185,1.645,1235,1.816,1237,1.451,1241,0.67,1250,4.422,1254,2.914,1341,4.734,1342,0.724,1343,0.797,1351,1.319,1358,1.998,1411,5.27,1489,1.451,1517,0.797,1537,1.571,1541,0.67,1585,0.724,1605,0.724,1651,1.679,1742,0.724,1761,0.724,1790,0.724,1796,0.724,1805,0.724,1814,6.725,1816,3.844,2037,0.724,2038,2.914,2279,0.724,2407,2.599,2410,1.451,2411,1.451,2443,0.797,2444,2.462,2447,1.998,2526,0.626,2574,4.746,2589,1.319,2601,1.816,2602,1.319,2651,1.22,2665,0.724,2672,2.86,2677,0.797,2706,4.321,2748,1.816,2830,0.724,2878,1.998,2885,3.376,2894,0.797,3140,0.797,3232,1.451,3422,1.451,3426,1.319,3476,0.797,3554,3.777,3556,2.462,3559,0.797,3564,2.462,3566,2.462,3569,0.797,3572,0.797,3580,3.206,3588,1.998,3592,0.797,3594,0.797,3598,1.998,3605,3.777,3606,3.51,3610,7.445,3611,6.228,3612,0.907,3613,0.907,3614,2.274,3615,7.073,3616,4.301,3617,6.331,3618,6.894,3619,3.65,3620,0.907,3621,0.907,3622,1.652,3623,3.256,3624,6.756,3625,3.256,3626,2.274,3627,5.579,3628,2.274,3629,0.907,3630,0.907,3631,0.907,3632,1.652,3633,5.233,3634,3.65,3635,0.907,3636,3.65,3637,0.907,3638,0.907,3639,4.301,3640,0.907,3641,0.907,3642,0.907,3643,5.579,3644,7.755,3645,5.579,3646,2.274,3647,2.274,3648,1.652,3649,1.652,3650,3.995,3651,3.995,3652,5.579,3653,3.256,3654,0.907,3655,2.803,3656,4.301,3657,1.652,3658,4.301,3659,2.274,3660,0.907,3661,1.652,3662,0.907,3663,2.274,3664,6.228,3665,3.256,3666,1.652,3667,2.803,3668,0.907,3669,0.907,3670,1.652,3671,2.803,3672,2.803,3673,5.233,3674,1.652,3675,6.427,3676,1.652,3677,2.803,3678,3.995,3679,3.256,3680,0.907,3681,4.301,3682,3.256,3683,7.178,3684,2.274,3685,3.995,3686,0.907,3687,0.907,3688,4.301,3689,1.652,3690,5.035,3691,4.815,3692,3.256,3693,1.652,3694,0.907,3695,0.907,3696,5.73,3697,1.652,3698,0.907,3699,5.414,3700,1.652,3701,0.907,3702,2.274,3703,0.907,3704,0.907,3705,0.907,3706,0.907,3707,0.907,3708,0.907,3709,0.907,3710,0.907,3711,0.907,3712,0.907,3713,1.652,3714,0.907,3715,0.907,3716,0.907,3717,1.652,3718,1.652,3719,0.907,3720,0.907,3721,1.652,3722,1.652,3723,5.579,3724,0.907,3725,1.652,3726,1.652,3727,0.907,3728,0.907,3729,1.652,3730,2.274,3731,1.652,3732,2.274,3733,0.907,3734,0.907,3735,3.65,3736,0.907,3737,0.907,3738,3.256,3739,0.907,3740,0.907,3741,2.803,3742,0.907,3743,0.907,3744,1.652,3745,2.274,3746,0.907,3747,0.907,3748,4.572,3749,0.907,3750,5.579,3751,2.803,3752,3.256,3753,3.65,3754,2.274,3755,0.907,3756,2.274,3757,6.117,3758,1.652,3759,0.907,3760,0.907,3761,0.907,3762,2.274,3763,7.643,3764,4.815,3765,0.907,3766,0.907,3767,1.652,3768,1.652,3769,0.907,3770,4.815,3771,0.907,3772,2.803,3773,4.301,3774,0.907,3775,2.274,3776,2.274,3777,1.652,3778,3.65,3779,7.548,3780,2.274,3781,4.572,3782,2.803,3783,3.995,3784,1.652,3785,0.907,3786,1.652,3787,2.274,3788,4.572,3789,2.803,3790,0.907,3791,1.652,3792,1.652,3793,2.803,3794,2.803,3795,0.907,3796,2.274,3797,0.907,3798,6.827,3799,1.652,3800,0.907,3801,4.301,3802,0.907,3803,2.274,3804,5.73,3805,2.803,3806,1.652,3807,4.301,3808,5.035,3809,3.65,3810,0.907,3811,0.907,3812,4.301,3813,0.907,3814,1.652,3815,5.414,3816,0.907,3817,1.652,3818,2.274,3819,0.907,3820,2.274,3821,0.907,3822,0.907,3823,0.907,3824,0.907,3825,2.274,3826,2.274,3827,0.907,3828,0.907,3829,0.907,3830,1.652,3831,0.907,3832,2.274,3833,2.274,3834,3.65,3835,2.274,3836,2.274,3837,0.907,3838,0.907,3839,3.256,3840,3.65,3841,0.907,3842,0.907,3843,0.907,3844,0.907,3845,2.274,3846,0.907,3847,0.907,3848,0.907,3849,0.907,3850,0.907,3851,1.652,3852,0.907,3853,6.602,3854,4.301,3855,0.907,3856,1.652,3857,0.907,3858,0.907,3859,1.652,3860,1.652,3861,0.907,3862,0.907,3863,0.907,3864,1.652,3865,2.274,3866,0.907,3867,1.652,3868,0.907,3869,0.907,3870,0.907,3871,0.907,3872,4.815,3873,3.995,3874,2.803,3875,0.907,3876,3.256,3877,0.907,3878,1.652,3879,0.907,3880,0.907,3881,2.274,3882,0.907,3883,0.907,3884,0.907,3885,2.274,3886,2.274,3887,0.907,3888,0.907,3889,1.652,3890,1.652,3891,1.652,3892,0.907,3893,1.652,3894,0.907,3895,0.907,3896,0.907,3897,0.907,3898,0.907,3899,0.907,3900,2.274,3901,0.907,3902,0.907,3903,5.73,3904,0.907,3905,0.907,3906,0.907,3907,3.256,3908,3.256,3909,0.907,3910,0.907,3911,2.274,3912,0.907,3913,0.907,3914,2.803,3915,0.907,3916,1.652,3917,0.907,3918,0.907,3919,0.907,3920,0.907,3921,0.907,3922,1.652,3923,1.652,3924,0.907,3925,2.274,3926,0.907,3927,0.907,3928,1.652,3929,0.907,3930,0.907,3931,0.907,3932,0.907,3933,1.652,3934,1.652,3935,1.652,3936,1.652,3937,3.65,3938,0.907,3939,0.907,3940,1.652,3941,2.274,3942,2.274,3943,2.803,3944,2.803,3945,2.274,3946,2.803,3947,1.652,3948,0.907,3949,3.256,3950,3.256,3951,0.907,3952,1.652,3953,1.652,3954,3.256,3955,1.652,3956,2.803,3957,2.803,3958,2.274,3959,5.579,3960,3.256,3961,0.907,3962,0.907,3963,0.907,3964,2.274,3965,1.652,3966,1.652,3967,0.907,3968,0.907,3969,0.907,3970,1.652,3971,0.907,3972,0.907,3973,0.907,3974,2.274,3975,0.907,3976,0.907,3977,1.652,3978,2.274,3979,0.907,3980,1.652,3981,0.907,3982,2.274,3983,0.907,3984,0.907,3985,1.652,3986,1.652,3987,3.65,3988,6.427,3989,2.274,3990,1.652,3991,1.652,3992,1.652,3993,1.652,3994,2.803,3995,1.652,3996,0.907,3997,0.907,3998,0.907,3999,0.907,4000,3.65,4001,1.652,4002,0.907,4003,0.907,4004,0.907,4005,0.907,4006,1.652,4007,0.907,4008,1.652,4009,0.907,4010,3.256,4011,2.803,4012,0.907,4013,0.907,4014,0.907,4015,0.907,4016,0.907,4017,0.907,4018,0.907,4019,0.907,4020,0.907,4021,2.274,4022,3.256,4023,2.803,4024,2.803,4025,1.652,4026,0.907,4027,0.907,4028,1.652,4029,0.907,4030,0.907,4031,0.907,4032,1.652,4033,0.907,4034,0.907,4035,2.803,4036,0.907,4037,1.652,4038,0.907,4039,1.652,4040,0.907,4041,0.907,4042,2.274,4043,0.907,4044,0.907,4045,0.907,4046,0.907,4047,0.907,4048,1.652,4049,0.907,4050,0.907,4051,0.907,4052,0.907,4053,0.907,4054,2.274,4055,0.907,4056,0.907,4057,0.907,4058,0.907,4059,3.256,4060,0.907,4061,0.907,4062,2.803,4063,0.907,4064,0.907,4065,0.907,4066,0.907,4067,0.907,4068,0.907,4069,0.907,4070,1.652,4071,2.274,4072,0.907,4073,0.907,4074,0.907,4075,2.274,4076,0.907,4077,0.907,4078,2.274,4079,0.907,4080,1.652,4081,0.907,4082,0.907,4083,0.907,4084,0.907,4085,0.907,4086,0.907,4087,0.907,4088,0.907,4089,0.907,4090,0.907,4091,1.652,4092,0.907,4093,0.907,4094,0.907,4095,1.652,4096,1.652,4097,0.907,4098,0.907,4099,2.274,4100,0.907,4101,2.274,4102,1.652,4103,0.907,4104,1.652,4105,1.652,4106,0.907,4107,2.274,4108,3.995,4109,0.907,4110,1.652,4111,1.652,4112,0.907,4113,1.652,4114,0.907,4115,0.907,4116,0.907,4117,0.907,4118,0.907,4119,1.652,4120,0.907,4121,2.803,4122,0.907,4123,3.256,4124,0.907,4125,0.907,4126,0.907,4127,0.907,4128,0.907,4129,1.652,4130,1.652,4131,1.652,4132,2.274,4133,0.907,4134,1.652,4135,1.652,4136,0.907,4137,2.274,4138,0.907,4139,1.652,4140,0.907,4141,1.652,4142,0.907,4143,1.652,4144,0.907,4145,0.907,4146,1.652,4147,6.602,4148,1.652,4149,0.907,4150,3.256,4151,4.815,4152,2.274,4153,0.907,4154,0.907,4155,0.907,4156,2.803,4157,0.907,4158,0.907,4159,2.274,4160,1.652,4161,0.907,4162,0.907,4163,0.907,4164,0.907,4165,0.907,4166,0.907,4167,0.907,4168,0.907,4169,2.803,4170,1.652,4171,1.652,4172,0.907,4173,0.907,4174,2.274,4175,0.907,4176,1.652,4177,2.274,4178,1.652,4179,0.907,4180,0.907,4181,0.907,4182,0.907,4183,1.652,4184,2.274,4185,0.907,4186,0.907,4187,1.652,4188,0.907,4189,0.907,4190,0.907,4191,0.907,4192,0.907,4193,0.907,4194,2.274,4195,1.652,4196,0.907,4197,0.907,4198,2.803,4199,0.907,4200,2.274,4201,0.907,4202,0.907,4203,1.652,4204,0.907,4205,0.907,4206,0.907,4207,2.274,4208,1.652,4209,0.907,4210,3.995,4211,1.652,4212,2.274,4213,2.803,4214,0.907,4215,0.907,4216,1.652,4217,0.907,4218,2.274,4219,0.907,4220,1.652,4221,0.907,4222,0.907,4223,0.907,4224,0.907,4225,2.274,4226,0.907,4227,1.652,4228,2.274,4229,1.652,4230,0.907,4231,1.652,4232,0.907,4233,0.907,4234,1.652,4235,1.652,4236,0.907,4237,0.907,4238,1.652,4239,0.907,4240,0.907,4241,0.907,4242,0.907,4243,0.907,4244,0.907,4245,0.907,4246,0.907,4247,0.907,4248,0.907,4249,1.652,4250,2.274,4251,0.907,4252,0.907,4253,0.907,4254,0.907,4255,0.907,4256,1.652,4257,0.907,4258,0.907,4259,0.907,4260,0.907,4261,0.907,4262,0.907,4263,0.907,4264,0.907,4265,0.907,4266,0.907,4267,0.907,4268,0.907,4269,0.907,4270,2.803,4271,0.907,4272,1.652,4273,0.907,4274,0.907,4275,0.907,4276,0.907,4277,0.907,4278,0.907,4279,0.907,4280,0.907,4281,0.907,4282,0.907,4283,2.274,4284,0.907,4285,0.797,4286,0.907,4287,0.907,4288,1.652,4289,0.907,4290,0.907,4291,0.907,4292,0.907,4293,0.907,4294,1.652,4295,1.652,4296,2.274,4297,0.907,4298,1.652,4299,0.907,4300,0.907,4301,0.907,4302,0.907,4303,2.274,4304,1.652,4305,0.907,4306,1.652,4307,1.652,4308,1.652,4309,0.907,4310,0.907,4311,0.907,4312,0.907,4313,0.907,4314,0.907,4315,1.652,4316,0.907,4317,0.907,4318,1.652,4319,0.907,4320,2.274,4321,0.907,4322,0.907,4323,0.907,4324,0.907,4325,0.907,4326,0.907,4327,0.907,4328,0.907,4329,0.907,4330,0.907,4331,0.907,4332,0.907,4333,0.907,4334,0.907,4335,1.652,4336,0.907,4337,0.907,4338,0.907,4339,0.907,4340,0.907,4341,0.907,4342,0.907,4343,0.907,4344,0.907,4345,0.907,4346,0.907,4347,0.907,4348,0.907,4349,0.907,4350,0.907,4351,0.907,4352,0.907,4353,2.274,4354,1.652,4355,0.907,4356,0.907,4357,0.907,4358,0.907,4359,0.907,4360,1.652,4361,0.907,4362,0.907,4363,1.652,4364,1.652,4365,0.907,4366,0.907,4367,0.907,4368,0.907,4369,0.907,4370,0.907,4371,0.907,4372,0.907,4373,0.907,4374,0.907,4375,0.907,4376,0.907,4377,0.907,4378,0.907,4379,0.907,4380,0.907,4381,0.907,4382,0.907,4383,0.907,4384,0.907,4385,0.907,4386,0.907,4387,0.907,4388,0.907,4389,0.907,4390,0.907]],["title/modules.html",[433,2.131]],["body/modules.html",[21,0.009,57,0.007,58,0.009,59,0.007,122,6.901,432,4.403,433,2.182,442,4.118,443,3.071,444,4.118,628,4.403,632,4.118,722,4.403,728,4.118,736,5.111,878,4.403,882,4.118,2748,6.951,2750,4.403,2754,4.118,2901,4.403,2905,4.118,3063,4.403,3067,4.118,3357,4.118,4391,8.708,4392,8.95,4393,8.645]],["title/overview.html",[3607,4.648]],["body/overview.html",[2,1.701,21,0.011,57,0.005,58,0.006,59,0.005,62,1.492,176,2.045,177,1.402,285,1.083,291,2.104,293,2.045,296,2.045,298,2.575,300,2.045,302,2.045,304,2.045,307,2.575,310,2.045,312,2.045,314,2.045,316,2.575,319,2.045,321,2.045,323,2.575,326,2.575,328,2.045,330,1.247,331,2.502,333,2.045,335,2.045,372,2.646,431,1.025,432,6.269,433,1.402,434,1.897,435,2.056,436,1.973,437,2.056,438,1.54,439,3.366,440,3.366,441,3.366,442,4.34,443,4.551,444,5.709,445,2.907,446,2.056,447,1.827,498,1.827,628,5.799,629,3.366,630,3.366,631,3.366,632,4.34,722,6.299,723,3.366,724,3.366,725,3.366,726,3.366,727,3.366,728,4.34,729,4.34,730,4.09,731,4.34,732,4.34,835,3.059,878,5.799,879,3.366,880,3.366,881,3.366,882,4.34,889,2.056,1096,3.341,1537,2.646,1553,3.059,2750,5.799,2751,3.366,2752,3.366,2753,3.366,2754,4.34,2840,5.31,2841,3.059,2901,5.979,2902,3.366,2903,3.366,2904,3.366,2905,4.34,2915,3.366,2916,3.366,2917,3.366,2918,5.31,3063,5.979,3064,3.366,3065,3.366,3066,3.366,3067,4.34,3353,3.366,3354,3.366,3355,3.366,3356,3.366,3357,4.34,3607,3.059,4285,3.366,4394,3.832,4395,3.832,4396,3.832]],["title/routes.html",[498,2.776]],["body/routes.html",[21,0.01,57,0.008,58,0.01,59,0.008,498,3.335]],["title/miscellaneous/typealiases.html",[3526,2.304,4397,5.118]],["body/miscellaneous/typealiases.html",[7,0.545,18,0.627,21,0.009,23,4.714,40,4.214,57,0.008,58,0.009,59,0.008,2501,4.007,2685,5.11,3526,4.443,4398,6.826,4399,5.996]],["title/miscellaneous/variables.html",[3526,2.304,3575,4.086]],["body/miscellaneous/variables.html",[1,0.702,6,0.958,7,0.118,11,2.519,13,1.017,14,0.908,15,1.017,16,0.825,17,3.578,18,0.578,19,2.412,21,0.011,22,0.373,23,1.017,24,1.017,25,1.017,26,1.017,27,0.958,28,0.958,29,1.9,30,1.017,32,0.908,33,1.958,34,1.017,35,1.017,36,1.017,37,0.729,38,1.017,39,0.908,42,0.653,45,2.04,47,0.79,49,1.566,50,0.958,51,1.487,52,2.593,53,1.566,54,1.566,55,1.017,57,0.002,58,0.003,59,0.002,63,1.175,68,1.491,73,1.566,89,1.875,91,0.479,93,0.754,94,2.027,95,1.799,114,1.645,123,1.866,135,2.282,141,3.032,144,2.26,146,2.027,147,3.395,148,2.027,149,1.293,150,2.027,151,2.027,152,1.09,153,1.875,171,0.908,181,0.493,228,2.356,282,2.18,320,0.849,329,0.493,344,1.754,378,0.864,495,1.017,505,2.638,507,2.885,508,2.755,509,2.214,511,4.064,551,1.491,554,1.653,622,0.825,668,1.017,742,1.175,745,1.875,757,2.942,762,1.087,763,1.175,764,1.175,800,1.211,817,1.017,831,2.473,832,1.566,834,0.908,844,0.79,857,0.908,1013,1.875,1096,0.908,1127,2.027,1179,2.344,1202,1.875,1203,1.875,1205,1.875,1241,1.087,1340,1.017,1521,1.087,1522,1.175,1523,4.828,1529,1.175,1530,3.18,1531,1.175,1532,2.473,1533,1.175,1534,1.175,1535,2.027,1536,1.175,1537,1.017,1538,1.175,1539,1.175,1540,1.175,1541,1.087,1542,1.175,1543,1.087,1544,1.175,1545,1.491,1546,1.293,1547,1.087,1548,1.293,1549,3.924,1550,3.395,1551,1.293,1552,3.924,1553,3.924,1554,3.924,1555,2.942,1556,1.293,1557,2.23,1558,3.319,1559,5.312,1560,3.588,1561,3.319,1562,3.948,1563,2.23,1564,1.293,1565,2.23,1566,1.293,1567,1.293,1568,1.293,1569,2.23,1570,1.293,1571,1.293,1572,1.293,1573,2.23,1574,1.293,1575,1.293,1576,1.293,1577,2.23,1578,2.942,1579,2.23,1580,2.23,1581,1.293,1582,1.293,1583,1.293,1584,1.293,1585,1.175,1586,1.293,1587,1.293,1588,1.293,1589,1.293,1590,1.293,1591,1.293,1592,1.293,1593,1.293,1594,1.293,1595,1.293,1596,1.293,1597,1.293,1598,1.293,1599,1.293,1600,1.293,1601,1.293,1602,1.293,1603,1.293,1604,1.293,1605,1.175,1606,1.293,1607,1.293,1608,1.293,1609,1.293,1610,1.293,1611,1.293,1612,1.293,1613,1.293,1614,1.293,1615,1.293,1616,1.293,1617,1.293,1618,1.293,1619,1.293,1620,1.293,1621,1.293,1622,2.23,1623,3.499,1624,1.293,1625,1.293,1626,1.293,1627,1.293,1628,1.293,1629,1.293,1630,1.293,1631,1.293,1632,1.293,1633,1.293,1634,1.293,1635,1.293,1636,1.293,1637,1.293,1638,1.293,1639,1.293,1640,1.293,1641,1.293,1642,1.293,1643,1.293,1644,1.293,1645,1.293,1646,1.293,1647,2.23,1648,1.293,1649,1.293,1650,1.293,1651,1.087,1652,1.293,1653,1.293,1654,1.293,1655,1.293,1656,1.293,1657,1.293,1658,1.293,1659,1.293,1660,1.293,1661,1.293,1662,1.293,1663,1.293,1664,1.293,1665,1.293,1666,1.293,1667,1.293,1668,1.293,1669,1.293,1670,1.293,1671,1.293,1672,1.293,1673,1.293,1674,1.293,1675,1.293,1676,1.293,1677,1.293,1678,1.293,1679,1.293,1680,1.293,1681,1.293,1682,2.23,1683,1.293,1684,1.293,1685,1.293,1686,1.293,1687,1.293,1688,1.293,1689,1.293,1690,1.293,1691,2.23,1692,1.293,1693,1.175,1694,1.293,1695,1.293,1696,1.293,1697,1.293,1698,1.293,1699,1.293,1700,1.293,1701,1.293,1702,1.293,1703,2.23,1704,1.293,1705,1.293,1706,1.293,1707,1.293,1708,1.293,1709,1.293,1710,1.293,1711,1.293,1712,1.293,1713,1.293,1714,1.293,1715,1.293,1716,1.293,1717,1.293,1718,1.293,1719,1.293,1720,1.293,1721,2.23,1722,2.027,1723,1.293,1724,1.293,1725,1.293,1726,1.293,1727,1.293,1728,1.293,1729,1.293,1730,1.293,1731,1.293,1732,1.293,1733,1.293,1734,1.293,1735,1.293,1736,1.293,1737,1.293,1738,1.293,1739,1.293,1740,1.293,1741,1.293,1742,1.175,1743,1.293,1744,1.293,1745,1.293,1746,1.293,1747,1.293,1748,1.293,1749,1.293,1750,1.293,1751,1.293,1752,1.293,1753,1.293,1754,1.293,1755,1.293,1756,1.293,1757,1.293,1758,1.293,1759,1.293,1760,1.293,1761,1.175,1762,1.293,1763,1.293,1764,1.293,1765,1.293,1766,1.293,1767,1.293,1768,1.293,1769,1.293,1770,1.293,1771,1.293,1772,1.293,1773,1.293,1774,1.293,1775,1.293,1776,1.293,1777,1.293,1778,1.293,1779,1.293,1780,2.23,1781,1.293,1782,1.293,1783,1.293,1784,1.293,1785,1.293,1786,1.293,1787,1.293,1788,1.175,1789,1.293,1790,1.175,1791,1.293,1792,1.293,1793,1.293,1794,1.293,1795,1.293,1796,1.175,1797,1.293,1798,1.293,1799,1.293,1800,1.293,1801,1.293,1802,1.293,1803,1.293,1804,1.293,1805,1.175,1806,1.293,1807,1.293,1808,2.027,1809,1.293,1810,1.293,1811,1.293,1812,1.293,1813,1.293,1814,1.175,1815,1.293,1816,1.175,1817,1.293,1818,1.293,1819,2.027,1820,1.293,1821,1.293,1822,1.293,1823,1.293,1824,2.23,1825,1.293,1826,1.293,1827,1.293,1828,1.293,1829,1.293,1830,1.293,1831,1.293,1832,1.293,1833,1.293,1834,1.293,1835,1.293,1836,1.293,1837,1.293,1838,1.293,1839,1.293,1840,1.293,1841,1.293,1842,1.293,1843,1.293,1844,1.293,1845,1.293,1846,1.293,1847,1.293,1848,1.293,1849,1.293,1850,1.293,1851,1.293,1852,1.293,1853,1.293,1854,1.293,1855,1.293,1856,1.293,1857,1.293,1858,1.293,1859,1.293,1860,1.293,1861,1.293,1862,1.293,1863,1.293,1864,1.293,1865,1.293,1866,1.293,1867,1.293,1868,2.23,1869,1.293,1870,1.293,1871,1.293,1872,1.293,1873,1.293,1874,1.293,1875,1.293,1876,1.293,1877,1.293,1878,1.293,1879,1.293,1880,1.293,1881,1.293,1882,1.293,1883,1.293,1884,1.293,1885,1.293,1886,2.942,1887,1.293,1888,1.293,1889,1.293,1890,1.293,1891,1.293,1892,1.293,1893,1.293,1894,1.293,1895,1.293,1896,1.293,1897,1.293,1898,1.293,1899,1.293,1900,1.293,1901,1.293,1902,1.293,1903,1.293,1904,1.293,1905,1.293,1906,1.293,1907,1.293,1908,1.293,1909,1.293,1910,1.293,1911,1.293,1912,1.293,1913,1.293,1914,1.293,1915,1.293,1916,1.293,1917,1.293,1918,1.293,1919,1.293,1920,1.293,1921,1.293,1922,1.293,1923,1.293,1924,1.293,1925,1.293,1926,1.293,1927,1.293,1928,1.293,1929,1.293,1930,1.293,1931,1.293,1932,1.293,1933,1.293,1934,1.293,1935,1.293,1936,1.293,1937,1.293,1938,1.293,1939,1.293,1940,1.293,1941,1.293,1942,1.293,1943,1.293,1944,1.293,1945,1.293,1946,1.293,1947,1.293,1948,1.293,1949,1.293,1950,1.293,1951,1.293,1952,1.293,1953,1.293,1954,1.293,1955,1.293,1956,1.293,1957,1.293,1958,1.293,1959,1.293,1960,1.293,1961,1.293,1962,1.293,1963,1.293,1964,1.293,1965,1.293,1966,1.293,1967,1.293,1968,1.293,1969,1.293,1970,1.293,1971,1.293,1972,1.293,1973,1.293,1974,1.293,1975,2.23,1976,1.293,1977,2.027,1978,1.293,1979,1.293,1980,1.293,1981,1.293,1982,1.293,1983,1.293,1984,1.293,1985,1.293,1986,1.293,1987,1.293,1988,1.293,1989,1.293,1990,1.293,1991,1.293,1992,1.293,1993,1.293,1994,1.175,1995,1.293,1996,1.293,1997,1.293,1998,1.293,1999,1.293,2000,1.293,2001,1.293,2002,1.293,2003,1.293,2004,1.293,2005,1.293,2006,2.23,2007,2.23,2008,1.293,2009,2.027,2010,1.293,2011,1.293,2012,1.293,2013,1.293,2014,1.293,2015,2.027,2016,1.293,2017,1.293,2018,1.293,2019,1.293,2020,1.293,2021,1.293,2022,1.293,2023,1.293,2024,1.293,2025,1.293,2026,1.293,2027,1.293,2028,1.293,2029,1.293,2030,1.293,2031,1.293,2032,1.293,2033,1.293,2034,1.293,2035,1.293,2036,1.293,2037,1.175,2038,1.175,2039,1.293,2040,1.293,2041,1.293,2042,2.23,2043,1.293,2044,1.293,2045,1.293,2046,1.293,2047,1.293,2048,1.293,2049,1.293,2050,2.23,2051,1.293,2052,1.293,2053,1.293,2054,1.293,2055,1.293,2056,1.293,2057,1.293,2058,1.293,2059,1.293,2060,1.293,2061,1.293,2062,1.293,2063,1.293,2064,1.293,2065,1.293,2066,1.293,2067,1.293,2068,1.293,2069,1.293,2070,1.293,2071,1.293,2072,1.293,2073,1.293,2074,1.293,2075,1.293,2076,1.293,2077,1.175,2078,1.293,2079,1.293,2080,1.293,2081,1.293,2082,1.293,2083,2.027,2084,1.293,2085,1.293,2086,1.293,2087,1.293,2088,1.293,2089,1.293,2090,1.293,2091,1.175,2092,1.293,2093,1.293,2094,1.293,2095,1.293,2096,1.293,2097,1.293,2098,1.293,2099,1.293,2100,1.293,2101,1.293,2102,1.293,2103,1.293,2104,1.293,2105,1.293,2106,1.293,2107,1.293,2108,1.293,2109,1.293,2110,1.293,2111,1.293,2112,1.293,2113,1.293,2114,1.293,2115,1.293,2116,1.293,2117,1.293,2118,1.293,2119,1.293,2120,1.293,2121,1.293,2122,1.293,2123,1.293,2124,1.293,2125,1.293,2126,1.293,2127,1.293,2128,1.293,2129,1.293,2130,1.293,2131,1.293,2132,1.293,2133,1.293,2134,1.293,2135,1.293,2136,1.293,2137,1.293,2138,1.293,2139,1.293,2140,1.293,2141,1.293,2142,2.027,2143,2.23,2144,3.499,2145,1.293,2146,1.293,2147,1.293,2148,1.293,2149,1.293,2150,1.293,2151,1.293,2152,1.293,2153,1.293,2154,1.293,2155,1.293,2156,1.293,2157,1.293,2158,1.293,2159,1.293,2160,2.23,2161,1.293,2162,1.293,2163,2.23,2164,1.293,2165,1.293,2166,1.293,2167,2.942,2168,2.942,2169,1.293,2170,1.293,2171,2.23,2172,2.23,2173,2.23,2174,1.293,2175,1.293,2176,1.293,2177,1.293,2178,1.293,2179,1.293,2180,1.293,2181,1.293,2182,1.293,2183,1.293,2184,1.293,2185,1.293,2186,1.293,2187,1.293,2188,1.293,2189,1.293,2190,1.293,2191,1.293,2192,1.293,2193,1.293,2194,1.293,2195,1.293,2196,1.293,2197,1.293,2198,1.293,2199,1.293,2200,1.293,2201,1.293,2202,1.293,2203,1.293,2204,1.293,2205,1.293,2206,1.293,2207,2.23,2208,1.293,2209,1.293,2210,1.293,2211,1.293,2212,1.293,2213,1.293,2214,1.293,2215,1.293,2216,1.293,2217,1.293,2218,1.293,2219,1.293,2220,2.23,2221,1.293,2222,1.293,2223,1.293,2224,2.23,2225,1.293,2226,1.293,2227,1.293,2228,1.293,2229,1.293,2230,1.293,2231,1.293,2232,1.293,2233,1.293,2234,1.293,2235,1.293,2236,1.293,2237,1.293,2238,1.293,2239,1.293,2240,1.293,2241,1.293,2242,1.293,2243,1.293,2244,1.293,2245,1.293,2246,1.293,2247,1.293,2248,1.293,2249,1.293,2250,1.293,2251,2.942,2252,1.293,2253,1.293,2254,1.293,2255,1.293,2256,1.293,2257,1.293,2258,1.293,2259,1.293,2260,1.293,2261,1.293,2262,1.293,2263,1.293,2264,1.293,2265,2.23,2266,1.293,2267,1.293,2268,1.293,2269,1.293,2270,1.293,2271,1.293,2272,1.293,2273,2.23,2274,1.293,2275,1.293,2276,1.293,2277,1.293,2278,1.293,2279,1.175,2280,1.293,2281,1.293,2282,1.293,2283,1.293,2284,0.908,2285,1.293,2286,1.293,2287,1.293,2288,1.293,2289,1.293,2290,1.293,2291,1.293,2292,2.23,2293,1.293,2294,1.293,2295,2.23,2296,1.293,2297,1.293,2298,1.293,2299,1.293,2300,1.293,2301,1.293,2302,1.293,2303,1.293,2304,1.293,2305,1.293,2306,1.293,2307,1.293,2308,1.293,2309,1.293,2310,1.293,2311,1.293,2312,2.942,2313,1.293,2314,1.293,2315,1.293,2316,1.293,2317,1.293,2318,1.293,2319,1.293,2320,1.293,2321,1.293,2322,1.293,2323,1.293,2324,1.293,2325,1.293,2326,1.293,2327,1.293,2328,1.293,2329,1.293,2330,1.293,2331,2.23,2332,1.293,2333,1.293,2334,1.293,2335,1.293,2336,1.293,2337,1.293,2338,1.293,2339,1.293,2340,1.293,2341,1.293,2342,1.293,2343,1.293,2344,1.293,2345,1.293,2346,1.293,2347,1.293,2348,1.293,2349,2.23,2350,1.293,2351,1.293,2352,1.293,2353,1.293,2354,2.942,2355,2.942,2356,1.293,2357,2.23,2358,1.293,2359,1.293,2360,1.293,2361,1.293,2362,1.293,2363,1.293,2364,1.293,2365,1.293,2366,1.293,2367,1.293,2368,1.293,2369,1.293,2370,1.293,2371,1.293,2372,2.942,2373,1.293,2374,1.293,2375,1.293,2376,1.293,2377,1.293,2378,1.293,2379,1.293,2380,1.293,2381,1.293,2382,1.293,2383,1.293,2384,1.293,2385,1.293,2386,1.293,2387,1.293,2388,1.293,2389,1.293,2390,1.293,2391,2.027,2392,2.23,2393,2.23,2394,1.293,2395,1.293,2396,2.027,2397,1.293,2398,1.293,2399,1.293,2400,1.293,2401,1.175,2402,1.175,2501,1.491,2502,1.875,2574,2.942,2575,1.491,2576,1.875,2577,1.175,2685,1.653,2712,1.087,2979,1.175,2980,2.673,2999,1.293,3166,1.175,3218,2.23,3219,2.027,3443,2.027,3448,1.175,3451,2.23,3467,1.293,3473,1.293,3474,1.293,3475,1.293,3526,0.958,3531,1.293,3575,1.175,3587,2.942,4399,2.23,4400,2.539,4401,2.539,4402,5.824,4403,1.472,4404,1.472,4405,1.472,4406,1.472,4407,1.472,4408,1.472,4409,3.349,4410,3.349,4411,3.349,4412,3.349,4413,3.349,4414,3.349,4415,3.349,4416,3.349,4417,3.349,4418,2.539,4419,2.539,4420,3.349,4421,3.349,4422,3.349,4423,2.539,4424,2.539,4425,3.349,4426,3.349,4427,3.349,4428,1.472,4429,3.349,4430,3.349,4431,1.472,4432,1.472,4433,1.472,4434,1.472,4435,1.472,4436,1.472,4437,1.472]]],"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":3495,"title":{},"body":{"dependencies.html":{}}}],["0.1.0",{"_index":3510,"title":{},"body":{"dependencies.html":{}}}],["0.1.4",{"_index":3494,"title":{},"body":{"dependencies.html":{}}}],["0.10.2",{"_index":3525,"title":{},"body":{"dependencies.html":{}}}],["0.2",{"_index":603,"title":{},"body":{"components/AdminComponent.html":{}}}],["0.2.4",{"_index":3490,"title":{},"body":{"dependencies.html":{}}}],["0/1",{"_index":3437,"title":{},"body":{"coverage.html":{}}}],["0/10",{"_index":3465,"title":{},"body":{"coverage.html":{}}}],["0/11",{"_index":3456,"title":{},"body":{"coverage.html":{}}}],["0/12",{"_index":3472,"title":{},"body":{"coverage.html":{}}}],["0/14",{"_index":3462,"title":{},"body":{"coverage.html":{}}}],["0/15",{"_index":3471,"title":{},"body":{"coverage.html":{}}}],["0/16",{"_index":3466,"title":{},"body":{"coverage.html":{}}}],["0/17",{"_index":3470,"title":{},"body":{"coverage.html":{}}}],["0/18",{"_index":3464,"title":{},"body":{"coverage.html":{}}}],["0/2",{"_index":3440,"title":{},"body":{"coverage.html":{}}}],["0/26",{"_index":3461,"title":{},"body":{"coverage.html":{}}}],["0/3",{"_index":3441,"title":{},"body":{"coverage.html":{}}}],["0/33",{"_index":3468,"title":{},"body":{"coverage.html":{}}}],["0/4",{"_index":3457,"title":{},"body":{"coverage.html":{}}}],["0/43",{"_index":3469,"title":{},"body":{"coverage.html":{}}}],["0/5",{"_index":3458,"title":{},"body":{"coverage.html":{}}}],["0/6",{"_index":3445,"title":{},"body":{"coverage.html":{}}}],["0/7",{"_index":3463,"title":{},"body":{"coverage.html":{}}}],["0/8",{"_index":3460,"title":{},"body":{"coverage.html":{}}}],["0/9",{"_index":3459,"title":{},"body":{"coverage.html":{}}}],["04/02/2020",{"_index":3387,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["05/28/2020",{"_index":3398,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["08/16/2020",{"_index":3380,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0px",{"_index":591,"title":{},"body":{"components/AdminComponent.html":{}}}],["0x3da99aad2d9ca01d131efc3b17444b832b31ff4a",{"_index":1562,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x4a6fa6bc3bfe4c9661bc692d9798425350c9e3d4",{"_index":1576,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x51d3c8e2e421604e2b644117a362d589c5434739",{"_index":3417,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0x6ca3cb14aa6f761712e1c18646afba4d5ae249e8",{"_index":4435,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0x8fa4101ef19d0a078239d035659e92b278bd083c",{"_index":1572,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x9ced86089f7abb5a97b40eb0e7521e7aa308d354",{"_index":1564,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0x9d7c284907acbd4a0ce2ddd0aa69147a921a573d",{"_index":3418,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0xa686005ce37dce7738436256982c3903f2e4ea8e",{"_index":1549,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["0xaf1b487491073c2d49136db3fd87e293302cf839",{"_index":4431,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0xc0ffee254729296a45a3885639ac7e10f9d54979",{"_index":161,"title":{},"body":{"classes/AccountIndex.html":{}}}],["0xc63cfa91a3bff41ce31ff436f67d3acbc977db95",{"_index":1568,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0xc80d6aff8194114c52aecd84c9f15fd5c8abb187",{"_index":1556,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["0xc86ff893ac40d3950b4d5f94a9b837258b0a9865",{"_index":3379,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["0xea6225212005e86a4490018ded4bf37f3e772161",{"_index":4428,"title":{},"body":{"miscellaneous/variables.html":{}}}],["0xeb3907ecad74a0013c259d5874ae7f22dcbcc95c",{"_index":4430,"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":3499,"title":{},"body":{"dependencies.html":{}}}],["1.10.22",{"_index":3502,"title":{},"body":{"dependencies.html":{}}}],["1.16.1",{"_index":3515,"title":{},"body":{"dependencies.html":{}}}],["1.3.0",{"_index":3523,"title":{},"body":{"dependencies.html":{}}}],["1/1",{"_index":3431,"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":3480,"title":{},"body":{"dependencies.html":{},"index.html":{}}}],["10.2.7",{"_index":3482,"title":{},"body":{"dependencies.html":{}}}],["10/10/2020",{"_index":3403,"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":1536,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["1000000",{"_index":1559,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["1000000000000000001014",{"_index":1565,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["1000000001000000000000000000",{"_index":1551,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["100990",{"_index":1577,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["11",{"_index":3916,"title":{},"body":{"license.html":{}}}],["11/16/2020",{"_index":3393,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["12987",{"_index":3381,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["13",{"_index":4285,"title":{},"body":{"license.html":{},"overview.html":{}}}],["15",{"_index":4110,"title":{},"body":{"license.html":{}}}],["151.002995",{"_index":3421,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["1595537208",{"_index":3415,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["16",{"_index":4111,"title":{},"body":{"license.html":{}}}],["17",{"_index":4394,"title":{},"body":{"overview.html":{}}}],["18",{"_index":1553,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["1996",{"_index":3921,"title":{},"body":{"license.html":{}}}],["2",{"_index":1096,"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":3519,"title":{},"body":{"dependencies.html":{}}}],["2.1.4",{"_index":3517,"title":{},"body":{"dependencies.html":{}}}],["2.10.0",{"_index":3522,"title":{},"body":{"dependencies.html":{}}}],["2.4.2",{"_index":3511,"title":{},"body":{"dependencies.html":{}}}],["2.5.4",{"_index":3487,"title":{},"body":{"dependencies.html":{}}}],["2.9.4",{"_index":3493,"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":3614,"title":{},"body":{"license.html":{}}}],["2020",{"_index":1367,"title":{},"body":{"components/FooterComponent.html":{}}}],["2021",{"_index":4360,"title":{},"body":{"license.html":{}}}],["21",{"_index":4395,"title":{},"body":{"overview.html":{}}}],["22.430670",{"_index":3420,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25412341234",{"_index":3386,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25412345678",{"_index":3378,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25462518374",{"_index":3402,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25498765432",{"_index":3392,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["25498769876",{"_index":3397,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["28",{"_index":4266,"title":{},"body":{"license.html":{}}}],["29",{"_index":3612,"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":3506,"title":{},"body":{"dependencies.html":{}}}],["3/3",{"_index":3433,"title":{},"body":{"coverage.html":{}}}],["3/5",{"_index":3477,"title":{},"body":{"coverage.html":{}}}],["30",{"_index":4165,"title":{},"body":{"license.html":{}}}],["3000",{"_index":3136,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["300px",{"_index":1312,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["32",{"_index":3286,"title":{},"body":{"injectables/TransactionService.html":{}}}],["39;0xc0ffee254729296a45a3885639ac7e10f9d54979'",{"_index":108,"title":{},"body":{"classes/AccountIndex.html":{}}}],["39;2'",{"_index":2996,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["39;sarafu'",{"_index":2990,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["4",{"_index":1537,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"license.html":{},"overview.html":{},"miscellaneous/variables.html":{}}}],["4.10.10",{"_index":3513,"title":{},"body":{"dependencies.html":{}}}],["4.2.1",{"_index":3512,"title":{},"body":{"dependencies.html":{}}}],["4.5.3",{"_index":3491,"title":{},"body":{"dependencies.html":{}}}],["400",{"_index":2496,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["401",{"_index":966,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["401/403",{"_index":815,"title":{},"body":{"components/AuthComponent.html":{}}}],["403",{"_index":1009,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["450",{"_index":3394,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["5",{"_index":1541,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["5.0.31",{"_index":3504,"title":{},"body":{"dependencies.html":{}}}],["50",{"_index":377,"title":{},"body":{"components/AccountsComponent.html":{},"components/TransactionsComponent.html":{}}}],["51",{"_index":4396,"title":{},"body":{"overview.html":{}}}],["56",{"_index":2278,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["5621",{"_index":3399,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["56281",{"_index":3388,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["6",{"_index":1543,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"pipes/TokenRatioPipe.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["6.6.0",{"_index":3516,"title":{},"body":{"dependencies.html":{}}}],["60",{"_index":3476,"title":{},"body":{"coverage.html":{},"license.html":{}}}],["6b",{"_index":4007,"title":{},"body":{"license.html":{}}}],["6d",{"_index":4030,"title":{},"body":{"license.html":{}}}],["6rem",{"_index":627,"title":{},"body":{"components/AdminComponent.html":{}}}],["7",{"_index":3947,"title":{},"body":{"license.html":{}}}],["768px",{"_index":666,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["8",{"_index":3260,"title":{},"body":{"injectables/TransactionService.html":{}}}],["8.2.1",{"_index":3508,"title":{},"body":{"dependencies.html":{}}}],["8/8",{"_index":3432,"title":{},"body":{"coverage.html":{}}}],["8000000",{"_index":3274,"title":{},"body":{"injectables/TransactionService.html":{}}}],["817",{"_index":3404,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["8996",{"_index":4410,"title":{},"body":{"miscellaneous/variables.html":{}}}],["9.0.2",{"_index":3488,"title":{},"body":{"dependencies.html":{}}}],["9/9",{"_index":3429,"title":{},"body":{"coverage.html":{}}}],["99000",{"_index":1569,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["9981",{"_index":1573,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["99999999999999998976",{"_index":1557,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["_eth",{"_index":3055,"title":{},"body":{"components/TokensComponent.html":{}}}],["_key",{"_index":2590,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["_key.err",{"_index":2592,"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":3261,"title":{},"body":{"injectables/TransactionService.html":{}}}],["abicoder.encode(['address",{"_index":3263,"title":{},"body":{"injectables/TransactionService.html":{}}}],["ability",{"_index":4077,"title":{},"body":{"license.html":{}}}],["above",{"_index":2447,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["absence",{"_index":3948,"title":{},"body":{"license.html":{}}}],["absolute",{"_index":4342,"title":{},"body":{"license.html":{}}}],["absolutely",{"_index":4372,"title":{},"body":{"license.html":{}}}],["abstractcontrol",{"_index":1266,"title":{},"body":{"classes/CustomValidator.html":{}}}],["abuse",{"_index":3716,"title":{},"body":{"license.html":{}}}],["academy",{"_index":1610,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["accept",{"_index":4170,"title":{},"body":{"license.html":{}}}],["acceptable",{"_index":854,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["acceptance",{"_index":4169,"title":{},"body":{"license.html":{}}}],["accepted",{"_index":2819,"title":{},"body":{"guards/RoleGuard.html":{}}}],["acces",{"_index":2055,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["access",{"_index":839,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["accessible",{"_index":4237,"title":{},"body":{"license.html":{}}}],["accessors",{"_index":211,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["accompanied",{"_index":3989,"title":{},"body":{"license.html":{}}}],["accompanies",{"_index":4346,"title":{},"body":{"license.html":{}}}],["accord",{"_index":3946,"title":{},"body":{"license.html":{}}}],["according",{"_index":4337,"title":{},"body":{"license.html":{}}}],["accordingly",{"_index":1335,"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":1201,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.scss",{"_index":1200,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts",{"_index":1199,"title":{},"body":{"components/CreateAccountComponent.html":{},"coverage.html":{}}}],["account.component.ts:15",{"_index":1214,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:16",{"_index":1215,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:17",{"_index":1216,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:18",{"_index":1213,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:19",{"_index":1212,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:20",{"_index":1211,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:21",{"_index":1208,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:29",{"_index":1209,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:48",{"_index":1218,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["account.component.ts:50",{"_index":1210,"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":1695,"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":3248,"title":{},"body":{"injectables/TransactionService.html":{}}}],["accountinfo.vcard",{"_index":3250,"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":4352,"title":{},"body":{"license.html":{}}}],["acknowledges",{"_index":3883,"title":{},"body":{"license.html":{}}}],["acquired",{"_index":4216,"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":2452,"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":2451,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["activatedroute",{"_index":2952,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["activatedroutesnapshot",{"_index":851,"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":{}}}],["active",{"_index":868,"title":{},"body":{"guards/AuthGuard.html":{}}}],["activities",{"_index":3796,"title":{},"body":{"license.html":{}}}],["activity",{"_index":4262,"title":{},"body":{"license.html":{}}}],["actual",{"_index":4242,"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":4053,"title":{},"body":{"license.html":{}}}],["adapt",{"_index":3769,"title":{},"body":{"license.html":{}}}],["add",{"_index":525,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"components/AuthComponent.html":{},"license.html":{}}}],["add0x",{"_index":3211,"title":{},"body":{"injectables/TransactionService.html":{}}}],["add0x(tohex(tx.serializerlp",{"_index":3291,"title":{},"body":{"injectables/TransactionService.html":{}}}],["added",{"_index":3945,"title":{},"body":{"license.html":{}}}],["additional",{"_index":3959,"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":3766,"title":{},"body":{"license.html":{}}}],["addresses",{"_index":137,"title":{},"body":{"classes/AccountIndex.html":{}}}],["addressof",{"_index":2981,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressof('sarafu'",{"_index":2991,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressof('sarafu",{"_index":3000,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressof(identifier",{"_index":2986,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["addressreturned",{"_index":1118,"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":3170,"title":{},"body":{"injectables/TransactionService.html":{}}}],["addtransaction(transaction",{"_index":3179,"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":2891,"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":3919,"title":{},"body":{"license.html":{}}}],["adversely",{"_index":4085,"title":{},"body":{"license.html":{}}}],["advised",{"_index":4332,"title":{},"body":{"license.html":{}}}],["affects",{"_index":4086,"title":{},"body":{"license.html":{}}}],["affero",{"_index":4283,"title":{},"body":{"license.html":{}}}],["affirmed",{"_index":4199,"title":{},"body":{"license.html":{}}}],["affirms",{"_index":3879,"title":{},"body":{"license.html":{}}}],["afterviewinit",{"_index":3303,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["again",{"_index":685,"title":{},"body":{"components/AppComponent.html":{}}}],["against",{"_index":3935,"title":{},"body":{"license.html":{}}}],["age",{"_index":10,"title":{},"body":{"interfaces/AccountDetails.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interfaces/Signature.html":{}}}],["agent",{"_index":1693,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["aggregate",{"_index":3974,"title":{},"body":{"license.html":{}}}],["agree",{"_index":4278,"title":{},"body":{"license.html":{}}}],["agreed",{"_index":4319,"title":{},"body":{"license.html":{}}}],["agreement",{"_index":4228,"title":{},"body":{"license.html":{}}}],["agrovet",{"_index":1978,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["aim",{"_index":3712,"title":{},"body":{"license.html":{}}}],["airtime",{"_index":2058,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["alert('access",{"_index":1356,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["alert('account",{"_index":275,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["alg",{"_index":1167,"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":4398,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["alleging",{"_index":4206,"title":{},"body":{"license.html":{}}}],["allow",{"_index":3736,"title":{},"body":{"license.html":{}}}],["allowed",{"_index":1358,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"license.html":{}}}],["allows",{"_index":69,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["along",{"_index":3950,"title":{},"body":{"license.html":{}}}],["alpha.3",{"_index":3500,"title":{},"body":{"dependencies.html":{}}}],["alpha.6",{"_index":3496,"title":{},"body":{"dependencies.html":{}}}],["already",{"_index":116,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{}}}],["alternative",{"_index":4003,"title":{},"body":{"license.html":{}}}],["although",{"_index":3708,"title":{},"body":{"license.html":{}}}],["amani",{"_index":2169,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["amount",{"_index":3143,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["ancillary",{"_index":4172,"title":{},"body":{"license.html":{}}}],["and/or",{"_index":3692,"title":{},"body":{"license.html":{}}}],["andshow",{"_index":4376,"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":3481,"title":{},"body":{"dependencies.html":{}}}],["angular/cli",{"_index":3558,"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":3483,"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":3484,"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":1292,"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":2913,"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":2911,"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":3074,"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":3076,"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":3906,"title":{},"body":{"license.html":{}}}],["anyone",{"_index":3957,"title":{},"body":{"license.html":{}}}],["anything",{"_index":3782,"title":{},"body":{"license.html":{}}}],["api",{"_index":2408,"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":3573,"title":{},"body":{"index.html":{}}}],["app/_eth",{"_index":3019,"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":940,"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":1177,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["app/_models/staff",{"_index":2877,"title":{},"body":{"components/SettingsComponent.html":{}}}],["app/_pgp",{"_index":753,"title":{},"body":{"modules/AppModule.html":{},"injectables/AuthService.html":{}}}],["app/_pgp/pgp",{"_index":2711,"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":3217,"title":{},"body":{"injectables/TransactionService.html":{}}}],["app/_services/error",{"_index":937,"title":{},"body":{"injectables/AuthService.html":{}}}],["app/_services/logging.service",{"_index":936,"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":1101,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["app/_services/transaction.service",{"_index":1100,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["app/_services/user.service",{"_index":3206,"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":886,"title":{},"body":{"modules/AuthModule.html":{}}}],["app/auth/auth",{"_index":884,"title":{},"body":{"modules/AuthModule.html":{}}}],["app/auth/auth.component",{"_index":885,"title":{},"body":{"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{}}}],["app/shared/_directives/menu",{"_index":2923,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/_pipes/safe.pipe",{"_index":2928,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/_pipes/token",{"_index":2925,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/error",{"_index":1307,"title":{},"body":{"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{}}}],["app/shared/footer/footer.component",{"_index":2921,"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":2922,"title":{},"body":{"modules/SharedModule.html":{}}}],["app/shared/topbar/topbar.component",{"_index":2920,"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":3788,"title":{},"body":{"license.html":{}}}],["application",{"_index":142,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["application/json",{"_index":960,"title":{},"body":{"injectables/AuthService.html":{}}}],["applications",{"_index":4385,"title":{},"body":{"license.html":{}}}],["applied",{"_index":3743,"title":{},"body":{"license.html":{}}}],["applies",{"_index":3648,"title":{},"body":{"license.html":{}}}],["apply",{"_index":3652,"title":{},"body":{"license.html":{}}}],["appmenuselection",{"_index":1499,"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":1512,"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":2774,"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":3807,"title":{},"body":{"license.html":{}}}],["appropriately",{"_index":3939,"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":3405,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["approved",{"_index":608,"title":{},"body":{"components/AdminComponent.html":{},"classes/UserServiceStub.html":{}}}],["approximates",{"_index":4341,"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":2479,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areaname.name",{"_index":2475,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areanamelist",{"_index":2473,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areanames",{"_index":1202,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["areanames.find(areaname",{"_index":2478,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areanames.map(areaname",{"_index":2474,"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":2487,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatype.name",{"_index":2483,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatypelist",{"_index":2481,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatypes",{"_index":2391,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["areatypes.find(areatype",{"_index":2486,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["areatypes.map(areatype",{"_index":2482,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["args",{"_index":2846,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{}}}],["arguments",{"_index":654,"title":{},"body":{"components/AppComponent.html":{}}}],["arise",{"_index":3724,"title":{},"body":{"license.html":{}}}],["arising",{"_index":4323,"title":{},"body":{"license.html":{}}}],["arr",{"_index":3534,"title":{},"body":{"miscellaneous/functions.html":{}}}],["arrange",{"_index":4238,"title":{},"body":{"license.html":{}}}],["arrangement",{"_index":4250,"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":3027,"title":{},"body":{"injectables/TokenService.html":{}}}],["arraybuffer",{"_index":988,"title":{},"body":{"injectables/AuthService.html":{}}}],["arraydata",{"_index":3539,"title":{},"body":{"miscellaneous/functions.html":{}}}],["arraysum",{"_index":3436,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["arraysum(arr",{"_index":3533,"title":{},"body":{"miscellaneous/functions.html":{}}}],["article",{"_index":3915,"title":{},"body":{"license.html":{}}}],["artifacts",{"_index":3582,"title":{},"body":{"index.html":{}}}],["artisan",{"_index":1803,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["artist",{"_index":1692,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["askari",{"_index":1694,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["asking",{"_index":3669,"title":{},"body":{"license.html":{}}}],["assert",{"_index":3687,"title":{},"body":{"license.html":{}}}],["assets",{"_index":4189,"title":{},"body":{"license.html":{}}}],["assets/js/block",{"_index":2806,"title":{},"body":{"injectables/RegistryService.html":{}}}],["assigned",{"_index":2992,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["associated",{"_index":858,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["assume",{"_index":4314,"title":{},"body":{"license.html":{}}}],["assumption",{"_index":4345,"title":{},"body":{"license.html":{}}}],["assumptions",{"_index":4131,"title":{},"body":{"license.html":{}}}],["assures",{"_index":3746,"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":945,"title":{},"body":{"injectables/AuthService.html":{}}}],["attach",{"_index":4354,"title":{},"body":{"license.html":{}}}],["attempt",{"_index":4145,"title":{},"body":{"license.html":{}}}],["attributed",{"_index":3703,"title":{},"body":{"license.html":{}}}],["attributions",{"_index":4114,"title":{},"body":{"license.html":{}}}],["auth",{"_index":767,"title":{},"body":{"modules/AppRoutingModule.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.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":992,"title":{},"body":{"injectables/AuthService.html":{}}}],["authentication",{"_index":840,"title":{},"body":{"guards/AuthGuard.html":{},"components/SettingsComponent.html":{}}}],["authguard",{"_index":746,"title":{"guards/AuthGuard.html":{}},"body":{"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"coverage.html":{}}}],["authheader",{"_index":990,"title":{},"body":{"injectables/AuthService.html":{}}}],["authmodule",{"_index":878,"title":{"modules/AuthModule.html":{}},"body":{"modules/AuthModule.html":{},"modules.html":{},"overview.html":{}}}],["author",{"_index":4113,"title":{},"body":{"license.html":{}}}],["authorization",{"_index":4064,"title":{},"body":{"license.html":{}}}],["authorized",{"_index":1012,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["authorizes",{"_index":4211,"title":{},"body":{"license.html":{}}}],["authorizing",{"_index":4254,"title":{},"body":{"license.html":{}}}],["authors",{"_index":3651,"title":{},"body":{"license.html":{}}}],["authroutingmodule",{"_index":882,"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":4181,"title":{},"body":{"license.html":{}}}],["automatically",{"_index":3564,"title":{},"body":{"index.html":{},"license.html":{}}}],["automerge",{"_index":963,"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":1820,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["avoid",{"_index":3740,"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":3638,"title":{},"body":{"license.html":{}}}],["b",{"_index":3840,"title":{},"body":{"license.html":{}}}],["baby",{"_index":1599,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["babycare",{"_index":1598,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["backend",{"_index":1337,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["backend.ts",{"_index":1523,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["backend.ts:240",{"_index":1524,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["bag",{"_index":2016,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bajia",{"_index":1822,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["baker",{"_index":1696,"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":2332,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["banana",{"_index":1828,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bananas",{"_index":1829,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bangla",{"_index":2314,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bangladesh",{"_index":2315,"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":1973,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["barakoa",{"_index":1980,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["barber",{"_index":1699,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["based",{"_index":3778,"title":{},"body":{"license.html":{}}}],["basic",{"_index":3871,"title":{},"body":{"license.html":{}}}],["bead",{"_index":2017,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beadwork",{"_index":1697,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beans",{"_index":1825,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bearer",{"_index":958,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/HttpConfigInterceptor.html":{}}}],["beautician",{"_index":1811,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beauty",{"_index":1698,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["beba",{"_index":2085,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bebabeba",{"_index":2086,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bed",{"_index":2021,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bedding",{"_index":2019,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["behalf",{"_index":3894,"title":{},"body":{"license.html":{}}}],["behaviorsubject",{"_index":3018,"title":{},"body":{"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["behaviorsubject(this.transactions",{"_index":3198,"title":{},"body":{"injectables/TransactionService.html":{}}}],["being",{"_index":4028,"title":{},"body":{"license.html":{}}}],["believe",{"_index":4247,"title":{},"body":{"license.html":{}}}],["below",{"_index":3901,"title":{},"body":{"license.html":{}}}],["belt",{"_index":2018,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["benefit",{"_index":4241,"title":{},"body":{"license.html":{}}}],["best",{"_index":4351,"title":{},"body":{"license.html":{}}}],["between",{"_index":3869,"title":{},"body":{"license.html":{}}}],["beyond",{"_index":3976,"title":{},"body":{"license.html":{}}}],["bezier(0.4",{"_index":601,"title":{},"body":{"components/AdminComponent.html":{}}}],["bhajia",{"_index":1821,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biashara",{"_index":1739,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bicycle",{"_index":2088,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bike",{"_index":2087,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bio",{"_index":3383,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["biogas",{"_index":2117,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biringanya",{"_index":1827,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["biscuits",{"_index":1826,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bit",{"_index":1086,"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":1168,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["blockfilterbinstr",{"_index":1147,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blockfilterbinstr.charcodeat(i",{"_index":1154,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocksbloom",{"_index":1165,"title":{"classes/BlocksBloom.html":{}},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{}}}],["blocksync",{"_index":1062,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocksync(address",{"_index":1071,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocksyncservice",{"_index":1059,"title":{"injectables/BlockSyncService.html":{}},"body":{"injectables/BlockSyncService.html":{},"components/TransactionsComponent.html":{},"coverage.html":{}}}],["blocktxfilter",{"_index":1169,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["blocktxfilterbinstr",{"_index":1155,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["blocktxfilterbinstr.charcodeat(i",{"_index":1160,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomblockbytes",{"_index":1091,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomblocktxbytes",{"_index":1093,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bloomrounds",{"_index":1094,"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":4409,"title":{},"body":{"miscellaneous/variables.html":{}}}],["boda",{"_index":2090,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bodaboda",{"_index":2091,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["body",{"_index":1342,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["body.approval",{"_index":2456,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["bofu",{"_index":1824,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bombolulu",{"_index":2336,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bomet",{"_index":2377,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bone",{"_index":1149,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["bone.map((e",{"_index":1151,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["book",{"_index":1581,"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":3697,"title":{},"body":{"license.html":{}}}],["botique",{"_index":2023,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["boutique",{"_index":2024,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["box",{"_index":4379,"title":{},"body":{"license.html":{}}}],["bread",{"_index":1913,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["break",{"_index":1354,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["brewer",{"_index":1818,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["bricks",{"_index":1793,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["browse",{"_index":4392,"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":1157,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["btwo.map((e",{"_index":1159,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["buck",{"_index":3385,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["build",{"_index":3574,"title":{},"body":{"index.html":{}}}],["build:dev",{"_index":3581,"title":{},"body":{"index.html":{}}}],["build:prod",{"_index":3585,"title":{},"body":{"index.html":{}}}],["bungoma",{"_index":2379,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["buru",{"_index":2292,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["busaa",{"_index":1900,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["busia",{"_index":2358,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["business",{"_index":1241,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["businesscategory",{"_index":1225,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["butcher",{"_index":1853,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["butchery",{"_index":1854,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["button",{"_index":625,"title":{},"body":{"components/AdminComponent.html":{},"injectables/AuthService.html":{}}}],["c",{"_index":3616,"title":{},"body":{"license.html":{}}}],["cabbages",{"_index":1902,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cachedtx.tx.txhash",{"_index":3223,"title":{},"body":{"injectables/TransactionService.html":{}}}],["cachesize",{"_index":3180,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["cafe",{"_index":2033,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cake",{"_index":1840,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["call",{"_index":2409,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["called",{"_index":3776,"title":{},"body":{"license.html":{}}}],["can't",{"_index":2588,"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":850,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["candebug",{"_index":1458,"title":{},"body":{"injectables/LoggingService.html":{}}}],["candy",{"_index":2029,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["capabilities",{"_index":849,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["capenter",{"_index":1705,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["car",{"_index":1703,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["card",{"_index":2673,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["care",{"_index":1600,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["caretaker",{"_index":1702,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carpenter",{"_index":1715,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carrier",{"_index":2093,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carry",{"_index":3952,"title":{},"body":{"license.html":{}}}],["cart",{"_index":2092,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["carwash",{"_index":1711,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["case",{"_index":1351,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["cases",{"_index":4048,"title":{},"body":{"license.html":{}}}],["cashier",{"_index":2394,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cassava",{"_index":1839,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["casual",{"_index":1700,"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":2740,"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":1329,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["categories",{"_index":1203,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["categories.find(category",{"_index":2470,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["categories.map(category",{"_index":2466,"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":2467,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["category.products.includes(stringfromurl",{"_index":2471,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["categorylist",{"_index":2465,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["catering",{"_index":1708,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cause",{"_index":3980,"title":{},"body":{"license.html":{}}}],["cease",{"_index":4149,"title":{},"body":{"license.html":{}}}],["cement",{"_index":2022,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cereal",{"_index":1834,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cereals",{"_index":1841,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["certain",{"_index":3672,"title":{},"body":{"license.html":{}}}],["cessation",{"_index":4161,"title":{},"body":{"license.html":{}}}],["chai",{"_index":1837,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chakula",{"_index":1831,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["challenge",{"_index":976,"title":{},"body":{"injectables/AuthService.html":{}}}],["chama",{"_index":2008,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["changamwe",{"_index":2326,"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":3701,"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":3629,"title":{},"body":{"license.html":{}}}],["chapati",{"_index":1833,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chapo",{"_index":1836,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["characterized",{"_index":4074,"title":{},"body":{"license.html":{}}}],["charcoal",{"_index":2119,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["charcol",{"_index":2118,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["charge",{"_index":3656,"title":{},"body":{"license.html":{}}}],["charging",{"_index":1763,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chart.js",{"_index":3492,"title":{},"body":{"dependencies.html":{}}}],["charts",{"_index":2760,"title":{},"body":{"modules/PagesModule.html":{},"dependencies.html":{}}}],["chartsmodule",{"_index":2758,"title":{},"body":{"modules/PagesModule.html":{}}}],["check",{"_index":809,"title":{},"body":{"components/AuthComponent.html":{},"index.html":{}}}],["checks",{"_index":119,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["chef",{"_index":1707,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chemicals",{"_index":1982,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chemist",{"_index":1981,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chibuga",{"_index":2170,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chicken",{"_index":1845,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chidzivuni",{"_index":2182,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chidzuvini",{"_index":2181,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chief",{"_index":1649,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigale",{"_index":2176,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigato",{"_index":2175,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chigojoni",{"_index":2173,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikole",{"_index":2177,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikomani",{"_index":2171,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikomeni",{"_index":2180,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chikuyu",{"_index":2183,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["children",{"_index":1619,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chilongoni",{"_index":2172,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chilumani",{"_index":2178,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chinguluni",{"_index":2174,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chipo",{"_index":1835,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chips",{"_index":1838,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chizingo",{"_index":2184,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chizini",{"_index":2179,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choma",{"_index":1896,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choo",{"_index":1663,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["choose",{"_index":4298,"title":{},"body":{"license.html":{}}}],["choosing",{"_index":4302,"title":{},"body":{"license.html":{}}}],["christine",{"_index":1533,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["chumvi",{"_index":1901,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["church",{"_index":1643,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["chv",{"_index":1983,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cic",{"_index":962,"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":4420,"title":{},"body":{"miscellaneous/variables.html":{}}}],["cicconvert(event",{"_index":719,"title":{},"body":{"components/AppComponent.html":{}}}],["cicmetaurl",{"_index":4415,"title":{},"body":{"miscellaneous/variables.html":{}}}],["cicregistry",{"_index":2802,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["cicregistry(this.web3",{"_index":2803,"title":{},"body":{"injectables/RegistryService.html":{}}}],["cictransfer(event",{"_index":715,"title":{},"body":{"components/AppComponent.html":{}}}],["cicussdurl",{"_index":4425,"title":{},"body":{"miscellaneous/variables.html":{}}}],["circumstances",{"_index":3899,"title":{},"body":{"license.html":{}}}],["circumvention",{"_index":3907,"title":{},"body":{"license.html":{}}}],["civil",{"_index":4344,"title":{},"body":{"license.html":{}}}],["claim",{"_index":4203,"title":{},"body":{"license.html":{}}}],["claims",{"_index":4213,"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":1676,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cleaning",{"_index":1669,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clear",{"_index":4015,"title":{},"body":{"license.html":{}}}],["clearkeysinkeyring",{"_index":2504,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["clearly",{"_index":3694,"title":{},"body":{"license.html":{}}}],["cles",{"_index":3396,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["cli",{"_index":3553,"title":{},"body":{"index.html":{}}}],["click",{"_index":1508,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["client",{"_index":1099,"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":1995,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clinical",{"_index":1996,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["close",{"_index":3134,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["closely",{"_index":4340,"title":{},"body":{"license.html":{}}}],["cloth",{"_index":2030,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["club",{"_index":2078,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["clues",{"_index":1344,"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":727,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_declarations",{"_index":726,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_imports",{"_index":724,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_appmodule_providers",{"_index":725,"title":{},"body":{"modules/AppModule.html":{},"overview.html":{}}}],["cluster_authmodule",{"_index":879,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_authmodule_declarations",{"_index":881,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_authmodule_imports",{"_index":880,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_pagesmodule",{"_index":2751,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_pagesmodule_declarations",{"_index":2752,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_pagesmodule_imports",{"_index":2753,"title":{},"body":{"modules/PagesModule.html":{},"overview.html":{}}}],["cluster_settingsmodule",{"_index":2902,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_settingsmodule_declarations",{"_index":2904,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_settingsmodule_imports",{"_index":2903,"title":{},"body":{"modules/SettingsModule.html":{},"overview.html":{}}}],["cluster_sharedmodule",{"_index":2915,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_sharedmodule_declarations",{"_index":2917,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_sharedmodule_exports",{"_index":2916,"title":{},"body":{"modules/SharedModule.html":{},"overview.html":{}}}],["cluster_tokensmodule",{"_index":3064,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_tokensmodule_declarations",{"_index":3066,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_tokensmodule_imports",{"_index":3065,"title":{},"body":{"modules/TokensModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule",{"_index":3353,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_declarations",{"_index":3356,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_exports",{"_index":3355,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["cluster_transactionsmodule_imports",{"_index":3354,"title":{},"body":{"modules/TransactionsModule.html":{},"overview.html":{}}}],["coach",{"_index":1582,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cobbler",{"_index":1710,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cobler",{"_index":1709,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["coconut",{"_index":1832,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["code",{"_index":1341,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"components/OrganizationComponent.html":{},"index.html":{},"license.html":{}}}],["coffee",{"_index":1844,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["collapsed",{"_index":598,"title":{},"body":{"components/AdminComponent.html":{}}}],["collect",{"_index":4280,"title":{},"body":{"license.html":{}}}],["collection",{"_index":1678,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["college",{"_index":1592,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["columnstodisplay",{"_index":3042,"title":{},"body":{"components/TokensComponent.html":{}}}],["combination",{"_index":4287,"title":{},"body":{"license.html":{}}}],["combine",{"_index":4284,"title":{},"body":{"license.html":{}}}],["combined",{"_index":3970,"title":{},"body":{"license.html":{}}}],["comes",{"_index":2602,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["command",{"_index":3608,"title":{},"body":{"index.html":{}}}],["commands",{"_index":3818,"title":{},"body":{"license.html":{}}}],["comment",{"_index":2943,"title":{},"body":{"interfaces/Staff.html":{}}}],["commercial",{"_index":4058,"title":{},"body":{"license.html":{}}}],["commitment",{"_index":4229,"title":{},"body":{"license.html":{}}}],["common",{"_index":4052,"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":3867,"title":{},"body":{"license.html":{}}}],["community",{"_index":1994,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["compilation",{"_index":3966,"title":{},"body":{"license.html":{}}}],["compilation's",{"_index":3975,"title":{},"body":{"license.html":{}}}],["compilations",{"_index":4264,"title":{},"body":{"license.html":{}}}],["compiler",{"_index":3850,"title":{},"body":{"license.html":{}}}],["complete",{"_index":1539,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["compliance",{"_index":4186,"title":{},"body":{"license.html":{}}}],["comply",{"_index":3892,"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":{},"guards/AuthGuard.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":{},"guards/RoleGuard.html":{},"components/SettingsComponent.html":{},"modules/SettingsRoutingModule.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"modules/TokensRoutingModule.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"modules/TransactionsRoutingModule.html":{},"coverage.html":{},"index.html":{},"license.html":{}}}],["component({selector",{"_index":1369,"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":3791,"title":{},"body":{"license.html":{}}}],["computers",{"_index":3739,"title":{},"body":{"license.html":{}}}],["concerning",{"_index":4286,"title":{},"body":{"license.html":{}}}],["concerns",{"_index":4292,"title":{},"body":{"license.html":{}}}],["conditioned",{"_index":4259,"title":{},"body":{"license.html":{}}}],["conditions",{"_index":3750,"title":{},"body":{"license.html":{}}}],["conductor",{"_index":2098,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["config.interceptor.ts",{"_index":1419,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"coverage.html":{}}}],["config.interceptor.ts:11",{"_index":1420,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["config.interceptor.ts:15",{"_index":1421,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["confirm('approve",{"_index":610,"title":{},"body":{"components/AdminComponent.html":{}}}],["confirm('create",{"_index":1234,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["confirm('disapprove",{"_index":613,"title":{},"body":{"components/AdminComponent.html":{}}}],["confirm('set",{"_index":2669,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["confirmpassword",{"_index":1274,"title":{},"body":{"classes/CustomValidator.html":{}}}],["congo",{"_index":2262,"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":4174,"title":{},"body":{"license.html":{}}}],["consequential",{"_index":4322,"title":{},"body":{"license.html":{}}}],["conservation",{"_index":1661,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consider",{"_index":4383,"title":{},"body":{"license.html":{}}}],["considered",{"_index":4133,"title":{},"body":{"license.html":{}}}],["consistent",{"_index":4220,"title":{},"body":{"license.html":{}}}],["console.log('here",{"_index":3413,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["console.log(await",{"_index":110,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["conspicuously",{"_index":3938,"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":3734,"title":{},"body":{"license.html":{}}}],["constitutes",{"_index":3882,"title":{},"body":{"license.html":{}}}],["construction",{"_index":1706,"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":1293,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["constructor(authservice",{"_index":649,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{},"components/SettingsComponent.html":{}}}],["constructor(blocksyncservice",{"_index":3313,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["constructor(contractaddress",{"_index":85,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["constructor(data",{"_index":1286,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["constructor(dialog",{"_index":1300,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["constructor(elementref",{"_index":1501,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["constructor(errordialogservice",{"_index":1317,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["constructor(formbuilder",{"_index":215,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["constructor(httpclient",{"_index":905,"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":2692,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["constructor(logger",{"_index":1467,"title":{},"body":{"injectables/LoggingService.html":{}}}],["constructor(loggingservice",{"_index":1378,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"interceptors/LoggingInterceptor.html":{}}}],["constructor(message",{"_index":1389,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["constructor(private",{"_index":875,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/LoggingService.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{}}}],["constructor(route",{"_index":2951,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["constructor(router",{"_index":841,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"components/TransactionDetailsComponent.html":{}}}],["constructor(scanfilter",{"_index":2856,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["constructor(tokenservice",{"_index":3044,"title":{},"body":{"components/TokensComponent.html":{}}}],["constructor(transactionservice",{"_index":1068,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["constructor(userservice",{"_index":356,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{}}}],["construed",{"_index":4268,"title":{},"body":{"license.html":{}}}],["consult",{"_index":1591,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consultant",{"_index":1590,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["consumer",{"_index":4035,"title":{},"body":{"license.html":{}}}],["contact",{"_index":4365,"title":{},"body":{"license.html":{}}}],["contain",{"_index":1343,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"license.html":{}}}],["contained",{"_index":3597,"title":{},"body":{"index.html":{}}}],["containing",{"_index":4116,"title":{},"body":{"license.html":{}}}],["contains",{"_index":856,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"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":1519,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["contents",{"_index":4224,"title":{},"body":{"license.html":{}}}],["context",{"_index":3844,"title":{},"body":{"license.html":{}}}],["continue",{"_index":4080,"title":{},"body":{"license.html":{}}}],["continued",{"_index":4066,"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":1120,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["contractual",{"_index":4130,"title":{},"body":{"license.html":{}}}],["contradict",{"_index":4274,"title":{},"body":{"license.html":{}}}],["contrast",{"_index":3640,"title":{},"body":{"license.html":{}}}],["contributor",{"_index":4210,"title":{},"body":{"license.html":{}}}],["contributor's",{"_index":4212,"title":{},"body":{"license.html":{}}}],["control",{"_index":1254,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"license.html":{}}}],["control.dirty",{"_index":1258,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["control.get('confirmpassword').seterrors",{"_index":1276,"title":{},"body":{"classes/CustomValidator.html":{}}}],["control.get('confirmpassword').value",{"_index":1275,"title":{},"body":{"classes/CustomValidator.html":{}}}],["control.get('password').value",{"_index":1273,"title":{},"body":{"classes/CustomValidator.html":{}}}],["control.invalid",{"_index":1257,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["control.touched",{"_index":1259,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["control.value",{"_index":1278,"title":{},"body":{"classes/CustomValidator.html":{}}}],["controlled",{"_index":4215,"title":{},"body":{"license.html":{}}}],["convenient",{"_index":3810,"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":3236,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.recipient",{"_index":3242,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.sender",{"_index":3241,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.tovalue",{"_index":3238,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.tx.txhash",{"_index":3234,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversion.type",{"_index":3235,"title":{},"body":{"injectables/TransactionService.html":{}}}],["conversions",{"_index":2397,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["converttoparammap",{"_index":541,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["convey",{"_index":3798,"title":{},"body":{"license.html":{}}}],["conveyance",{"_index":4252,"title":{},"body":{"license.html":{}}}],["conveyed",{"_index":4075,"title":{},"body":{"license.html":{}}}],["conveying",{"_index":3804,"title":{},"body":{"license.html":{}}}],["conveys",{"_index":4129,"title":{},"body":{"license.html":{}}}],["cook",{"_index":1842,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["copied",{"_index":3133,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copies",{"_index":3627,"title":{},"body":{"license.html":{}}}],["copy",{"_index":3624,"title":{},"body":{"license.html":{}}}],["copy.ts",{"_index":3439,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["copyaddress",{"_index":3096,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copyaddress(address",{"_index":3105,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copying",{"_index":3751,"title":{},"body":{"license.html":{}}}],["copyleft",{"_index":3631,"title":{},"body":{"license.html":{}}}],["copyright",{"_index":3615,"title":{},"body":{"license.html":{}}}],["copyrightable",{"_index":3761,"title":{},"body":{"license.html":{}}}],["copyrighted",{"_index":3896,"title":{},"body":{"license.html":{}}}],["copytoclipboard",{"_index":3114,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["copytoclipboard(address",{"_index":3131,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["copytoclipboard(text",{"_index":3535,"title":{},"body":{"miscellaneous/functions.html":{}}}],["corn",{"_index":1843,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["correction",{"_index":4317,"title":{},"body":{"license.html":{}}}],["corresponding",{"_index":3853,"title":{},"body":{"license.html":{}}}],["cosmetics",{"_index":2002,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["cost",{"_index":4001,"title":{},"body":{"license.html":{}}}],["counsellor",{"_index":1623,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["count",{"_index":168,"title":{},"body":{"classes/AccountIndex.html":{},"injectables/TokenService.html":{}}}],["counterclaim",{"_index":4204,"title":{},"body":{"license.html":{}}}],["counties",{"_index":2373,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["countries",{"_index":3795,"title":{},"body":{"license.html":{}}}],["country",{"_index":1651,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["countrycode",{"_index":2666,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["county",{"_index":1652,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["course",{"_index":4377,"title":{},"body":{"license.html":{}}}],["court",{"_index":4273,"title":{},"body":{"license.html":{}}}],["courts",{"_index":4339,"title":{},"body":{"license.html":{}}}],["covenant",{"_index":4232,"title":{},"body":{"license.html":{}}}],["coverage",{"_index":3426,"title":{"coverage.html":{}},"body":{"coverage.html":{},"license.html":{}}}],["covered",{"_index":3779,"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":1204,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["createformstub",{"_index":1206,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["credentials",{"_index":2889,"title":{},"body":{"components/SettingsComponent.html":{}}}],["credit",{"_index":2013,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["crisps",{"_index":1830,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["criterion",{"_index":3823,"title":{},"body":{"license.html":{}}}],["cross",{"_index":1605,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["csv.ts",{"_index":3443,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["cubic",{"_index":600,"title":{},"body":{"components/AdminComponent.html":{}}}],["cure",{"_index":4164,"title":{},"body":{"license.html":{}}}],["currency",{"_index":2962,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["currentuser",{"_index":2821,"title":{},"body":{"guards/RoleGuard.html":{}}}],["customarily",{"_index":3992,"title":{},"body":{"license.html":{}}}],["customer",{"_index":3997,"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":1140,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["customevent('cic_transfer",{"_index":1138,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["customvalidator",{"_index":1260,"title":{"classes/CustomValidator.html":{}},"body":{"classes/CustomValidator.html":{},"coverage.html":{}}}],["cyber",{"_index":1613,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["d",{"_index":2878,"title":{},"body":{"components/SettingsComponent.html":{},"license.html":{}}}],["d.getdate()}/${d.getmonth()}/${d.getfullyear",{"_index":2880,"title":{},"body":{"components/SettingsComponent.html":{}}}],["dagaa",{"_index":1846,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dagoreti",{"_index":2266,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dagoretti",{"_index":2308,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["daktari",{"_index":1985,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["damages",{"_index":4320,"title":{},"body":{"license.html":{}}}],["dandora",{"_index":2267,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["danger",{"_index":3742,"title":{},"body":{"license.html":{}}}],["danish",{"_index":1630,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dashboard",{"_index":2934,"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":1294,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["data?.status",{"_index":1295,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["datafile",{"_index":4437,"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":3340,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["datatables",{"_index":461,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AppModule.html":{},"modules/TransactionsModule.html":{},"dependencies.html":{}}}],["datatables.net",{"_index":3501,"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":3414,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["dawa",{"_index":1986,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["daycare",{"_index":1597,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["days",{"_index":4160,"title":{},"body":{"license.html":{}}}],["debug",{"_index":1488,"title":{},"body":{"injectables/LoggingService.html":{}}}],["december",{"_index":3920,"title":{},"body":{"license.html":{}}}],["decide",{"_index":4300,"title":{},"body":{"license.html":{}}}],["decimals",{"_index":1552,"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":4122,"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":3909,"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":4313,"title":{},"body":{"license.html":{}}}],["defenses",{"_index":4271,"title":{},"body":{"license.html":{}}}],["define",{"_index":1020,"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":3860,"title":{},"body":{"license.html":{}}}],["definitions",{"_index":3755,"title":{},"body":{"license.html":{}}}],["delay",{"_index":1525,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["delayed",{"_index":2405,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["delimiter",{"_index":3538,"title":{},"body":{"miscellaneous/functions.html":{}}}],["dematerialize",{"_index":1526,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["demo",{"_index":1555,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["denied",{"_index":4082,"title":{},"body":{"license.html":{}}}],["denominated",{"_index":4230,"title":{},"body":{"license.html":{}}}],["deny",{"_index":3706,"title":{},"body":{"license.html":{}}}],["denying",{"_index":3668,"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":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["deployed",{"_index":90,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["deprive",{"_index":4239,"title":{},"body":{"license.html":{}}}],["dera",{"_index":2046,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dereva",{"_index":2097,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["description",{"_index":64,"title":{},"body":{"classes/AccountIndex.html":{},"classes/ActivatedRouteStub.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"classes/TokenRegistry.html":{}}}],["design",{"_index":1714,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["designated",{"_index":4009,"title":{},"body":{"license.html":{}}}],["designed",{"_index":3636,"title":{},"body":{"license.html":{}}}],["destination",{"_index":3161,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["destinationtoken",{"_index":1186,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["detached",{"_index":2621,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["detail",{"_index":1139,"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":2950,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["details.component.scss",{"_index":2949,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{}}}],["details.component.ts",{"_index":2948,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TransactionDetailsComponent.html":{},"coverage.html":{}}}],["details.component.ts:14",{"_index":2954,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["details.component.ts:15",{"_index":3104,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:16",{"_index":3113,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:17",{"_index":3112,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:18",{"_index":3103,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:26",{"_index":3107,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:27",{"_index":2955,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["details.component.ts:35",{"_index":3110,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:39",{"_index":3109,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:43",{"_index":3111,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:47",{"_index":3108,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.component.ts:56",{"_index":3106,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["details.the",{"_index":4374,"title":{},"body":{"license.html":{}}}],["details/account",{"_index":457,"title":{},"body":{"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"coverage.html":{}}}],["details/token",{"_index":2947,"title":{},"body":{"components/TokenDetailsComponent.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"coverage.html":{}}}],["details/transaction",{"_index":3092,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"modules/TransactionsModule.html":{},"coverage.html":{}}}],["detergent",{"_index":2044,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["detergents",{"_index":2045,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["determining",{"_index":4046,"title":{},"body":{"license.html":{}}}],["dev",{"_index":3561,"title":{},"body":{"index.html":{}}}],["develop",{"_index":4348,"title":{},"body":{"license.html":{}}}],["developers",{"_index":3684,"title":{},"body":{"license.html":{}}}],["development",{"_index":3559,"title":{},"body":{"index.html":{},"license.html":{}}}],["devices",{"_index":3705,"title":{},"body":{"license.html":{}}}],["dgst",{"_index":2686,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["dhobi",{"_index":1712,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dialog",{"_index":1283,"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":1308,"title":{},"body":{"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{}}}],["dialog.component.html",{"_index":1285,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.scss",{"_index":1284,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.ts",{"_index":1282,"title":{},"body":{"components/ErrorDialogComponent.html":{},"coverage.html":{}}}],["dialog.component.ts:10",{"_index":1287,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.component.ts:12",{"_index":1289,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["dialog.service",{"_index":938,"title":{},"body":{"injectables/AuthService.html":{}}}],["dialog.service.ts",{"_index":1297,"title":{},"body":{"injectables/ErrorDialogService.html":{},"coverage.html":{}}}],["dialog.service.ts:12",{"_index":1305,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog.service.ts:15",{"_index":1304,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog.service.ts:9",{"_index":1302,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialog/error",{"_index":1281,"title":{},"body":{"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"modules/SharedModule.html":{},"coverage.html":{}}}],["dialogref",{"_index":1310,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["dialogref.afterclosed().subscribe",{"_index":1313,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["diani",{"_index":2330,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dictates",{"_index":838,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["diesel",{"_index":2141,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["differ",{"_index":4291,"title":{},"body":{"license.html":{}}}],["different",{"_index":4011,"title":{},"body":{"license.html":{}}}],["differently",{"_index":4109,"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":3895,"title":{},"body":{"license.html":{}}}],["directions",{"_index":4016,"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":3570,"title":{},"body":{"index.html":{}}}],["directly",{"_index":3784,"title":{},"body":{"license.html":{}}}],["directory",{"_index":1239,"title":{},"body":{"components/CreateAccountComponent.html":{},"index.html":{}}}],["directoryentry",{"_index":1223,"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":1531,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["disbursement",{"_index":2664,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["disbursements",{"_index":2398,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["disclaim",{"_index":3931,"title":{},"body":{"license.html":{}}}],["disclaimer",{"_index":4303,"title":{},"body":{"license.html":{}}}],["disclaiming",{"_index":4106,"title":{},"body":{"license.html":{}}}],["discriminatory",{"_index":4256,"title":{},"body":{"license.html":{}}}],["dispensary",{"_index":1979,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["display",{"_index":3965,"title":{},"body":{"license.html":{}}}],["displayed",{"_index":4115,"title":{},"body":{"license.html":{}}}],["displayedcolumns",{"_index":347,"title":{},"body":{"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/SettingsComponent.html":{}}}],["displays",{"_index":3806,"title":{},"body":{"license.html":{}}}],["dist",{"_index":3584,"title":{},"body":{"index.html":{}}}],["distinguishing",{"_index":4293,"title":{},"body":{"license.html":{}}}],["distribute",{"_index":3625,"title":{},"body":{"license.html":{}}}],["distributed",{"_index":4361,"title":{},"body":{"license.html":{}}}],["distributing",{"_index":4260,"title":{},"body":{"license.html":{}}}],["distribution",{"_index":3752,"title":{},"body":{"license.html":{}}}],["divone",{"_index":822,"title":{},"body":{"components/AuthComponent.html":{}}}],["divtwo",{"_index":824,"title":{},"body":{"components/AuthComponent.html":{}}}],["doctor",{"_index":1984,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["document",{"_index":3628,"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":1024,"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":949,"title":{},"body":{"injectables/AuthService.html":{}}}],["document.getelementbyid('two",{"_index":825,"title":{},"body":{"components/AuthComponent.html":{}}}],["document.getelementbyid('two').style.display",{"_index":1025,"title":{},"body":{"injectables/AuthService.html":{}}}],["document.getelementbyid(this.iconid",{"_index":2785,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["document.getelementbyid(this.id",{"_index":2783,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["documentation",{"_index":3427,"title":{},"body":{"coverage.html":{}}}],["documented",{"_index":4092,"title":{},"body":{"license.html":{}}}],["doe",{"_index":3377,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["doesn\\'t",{"_index":1037,"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":2603,"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":3726,"title":{},"body":{"license.html":{}}}],["domsanitizer",{"_index":2849,"title":{},"body":{"pipes/SafePipe.html":{}}}],["don't",{"_index":3579,"title":{},"body":{"index.html":{}}}],["donald",{"_index":3391,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["donholm",{"_index":2265,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donhom",{"_index":2269,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donor",{"_index":1646,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["donut",{"_index":1847,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["doti",{"_index":2185,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["double",{"_index":519,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["doubtful",{"_index":4047,"title":{},"body":{"license.html":{}}}],["dough",{"_index":1848,"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":4183,"title":{},"body":{"license.html":{}}}],["driver",{"_index":2096,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dt",{"_index":3503,"title":{},"body":{"dependencies.html":{}}}],["duka",{"_index":2036,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["durable",{"_index":3991,"title":{},"body":{"license.html":{}}}],["duration",{"_index":3135,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["dwelling",{"_index":4045,"title":{},"body":{"license.html":{}}}],["dynamic",{"_index":3485,"title":{},"body":{"dependencies.html":{}}}],["dynamically",{"_index":3862,"title":{},"body":{"license.html":{}}}],["dzivani",{"_index":2187,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dzovuni",{"_index":2188,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["dzugwe",{"_index":2186,"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":3595,"title":{},"body":{"index.html":{}}}],["each",{"_index":3764,"title":{},"body":{"license.html":{}}}],["earlier",{"_index":3777,"title":{},"body":{"license.html":{}}}],["east",{"_index":2302,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["economics",{"_index":1017,"title":{},"body":{"injectables/AuthService.html":{},"components/FooterComponent.html":{},"license.html":{}}}],["education",{"_index":1580,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["educator",{"_index":1621,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["effect",{"_index":4336,"title":{},"body":{"license.html":{}}}],["effected",{"_index":3929,"title":{},"body":{"license.html":{}}}],["effective",{"_index":3910,"title":{},"body":{"license.html":{}}}],["effectively",{"_index":3744,"title":{},"body":{"license.html":{}}}],["efforts",{"_index":4197,"title":{},"body":{"license.html":{}}}],["egg",{"_index":1938,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["eimu",{"_index":1602,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["elapsedtime",{"_index":1452,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["elder",{"_index":1648,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["eldoret",{"_index":2380,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electrian",{"_index":1701,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electricals",{"_index":2031,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electrician",{"_index":1791,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["electronic",{"_index":4366,"title":{},"body":{"license.html":{}}}],["electronics",{"_index":1788,"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":1502,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["elim",{"_index":1601,"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":2300,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["embakassi",{"_index":2299,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["embodied",{"_index":3986,"title":{},"body":{"license.html":{}}}],["emergency",{"_index":2006,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["employer",{"_index":4380,"title":{},"body":{"license.html":{}}}],["enable",{"_index":3842,"title":{},"body":{"license.html":{}}}],["enables",{"_index":3800,"title":{},"body":{"license.html":{}}}],["end",{"_index":3594,"title":{},"body":{"index.html":{},"license.html":{}}}],["endpoint",{"_index":681,"title":{},"body":{"components/AppComponent.html":{}}}],["enforce",{"_index":4231,"title":{},"body":{"license.html":{}}}],["enforcing",{"_index":3934,"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":1748,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["enroller",{"_index":1530,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["ensure",{"_index":2410,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["enter",{"_index":833,"title":{},"body":{"components/AuthComponent.html":{}}}],["entered",{"_index":4265,"title":{},"body":{"license.html":{}}}],["entire",{"_index":3956,"title":{},"body":{"license.html":{}}}],["entirely",{"_index":4282,"title":{},"body":{"license.html":{}}}],["entity",{"_index":4187,"title":{},"body":{"license.html":{}}}],["entry",{"_index":1240,"title":{},"body":{"components/CreateAccountComponent.html":{},"classes/TokenRegistry.html":{}}}],["entry(2",{"_index":2997,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["entry(serial",{"_index":2993,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["env",{"_index":1459,"title":{},"body":{"injectables/LoggingService.html":{},"index.html":{}}}],["env.example",{"_index":3599,"title":{},"body":{"index.html":{}}}],["env.ts",{"_index":3577,"title":{},"body":{"index.html":{}}}],["envelope",{"_index":3205,"title":{},"body":{"injectables/TransactionService.html":{}}}],["envelope.fromjson(json.stringify(account)).unwrap().m.data",{"_index":3249,"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":955,"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":3604,"title":{},"body":{"index.html":{}}}],["environment.registryaddress",{"_index":2804,"title":{},"body":{"injectables/RegistryService.html":{}}}],["environment.serverloglevel",{"_index":758,"title":{},"body":{"modules/AppModule.html":{}}}],["environment.ts",{"_index":3603,"title":{},"body":{"index.html":{}}}],["environment.web3provider",{"_index":1106,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["equivalent",{"_index":3885,"title":{},"body":{"license.html":{}}}],["err",{"_index":1041,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{}}}],["err.error",{"_index":1331,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.error.message",{"_index":1336,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.message",{"_index":1043,"title":{},"body":{"injectables/AuthService.html":{}}}],["err.status",{"_index":1347,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["err.statustext",{"_index":1044,"title":{},"body":{"injectables/AuthService.html":{}}}],["erroneously",{"_index":3704,"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":968,"title":{},"body":{"injectables/AuthService.html":{}}}],["error('the",{"_index":1031,"title":{},"body":{"injectables/AuthService.html":{}}}],["error(`${res.statustext",{"_index":1055,"title":{},"body":{"injectables/AuthService.html":{}}}],["error(message",{"_index":1397,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["error.message",{"_index":1395,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.stack",{"_index":1400,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.status",{"_index":1008,"title":{},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["error.tostring",{"_index":1396,"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":1332,"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":1330,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["errorstatematcher",{"_index":1246,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["errortracestring",{"_index":1384,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errortracestring.includes('/src/app",{"_index":1415,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["errortracestring.includes(whitelistsentence",{"_index":1417,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["essential",{"_index":3845,"title":{},"body":{"license.html":{}}}],["establish",{"_index":150,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["eth",{"_index":2678,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ethereum",{"_index":3416,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["ethers",{"_index":3210,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{}}}],["ethiopia",{"_index":2679,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["even",{"_index":2411,"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":3015,"title":{},"body":{"injectables/TokenService.html":{}}}],["everyone",{"_index":3622,"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":3774,"title":{},"body":{"license.html":{}}}],["example",{"_index":74,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"classes/MutablePgpKeyStore.html":{},"guards/RoleGuard.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["except",{"_index":3789,"title":{},"body":{"license.html":{}}}],["exceptions",{"_index":4096,"title":{},"body":{"license.html":{}}}],["exchange",{"_index":3137,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["excluded",{"_index":4034,"title":{},"body":{"license.html":{}}}],["excluding",{"_index":4269,"title":{},"body":{"license.html":{}}}],["exclusion",{"_index":4357,"title":{},"body":{"license.html":{}}}],["exclusive",{"_index":4221,"title":{},"body":{"license.html":{}}}],["exclusively",{"_index":3890,"title":{},"body":{"license.html":{}}}],["excuse",{"_index":4275,"title":{},"body":{"license.html":{}}}],["executable",{"_index":3833,"title":{},"body":{"license.html":{}}}],["execute",{"_index":3592,"title":{},"body":{"index.html":{},"license.html":{}}}],["executing",{"_index":3790,"title":{},"body":{"license.html":{}}}],["exercise",{"_index":4198,"title":{},"body":{"license.html":{}}}],["exercising",{"_index":3930,"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":4056,"title":{},"body":{"license.html":{}}}],["expects",{"_index":4055,"title":{},"body":{"license.html":{}}}],["expert",{"_index":1616,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["explains",{"_index":3695,"title":{},"body":{"license.html":{}}}],["explicitly",{"_index":3878,"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":3536,"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":3062,"title":{},"body":{"components/TokensComponent.html":{}}}],["exportcsv(this.transactions",{"_index":3344,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["exportcsv(this.trustedusers",{"_index":2884,"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":4227,"title":{},"body":{"license.html":{}}}],["expressed",{"_index":4305,"title":{},"body":{"license.html":{}}}],["expressly",{"_index":4144,"title":{},"body":{"license.html":{}}}],["extend",{"_index":3729,"title":{},"body":{"license.html":{}}}],["extended",{"_index":4255,"title":{},"body":{"license.html":{}}}],["extends",{"_index":1373,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["extensions",{"_index":3969,"title":{},"body":{"license.html":{}}}],["extent",{"_index":3809,"title":{},"body":{"license.html":{}}}],["external",{"_index":3419,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["eye",{"_index":2790,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["f",{"_index":4127,"title":{},"body":{"license.html":{}}}],["facilitator",{"_index":1632,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["facilities",{"_index":3891,"title":{},"body":{"license.html":{}}}],["facing",{"_index":1359,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["fagio",{"_index":1665,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["failed",{"_index":997,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/LoggingInterceptor.html":{}}}],["failedpinattempts",{"_index":3382,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["fails",{"_index":4157,"title":{},"body":{"license.html":{}}}],["failure",{"_index":4330,"title":{},"body":{"license.html":{}}}],["fair",{"_index":3884,"title":{},"body":{"license.html":{}}}],["faith",{"_index":1635,"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":4040,"title":{},"body":{"license.html":{}}}],["family/surname",{"_index":1238,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["farm",{"_index":1683,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["farmer",{"_index":1684,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["farming",{"_index":1682,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fashion",{"_index":3771,"title":{},"body":{"license.html":{}}}],["favor",{"_index":4050,"title":{},"body":{"license.html":{}}}],["feature",{"_index":3572,"title":{},"body":{"index.html":{},"license.html":{}}}],["fee",{"_index":3677,"title":{},"body":{"license.html":{}}}],["feels",{"_index":396,"title":{},"body":{"components/AccountsComponent.html":{}}}],["female",{"_index":2402,"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":1051,"title":{},"body":{"injectables/AuthService.html":{}}}],["fetched",{"_index":2989,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["fetcher",{"_index":1063,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["fetcher(settings",{"_index":1076,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["fia",{"_index":3401,"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":2794,"title":{},"body":{"injectables/RegistryService.html":{}}}],["filename",{"_index":3537,"title":{},"body":{"miscellaneous/functions.html":{}}}],["files",{"_index":3566,"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":1146,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["filteraccounts",{"_index":353,"title":{},"body":{"components/AccountsComponent.html":{}}}],["filterrounds",{"_index":1170,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["filters",{"_index":1145,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["filtertransactions",{"_index":3310,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["finalize",{"_index":1446,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["finally",{"_index":3232,"title":{},"body":{"injectables/TransactionService.html":{},"license.html":{}}}],["finance",{"_index":2014,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["find",{"_index":2589,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["fingerprint",{"_index":2689,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["fire",{"_index":2128,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["firewood",{"_index":2129,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["firm",{"_index":1817,"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":1857,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fitness",{"_index":4308,"title":{},"body":{"license.html":{}}}],["fix",{"_index":2738,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["fixed",{"_index":3990,"title":{},"body":{"license.html":{}}}],["flag",{"_index":2715,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["flow",{"_index":3868,"title":{},"body":{"license.html":{}}}],["flowers",{"_index":2071,"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":3754,"title":{},"body":{"license.html":{}}}],["following",{"_index":4225,"title":{},"body":{"license.html":{}}}],["foo",{"_index":1563,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["food",{"_index":1819,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["footballer",{"_index":1768,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["footer",{"_index":1362,"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":1364,"title":{},"body":{"components/FooterComponent.html":{}}}],["footer.component.scss",{"_index":1363,"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":3928,"title":{},"body":{"license.html":{}}}],["forbidden",{"_index":1355,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["force",{"_index":3887,"title":{},"body":{"license.html":{}}}],["form",{"_index":1250,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"license.html":{}}}],["form.submitted",{"_index":1256,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["format",{"_index":4090,"title":{},"body":{"license.html":{}}}],["formbuilder",{"_index":216,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["formcontrol",{"_index":1249,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["formgroup",{"_index":225,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["formgroupdirective",{"_index":1251,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["forms",{"_index":3981,"title":{},"body":{"license.html":{}}}],["found",{"_index":276,"title":{},"body":{"components/AccountSearchComponent.html":{},"index.html":{},"license.html":{}}}],["foundation",{"_index":3619,"title":{},"body":{"license.html":{}}}],["free",{"_index":3617,"title":{},"body":{"license.html":{}}}],["freedom",{"_index":3639,"title":{},"body":{"license.html":{}}}],["freedoms",{"_index":3680,"title":{},"body":{"license.html":{}}}],["freelance",{"_index":1786,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fromhex",{"_index":3212,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromhex(methodsignature",{"_index":3265,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromhex(strip0x(transferauthaddress",{"_index":3276,"title":{},"body":{"injectables/TransactionService.html":{}}}],["fromvalue",{"_index":1187,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["fruit",{"_index":1855,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fruits",{"_index":1856,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fua",{"_index":1737,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuata",{"_index":2296,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuel",{"_index":2122,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fuel/energy",{"_index":2114,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["fulfilling",{"_index":3913,"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":2418,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/PGPSigner.html":{},"coverage.html":{}}}],["functioning",{"_index":4067,"title":{},"body":{"license.html":{}}}],["functions",{"_index":2448,"title":{"miscellaneous/functions.html":{}},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/functions.html":{}}}],["fundamentally",{"_index":3710,"title":{},"body":{"license.html":{}}}],["fundi",{"_index":1716,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["furniture",{"_index":2080,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["further",{"_index":3605,"title":{},"body":{"index.html":{},"license.html":{}}}],["future",{"_index":3731,"title":{},"body":{"license.html":{}}}],["g",{"_index":3557,"title":{},"body":{"index.html":{}}}],["g.e",{"_index":2350,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gandini",{"_index":2203,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["garage",{"_index":1754,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["garbage",{"_index":1664,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gardener",{"_index":1670,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gari",{"_index":2111,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gas",{"_index":2133,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gatina",{"_index":2277,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ge",{"_index":2351,"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":1205,"title":{},"body":{"components/CreateAccountComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["general",{"_index":1411,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"license.html":{}}}],["generalized",{"_index":1387,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["generally",{"_index":3858,"title":{},"body":{"license.html":{}}}],["generate",{"_index":3569,"title":{},"body":{"index.html":{},"license.html":{}}}],["generated",{"_index":3552,"title":{},"body":{"index.html":{}}}],["ger",{"_index":2680,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["germany",{"_index":2681,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["getaccountinfo",{"_index":3171,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaccountinfo(account",{"_index":3182,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaccounttypes",{"_index":2438,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getactionbyid",{"_index":2423,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{}}}],["getactionbyid(id",{"_index":3407,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getactions",{"_index":2421,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getaddresssearchformstub",{"_index":242,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["getaddresstransactions",{"_index":3172,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getaddresstransactions(address",{"_index":3184,"title":{},"body":{"injectables/TransactionService.html":{}}}],["getalltransactions",{"_index":3173,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["getalltransactions(offset",{"_index":3186,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["getareanamebylocation",{"_index":1427,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getareanamebylocation(location",{"_index":1432,"title":{},"body":{"injectables/LocationService.html":{}}}],["getareanames",{"_index":1428,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getareatypebyarea",{"_index":1429,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getareatypebyarea(area",{"_index":1435,"title":{},"body":{"injectables/LocationService.html":{}}}],["getareatypes",{"_index":1430,"title":{},"body":{"injectables/LocationService.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["getbysymbol",{"_index":3036,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["getbysymbol(symbol",{"_index":3037,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["getcategories",{"_index":2430,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getcategorybyproduct",{"_index":2432,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getchallenge",{"_index":894,"title":{},"body":{"injectables/AuthService.html":{}}}],["getcreateformstub",{"_index":1217,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["getencryptkeys",{"_index":2505,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getfingerprint",{"_index":2506,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getgenders",{"_index":2442,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["getkeyformstub",{"_index":797,"title":{},"body":{"components/AuthComponent.html":{}}}],["getkeyid",{"_index":2507,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getkeyid(key",{"_index":2530,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getkeysforid",{"_index":2508,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getkeysforid(keyid",{"_index":2532,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getnamesearchformstub",{"_index":238,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["getorganizationformstub",{"_index":2661,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["getphonesearchformstub",{"_index":240,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["getprivatekey",{"_index":895,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeyforid",{"_index":2509,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeyforid(keyid",{"_index":2536,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeyid",{"_index":2510,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getprivatekeys",{"_index":2511,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforid",{"_index":2512,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforid(keyid",{"_index":2540,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforsubkeyid",{"_index":2513,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeyforsubkeyid(subkeyid",{"_index":2542,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeys",{"_index":896,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeysforaddress",{"_index":2514,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getpublickeysforaddress(address",{"_index":2546,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["getregistry",{"_index":2795,"title":{},"body":{"injectables/RegistryService.html":{}}}],["getter.ts",{"_index":3447,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["getting",{"_index":3547,"title":{"index.html":{},"license.html":{}},"body":{}}],["gettokenbalance",{"_index":3008,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenbalance(address",{"_index":3010,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokenbysymbol",{"_index":2428,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"injectables/TokenService.html":{}}}],["gettokenbysymbol(symbol",{"_index":3012,"title":{},"body":{"injectables/TokenService.html":{}}}],["gettokens",{"_index":2426,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"injectables/TokenService.html":{}}}],["gettransactiontypes",{"_index":2440,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["gettrustedactivekeys",{"_index":2515,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["gettrustedkeys",{"_index":2516,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["gettrustedusers",{"_index":897,"title":{},"body":{"injectables/AuthService.html":{}}}],["getuser",{"_index":3373,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuser(userkey",{"_index":3409,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuserbyid",{"_index":3374,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getuserbyid(id",{"_index":3412,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["getweb3",{"_index":2796,"title":{},"body":{"injectables/RegistryService.html":{}}}],["getwithtoken",{"_index":898,"title":{},"body":{"injectables/AuthService.html":{}}}],["giftable",{"_index":1546,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["githeri",{"_index":1858,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["githurai",{"_index":2303,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["give",{"_index":3949,"title":{},"body":{"license.html":{}}}],["given",{"_index":1235,"title":{},"body":{"components/CreateAccountComponent.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["givenname",{"_index":1221,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["gives",{"_index":3962,"title":{},"body":{"license.html":{}}}],["giving",{"_index":3689,"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":3611,"title":{},"body":{"license.html":{}}}],["go",{"_index":818,"title":{},"body":{"components/AuthComponent.html":{},"index.html":{}}}],["goats",{"_index":1863,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gona",{"_index":2201,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["good",{"_index":1942,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["governed",{"_index":4099,"title":{},"body":{"license.html":{}}}],["government",{"_index":1647,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["gpl",{"_index":3685,"title":{},"body":{"license.html":{}}}],["grant",{"_index":4123,"title":{},"body":{"license.html":{}}}],["granted",{"_index":3873,"title":{},"body":{"license.html":{}}}],["grants",{"_index":4177,"title":{},"body":{"license.html":{}}}],["graph",{"_index":4393,"title":{},"body":{"modules.html":{}}}],["grassroots",{"_index":1016,"title":{},"body":{"injectables/AuthService.html":{},"components/FooterComponent.html":{},"license.html":{}}}],["gratis",{"_index":3676,"title":{},"body":{"license.html":{}}}],["greatest",{"_index":4349,"title":{},"body":{"license.html":{}}}],["grocer",{"_index":1860,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["groceries",{"_index":3389,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["grocery",{"_index":1859,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["groundnuts",{"_index":1849,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["group",{"_index":2009,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["grz",{"_index":1548,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["guarantee",{"_index":3642,"title":{},"body":{"license.html":{}}}],["guard",{"_index":834,"title":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}},"body":{"guards/AuthGuard.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["guards",{"_index":835,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"overview.html":{}}}],["gui",{"_index":4378,"title":{},"body":{"license.html":{}}}],["guitarist",{"_index":1802,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["guro",{"_index":2202,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hair",{"_index":1743,"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":2446,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["handleerror",{"_index":1375,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handleerror(error",{"_index":1380,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["handler",{"_index":397,"title":{},"body":{"components/AccountsComponent.html":{},"injectables/AuthService.html":{}}}],["handler.ts",{"_index":1372,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{}}}],["handler.ts:18",{"_index":1379,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:27",{"_index":1381,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:47",{"_index":1386,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:67",{"_index":1383,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["handler.ts:8",{"_index":1425,"title":{},"body":{"classes/HttpError.html":{}}}],["handleroute",{"_index":2419,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["hanje",{"_index":2189,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["happened",{"_index":1414,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["hardware",{"_index":2043,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hash",{"_index":3149,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["hash.tostring('hex').substring(0",{"_index":3259,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction",{"_index":3254,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction.digest",{"_index":3257,"title":{},"body":{"injectables/TransactionService.html":{}}}],["hashfunction.update('createrequest(address,address,address,uint256",{"_index":3256,"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":3889,"title":{},"body":{"license.html":{}}}],["hawinga",{"_index":2364,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hawker",{"_index":1718,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hawking",{"_index":1717,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hazina",{"_index":2149,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headers",{"_index":2403,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["headmaster",{"_index":1620,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headmistress",{"_index":1611,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["headteacher",{"_index":1612,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["health",{"_index":1977,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["heath",{"_index":1993,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["help",{"_index":1722,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"index.html":{},"miscellaneous/variables.html":{}}}],["helper",{"_index":2492,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["hera",{"_index":3395,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["herbalist",{"_index":1988,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hereafter",{"_index":4217,"title":{},"body":{"license.html":{}}}],["hi",{"_index":1090,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["hidden",{"_index":594,"title":{},"body":{"components/AdminComponent.html":{}}}],["hoba",{"_index":982,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaparsechallengeheader",{"_index":931,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaparsechallengeheader(authheader",{"_index":993,"title":{},"body":{"injectables/AuthService.html":{}}}],["hobaresponseencoded",{"_index":922,"title":{},"body":{"injectables/AuthService.html":{}}}],["holder",{"_index":4151,"title":{},"body":{"license.html":{}}}],["holders",{"_index":4105,"title":{},"body":{"license.html":{}}}],["holel",{"_index":1851,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["homabay",{"_index":2368,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["homaboy",{"_index":2369,"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":4362,"title":{},"body":{"license.html":{}}}],["hospital",{"_index":1987,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hostlistener",{"_index":672,"title":{},"body":{"components/AppComponent.html":{},"directives/RouterLinkDirectiveStub.html":{}}}],["hostlistener('click",{"_index":2836,"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":4018,"title":{},"body":{"license.html":{}}}],["hotel",{"_index":1850,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hoteli",{"_index":1852,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["house",{"_index":1721,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["housegirl",{"_index":1723,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["househelp",{"_index":1719,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["household",{"_index":4041,"title":{},"body":{"license.html":{}}}],["hsehelp",{"_index":1720,"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":1388,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["http://localhost:4200",{"_index":3563,"title":{},"body":{"index.html":{}}}],["http://localhost:8000",{"_index":4432,"title":{},"body":{"miscellaneous/variables.html":{}}}],["http://localhost:8000/keys.asc",{"_index":4433,"title":{},"body":{"miscellaneous/variables.html":{}}}],["http_interceptors",{"_index":742,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["httpclient",{"_index":906,"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":939,"title":{"classes/HttpError.html":{}},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{}}}],["httperror(xhr.statustext",{"_index":983,"title":{},"body":{"injectables/AuthService.html":{}}}],["httperrorresponse",{"_index":1326,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["httperrorresponse).status",{"_index":1407,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["httpevent",{"_index":1324,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpgetter",{"_index":2800,"title":{},"body":{"injectables/RegistryService.html":{},"coverage.html":{},"miscellaneous/functions.html":{}}}],["httphandler",{"_index":1321,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpinterceptor",{"_index":1325,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httprequest",{"_index":1320,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["httpresponse",{"_index":1445,"title":{},"body":{"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["https://blockexplorer.bloxberg.org/address",{"_index":3117,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["https://cache.dev.grassrootseconomics.net",{"_index":4421,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://dashboard.sarafu.network",{"_index":2747,"title":{},"body":{"components/PagesComponent.html":{}}}],["https://dev.grassrootseconomics.net/.well",{"_index":4418,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://fsf.org",{"_index":3621,"title":{},"body":{"license.html":{}}}],["https://meta.dev.grassrootseconomics.net",{"_index":4416,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://ussd.dev.grassrootseconomics.net",{"_index":4426,"title":{},"body":{"miscellaneous/variables.html":{}}}],["https://www.gnu.org/licenses",{"_index":4364,"title":{},"body":{"license.html":{}}}],["https://www.gnu.org/licenses/why",{"_index":4389,"title":{},"body":{"license.html":{}}}],["huruma",{"_index":2270,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hustler",{"_index":1738,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["hypothetical",{"_index":4375,"title":{},"body":{"license.html":{}}}],["icon",{"_index":2784,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["icon.classlist.add('fa",{"_index":2791,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["icon.classlist.remove('fa",{"_index":2789,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["iconid",{"_index":2777,"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":4245,"title":{},"body":{"license.html":{}}}],["identifier",{"_index":2988,"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":2453,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["idnumber",{"_index":1220,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["iframes",{"_index":2749,"title":{},"body":{"components/PagesComponent.html":{}}}],["ignore",{"_index":2787,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["imam",{"_index":1637,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["immagration",{"_index":1659,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["immigration",{"_index":1660,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["implement",{"_index":3843,"title":{},"body":{"license.html":{}}}],["implementation",{"_index":837,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["implements",{"_index":185,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/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":4270,"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":2767,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/admin/admin.module').then(m",{"_index":2771,"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":2765,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/tokens/tokens.module').then(m",{"_index":2769,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["import('@pages/transactions/transactions.module').then(m",{"_index":2763,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["imported",{"_index":2593,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["imported.keys",{"_index":2595,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importing",{"_index":4209,"title":{},"body":{"license.html":{}}}],["importkeypair",{"_index":2517,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importkeypair(publickey",{"_index":2550,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importprivatekey",{"_index":2518,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importprivatekey(privatekey",{"_index":2553,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importpublickey",{"_index":2519,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["importpublickey(publickey",{"_index":2555,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["imports",{"_index":143,"title":{},"body":{"classes/AccountIndex.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesModule.html":{},"modules/PagesRoutingModule.html":{},"guards/RoleGuard.html":{},"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules/SharedModule.html":{},"classes/TokenRegistry.html":{},"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{}}}],["impose",{"_index":4132,"title":{},"body":{"license.html":{}}}],["imposed",{"_index":4272,"title":{},"body":{"license.html":{}}}],["inability",{"_index":4324,"title":{},"body":{"license.html":{}}}],["inaccurate",{"_index":4327,"title":{},"body":{"license.html":{}}}],["inc",{"_index":3620,"title":{},"body":{"license.html":{}}}],["incidental",{"_index":4321,"title":{},"body":{"license.html":{}}}],["include",{"_index":3834,"title":{},"body":{"license.html":{}}}],["included",{"_index":3836,"title":{},"body":{"license.html":{}}}],["includes",{"_index":3794,"title":{},"body":{"license.html":{}}}],["including",{"_index":3854,"title":{},"body":{"license.html":{}}}],["inclusion",{"_index":3979,"title":{},"body":{"license.html":{}}}],["inclusive",{"_index":2961,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["income",{"_index":2966,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["incompatible",{"_index":3711,"title":{},"body":{"license.html":{}}}],["incorporating",{"_index":4381,"title":{},"body":{"license.html":{}}}],["incorporation",{"_index":4044,"title":{},"body":{"license.html":{}}}],["incorrect",{"_index":1021,"title":{},"body":{"injectables/AuthService.html":{}}}],["indemnification",{"_index":4128,"title":{},"body":{"license.html":{}}}],["independent",{"_index":3967,"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":4180,"title":{},"body":{"license.html":{}}}],["indicating",{"_index":4142,"title":{},"body":{"license.html":{}}}],["individual",{"_index":3977,"title":{},"body":{"license.html":{}}}],["individuals",{"_index":3718,"title":{},"body":{"license.html":{}}}],["industrial",{"_index":2279,"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":4026,"title":{},"body":{"license.html":{}}}],["information",{"_index":857,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"guards/RoleGuard.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["infringe",{"_index":4178,"title":{},"body":{"license.html":{}}}],["infringed",{"_index":4207,"title":{},"body":{"license.html":{}}}],["infringement",{"_index":3787,"title":{},"body":{"license.html":{}}}],["init",{"_index":899,"title":{},"body":{"injectables/AuthService.html":{}}}],["initialparams",{"_index":532,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["initiate",{"_index":4201,"title":{},"body":{"license.html":{}}}],["inject",{"_index":1290,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["inject(mat_dialog_data",{"_index":1288,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["injectable",{"_index":871,"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":889,"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":2781,"title":{},"body":{"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/TransactionDetailsComponent.html":{},"miscellaneous/functions.html":{}}}],["input('routerlink",{"_index":2834,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["inputs",{"_index":2776,"title":{},"body":{"directives/PasswordToggleDirective.html":{},"directives/RouterLinkDirectiveStub.html":{},"components/TransactionDetailsComponent.html":{}}}],["inside",{"_index":3707,"title":{},"body":{"license.html":{}}}],["install",{"_index":3556,"title":{},"body":{"index.html":{},"license.html":{}}}],["installation",{"_index":4062,"title":{},"body":{"license.html":{}}}],["installed",{"_index":4078,"title":{},"body":{"license.html":{}}}],["instance",{"_index":66,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["instanceof",{"_index":1007,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{}}}],["instantiates",{"_index":843,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["instead",{"_index":4387,"title":{},"body":{"license.html":{}}}],["instructor",{"_index":1607,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["insurance",{"_index":1775,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["intact",{"_index":3942,"title":{},"body":{"license.html":{}}}],["intended",{"_index":3641,"title":{},"body":{"license.html":{}}}],["intention",{"_index":3932,"title":{},"body":{"license.html":{}}}],["interaction",{"_index":3803,"title":{},"body":{"license.html":{}}}],["interactive",{"_index":3805,"title":{},"body":{"license.html":{}}}],["intercept",{"_index":1316,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["intercept(request",{"_index":1319,"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":1314,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["interchange",{"_index":3993,"title":{},"body":{"license.html":{}}}],["interest",{"_index":4195,"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":4069,"title":{},"body":{"license.html":{}}}],["intern",{"_index":1627,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["interpretation",{"_index":4334,"title":{},"body":{"license.html":{}}}],["interpreter",{"_index":3852,"title":{},"body":{"license.html":{}}}],["intimate",{"_index":3866,"title":{},"body":{"license.html":{}}}],["invalid",{"_index":1032,"title":{},"body":{"injectables/AuthService.html":{}}}],["invalidate",{"_index":3963,"title":{},"body":{"license.html":{}}}],["irrevocable",{"_index":3875,"title":{},"body":{"license.html":{}}}],["isdevmode",{"_index":1485,"title":{},"body":{"injectables/LoggingService.html":{}}}],["isdialogopen",{"_index":1298,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["isencryptedkeycheck",{"_index":1035,"title":{},"body":{"injectables/AuthService.html":{}}}],["isencryptedprivatekey",{"_index":2520,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["isencryptedprivatekey(privatekey",{"_index":2557,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["iserrorstate",{"_index":1247,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["iserrorstate(control",{"_index":1248,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["issubmitted",{"_index":1255,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["isvalidkey",{"_index":2521,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["isvalidkey(key",{"_index":2559,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["isvalidkeycheck",{"_index":1029,"title":{},"body":{"injectables/AuthService.html":{}}}],["iswarning",{"_index":1376,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["iswarning(errortracestring",{"_index":1382,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["item",{"_index":3821,"title":{},"body":{"license.html":{}}}],["itself",{"_index":4083,"title":{},"body":{"license.html":{}}}],["jack",{"_index":1542,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["jane",{"_index":3384,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["jembe",{"_index":1689,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jewel",{"_index":2076,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jik",{"_index":2020,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jogoo",{"_index":2287,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["john",{"_index":3376,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["jomvu",{"_index":2327,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["journalist",{"_index":1608,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jquery",{"_index":3505,"title":{},"body":{"dependencies.html":{}}}],["js",{"_index":3521,"title":{},"body":{"dependencies.html":{}}}],["json.parse(localstorage.getitem(atob('cicada_user",{"_index":2822,"title":{},"body":{"guards/RoleGuard.html":{}}}],["json.stringify(err.error",{"_index":1348,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["jua",{"_index":1728,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juacali",{"_index":1727,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juakali",{"_index":1725,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["jualikali",{"_index":1726,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juice",{"_index":1974,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["juja",{"_index":2285,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["junda",{"_index":2342,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["june",{"_index":3613,"title":{},"body":{"license.html":{}}}],["kabete",{"_index":2268,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kabiro",{"_index":2298,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kafuduni",{"_index":2196,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kahawa",{"_index":1891,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kaimati",{"_index":1888,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kajiado",{"_index":2383,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kakamega",{"_index":2381,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kakuma",{"_index":2354,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kalalani",{"_index":2195,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kali",{"_index":1729,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kaloleni",{"_index":2197,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kamba",{"_index":1886,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kambi",{"_index":2147,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kamongo",{"_index":2158,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kangemi",{"_index":2260,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kanisa",{"_index":1644,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kariobangi",{"_index":2280,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["karma",{"_index":3593,"title":{},"body":{"index.html":{}}}],["kasarani",{"_index":2281,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kasemeni",{"_index":2190,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["katundani",{"_index":2191,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kawangware",{"_index":2263,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayaba",{"_index":2145,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayba",{"_index":2146,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kayole",{"_index":2282,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kazi",{"_index":1734,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ke",{"_index":2674,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["kebeba",{"_index":2084,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["keccak",{"_index":3207,"title":{},"body":{"injectables/TransactionService.html":{}}}],["keccak(256",{"_index":3255,"title":{},"body":{"injectables/TransactionService.html":{}}}],["keep",{"_index":3941,"title":{},"body":{"license.html":{}}}],["keki",{"_index":1892,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kenya",{"_index":2675,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["kenyatta",{"_index":2274,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kericho",{"_index":2382,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kernel",{"_index":3846,"title":{},"body":{"license.html":{}}}],["kerosene",{"_index":2140,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kerosine",{"_index":2139,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["key",{"_index":800,"title":{},"body":{"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/CustomValidator.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["key.getkeyid().tohex",{"_index":2600,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["key.isdecrypted",{"_index":2596,"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":2534,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring",{"_index":2576,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["keyring.clear",{"_index":2613,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.getkeysforid(keyid",{"_index":2605,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.load",{"_index":2578,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys",{"_index":2584,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.getforid(keyid",{"_index":2607,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.importkey(privatekey",{"_index":2581,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys",{"_index":2583,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0",{"_index":2585,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0].getkeyid().tohex",{"_index":2604,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0].keypacket",{"_index":2598,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.privatekeys.keys[0].keypacket.fingerprint",{"_index":2599,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.getforaddress(address",{"_index":2609,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.getforid(keyid",{"_index":2606,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.getforid(subkeyid",{"_index":2608,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.importkey(publickey",{"_index":2580,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.keys",{"_index":2582,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.publickeys.removeforid(keyid",{"_index":2611,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.removekeysforid(keyid",{"_index":2610,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["keyring.store",{"_index":2579,"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":2503,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["khaimati",{"_index":1887,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kiambu",{"_index":2387,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibanda",{"_index":2026,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibandaogo",{"_index":2192,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibandaongo",{"_index":2193,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibera",{"_index":2254,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibira",{"_index":2255,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kibra",{"_index":2256,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kidzuvini",{"_index":2194,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kikuyu",{"_index":2290,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kilfi",{"_index":2345,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kilibole",{"_index":2198,"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":2167,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kind",{"_index":3799,"title":{},"body":{"license.html":{}}}],["kinds",{"_index":3632,"title":{},"body":{"license.html":{}}}],["kingston",{"_index":2155,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kingstone",{"_index":2157,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kinyozi",{"_index":1733,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kiosk",{"_index":2027,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kirembe",{"_index":2309,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisauni",{"_index":2331,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisii",{"_index":2376,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kisumu",{"_index":2362,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitabu",{"_index":1634,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitengela",{"_index":2271,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kitui",{"_index":2355,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kizingo",{"_index":2316,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kmoja",{"_index":2301,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["knitting",{"_index":1735,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["know",{"_index":3661,"title":{},"body":{"license.html":{}}}],["knowingly",{"_index":4234,"title":{},"body":{"license.html":{}}}],["knowledge",{"_index":4243,"title":{},"body":{"license.html":{}}}],["known/publickeys",{"_index":4419,"title":{},"body":{"miscellaneous/variables.html":{}}}],["kobo",{"_index":2887,"title":{},"body":{"components/SettingsComponent.html":{}}}],["kokotoni",{"_index":2249,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["korokocho",{"_index":2156,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["korosho",{"_index":1972,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kra",{"_index":1657,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["krcs",{"_index":1629,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kubeba",{"_index":2099,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kufua",{"_index":1736,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kujenga",{"_index":1732,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kuku",{"_index":1890,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kulima",{"_index":1686,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kunde",{"_index":1889,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kuni",{"_index":2120,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kushona",{"_index":1724,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kusumu",{"_index":2371,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kwale",{"_index":2168,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kwangware",{"_index":2264,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["kware",{"_index":2297,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lab",{"_index":1999,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["labor",{"_index":1740,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["labour",{"_index":1691,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["landi",{"_index":2304,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["landlord",{"_index":1713,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["langata",{"_index":2305,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["language",{"_index":3830,"title":{},"body":{"license.html":{}}}],["larger",{"_index":3971,"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":1741,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["law",{"_index":1816,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["laws",{"_index":3758,"title":{},"body":{"license.html":{}}}],["lawsuit",{"_index":4205,"title":{},"body":{"license.html":{}}}],["lazy",{"_index":3571,"title":{},"body":{"index.html":{}}}],["leader",{"_index":1656,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["leaving",{"_index":1033,"title":{},"body":{"injectables/AuthService.html":{}}}],["lecturer",{"_index":1594,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["legal",{"_index":3690,"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":2034,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lesser",{"_index":4386,"title":{},"body":{"license.html":{}}}],["lesso",{"_index":2035,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lesson",{"_index":1609,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["level",{"_index":755,"title":{},"body":{"modules/AppModule.html":{}}}],["lgpl.html",{"_index":4390,"title":{},"body":{"license.html":{}}}],["liability",{"_index":4108,"title":{},"body":{"license.html":{}}}],["liable",{"_index":3786,"title":{},"body":{"license.html":{}}}],["libraries",{"_index":3832,"title":{},"body":{"license.html":{}}}],["library",{"_index":2601,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{}}}],["license",{"_index":3610,"title":{"license.html":{}},"body":{"license.html":{}}}],["licensed",{"_index":3762,"title":{},"body":{"license.html":{}}}],["licensee",{"_index":3765,"title":{},"body":{"license.html":{}}}],["licensees",{"_index":3767,"title":{},"body":{"license.html":{}}}],["licenses",{"_index":3634,"title":{},"body":{"license.html":{}}}],["licensing",{"_index":4182,"title":{},"body":{"license.html":{}}}],["licensors",{"_index":4121,"title":{},"body":{"license.html":{}}}],["likewise",{"_index":4175,"title":{},"body":{"license.html":{}}}],["likoni",{"_index":2313,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["limit",{"_index":1073,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{},"license.html":{}}}],["limit).pipe(first()).subscribe(res",{"_index":1135,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["limitation",{"_index":4318,"title":{},"body":{"license.html":{}}}],["limited",{"_index":4306,"title":{},"body":{"license.html":{}}}],["limiting",{"_index":4107,"title":{},"body":{"license.html":{}}}],["limuru",{"_index":2306,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lindi",{"_index":2253,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["line",{"_index":4358,"title":{},"body":{"license.html":{}}}],["lines",{"_index":2025,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["link",{"_index":2830,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{},"coverage.html":{},"license.html":{}}}],["linked",{"_index":3863,"title":{},"body":{"license.html":{}}}],["linking",{"_index":4384,"title":{},"body":{"license.html":{}}}],["linkparams",{"_index":2835,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["list",{"_index":3817,"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":4202,"title":{},"body":{"license.html":{}}}],["lo",{"_index":1089,"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":859,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"index.html":{}}}],["loadevent",{"_index":3007,"title":{},"body":{"injectables/TokenService.html":{}}}],["loading",{"_index":780,"title":{},"body":{"components/AuthComponent.html":{},"index.html":{}}}],["loadkeyring",{"_index":2522,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["loan",{"_index":2010,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["local",{"_index":4335,"title":{},"body":{"license.html":{}}}],["localstorage",{"_index":870,"title":{},"body":{"guards/AuthGuard.html":{}}}],["localstorage.getitem(btoa('cicada_private_key",{"_index":876,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{}}}],["localstorage.setitem(btoa('cicada_private_key",{"_index":1040,"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":1207,"title":{"injectables/LocationService.html":{}},"body":{"components/CreateAccountComponent.html":{},"injectables/LocationService.html":{},"coverage.html":{}}}],["log",{"_index":972,"title":{},"body":{"injectables/AuthService.html":{}}}],["logerror",{"_index":1377,"title":{},"body":{"injectables/GlobalErrorHandler.html":{}}}],["logerror(error",{"_index":1385,"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":4414,"title":{},"body":{"miscellaneous/variables.html":{}}}],["login",{"_index":782,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["loginresponse",{"_index":900,"title":{},"body":{"injectables/AuthService.html":{}}}],["loginresponse(o",{"_index":915,"title":{},"body":{"injectables/AuthService.html":{}}}],["loginview",{"_index":901,"title":{},"body":{"injectables/AuthService.html":{}}}],["loglevel",{"_index":4411,"title":{},"body":{"miscellaneous/variables.html":{}}}],["logout",{"_index":902,"title":{},"body":{"injectables/AuthService.html":{},"components/SettingsComponent.html":{}}}],["long",{"_index":3886,"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":4325,"title":{},"body":{"license.html":{}}}],["losses",{"_index":4328,"title":{},"body":{"license.html":{}}}],["low",{"_index":1171,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["lower",{"_index":2964,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["lowest",{"_index":170,"title":{},"body":{"classes/AccountIndex.html":{}}}],["lunga",{"_index":2163,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lungalunga",{"_index":2159,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lungu",{"_index":2162,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["lutsangani",{"_index":2199,"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":2768,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.adminmodule",{"_index":2772,"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":2766,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.tokensmodule",{"_index":2770,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["m.transactionsmodule",{"_index":2764,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["maalim",{"_index":1589,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maandazi",{"_index":1924,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maandzi",{"_index":1967,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabenda",{"_index":1864,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabesheni",{"_index":2220,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mabuyu",{"_index":1903,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["machakos",{"_index":2378,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["machine",{"_index":3983,"title":{},"body":{"license.html":{}}}],["machungwa",{"_index":1904,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["made",{"_index":4070,"title":{},"body":{"license.html":{}}}],["madewani",{"_index":2216,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["madrasa",{"_index":1638,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maembe",{"_index":1785,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mafuta",{"_index":2124,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magari",{"_index":2112,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magogoni",{"_index":2341,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["magongo",{"_index":2324,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mahamri",{"_index":1932,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maharagwe",{"_index":1930,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mahindi",{"_index":1923,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mail",{"_index":4368,"title":{},"body":{"license.html":{}}}],["mailman",{"_index":1658,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["main",{"_index":1579,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maintain",{"_index":4014,"title":{},"body":{"license.html":{}}}],["maize",{"_index":1917,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majani",{"_index":1784,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majaoni",{"_index":2339,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["majengo",{"_index":2243,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maji",{"_index":1976,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["major",{"_index":3839,"title":{},"body":{"license.html":{}}}],["makaa",{"_index":2123,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makadara",{"_index":2272,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makanga",{"_index":2113,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["make",{"_index":3645,"title":{},"body":{"license.html":{}}}],["makes",{"_index":3904,"title":{},"body":{"license.html":{}}}],["makina",{"_index":2257,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["making",{"_index":3773,"title":{},"body":{"license.html":{}}}],["makobeni",{"_index":2215,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makonge",{"_index":1806,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makongeni",{"_index":2348,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makueni",{"_index":2374,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makuluni",{"_index":2213,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makupa",{"_index":2319,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["makuti",{"_index":1731,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["male",{"_index":2401,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["mali",{"_index":2042,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["malimali",{"_index":2040,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["management",{"_index":2893,"title":{},"body":{"components/SettingsComponent.html":{}}}],["manager",{"_index":1749,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["managing",{"_index":3550,"title":{},"body":{"index.html":{}}}],["manamba",{"_index":2104,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mandazi",{"_index":1921,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mango",{"_index":1877,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mangwe",{"_index":2052,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["manipulation",{"_index":848,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["manner",{"_index":4218,"title":{},"body":{"license.html":{}}}],["manufacturer",{"_index":3709,"title":{},"body":{"license.html":{}}}],["manyani",{"_index":2340,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["march",{"_index":4267,"title":{},"body":{"license.html":{}}}],["mariakani",{"_index":2214,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marital",{"_index":1622,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marked",{"_index":3700,"title":{},"body":{"license.html":{}}}],["market",{"_index":2311,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marketing",{"_index":1810,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["marks",{"_index":4126,"title":{},"body":{"license.html":{}}}],["marondo",{"_index":1966,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["masai",{"_index":2148,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mask",{"_index":1997,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["masks",{"_index":3760,"title":{},"body":{"license.html":{}}}],["mason",{"_index":1752,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mat_dialog_data",{"_index":1291,"title":{},"body":{"components/ErrorDialogComponent.html":{}}}],["matatu",{"_index":2089,"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":1245,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"coverage.html":{}}}],["matcher.ts:5",{"_index":1253,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{}}}],["matches",{"_index":2818,"title":{},"body":{"guards/RoleGuard.html":{}}}],["matching",{"_index":58,"title":{},"body":{"interfaces/AccountDetails.html":{},"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"modules/AccountsModule.html":{},"modules/AccountsRoutingModule.html":{},"interfaces/Action.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"modules/AdminModule.html":{},"modules/AdminRoutingModule.html":{},"components/AppComponent.html":{},"modules/AppModule.html":{},"modules/AppRoutingModule.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"modules/AuthRoutingModule.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interfaces/Meta.html":{},"interfaces/MetaResponse.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/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":1301,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["matdialogmodule",{"_index":2927,"title":{},"body":{"modules/SharedModule.html":{}}}],["matdialogref",{"_index":1306,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["material",{"_index":2706,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["material.digest",{"_index":2721,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["materialize",{"_index":1527,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["materially",{"_index":4084,"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":2977,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["mathare",{"_index":2283,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mathere",{"_index":2307,"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":2912,"title":{},"body":{"modules/SettingsModule.html":{}}}],["matoke",{"_index":1968,"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":3072,"title":{},"body":{"modules/TokensModule.html":{}}}],["matradiomodule",{"_index":2910,"title":{},"body":{"modules/SettingsModule.html":{}}}],["matress",{"_index":2059,"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":3073,"title":{},"body":{"modules/TokensModule.html":{}}}],["matsnackbar",{"_index":3102,"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":3060,"title":{},"body":{"components/TokensComponent.html":{}}}],["mattabledatasource(this.trustedusers",{"_index":2883,"title":{},"body":{"components/SettingsComponent.html":{}}}],["mattabledatasource(transactions",{"_index":3334,"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":3075,"title":{},"body":{"modules/TokensModule.html":{}}}],["mattress",{"_index":2060,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mattresses",{"_index":2061,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matuga",{"_index":2244,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["matunda",{"_index":1876,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mawe",{"_index":1783,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mayai",{"_index":1939,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazera",{"_index":2222,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazeras",{"_index":2221,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mazingira",{"_index":1673,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["maziwa",{"_index":1897,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbaazi",{"_index":1922,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbao",{"_index":2121,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbata",{"_index":1918,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbenda",{"_index":1865,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbita",{"_index":2360,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbog",{"_index":1899,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mboga",{"_index":1898,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbonga",{"_index":1823,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mbuzi",{"_index":1905,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mc",{"_index":3390,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["mchanga",{"_index":2056,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchele",{"_index":1875,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchicha",{"_index":1907,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchuuzi",{"_index":1920,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mchuzi",{"_index":1919,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["meaning",{"_index":4136,"title":{},"body":{"license.html":{}}}],["means",{"_index":3757,"title":{},"body":{"license.html":{}}}],["measure",{"_index":3912,"title":{},"body":{"license.html":{}}}],["measures",{"_index":3925,"title":{},"body":{"license.html":{}}}],["meat",{"_index":1926,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mechanic",{"_index":1755,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mediaquery",{"_index":641,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["mediaquery.matches",{"_index":1509,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["mediaquerylist",{"_index":664,"title":{},"body":{"components/AppComponent.html":{}}}],["medicine",{"_index":1998,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["medium",{"_index":3937,"title":{},"body":{"license.html":{}}}],["meet",{"_index":3951,"title":{},"body":{"license.html":{}}}],["meets",{"_index":3822,"title":{},"body":{"license.html":{}}}],["mellon",{"_index":1879,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["melon",{"_index":1878,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["menu",{"_index":1517,"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":4307,"title":{},"body":{"license.html":{}}}],["mere",{"_index":3802,"title":{},"body":{"license.html":{}}}],["mergemap",{"_index":1528,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["merging",{"_index":4191,"title":{},"body":{"license.html":{}}}],["meru",{"_index":2375,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["message",{"_index":1011,"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":1398,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["met",{"_index":3877,"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":1813,"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":3258,"title":{},"body":{"injectables/TransactionService.html":{}}}],["mfugaji",{"_index":1757,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mganga",{"_index":1989,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mgema",{"_index":1767,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mhogo",{"_index":1927,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miatsani",{"_index":2226,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miatsiani",{"_index":2207,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["middle",{"_index":2965,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["mienzeni",{"_index":2208,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mifugo",{"_index":1940,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["migori",{"_index":2370,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miguneni",{"_index":2230,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mihogo",{"_index":1928,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikate",{"_index":1914,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikeka",{"_index":2053,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mikindani",{"_index":2250,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["milk",{"_index":1895,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mill",{"_index":1745,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miloeni",{"_index":2219,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["minheight",{"_index":592,"title":{},"body":{"components/AdminComponent.html":{}}}],["minyenzeni",{"_index":2210,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mioleni",{"_index":2212,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miraa",{"_index":1894,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miritini",{"_index":2325,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["misc",{"_index":2251,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miscellaneous",{"_index":3526,"title":{"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}},"body":{"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["misrepresentation",{"_index":4117,"title":{},"body":{"license.html":{}}}],["miti",{"_index":1674,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mitumba",{"_index":1933,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mitungi",{"_index":2041,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miwa",{"_index":1931,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miyani",{"_index":2211,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["miyenzeni",{"_index":2206,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjambere",{"_index":2338,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjengo",{"_index":1787,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mjenzi",{"_index":1756,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkanyeni",{"_index":2204,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkate",{"_index":1912,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkokoteni",{"_index":2106,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mksiti",{"_index":1645,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mkulima",{"_index":1685,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mlola",{"_index":2223,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mlolongo",{"_index":2273,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnarani",{"_index":2349,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnazi",{"_index":1906,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mnyenzeni",{"_index":2209,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mocha",{"_index":3507,"title":{},"body":{"dependencies.html":{}}}],["mock",{"_index":535,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["mockbackendinterceptor",{"_index":1521,"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":1489,"title":{},"body":{"injectables/LoggingService.html":{},"license.html":{}}}],["model",{"_index":3998,"title":{},"body":{"license.html":{}}}],["modification",{"_index":3753,"title":{},"body":{"license.html":{}}}],["modifications",{"_index":3825,"title":{},"body":{"license.html":{}}}],["modified",{"_index":3699,"title":{},"body":{"license.html":{}}}],["modifies",{"_index":3955,"title":{},"body":{"license.html":{}}}],["modify",{"_index":3673,"title":{},"body":{"license.html":{}}}],["modifying",{"_index":3792,"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":1925,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mombasa",{"_index":2312,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["moment",{"_index":862,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["moolb",{"_index":3509,"title":{},"body":{"dependencies.html":{}}}],["more",{"_index":3606,"title":{},"body":{"index.html":{},"license.html":{}}}],["moreover",{"_index":4162,"title":{},"body":{"license.html":{}}}],["moto",{"_index":2125,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["motorbike",{"_index":2109,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["motorist",{"_index":2108,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mover",{"_index":2107,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["movie",{"_index":2054,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpesa",{"_index":2063,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpishi",{"_index":1765,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mpsea",{"_index":2062,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ms",{"_index":1455,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["mshomoroni",{"_index":2344,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["msusi",{"_index":1766,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtambo",{"_index":1746,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtopanga",{"_index":2337,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtumba",{"_index":1753,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mtwapa",{"_index":2346,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muguka",{"_index":1893,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muhogo",{"_index":1929,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mukuru",{"_index":2143,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["multi",{"_index":764,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["multiple",{"_index":2597,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["mulunguni",{"_index":2225,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mumias",{"_index":2367,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["musician",{"_index":1804,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mutable",{"_index":2572,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["mutablekeystore",{"_index":891,"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":2032,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["muugano",{"_index":2224,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mvita",{"_index":2320,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mvuvi",{"_index":1782,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwache",{"_index":2227,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwakirunge",{"_index":2343,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwalimu",{"_index":1588,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwangani",{"_index":2228,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwangaraba",{"_index":2217,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwashanga",{"_index":2218,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwea",{"_index":2388,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwehavikonje",{"_index":2229,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwiki",{"_index":2295,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mwingi",{"_index":2356,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["mworoni",{"_index":2333,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["myenzeni",{"_index":2205,"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":2144,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nakuru",{"_index":2389,"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":1236,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["names",{"_index":1237,"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":2384,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["narok",{"_index":2390,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nature",{"_index":3968,"title":{},"body":{"license.html":{}}}],["navigate",{"_index":3562,"title":{},"body":{"index.html":{}}}],["navigatedto",{"_index":2831,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["navigation",{"_index":845,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["nazi",{"_index":1910,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ndizi",{"_index":1884,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["necessary",{"_index":4315,"title":{},"body":{"license.html":{}}}],["need",{"_index":3665,"title":{},"body":{"license.html":{}}}],["needed",{"_index":3732,"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":1064,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["newconversionevent(tx",{"_index":1080,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["newtransferevent",{"_index":1065,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["newtransferevent(tx",{"_index":1083,"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":1424,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["next.handle(request).pipe",{"_index":1328,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["next.handle(request).pipe(tap(event",{"_index":1450,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["ng",{"_index":3568,"title":{},"body":{"index.html":{}}}],["ng2",{"_index":2759,"title":{},"body":{"modules/PagesModule.html":{},"dependencies.html":{}}}],["ngafterviewinit",{"_index":3311,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["ngano",{"_index":1909,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngform",{"_index":1252,"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":1908,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngombeni",{"_index":2321,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngong",{"_index":2293,"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":1751,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ngx",{"_index":749,"title":{},"body":{"modules/AppModule.html":{},"injectables/LoggingService.html":{},"dependencies.html":{}}}],["ngxlogger",{"_index":1468,"title":{},"body":{"injectables/LoggingService.html":{}}}],["ngxloggerlevel.error",{"_index":4412,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ngxloggerlevel.off",{"_index":4413,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ngómbeni",{"_index":2322,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["njugu",{"_index":1885,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["non",{"_index":3748,"title":{},"body":{"license.html":{}}}],["noncommercially",{"_index":4005,"title":{},"body":{"license.html":{}}}],["none",{"_index":831,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nopasswordmatch",{"_index":1277,"title":{},"body":{"classes/CustomValidator.html":{}}}],["normal",{"_index":3837,"title":{},"body":{"license.html":{}}}],["normally",{"_index":4039,"title":{},"body":{"license.html":{}}}],["nothing",{"_index":4176,"title":{},"body":{"license.html":{}}}],["notice",{"_index":3812,"title":{},"body":{"license.html":{}}}],["notices",{"_index":3808,"title":{},"body":{"license.html":{}}}],["notifies",{"_index":4163,"title":{},"body":{"license.html":{}}}],["notify",{"_index":4158,"title":{},"body":{"license.html":{}}}],["notwithstanding",{"_index":4104,"title":{},"body":{"license.html":{}}}],["now",{"_index":1034,"title":{},"body":{"injectables/AuthService.html":{}}}],["npm",{"_index":3555,"title":{},"body":{"index.html":{}}}],["null",{"_index":1075,"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":3271,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(conversion.fromvalue",{"_index":3237,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(conversion.tovalue",{"_index":3239,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(transaction.value",{"_index":3224,"title":{},"body":{"injectables/TransactionService.html":{}}}],["number(value",{"_index":2976,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["numbered",{"_index":4295,"title":{},"body":{"license.html":{}}}],["numberofaccounts",{"_index":133,"title":{},"body":{"classes/AccountIndex.html":{}}}],["nurse",{"_index":1992,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nursery",{"_index":1603,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyalenda",{"_index":2363,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyalgunga",{"_index":2359,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyali",{"_index":2334,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyama",{"_index":1881,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyanya",{"_index":1880,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyanza",{"_index":2357,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nyeri",{"_index":2385,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzora",{"_index":2231,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzovuni",{"_index":2232,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["nzugu",{"_index":1971,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["o",{"_index":917,"title":{},"body":{"injectables/AuthService.html":{}}}],["o.realm",{"_index":1004,"title":{},"body":{"injectables/AuthService.html":{}}}],["objcsv",{"_index":3451,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["object",{"_index":2574,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["obligate",{"_index":4279,"title":{},"body":{"license.html":{}}}],["obligated",{"_index":4020,"title":{},"body":{"license.html":{}}}],["obligations",{"_index":3914,"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":4004,"title":{},"body":{"license.html":{}}}],["occurred",{"_index":1334,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["occurring",{"_index":4173,"title":{},"body":{"license.html":{}}}],["occurs",{"_index":3717,"title":{},"body":{"license.html":{}}}],["of('hello",{"_index":3300,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["of(new",{"_index":2494,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["of(null",{"_index":2413,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["offer",{"_index":3688,"title":{},"body":{"license.html":{}}}],["offered",{"_index":4029,"title":{},"body":{"license.html":{}}}],["offering",{"_index":4008,"title":{},"body":{"license.html":{}}}],["office",{"_index":1578,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["official",{"_index":3827,"title":{},"body":{"license.html":{}}}],["offset",{"_index":1072,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["ohuru",{"_index":2328,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["oil",{"_index":2131,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ok(accounttypes",{"_index":2489,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(actions",{"_index":2449,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(areanamelist",{"_index":2476,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(areatypelist",{"_index":2484,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(categorylist",{"_index":2468,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(genders",{"_index":2491,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(message",{"_index":2458,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedaction",{"_index":2454,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedareaname.name",{"_index":2480,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedareatype.name",{"_index":2488,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedcategory.name",{"_index":2472,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(queriedtoken",{"_index":2464,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(responsebody",{"_index":2493,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(tokens",{"_index":2459,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["ok(transactiontypes",{"_index":2490,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["old",{"_index":2317,"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":2259,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ombeni",{"_index":2323,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["omena",{"_index":1882,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["omeno",{"_index":1969,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["onaddresssearch",{"_index":208,"title":{},"body":{"components/AccountSearchComponent.html":{}}}],["once",{"_index":3600,"title":{},"body":{"index.html":{}}}],["onclick",{"_index":2837,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["one",{"_index":3580,"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":1970,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["onmenuselect",{"_index":1500,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["onmenutoggle",{"_index":1513,"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":2687,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["onsign(signature",{"_index":2713,"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":2688,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["onverify(flag",{"_index":2714,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["opendialog",{"_index":1299,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["opendialog(data",{"_index":1303,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["openpgp",{"_index":2575,"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":2723,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["openpgp.key.readarmored(key",{"_index":2591,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.key.readarmored(privatekey",{"_index":2594,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.keyring",{"_index":2577,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"miscellaneous/variables.html":{}}}],["openpgp.message.fromtext(plaintext",{"_index":2619,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.readkey",{"_index":2587,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.sign(opts",{"_index":2623,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["openpgp.sign(opts).then((s",{"_index":2733,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["openpgp.signature.readarmored(signature.data).then((sig",{"_index":2722,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["openpgp.verify(opts).then((v",{"_index":2726,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["operate",{"_index":4331,"title":{},"body":{"license.html":{}}}],["operated",{"_index":4012,"title":{},"body":{"license.html":{}}}],["operating",{"_index":3848,"title":{},"body":{"license.html":{}}}],["operation",{"_index":3933,"title":{},"body":{"license.html":{}}}],["option",{"_index":4101,"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":3819,"title":{},"body":{"license.html":{}}}],["opts",{"_index":2618,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["oranges",{"_index":1911,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["order",{"_index":4171,"title":{},"body":{"license.html":{}}}],["organisation",{"_index":2670,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organization",{"_index":2651,"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":2653,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organization.component.scss",{"_index":2652,"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":2654,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organizationformstub",{"_index":2655,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["organizations",{"_index":3768,"title":{},"body":{"license.html":{}}}],["origin",{"_index":4118,"title":{},"body":{"license.html":{}}}],["original",{"_index":4119,"title":{},"body":{"license.html":{}}}],["others",{"_index":3667,"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":{}}}],["outlet",{"_index":860,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["output",{"_index":3881,"title":{},"body":{"license.html":{}}}],["outside",{"_index":3897,"title":{},"body":{"license.html":{}}}],["overview",{"_index":3607,"title":{"overview.html":{}},"body":{"index.html":{},"overview.html":{}}}],["owino",{"_index":2164,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["owned",{"_index":4214,"title":{},"body":{"license.html":{}}}],["owner",{"_index":1561,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["package",{"_index":3479,"title":{"dependencies.html":{}},"body":{}}],["packaged",{"_index":3961,"title":{},"body":{"license.html":{}}}],["packaging",{"_index":3838,"title":{},"body":{"license.html":{}}}],["page",{"_index":694,"title":{},"body":{"components/AppComponent.html":{},"index.html":{}}}],["pages",{"_index":2743,"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":2762,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["pages.component.html",{"_index":2745,"title":{},"body":{"components/PagesComponent.html":{}}}],["pages.component.scss",{"_index":2744,"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":2756,"title":{},"body":{"modules/PagesModule.html":{}}}],["pages/pages.component",{"_index":2757,"title":{},"body":{"modules/PagesModule.html":{}}}],["pages/settings/organization/organization.component",{"_index":2909,"title":{},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["pages/settings/settings",{"_index":2907,"title":{},"body":{"modules/SettingsModule.html":{}}}],["pages/settings/settings.component",{"_index":2908,"title":{},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{}}}],["pages/tokens/token",{"_index":3071,"title":{},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{}}}],["pages/tokens/tokens",{"_index":3069,"title":{},"body":{"modules/TokensModule.html":{}}}],["pages/tokens/tokens.component",{"_index":3070,"title":{},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{}}}],["pages/transactions/transaction",{"_index":3361,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["pages/transactions/transactions",{"_index":3359,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["pages/transactions/transactions.component",{"_index":3360,"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":2750,"title":{"modules/PagesModule.html":{}},"body":{"modules/PagesModule.html":{},"modules.html":{},"overview.html":{}}}],["pagesroutingmodule",{"_index":2754,"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":1758,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pampers",{"_index":2049,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["papa",{"_index":1862,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["paper",{"_index":4367,"title":{},"body":{"license.html":{}}}],["paraffin",{"_index":2134,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["parafin",{"_index":2136,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["paragraph",{"_index":4148,"title":{},"body":{"license.html":{}}}],["paragraphs",{"_index":4226,"title":{},"body":{"license.html":{}}}],["param",{"_index":155,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"guards/RoleGuard.html":{},"classes/TokenRegistry.html":{}}}],["parameters",{"_index":92,"title":{},"body":{"classes/AccountIndex.html":{},"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"classes/CustomErrorStateMatcher.html":{},"classes/CustomValidator.html":{},"components/ErrorDialogComponent.html":{},"injectables/ErrorDialogService.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"interceptors/HttpConfigInterceptor.html":{},"classes/HttpError.html":{},"injectables/LocationService.html":{},"interceptors/LoggingInterceptor.html":{},"injectables/LoggingService.html":{},"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"interceptors/MockBackendInterceptor.html":{},"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"components/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":2135,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["parsedata",{"_index":3449,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["parsedata(data",{"_index":3542,"title":{},"body":{"miscellaneous/functions.html":{}}}],["parseint(urlparts[urlparts.length",{"_index":2499,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["parser",{"_index":3219,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{},"miscellaneous/variables.html":{}}}],["part",{"_index":3770,"title":{},"body":{"license.html":{}}}],["particular",{"_index":861,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["parties",{"_index":3801,"title":{},"body":{"license.html":{}}}],["parts",{"_index":2038,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["party",{"_index":873,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["party's",{"_index":4193,"title":{},"body":{"license.html":{}}}],["pass",{"_index":2443,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["passphrase",{"_index":1022,"title":{},"body":{"injectables/AuthService.html":{}}}],["password",{"_index":1038,"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":2788,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["passwordmatchvalidator",{"_index":1263,"title":{},"body":{"classes/CustomValidator.html":{}}}],["passwordmatchvalidator(control",{"_index":1265,"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":1636,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["patent",{"_index":4147,"title":{},"body":{"license.html":{}}}],["patents",{"_index":3735,"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":1544,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["pattern",{"_index":3715,"title":{},"body":{"license.html":{}}}],["patternvalidator",{"_index":1264,"title":{},"body":{"classes/CustomValidator.html":{}}}],["patternvalidator(regex",{"_index":1268,"title":{},"body":{"classes/CustomValidator.html":{}}}],["payment",{"_index":4261,"title":{},"body":{"license.html":{}}}],["peanuts",{"_index":1868,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["peddler",{"_index":1770,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["peer",{"_index":4024,"title":{},"body":{"license.html":{}}}],["peers",{"_index":4027,"title":{},"body":{"license.html":{}}}],["peku",{"_index":2200,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["people",{"_index":3578,"title":{},"body":{"index.html":{}}}],["performance",{"_index":4311,"title":{},"body":{"license.html":{}}}],["performing",{"_index":3859,"title":{},"body":{"license.html":{}}}],["perfume",{"_index":2066,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["periurban",{"_index":2393,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["permanently",{"_index":4156,"title":{},"body":{"license.html":{}}}],["permission",{"_index":3691,"title":{},"body":{"license.html":{}}}],["permissions",{"_index":3872,"title":{},"body":{"license.html":{}}}],["permissive",{"_index":3944,"title":{},"body":{"license.html":{}}}],["permit",{"_index":3978,"title":{},"body":{"license.html":{}}}],["permits",{"_index":4138,"title":{},"body":{"license.html":{}}}],["permitted",{"_index":3623,"title":{},"body":{"license.html":{}}}],["perpetuity",{"_index":4073,"title":{},"body":{"license.html":{}}}],["person",{"_index":3545,"title":{},"body":{"miscellaneous/functions.html":{}}}],["personal",{"_index":4037,"title":{},"body":{"license.html":{}}}],["personvalidation",{"_index":3454,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["personvalidation(person",{"_index":3544,"title":{},"body":{"miscellaneous/functions.html":{}}}],["pertinent",{"_index":4277,"title":{},"body":{"license.html":{}}}],["pesa",{"_index":2081,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["petro",{"_index":2138,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["petrol",{"_index":2137,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pgp",{"_index":1026,"title":{},"body":{"injectables/AuthService.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["pgp.js",{"_index":935,"title":{},"body":{"injectables/AuthService.html":{}}}],["pgpsigner",{"_index":2684,"title":{"classes/PGPSigner.html":{}},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{}}}],["pharmacy",{"_index":2001,"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":1812,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["photocopy",{"_index":1769,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["photographer",{"_index":1789,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["physical",{"_index":3987,"title":{},"body":{"license.html":{}}}],["physically",{"_index":4002,"title":{},"body":{"license.html":{}}}],["pieces",{"_index":3660,"title":{},"body":{"license.html":{}}}],["piki",{"_index":2102,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pikipiki",{"_index":2103,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pilau",{"_index":1936,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pipe",{"_index":2284,"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":2416,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(dematerialize",{"_index":2417,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(materialize",{"_index":2415,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe(mergemap(handleroute",{"_index":2414,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["pipe({name",{"_index":2975,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["pipes",{"_index":2841,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{},"overview.html":{}}}],["pipetransform",{"_index":2848,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{}}}],["pk",{"_index":2729,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["pk.decrypt(password",{"_index":2732,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["pk.isdecrypted",{"_index":2731,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["place",{"_index":4010,"title":{},"body":{"license.html":{}}}],["plaintext",{"_index":2570,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["plastic",{"_index":1677,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["playstation",{"_index":2067,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["please",{"_index":684,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{},"license.html":{}}}],["plumb",{"_index":1762,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["plus",{"_index":4196,"title":{},"body":{"license.html":{}}}],["pointer",{"_index":4359,"title":{},"body":{"license.html":{}}}],["pojo",{"_index":1861,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["police",{"_index":1650,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pombe",{"_index":2048,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pool",{"_index":2050,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["popper.js",{"_index":3514,"title":{},"body":{"dependencies.html":{}}}],["popperjs/core",{"_index":3486,"title":{},"body":{"dependencies.html":{}}}],["populated",{"_index":3601,"title":{},"body":{"index.html":{}}}],["porridge",{"_index":1935,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["portion",{"_index":4032,"title":{},"body":{"license.html":{}}}],["posho",{"_index":1744,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["possesses",{"_index":3999,"title":{},"body":{"license.html":{}}}],["possession",{"_index":3958,"title":{},"body":{"license.html":{}}}],["possibility",{"_index":4333,"title":{},"body":{"license.html":{}}}],["possible",{"_index":4350,"title":{},"body":{"license.html":{}}}],["post",{"_index":2424,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["potatoes",{"_index":1869,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["poultry",{"_index":1866,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["power",{"_index":3927,"title":{},"body":{"license.html":{}}}],["practical",{"_index":3635,"title":{},"body":{"license.html":{}}}],["practice",{"_index":3722,"title":{},"body":{"license.html":{}}}],["preamble",{"_index":3630,"title":{},"body":{"license.html":{}}}],["precise",{"_index":3749,"title":{},"body":{"license.html":{}}}],["precisely",{"_index":3719,"title":{},"body":{"license.html":{}}}],["predecessor",{"_index":4194,"title":{},"body":{"license.html":{}}}],["preferred",{"_index":3824,"title":{},"body":{"license.html":{}}}],["preloadallmodules",{"_index":766,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["preloadingstrategy",{"_index":775,"title":{},"body":{"modules/AppRoutingModule.html":{}}}],["prepare",{"_index":2690,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signer.html":{}}}],["prepare(material",{"_index":2703,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["present",{"_index":4290,"title":{},"body":{"license.html":{}}}],["presents",{"_index":3816,"title":{},"body":{"license.html":{}}}],["preservation",{"_index":4112,"title":{},"body":{"license.html":{}}}],["prevent",{"_index":3666,"title":{},"body":{"license.html":{}}}],["prevented",{"_index":4068,"title":{},"body":{"license.html":{}}}],["previous",{"_index":544,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"license.html":{}}}],["price",{"_index":3655,"title":{},"body":{"license.html":{}}}],["primarily",{"_index":4263,"title":{},"body":{"license.html":{}}}],["primary",{"_index":1595,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["printing",{"_index":1760,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["prints",{"_index":105,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["prior",{"_index":4159,"title":{},"body":{"license.html":{}}}],["private",{"_index":253,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"classes/ActivatedRouteStub.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/BlockSyncService.html":{},"components/CreateAccountComponent.html":{},"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"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":2617,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["privatekey.isdecrypted",{"_index":2615,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["privatekey.keypacket.privateparams.d",{"_index":3284,"title":{},"body":{"injectables/TransactionService.html":{}}}],["privatekeyarmored",{"_index":925,"title":{},"body":{"injectables/AuthService.html":{}}}],["privatekeys",{"_index":2620,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["problems",{"_index":3702,"title":{},"body":{"license.html":{}}}],["procedures",{"_index":4063,"title":{},"body":{"license.html":{}}}],["procuring",{"_index":4251,"title":{},"body":{"license.html":{}}}],["produce",{"_index":3851,"title":{},"body":{"license.html":{}}}],["product",{"_index":3988,"title":{},"body":{"license.html":{}}}],["production",{"_index":3587,"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":1615,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["profile",{"_index":1540,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["program",{"_index":3644,"title":{},"body":{"license.html":{}}}],["program's",{"_index":3936,"title":{},"body":{"license.html":{}}}],["programmer",{"_index":1790,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["programming",{"_index":1761,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["programs",{"_index":3653,"title":{},"body":{"license.html":{}}}],["programsif",{"_index":4347,"title":{},"body":{"license.html":{}}}],["progress...show",{"_index":692,"title":{},"body":{"components/AppComponent.html":{}}}],["prohibit",{"_index":3721,"title":{},"body":{"license.html":{}}}],["prohibiting",{"_index":3923,"title":{},"body":{"license.html":{}}}],["prohibits",{"_index":4258,"title":{},"body":{"license.html":{}}}],["project",{"_index":3551,"title":{},"body":{"index.html":{}}}],["prominent",{"_index":3820,"title":{},"body":{"license.html":{}}}],["prominently",{"_index":3811,"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":980,"title":{},"body":{"injectables/AuthService.html":{}}}],["promise(async",{"_index":1000,"title":{},"body":{"injectables/AuthService.html":{}}}],["propagate",{"_index":3781,"title":{},"body":{"license.html":{}}}],["propagating",{"_index":4179,"title":{},"body":{"license.html":{}}}],["propagation",{"_index":3793,"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":4038,"title":{},"body":{"license.html":{}}}],["proprietary",{"_index":3745,"title":{},"body":{"license.html":{}}}],["protect",{"_index":3663,"title":{},"body":{"license.html":{}}}],["protecting",{"_index":3713,"title":{},"body":{"license.html":{}}}],["protection",{"_index":3693,"title":{},"body":{"license.html":{}}}],["protocols",{"_index":4089,"title":{},"body":{"license.html":{}}}],["protractor",{"_index":3596,"title":{},"body":{"index.html":{}}}],["prove",{"_index":4312,"title":{},"body":{"license.html":{}}}],["provide",{"_index":762,"title":{},"body":{"modules/AppModule.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["provided",{"_index":3815,"title":{},"body":{"license.html":{}}}],["providedin",{"_index":874,"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":2860,"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":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"classes/TokenRegistry.html":{}}}],["provision",{"_index":3730,"title":{},"body":{"license.html":{}}}],["provisionally",{"_index":4153,"title":{},"body":{"license.html":{}}}],["proxy",{"_index":4299,"title":{},"body":{"license.html":{}}}],["proxy's",{"_index":4301,"title":{},"body":{"license.html":{}}}],["pry",{"_index":1586,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["pub",{"_index":2079,"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":4120,"title":{},"body":{"license.html":{}}}],["publickey",{"_index":2552,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["publickey.getkeyid().tohex",{"_index":2612,"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":4417,"title":{},"body":{"miscellaneous/variables.html":{}}}],["publicly",{"_index":4091,"title":{},"body":{"license.html":{}}}],["publish",{"_index":3940,"title":{},"body":{"license.html":{}}}],["published",{"_index":4296,"title":{},"body":{"license.html":{}}}],["pump",{"_index":547,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["purpose",{"_index":3738,"title":{},"body":{"license.html":{}}}],["purposes",{"_index":4042,"title":{},"body":{"license.html":{}}}],["pursuant",{"_index":4248,"title":{},"body":{"license.html":{}}}],["put",{"_index":2571,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["qkvhsu46vknbukqnclzfulnjt046my4wdqpftufjtdphyxjuzxnlbkbob3rtywlslmnvbq0krk46s3vydmkgs3jhbmpjdqpooktyyw5qyztldxj0ozs7dqpuruw7vflqpunftew6njkyntazmzq5ode5ng0kru5eolzdqvjedqo",{"_index":3423,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["qualify",{"_index":4168,"title":{},"body":{"license.html":{}}}],["quality",{"_index":4310,"title":{},"body":{"license.html":{}}}],["queriedaction",{"_index":2450,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedaction.approval",{"_index":2455,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedareaname",{"_index":2477,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedareatype",{"_index":2485,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedcategory",{"_index":2469,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["queriedtoken",{"_index":2460,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["querying",{"_index":70,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["queryparams",{"_index":2826,"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":1002,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["raibai",{"_index":2352,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rangala",{"_index":2365,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ratio.pipe",{"_index":2926,"title":{},"body":{"modules/SharedModule.html":{}}}],["ratio.pipe.ts",{"_index":2972,"title":{},"body":{"pipes/TokenRatioPipe.html":{},"coverage.html":{}}}],["ratio.pipe.ts:5",{"_index":2974,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["rcu",{"_index":2671,"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":4388,"title":{},"body":{"license.html":{}}}],["readable",{"_index":3984,"title":{},"body":{"license.html":{}}}],["readcsv",{"_index":3450,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["readcsv(input",{"_index":3543,"title":{},"body":{"miscellaneous/functions.html":{}}}],["readily",{"_index":4236,"title":{},"body":{"license.html":{}}}],["reading",{"_index":4094,"title":{},"body":{"license.html":{}}}],["readonly",{"_index":527,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["ready",{"_index":3728,"title":{},"body":{"license.html":{}}}],["readystate",{"_index":642,"title":{},"body":{"components/AppComponent.html":{},"injectables/BlockSyncService.html":{}}}],["readystateelements",{"_index":1104,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateelements.network",{"_index":1122,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateprocessor",{"_index":1066,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystateprocessor(settings",{"_index":1085,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["readystatetarget",{"_index":643,"title":{},"body":{"components/AppComponent.html":{},"injectables/BlockSyncService.html":{}}}],["realm",{"_index":999,"title":{},"body":{"injectables/AuthService.html":{}}}],["reason",{"_index":4246,"title":{},"body":{"license.html":{}}}],["reasonable",{"_index":4000,"title":{},"body":{"license.html":{}}}],["receipt",{"_index":4166,"title":{},"body":{"license.html":{}}}],["receive",{"_index":3658,"title":{},"body":{"license.html":{}}}],["received",{"_index":3681,"title":{},"body":{"license.html":{}}}],["receives",{"_index":4184,"title":{},"body":{"license.html":{}}}],["receiving",{"_index":4253,"title":{},"body":{"license.html":{}}}],["recently",{"_index":132,"title":{},"body":{"classes/AccountIndex.html":{}}}],["receptionist",{"_index":1759,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["recipient",{"_index":1185,"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":4244,"title":{},"body":{"license.html":{}}}],["recipientaddress",{"_index":3195,"title":{},"body":{"injectables/TransactionService.html":{}}}],["recipientbloxberglink",{"_index":3093,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["recipients",{"_index":3678,"title":{},"body":{"license.html":{}}}],["reclaim",{"_index":1535,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["reclamation",{"_index":2400,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["recognized",{"_index":3828,"title":{},"body":{"license.html":{}}}],["recommend",{"_index":1054,"title":{},"body":{"injectables/AuthService.html":{}}}],["recycling",{"_index":1681,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["red",{"_index":1604,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["redcross",{"_index":1628,"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":4353,"title":{},"body":{"license.html":{}}}],["reference",{"_index":3609,"title":{},"body":{"index.html":{}}}],["referrer",{"_index":1224,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["referring",{"_index":3654,"title":{},"body":{"license.html":{}}}],["refers",{"_index":3756,"title":{},"body":{"license.html":{}}}],["refrain",{"_index":4281,"title":{},"body":{"license.html":{}}}],["refreshpaginator",{"_index":354,"title":{},"body":{"components/AccountsComponent.html":{}}}],["regard",{"_index":4100,"title":{},"body":{"license.html":{}}}],["regardless",{"_index":3960,"title":{},"body":{"license.html":{}}}],["regenerate",{"_index":3870,"title":{},"body":{"license.html":{}}}],["regex",{"_index":1272,"title":{},"body":{"classes/CustomValidator.html":{}}}],["regex.test(control.value",{"_index":1279,"title":{},"body":{"classes/CustomValidator.html":{}}}],["regexp",{"_index":1269,"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":2980,"title":{},"body":{"classes/TokenRegistry.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["registry.ts:22",{"_index":2984,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:24",{"_index":2985,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:26",{"_index":2983,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:57",{"_index":2987,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:75",{"_index":2994,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registry.ts:91",{"_index":2998,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["registryaddress",{"_index":4427,"title":{},"body":{"miscellaneous/variables.html":{}}}],["registryservice",{"_index":1069,"title":{"injectables/RegistryService.html":{}},"body":{"injectables/BlockSyncService.html":{},"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{},"coverage.html":{}}}],["registryservice.getregistry",{"_index":3020,"title":{},"body":{"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["reinstated",{"_index":4152,"title":{},"body":{"license.html":{}}}],["reject",{"_index":981,"title":{},"body":{"injectables/AuthService.html":{}}}],["reject(error",{"_index":984,"title":{},"body":{"injectables/AuthService.html":{}}}],["rejected",{"_index":969,"title":{},"body":{"injectables/AuthService.html":{}}}],["relationship",{"_index":3898,"title":{},"body":{"license.html":{}}}],["released",{"_index":3649,"title":{},"body":{"license.html":{}}}],["relevant",{"_index":3953,"title":{},"body":{"license.html":{}}}],["relicensing",{"_index":4139,"title":{},"body":{"license.html":{}}}],["religious",{"_index":1640,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["religous",{"_index":1639,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["reload",{"_index":3565,"title":{},"body":{"index.html":{}}}],["relying",{"_index":4235,"title":{},"body":{"license.html":{}}}],["remain",{"_index":4019,"title":{},"body":{"license.html":{}}}],["remains",{"_index":3647,"title":{},"body":{"license.html":{}}}],["remarks",{"_index":154,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["removal",{"_index":4103,"title":{},"body":{"license.html":{}}}],["remove",{"_index":4102,"title":{},"body":{"license.html":{}}}],["removekeysforid",{"_index":2523,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removekeysforid(keyid",{"_index":2562,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickey",{"_index":2524,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickey(publickey",{"_index":2564,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickeyforid",{"_index":2525,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removepublickeyforid(keyid",{"_index":2566,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["removespecialchar",{"_index":3444,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["removespecialchar(str",{"_index":3540,"title":{},"body":{"miscellaneous/functions.html":{}}}],["rename",{"_index":974,"title":{},"body":{"injectables/AuthService.html":{}}}],["render",{"_index":3747,"title":{},"body":{"license.html":{}}}],["rendered",{"_index":4326,"title":{},"body":{"license.html":{}}}],["renderer",{"_index":1503,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["renderer2",{"_index":1504,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["repair",{"_index":1742,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["replaysubject",{"_index":536,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["represent",{"_index":4060,"title":{},"body":{"license.html":{}}}],["represents",{"_index":866,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["request",{"_index":1323,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/HttpConfigInterceptor.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["request.clone({headers",{"_index":1422,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["request.headers.set('authorization",{"_index":1423,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{}}}],["request.method",{"_index":1453,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["request.urlwithparams",{"_index":1454,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["requesting",{"_index":1018,"title":{},"body":{"injectables/AuthService.html":{}}}],["requests",{"_index":2445,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["require",{"_index":2672,"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":2712,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"miscellaneous/variables.html":{}}}],["require('vcard",{"_index":3218,"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":{},"guards/RoleGuard.html":{},"license.html":{}}}],["requirement",{"_index":3954,"title":{},"body":{"license.html":{}}}],["requirements",{"_index":4022,"title":{},"body":{"license.html":{}}}],["requires",{"_index":102,"title":{},"body":{"classes/AccountIndex.html":{},"license.html":{}}}],["requiring",{"_index":3772,"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":1053,"title":{},"body":{"injectables/AuthService.html":{}}}],["res.status",{"_index":1056,"title":{},"body":{"injectables/AuthService.html":{}}}],["res.text",{"_index":1057,"title":{},"body":{"injectables/AuthService.html":{}}}],["researcher",{"_index":1614,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["resend",{"_index":3153,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reserve",{"_index":1547,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"classes/TokenServiceStub.html":{},"miscellaneous/variables.html":{}}}],["reserveratio",{"_index":1560,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"miscellaneous/variables.html":{}}}],["reserves",{"_index":1554,"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":3174,"title":{},"body":{"injectables/TransactionService.html":{}}}],["resize",{"_index":697,"title":{},"body":{"components/AppComponent.html":{}}}],["resolve",{"_index":1001,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolve(false",{"_index":1023,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolve(true",{"_index":987,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolved",{"_index":4049,"title":{},"body":{"license.html":{}}}],["resource",{"_index":1357,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["respect",{"_index":3674,"title":{},"body":{"license.html":{}}}],["response",{"_index":1340,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["responsebody",{"_index":2495,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["responsibilities",{"_index":979,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["responsible",{"_index":4185,"title":{},"body":{"license.html":{}}}],["restrict",{"_index":3737,"title":{},"body":{"license.html":{}}}],["restricting",{"_index":3924,"title":{},"body":{"license.html":{}}}],["restriction",{"_index":4137,"title":{},"body":{"license.html":{}}}],["restrictions",{"_index":4134,"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":3775,"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":2047,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["retains",{"_index":4076,"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":1338,"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":2827,"title":{},"body":{"guards/RoleGuard.html":{}}}],["reverse",{"_index":3155,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reversetransaction",{"_index":3097,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["reviewing",{"_index":4338,"title":{},"body":{"license.html":{}}}],["revised",{"_index":4288,"title":{},"body":{"license.html":{}}}],["rewards",{"_index":2399,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ribe",{"_index":2353,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["right",{"_index":4071,"title":{},"body":{"license.html":{}}}],["rights",{"_index":3664,"title":{},"body":{"license.html":{}}}],["risk",{"_index":4309,"title":{},"body":{"license.html":{}}}],["road",{"_index":2165,"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":{},"guards/RoleGuard.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["roleguard",{"_index":2814,"title":{"guards/RoleGuard.html":{}},"body":{"guards/RoleGuard.html":{},"coverage.html":{}}}],["roles",{"_index":2820,"title":{},"body":{"guards/RoleGuard.html":{}}}],["rom",{"_index":4079,"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":2823,"title":{},"body":{"guards/RoleGuard.html":{}}}],["route.data.roles.indexof(currentuser.role",{"_index":2824,"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":852,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["routes",{"_index":498,"title":{"routes.html":{}},"body":{"modules/AccountsRoutingModule.html":{},"modules/AdminRoutingModule.html":{},"modules/AppRoutingModule.html":{},"guards/AuthGuard.html":{},"modules/AuthRoutingModule.html":{},"modules/PagesRoutingModule.html":{},"guards/RoleGuard.html":{},"modules/SettingsRoutingModule.html":{},"modules/TokensRoutingModule.html":{},"modules/TransactionsRoutingModule.html":{},"overview.html":{},"routes.html":{}}}],["route}.\\n${error.message",{"_index":1410,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["route}.\\n${error.message}.\\nstatus",{"_index":1406,"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":4200,"title":{},"body":{"license.html":{}}}],["rsv",{"_index":1532,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/TokenServiceStub.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["rubbish",{"_index":1671,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ruben",{"_index":2153,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rueben",{"_index":2154,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ruiru",{"_index":2261,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["rules",{"_index":4088,"title":{},"body":{"license.html":{}}}],["run",{"_index":3554,"title":{},"body":{"index.html":{},"license.html":{}}}],["running",{"_index":3588,"title":{},"body":{"index.html":{},"license.html":{}}}],["runs",{"_index":3849,"title":{},"body":{"license.html":{}}}],["rural",{"_index":2372,"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":928,"title":{},"body":{"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["s.signature",{"_index":2737,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["sabuni",{"_index":1990,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sad",{"_index":693,"title":{},"body":{"components/AppComponent.html":{}}}],["safe",{"_index":2843,"title":{},"body":{"pipes/SafePipe.html":{}}}],["safepipe",{"_index":2840,"title":{"pipes/SafePipe.html":{}},"body":{"pipes/SafePipe.html":{},"modules/SharedModule.html":{},"coverage.html":{},"overview.html":{}}}],["safest",{"_index":4355,"title":{},"body":{"license.html":{}}}],["sake",{"_index":3698,"title":{},"body":{"license.html":{}}}],["sale",{"_index":4208,"title":{},"body":{"license.html":{}}}],["sales",{"_index":1771,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["salon",{"_index":1764,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["saloon",{"_index":1772,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["samaki",{"_index":1872,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sambusa",{"_index":1946,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["same",{"_index":3679,"title":{},"body":{"license.html":{}}}],["samosa",{"_index":1870,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sanitizer",{"_index":2850,"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":3030,"title":{},"body":{"injectables/TokenService.html":{}}}],["sarafutoken.methods.balanceof(address).call",{"_index":3033,"title":{},"body":{"injectables/TokenService.html":{}}}],["satisfy",{"_index":4021,"title":{},"body":{"license.html":{}}}],["sausages",{"_index":1916,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["savings",{"_index":2007,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["saying",{"_index":4017,"title":{},"body":{"license.html":{}}}],["scaffolding",{"_index":3567,"title":{},"body":{"index.html":{}}}],["scan",{"_index":1067,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["scan(settings",{"_index":1088,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["scanfilter",{"_index":2853,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["sch",{"_index":1584,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["schemas",{"_index":3497,"title":{},"body":{"dependencies.html":{}}}],["school",{"_index":1585,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["science",{"_index":1631,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["scope",{"_index":4257,"title":{},"body":{"license.html":{}}}],["scrap",{"_index":1668,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["script",{"_index":3586,"title":{},"body":{"index.html":{}}}],["scripts",{"_index":3855,"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":3785,"title":{},"body":{"license.html":{}}}],["secondary",{"_index":1596,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["secp256k1",{"_index":3216,"title":{},"body":{"injectables/TransactionService.html":{}}}],["secp256k1.ecdsasign(txmsg",{"_index":3283,"title":{},"body":{"injectables/TransactionService.html":{}}}],["secretary",{"_index":1776,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["section",{"_index":3903,"title":{},"body":{"license.html":{}}}],["sections",{"_index":3982,"title":{},"body":{"license.html":{}}}],["secure",{"_index":2896,"title":{},"body":{"components/SettingsComponent.html":{}}}],["security",{"_index":1774,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["see",{"_index":3598,"title":{},"body":{"index.html":{},"license.html":{}}}],["seedling",{"_index":1679,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["seedlings",{"_index":1680,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["seigei",{"_index":2166,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["selection.directive",{"_index":2924,"title":{},"body":{"modules/SharedModule.html":{}}}],["selection.directive.ts",{"_index":1498,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"coverage.html":{}}}],["selection.directive.ts:20",{"_index":1506,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["selection.directive.ts:6",{"_index":1505,"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":4223,"title":{},"body":{"license.html":{}}}],["selling",{"_index":3422,"title":{},"body":{"classes/UserServiceStub.html":{},"license.html":{}}}],["semiconductor",{"_index":3759,"title":{},"body":{"license.html":{}}}],["send",{"_index":811,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["senddebuglevelmessage",{"_index":1460,"title":{},"body":{"injectables/LoggingService.html":{}}}],["senddebuglevelmessage(message",{"_index":1470,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sender",{"_index":1184,"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":3194,"title":{},"body":{"injectables/TransactionService.html":{}}}],["senderbloxberglink",{"_index":3094,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["senderrorlevelmessage",{"_index":1461,"title":{},"body":{"injectables/LoggingService.html":{}}}],["senderrorlevelmessage(message",{"_index":1472,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendfatallevelmessage",{"_index":1462,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendfatallevelmessage(message",{"_index":1474,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendinfolevelmessage",{"_index":1463,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendinfolevelmessage(message",{"_index":1476,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendloglevelmessage",{"_index":1464,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendloglevelmessage(message",{"_index":1478,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendresponse",{"_index":903,"title":{},"body":{"injectables/AuthService.html":{}}}],["sendresponse(hobaresponseencoded",{"_index":920,"title":{},"body":{"injectables/AuthService.html":{}}}],["sendtracelevelmessage",{"_index":1465,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendtracelevelmessage(message",{"_index":1480,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendwarnlevelmessage",{"_index":1466,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sendwarnlevelmessage(message",{"_index":1482,"title":{},"body":{"injectables/LoggingService.html":{}}}],["sentencesforwarninglogging",{"_index":1374,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["separable",{"_index":4031,"title":{},"body":{"license.html":{}}}],["separate",{"_index":978,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["separately",{"_index":3964,"title":{},"body":{"license.html":{}}}],["seremala",{"_index":1773,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["serial",{"_index":2995,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["server",{"_index":2407,"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":3841,"title":{},"body":{"license.html":{}}}],["service",{"_index":844,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"classes/TokenServiceStub.html":{},"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{},"coverage.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["servicing",{"_index":4316,"title":{},"body":{"license.html":{}}}],["session",{"_index":977,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessionlogincount",{"_index":892,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessionstorage.getitem(btoa('cicada_session_token",{"_index":946,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/HttpConfigInterceptor.html":{}}}],["sessionstorage.removeitem(btoa('cicada_session_token",{"_index":1046,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessionstorage.setitem(btoa('cicada_session_token",{"_index":986,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessiontoken",{"_index":893,"title":{},"body":{"injectables/AuthService.html":{}}}],["sessiontokenresult",{"_index":1005,"title":{},"body":{"injectables/AuthService.html":{}}}],["set",{"_index":539,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"index.html":{}}}],["setconversion",{"_index":3175,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["setconversion(conversion",{"_index":3189,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["setkey",{"_index":802,"title":{},"body":{"components/AuthComponent.html":{},"injectables/AuthService.html":{}}}],["setkey(privatekeyarmored",{"_index":923,"title":{},"body":{"injectables/AuthService.html":{}}}],["setparammap",{"_index":523,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["setparammap(params",{"_index":537,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["setstate",{"_index":904,"title":{},"body":{"injectables/AuthService.html":{}}}],["setstate(s",{"_index":926,"title":{},"body":{"injectables/AuthService.html":{}}}],["setting",{"_index":943,"title":{},"body":{"injectables/AuthService.html":{}}}],["settings",{"_index":1077,"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":1103,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.component.html",{"_index":2865,"title":{},"body":{"components/SettingsComponent.html":{}}}],["settings.component.scss",{"_index":2864,"title":{},"body":{"components/SettingsComponent.html":{}}}],["settings.registry",{"_index":1109,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.registry.load",{"_index":1123,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.registry.onload",{"_index":1117,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.scanfilter(settings",{"_index":1161,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper",{"_index":1111,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.onconversion",{"_index":1115,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.ontransfer",{"_index":1113,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.txhelper.processreceipt(m.data",{"_index":1131,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.w3.engine",{"_index":1107,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["settings.w3.provider",{"_index":1105,"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":2901,"title":{"modules/SettingsModule.html":{}},"body":{"modules/SettingsModule.html":{},"modules.html":{},"overview.html":{}}}],["settingsroutingmodule",{"_index":2905,"title":{"modules/SettingsRoutingModule.html":{}},"body":{"modules/SettingsModule.html":{},"modules/SettingsRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["settransaction",{"_index":3176,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["settransaction(transaction",{"_index":3191,"title":{},"body":{"injectables/TransactionService.html":{},"classes/TransactionServiceStub.html":{}}}],["sha256",{"_index":2694,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["sha3",{"_index":3208,"title":{},"body":{"injectables/TransactionService.html":{},"dependencies.html":{}}}],["shall",{"_index":3908,"title":{},"body":{"license.html":{}}}],["shamba",{"_index":1690,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shanzu",{"_index":2335,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["share",{"_index":543,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"license.html":{}}}],["shared",{"_index":3861,"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":1778,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shephard",{"_index":1779,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shepherd",{"_index":1730,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shirt",{"_index":2064,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shoe",{"_index":1777,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["shop",{"_index":2015,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["short",{"_index":4370,"title":{},"body":{"license.html":{}}}],["show",{"_index":3682,"title":{},"body":{"license.html":{}}}],["siaya",{"_index":2361,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sickly",{"_index":2005,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["side",{"_index":1333,"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":2931,"title":{},"body":{"components/SidebarComponent.html":{}}}],["sidebar.component.scss",{"_index":2930,"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":1518,"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":1520,"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":2725,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["sigei",{"_index":2161,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sign",{"_index":2526,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signer.html":{},"license.html":{}}}],["sign(digest",{"_index":2707,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["sign(plaintext",{"_index":2568,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["signable",{"_index":2704,"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":2622,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"injectables/TransactionService.html":{}}}],["signatureobject.recid",{"_index":3288,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signatureobject.signature",{"_index":2624,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["signatureobject.signature.slice(0",{"_index":3285,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signatureobject.signature.slice(32",{"_index":3287,"title":{},"body":{"injectables/TransactionService.html":{}}}],["signchallenge",{"_index":933,"title":{},"body":{"injectables/AuthService.html":{}}}],["signchallenge(o.challenge",{"_index":1003,"title":{},"body":{"injectables/AuthService.html":{}}}],["signed",{"_index":975,"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":2685,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{},"coverage.html":{},"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["signer.ts:18",{"_index":2937,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:19",{"_index":2938,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:20",{"_index":2936,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:21",{"_index":2939,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:22",{"_index":2941,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:23",{"_index":2940,"title":{},"body":{"interfaces/Signer.html":{}}}],["signer.ts:28",{"_index":2697,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:29",{"_index":2695,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:30",{"_index":2696,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:31",{"_index":2701,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:32",{"_index":2698,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:33",{"_index":2699,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:34",{"_index":2700,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:35",{"_index":2693,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:43",{"_index":2702,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:47",{"_index":2705,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:52",{"_index":2710,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signer.ts:7",{"_index":2935,"title":{},"body":{"interfaces/Signable.html":{}}}],["signer.ts:77",{"_index":2708,"title":{},"body":{"classes/PGPSigner.html":{}}}],["signeraddress",{"_index":76,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["significant",{"_index":4061,"title":{},"body":{"license.html":{}}}],["silc",{"_index":2011,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["silver",{"_index":3400,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["sima",{"_index":1943,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["similar",{"_index":3922,"title":{},"body":{"license.html":{}}}],["simsim",{"_index":1934,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["simu",{"_index":2051,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["simulate",{"_index":2406,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["simultaneously",{"_index":4276,"title":{},"body":{"license.html":{}}}],["sinai",{"_index":2160,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["single",{"_index":4249,"title":{},"body":{"license.html":{}}}],["size",{"_index":4436,"title":{},"body":{"miscellaneous/variables.html":{}}}],["slash",{"_index":2792,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["smokie",{"_index":1954,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["smokies",{"_index":1955,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sms",{"_index":3154,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["snackbar",{"_index":3101,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["snacks",{"_index":1947,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soap",{"_index":1991,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["societies",{"_index":2967,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["socks",{"_index":2039,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soda",{"_index":1867,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["software",{"_index":3618,"title":{},"body":{"license.html":{}}}],["soko",{"_index":1871,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["solar",{"_index":2126,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sold",{"_index":4043,"title":{},"body":{"license.html":{}}}],["soldier",{"_index":1653,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sole",{"_index":3888,"title":{},"body":{"license.html":{}}}],["solely",{"_index":3900,"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":1952,"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":1188,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["south",{"_index":2150,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["soweto",{"_index":2258,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["spare",{"_index":2037,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["spareparts",{"_index":2028,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["speak",{"_index":1015,"title":{},"body":{"injectables/AuthService.html":{},"license.html":{}}}],["special",{"_index":3741,"title":{},"body":{"license.html":{}}}],["specific",{"_index":121,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["specifically",{"_index":3865,"title":{},"body":{"license.html":{}}}],["specified",{"_index":131,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{},"license.html":{}}}],["specifies",{"_index":4294,"title":{},"body":{"license.html":{}}}],["specify",{"_index":4297,"title":{},"body":{"license.html":{}}}],["spinach",{"_index":1953,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["spinner",{"_index":490,"title":{},"body":{"modules/AccountsModule.html":{}}}],["spirit",{"_index":4289,"title":{},"body":{"license.html":{}}}],["src/.../account.ts",{"_index":4403,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../accountindex.ts",{"_index":4400,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../array",{"_index":3527,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../clipboard",{"_index":3528,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../environment.dev.ts",{"_index":4404,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../environment.prod.ts",{"_index":4405,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../environment.ts",{"_index":4406,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../export",{"_index":3529,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../http",{"_index":3530,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../mock",{"_index":4402,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../pgp",{"_index":4399,"title":{},"body":{"miscellaneous/typealiases.html":{},"miscellaneous/variables.html":{}}}],["src/.../read",{"_index":3531,"title":{},"body":{"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["src/.../schema",{"_index":3532,"title":{},"body":{"miscellaneous/functions.html":{}}}],["src/.../token",{"_index":4401,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../transaction.service.ts",{"_index":4407,"title":{},"body":{"miscellaneous/variables.html":{}}}],["src/.../user.service.ts",{"_index":4408,"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":2979,"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:17",{"_index":842,"title":{},"body":{"guards/AuthGuard.html":{}}}],["src/app/_guards/auth.guard.ts:35",{"_index":853,"title":{},"body":{"guards/AuthGuard.html":{}}}],["src/app/_guards/role.guard.ts",{"_index":2815,"title":{},"body":{"guards/RoleGuard.html":{},"coverage.html":{}}}],["src/app/_guards/role.guard.ts:17",{"_index":2816,"title":{},"body":{"guards/RoleGuard.html":{}}}],["src/app/_guards/role.guard.ts:35",{"_index":2817,"title":{},"body":{"guards/RoleGuard.html":{}}}],["src/app/_helpers/array",{"_index":3434,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/clipboard",{"_index":3438,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/custom",{"_index":1244,"title":{},"body":{"classes/CustomErrorStateMatcher.html":{},"coverage.html":{}}}],["src/app/_helpers/custom.validator.ts",{"_index":1261,"title":{},"body":{"classes/CustomValidator.html":{},"coverage.html":{}}}],["src/app/_helpers/custom.validator.ts:12",{"_index":1271,"title":{},"body":{"classes/CustomValidator.html":{}}}],["src/app/_helpers/custom.validator.ts:4",{"_index":1267,"title":{},"body":{"classes/CustomValidator.html":{}}}],["src/app/_helpers/export",{"_index":3442,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/global",{"_index":1371,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"coverage.html":{}}}],["src/app/_helpers/http",{"_index":3446,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_helpers/mock",{"_index":1522,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_helpers/read",{"_index":3448,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{},"miscellaneous/variables.html":{}}}],["src/app/_helpers/schema",{"_index":3452,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["src/app/_interceptors/error.interceptor.ts",{"_index":1315,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/error.interceptor.ts:14",{"_index":1318,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["src/app/_interceptors/error.interceptor.ts:22",{"_index":1322,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["src/app/_interceptors/http",{"_index":1418,"title":{},"body":{"interceptors/HttpConfigInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/logging.interceptor.ts",{"_index":1442,"title":{},"body":{"interceptors/LoggingInterceptor.html":{},"coverage.html":{}}}],["src/app/_interceptors/logging.interceptor.ts:14",{"_index":1443,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["src/app/_interceptors/logging.interceptor.ts:20",{"_index":1444,"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":2852,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{},"coverage.html":{}}}],["src/app/_models/settings.ts:16",{"_index":3424,"title":{},"body":{"classes/W3.html":{}}}],["src/app/_models/settings.ts:17",{"_index":3425,"title":{},"body":{"classes/W3.html":{}}}],["src/app/_models/settings.ts:2",{"_index":2861,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:6",{"_index":2859,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:7",{"_index":2858,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/settings.ts:8",{"_index":2857,"title":{},"body":{"classes/Settings.html":{}}}],["src/app/_models/staff.ts",{"_index":2942,"title":{},"body":{"interfaces/Staff.html":{},"coverage.html":{}}}],["src/app/_models/token.ts",{"_index":2945,"title":{},"body":{"interfaces/Token.html":{},"coverage.html":{}}}],["src/app/_models/transaction.ts",{"_index":1166,"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":3368,"title":{},"body":{"classes/TxToken.html":{}}}],["src/app/_models/transaction.ts:13",{"_index":3369,"title":{},"body":{"classes/TxToken.html":{}}}],["src/app/_models/transaction.ts:14",{"_index":3370,"title":{},"body":{"classes/TxToken.html":{}}}],["src/app/_models/transaction.ts:18",{"_index":3363,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:19",{"_index":3364,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:20",{"_index":3365,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:21",{"_index":3366,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:22",{"_index":3367,"title":{},"body":{"classes/Tx.html":{}}}],["src/app/_models/transaction.ts:26",{"_index":3083,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:27",{"_index":3085,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:28",{"_index":3086,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:29",{"_index":3084,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:30",{"_index":3087,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:31",{"_index":3088,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:32",{"_index":3090,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:33",{"_index":3089,"title":{},"body":{"classes/Transaction.html":{}}}],["src/app/_models/transaction.ts:37",{"_index":1191,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:38",{"_index":1192,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:39",{"_index":1193,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:4",{"_index":1176,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_models/transaction.ts:40",{"_index":1194,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:41",{"_index":1195,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:42",{"_index":1197,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:43",{"_index":1196,"title":{},"body":{"classes/Conversion.html":{}}}],["src/app/_models/transaction.ts:5",{"_index":1173,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_models/transaction.ts:6",{"_index":1174,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_models/transaction.ts:7",{"_index":1172,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_models/transaction.ts:8",{"_index":1175,"title":{},"body":{"classes/BlocksBloom.html":{}}}],["src/app/_pgp/pgp",{"_index":2501,"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":890,"title":{},"body":{"injectables/AuthService.html":{},"coverage.html":{}}}],["src/app/_services/auth.service.ts:118",{"_index":916,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:147",{"_index":918,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:15",{"_index":930,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:157",{"_index":924,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:16",{"_index":929,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:17",{"_index":907,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:181",{"_index":919,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:187",{"_index":911,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:193",{"_index":910,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:204",{"_index":909,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:27",{"_index":913,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:38",{"_index":927,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:42",{"_index":912,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:61",{"_index":921,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:84",{"_index":908,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/auth.service.ts:99",{"_index":914,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/app/_services/block",{"_index":1060,"title":{},"body":{"injectables/BlockSyncService.html":{},"coverage.html":{}}}],["src/app/_services/error",{"_index":1296,"title":{},"body":{"injectables/ErrorDialogService.html":{},"coverage.html":{}}}],["src/app/_services/location.service.ts",{"_index":1426,"title":{},"body":{"injectables/LocationService.html":{},"coverage.html":{}}}],["src/app/_services/location.service.ts:10",{"_index":1431,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:16",{"_index":1434,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:20",{"_index":1433,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:24",{"_index":1437,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/location.service.ts:28",{"_index":1436,"title":{},"body":{"injectables/LocationService.html":{}}}],["src/app/_services/logging.service.ts",{"_index":1457,"title":{},"body":{"injectables/LoggingService.html":{},"coverage.html":{}}}],["src/app/_services/logging.service.ts:18",{"_index":1481,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:22",{"_index":1471,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:26",{"_index":1477,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:30",{"_index":1479,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:34",{"_index":1483,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:38",{"_index":1473,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:42",{"_index":1475,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:8",{"_index":1484,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/logging.service.ts:9",{"_index":1469,"title":{},"body":{"injectables/LoggingService.html":{}}}],["src/app/_services/registry.service.ts",{"_index":2793,"title":{},"body":{"injectables/RegistryService.html":{},"coverage.html":{}}}],["src/app/_services/registry.service.ts:11",{"_index":2809,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:12",{"_index":2801,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:13",{"_index":2808,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:14",{"_index":2797,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:21",{"_index":2798,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/registry.service.ts:25",{"_index":2799,"title":{},"body":{"injectables/RegistryService.html":{}}}],["src/app/_services/token.service.ts",{"_index":3006,"title":{},"body":{"injectables/TokenService.html":{},"coverage.html":{}}}],["src/app/_services/token.service.ts:13",{"_index":3016,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:14",{"_index":3017,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:15",{"_index":3009,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:29",{"_index":3014,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:34",{"_index":3013,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/token.service.ts:38",{"_index":3011,"title":{},"body":{"injectables/TokenService.html":{}}}],["src/app/_services/transaction.service.ts",{"_index":3166,"title":{},"body":{"injectables/TransactionService.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/app/_services/transaction.service.ts:102",{"_index":3183,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:108",{"_index":3196,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:26",{"_index":3200,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:27",{"_index":3199,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:28",{"_index":3202,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:29",{"_index":3203,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:30",{"_index":3204,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:31",{"_index":3178,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:45",{"_index":3187,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:49",{"_index":3185,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:53",{"_index":3192,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:73",{"_index":3190,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:89",{"_index":3181,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/transaction.service.ts:97",{"_index":3188,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/app/_services/user.service.ts",{"_index":3467,"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":2773,"title":{},"body":{"directives/PasswordToggleDirective.html":{},"coverage.html":{}}}],["src/app/auth/auth",{"_index":888,"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":883,"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":1198,"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":2761,"title":{},"body":{"modules/PagesRoutingModule.html":{}}}],["src/app/pages/pages.component.ts",{"_index":2742,"title":{},"body":{"components/PagesComponent.html":{},"coverage.html":{}}}],["src/app/pages/pages.component.ts:10",{"_index":2746,"title":{},"body":{"components/PagesComponent.html":{}}}],["src/app/pages/pages.module.ts",{"_index":2755,"title":{},"body":{"modules/PagesModule.html":{}}}],["src/app/pages/settings/organization/organization.component.ts",{"_index":2650,"title":{},"body":{"components/OrganizationComponent.html":{},"coverage.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:12",{"_index":2659,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:13",{"_index":2660,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:14",{"_index":2656,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:20",{"_index":2657,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:28",{"_index":2662,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/organization/organization.component.ts:30",{"_index":2658,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["src/app/pages/settings/settings",{"_index":2914,"title":{},"body":{"modules/SettingsRoutingModule.html":{}}}],["src/app/pages/settings/settings.component.ts",{"_index":2863,"title":{},"body":{"components/SettingsComponent.html":{},"coverage.html":{}}}],["src/app/pages/settings/settings.component.ts:16",{"_index":2872,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:17",{"_index":2871,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:18",{"_index":2874,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:19",{"_index":2876,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:21",{"_index":2875,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:22",{"_index":2866,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:28",{"_index":2870,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:37",{"_index":2867,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:41",{"_index":2868,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.component.ts:45",{"_index":2869,"title":{},"body":{"components/SettingsComponent.html":{}}}],["src/app/pages/settings/settings.module.ts",{"_index":2906,"title":{},"body":{"modules/SettingsModule.html":{}}}],["src/app/pages/tokens/token",{"_index":2946,"title":{},"body":{"components/TokenDetailsComponent.html":{},"coverage.html":{}}}],["src/app/pages/tokens/tokens",{"_index":3077,"title":{},"body":{"modules/TokensRoutingModule.html":{}}}],["src/app/pages/tokens/tokens.component.ts",{"_index":3039,"title":{},"body":{"components/TokensComponent.html":{},"coverage.html":{}}}],["src/app/pages/tokens/tokens.component.ts:18",{"_index":3052,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:19",{"_index":3051,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:20",{"_index":3053,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:21",{"_index":3054,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:22",{"_index":3045,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:30",{"_index":3048,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:41",{"_index":3046,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:45",{"_index":3050,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.component.ts:49",{"_index":3047,"title":{},"body":{"components/TokensComponent.html":{}}}],["src/app/pages/tokens/tokens.module.ts",{"_index":3068,"title":{},"body":{"modules/TokensModule.html":{}}}],["src/app/pages/transactions/transaction",{"_index":3091,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"coverage.html":{}}}],["src/app/pages/transactions/transactions",{"_index":3362,"title":{},"body":{"modules/TransactionsRoutingModule.html":{}}}],["src/app/pages/transactions/transactions.component.ts",{"_index":3302,"title":{},"body":{"components/TransactionsComponent.html":{},"coverage.html":{}}}],["src/app/pages/transactions/transactions.component.ts:17",{"_index":3326,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:18",{"_index":3327,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:19",{"_index":3322,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:20",{"_index":3323,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:21",{"_index":3328,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:22",{"_index":3325,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:23",{"_index":3329,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:24",{"_index":3330,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:26",{"_index":3324,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:27",{"_index":3314,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:37",{"_index":3319,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:47",{"_index":3321,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:51",{"_index":3315,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:55",{"_index":3317,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:66",{"_index":3318,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.component.ts:71",{"_index":3316,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["src/app/pages/transactions/transactions.module.ts",{"_index":3358,"title":{},"body":{"modules/TransactionsModule.html":{}}}],["src/app/shared/_directives/menu",{"_index":1497,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"coverage.html":{}}}],["src/app/shared/_pipes/safe.pipe.ts",{"_index":2842,"title":{},"body":{"pipes/SafePipe.html":{},"coverage.html":{}}}],["src/app/shared/_pipes/safe.pipe.ts:11",{"_index":2847,"title":{},"body":{"pipes/SafePipe.html":{}}}],["src/app/shared/_pipes/token",{"_index":2971,"title":{},"body":{"pipes/TokenRatioPipe.html":{},"coverage.html":{}}}],["src/app/shared/error",{"_index":1280,"title":{},"body":{"components/ErrorDialogComponent.html":{},"coverage.html":{}}}],["src/app/shared/footer/footer.component.ts",{"_index":1361,"title":{},"body":{"components/FooterComponent.html":{},"coverage.html":{}}}],["src/app/shared/footer/footer.component.ts:13",{"_index":1366,"title":{},"body":{"components/FooterComponent.html":{}}}],["src/app/shared/footer/footer.component.ts:9",{"_index":1365,"title":{},"body":{"components/FooterComponent.html":{}}}],["src/app/shared/shared.module.ts",{"_index":2919,"title":{},"body":{"modules/SharedModule.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts",{"_index":2929,"title":{},"body":{"components/SidebarComponent.html":{},"coverage.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts:13",{"_index":2933,"title":{},"body":{"components/SidebarComponent.html":{}}}],["src/app/shared/sidebar/sidebar.component.ts:9",{"_index":2932,"title":{},"body":{"components/SidebarComponent.html":{}}}],["src/app/shared/topbar/topbar.component.ts",{"_index":3078,"title":{},"body":{"components/TopbarComponent.html":{},"coverage.html":{}}}],["src/app/shared/topbar/topbar.component.ts:13",{"_index":3082,"title":{},"body":{"components/TopbarComponent.html":{}}}],["src/app/shared/topbar/topbar.component.ts:9",{"_index":3081,"title":{},"body":{"components/TopbarComponent.html":{}}}],["src/assets/js/ethtx/dist",{"_index":3214,"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":3215,"title":{},"body":{"injectables/TransactionService.html":{}}}],["src/assets/js/hoba",{"_index":934,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/assets/js/hoba.js",{"_index":932,"title":{},"body":{"injectables/AuthService.html":{}}}],["src/environments",{"_index":3602,"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":3473,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/environments/environment.prod.ts",{"_index":3474,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/environments/environment.ts",{"_index":3475,"title":{},"body":{"coverage.html":{},"miscellaneous/variables.html":{}}}],["src/testing/activated",{"_index":514,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"coverage.html":{}}}],["src/testing/router",{"_index":2829,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{},"coverage.html":{}}}],["src/testing/shared",{"_index":1368,"title":{},"body":{"components/FooterStubComponent.html":{},"components/SidebarStubComponent.html":{},"components/TopbarStubComponent.html":{},"coverage.html":{}}}],["src/testing/token",{"_index":3035,"title":{},"body":{"classes/TokenServiceStub.html":{},"coverage.html":{}}}],["src/testing/transaction",{"_index":3297,"title":{},"body":{"classes/TransactionServiceStub.html":{},"coverage.html":{}}}],["src/testing/user",{"_index":3372,"title":{},"body":{"classes/UserServiceStub.html":{},"coverage.html":{}}}],["srf",{"_index":3144,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["stadium",{"_index":2291,"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":1019,"title":{},"body":{"injectables/AuthService.html":{}}}],["stand",{"_index":3727,"title":{},"body":{"license.html":{}}}],["standard",{"_index":3826,"title":{},"body":{"license.html":{}}}],["standards",{"_index":3829,"title":{},"body":{"license.html":{}}}],["starehe",{"_index":2294,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["start",{"_index":4356,"title":{},"body":{"license.html":{}}}],["start:dev",{"_index":3560,"title":{},"body":{"index.html":{}}}],["started",{"_index":3548,"title":{"index.html":{},"license.html":{}},"body":{}}],["starts",{"_index":4371,"title":{},"body":{"license.html":{}}}],["starttime",{"_index":1449,"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":2828,"title":{},"body":{"guards/RoleGuard.html":{}}}],["stated",{"_index":3876,"title":{},"body":{"license.html":{}}}],["statement",{"_index":4141,"title":{},"body":{"license.html":{}}}],["statements",{"_index":3428,"title":{},"body":{"coverage.html":{}}}],["states",{"_index":2677,"title":{},"body":{"components/OrganizationComponent.html":{},"license.html":{}}}],["static",{"_index":1262,"title":{},"body":{"classes/CustomValidator.html":{}}}],["stating",{"_index":3943,"title":{},"body":{"license.html":{}}}],["station",{"_index":2075,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["status",{"_index":562,"title":{},"body":{"components/AdminComponent.html":{},"guards/AuthGuard.html":{},"components/ErrorDialogComponent.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{},"interceptors/LoggingInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"license.html":{}}}],["step",{"_index":2895,"title":{},"body":{"components/SettingsComponent.html":{}}}],["steps",{"_index":3686,"title":{},"body":{"license.html":{}}}],["stima",{"_index":2127,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["storage",{"_index":3973,"title":{},"body":{"license.html":{}}}],["store",{"_index":2573,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["store.ts",{"_index":2502,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["store.ts:10",{"_index":2561,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:100",{"_index":2627,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:106",{"_index":2628,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:11",{"_index":2551,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:110",{"_index":2632,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:115",{"_index":2629,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:119",{"_index":2634,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:12",{"_index":2556,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:123",{"_index":2631,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:127",{"_index":2635,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:13",{"_index":2554,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:131",{"_index":2637,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:135",{"_index":2646,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:139",{"_index":2648,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:14",{"_index":2545,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:143",{"_index":2647,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:148",{"_index":2625,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:15",{"_index":2549,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:152",{"_index":2649,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:16",{"_index":2548,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:17",{"_index":2528,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:18",{"_index":2539,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:19",{"_index":2535,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:20",{"_index":2560,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:21",{"_index":2558,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:22",{"_index":2529,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:23",{"_index":2531,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:24",{"_index":2538,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:25",{"_index":2533,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:26",{"_index":2541,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:27",{"_index":2537,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:28",{"_index":2543,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:29",{"_index":2547,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:30",{"_index":2563,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:31",{"_index":2567,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:32",{"_index":2565,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:33",{"_index":2527,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:34",{"_index":2569,"title":{},"body":{"interfaces/MutableKeyStore.html":{}}}],["store.ts:42",{"_index":2645,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:47",{"_index":2640,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:52",{"_index":2642,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:56",{"_index":2641,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:60",{"_index":2636,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:64",{"_index":2639,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:68",{"_index":2638,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:72",{"_index":2626,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:76",{"_index":2633,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:80",{"_index":2630,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:84",{"_index":2644,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["store.ts:90",{"_index":2643,"title":{},"body":{"classes/MutablePgpKeyStore.html":{}}}],["stored",{"_index":3583,"title":{},"body":{"index.html":{}}}],["str",{"_index":3541,"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":2463,"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":3266,"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":3375,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:18",{"_index":534,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["stub.ts:2",{"_index":3038,"title":{},"body":{"classes/TokenServiceStub.html":{}}}],["stub.ts:21",{"_index":538,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"classes/UserServiceStub.html":{}}}],["stub.ts:37",{"_index":3410,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:4",{"_index":3299,"title":{},"body":{"classes/TransactionServiceStub.html":{},"classes/UserServiceStub.html":{}}}],["stub.ts:6",{"_index":3298,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["stub.ts:61",{"_index":3408,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:7",{"_index":2832,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["stub.ts:71",{"_index":3406,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["stub.ts:8",{"_index":2833,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{},"classes/TransactionServiceStub.html":{}}}],["student",{"_index":1587,"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":4190,"title":{},"body":{"license.html":{}}}],["subject",{"_index":528,"title":{},"body":{"classes/ActivatedRouteStub.html":{},"license.html":{}}}],["subkeyid",{"_index":2544,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["sublicenses",{"_index":4219,"title":{},"body":{"license.html":{}}}],["sublicensing",{"_index":3902,"title":{},"body":{"license.html":{}}}],["submit",{"_index":1243,"title":{},"body":{"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["submitted",{"_index":781,"title":{},"body":{"components/AuthComponent.html":{},"components/CreateAccountComponent.html":{},"components/OrganizationComponent.html":{}}}],["subprograms",{"_index":3864,"title":{},"body":{"license.html":{}}}],["subroutine",{"_index":4382,"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":4006,"title":{},"body":{"license.html":{}}}],["substantial",{"_index":4057,"title":{},"body":{"license.html":{}}}],["substantially",{"_index":3725,"title":{},"body":{"license.html":{}}}],["succeeded",{"_index":1451,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["success",{"_index":1180,"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":2457,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TransactionDetailsComponent.html":{}}}],["such",{"_index":3675,"title":{},"body":{"license.html":{}}}],["sue",{"_index":4233,"title":{},"body":{"license.html":{}}}],["suffice",{"_index":4065,"title":{},"body":{"license.html":{}}}],["sugar",{"_index":1948,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["suger",{"_index":1949,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sukari",{"_index":1951,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sukuma",{"_index":1956,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sum.ts",{"_index":3435,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["super",{"_index":1393,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["super(message",{"_index":1390,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["superadmin",{"_index":1534,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["supplement",{"_index":4095,"title":{},"body":{"license.html":{}}}],["supplier",{"_index":1815,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["supply",{"_index":1550,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"miscellaneous/variables.html":{}}}],["support",{"_index":2748,"title":{},"body":{"components/PagesComponent.html":{},"license.html":{},"modules.html":{}}}],["supports",{"_index":4013,"title":{},"body":{"license.html":{}}}],["supposed",{"_index":2586,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["sure",{"_index":3646,"title":{},"body":{"license.html":{}}}],["surname",{"_index":1222,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["surrender",{"_index":3670,"title":{},"body":{"license.html":{}}}],["survive",{"_index":4140,"title":{},"body":{"license.html":{}}}],["sustained",{"_index":4329,"title":{},"body":{"license.html":{}}}],["svg",{"_index":4391,"title":{},"body":{"modules.html":{}}}],["sweats",{"_index":1945,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["sweet",{"_index":1944,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["switch",{"_index":1350,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["switchwindows",{"_index":784,"title":{},"body":{"components/AuthComponent.html":{}}}],["symbol",{"_index":1179,"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":1061,"title":{},"body":{"injectables/BlockSyncService.html":{},"coverage.html":{}}}],["sync.service.ts:101",{"_index":1079,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:14",{"_index":1097,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:15",{"_index":1070,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:23",{"_index":1074,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:46",{"_index":1087,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:68",{"_index":1084,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:76",{"_index":1081,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync.service.ts:84",{"_index":1095,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync/data",{"_index":2807,"title":{},"body":{"injectables/RegistryService.html":{}}}],["sync/data/accountregistry.json",{"_index":149,"title":{},"body":{"classes/AccountIndex.html":{},"miscellaneous/variables.html":{}}}],["sync/data/tokenuniquesymbolindex.json",{"_index":2999,"title":{},"body":{"classes/TokenRegistry.html":{},"miscellaneous/variables.html":{}}}],["sync/head.js",{"_index":1129,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["sync/ondemand.js",{"_index":1142,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["syncer",{"_index":3489,"title":{},"body":{"dependencies.html":{}}}],["system",{"_index":1013,"title":{},"body":{"injectables/AuthService.html":{},"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["systematic",{"_index":3714,"title":{},"body":{"license.html":{}}}],["taa",{"_index":2132,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["table",{"_index":2077,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["tablesort(document.getelementbyid('coverage",{"_index":3478,"title":{},"body":{"coverage.html":{}}}],["tag",{"_index":2944,"title":{},"body":{"interfaces/Staff.html":{}}}],["tailor",{"_index":1750,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["taka",{"_index":1667,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["takaungu",{"_index":2347,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["take",{"_index":3637,"title":{},"body":{"license.html":{}}}],["talk",{"_index":812,"title":{},"body":{"components/AuthComponent.html":{}}}],["tangible",{"_index":4036,"title":{},"body":{"license.html":{}}}],["tap",{"_index":1447,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["tasia",{"_index":2276,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tassia",{"_index":2275,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["taxi",{"_index":2101,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tea",{"_index":1957,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["teacher",{"_index":1583,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["technician",{"_index":2000,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["technological",{"_index":3911,"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":3813,"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":3874,"title":{},"body":{"license.html":{}}}],["terminal",{"_index":4369,"title":{},"body":{"license.html":{}}}],["terminate",{"_index":4146,"title":{},"body":{"license.html":{}}}],["terminated",{"_index":4167,"title":{},"body":{"license.html":{}}}],["terminates",{"_index":4155,"title":{},"body":{"license.html":{}}}],["termination",{"_index":4143,"title":{},"body":{"license.html":{}}}],["terms",{"_index":3683,"title":{},"body":{"license.html":{}}}],["test",{"_index":518,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["test:dev",{"_index":3591,"title":{},"body":{"index.html":{}}}],["testa",{"_index":1570,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["testb",{"_index":1566,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["testc",{"_index":1574,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tests",{"_index":3590,"title":{},"body":{"index.html":{}}}],["tetra",{"_index":2151,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tetrapak",{"_index":2152,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["text",{"_index":953,"title":{},"body":{"injectables/AuthService.html":{},"directives/PasswordToggleDirective.html":{},"miscellaneous/functions.html":{}}}],["then(res",{"_index":1052,"title":{},"body":{"injectables/AuthService.html":{}}}],["therefore",{"_index":3671,"title":{},"body":{"license.html":{}}}],["thika",{"_index":2289,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["things",{"_index":3662,"title":{},"body":{"license.html":{}}}],["third",{"_index":872,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"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":3243,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.addtransaction(transaction",{"_index":3233,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.algo",{"_index":2736,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.areanames",{"_index":1229,"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":2882,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.authservice.init",{"_index":674,"title":{},"body":{"components/AppComponent.html":{},"components/AuthComponent.html":{}}}],["this.authservice.logout",{"_index":2886,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.authservice.mutablekeystore.getprivatekey",{"_index":3282,"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":3331,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.categories",{"_index":1227,"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":3003,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["this.contract.methods.count().call",{"_index":174,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.contract.methods.entry(serial).call",{"_index":3004,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["this.contract.methods.entrycount().call",{"_index":3005,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["this.contractaddress",{"_index":156,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["this.createform",{"_index":1219,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.createform.controls",{"_index":1232,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.createform.invalid",{"_index":1233,"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":2879,"title":{},"body":{"components/SettingsComponent.html":{}}}],["this.dgst",{"_index":2720,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.dialog.open(errordialogcomponent",{"_index":1311,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["this.engine",{"_index":2735,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.errordialogservice.opendialog",{"_index":1010,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.errordialogservice.opendialog({message",{"_index":680,"title":{},"body":{"components/AppComponent.html":{},"injectables/AuthService.html":{}}}],["this.fetcher(settings",{"_index":1136,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.filegetter",{"_index":2805,"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":1231,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.getaccountinfo(res.body",{"_index":3229,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.getchallenge",{"_index":998,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.getprivatekey",{"_index":2614,"title":{},"body":{"interfaces/MutableKeyStore.html":{},"classes/MutablePgpKeyStore.html":{}}}],["this.getwithtoken",{"_index":995,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.haveaccount(address",{"_index":164,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.httpclient.get(`${environment.ciccacheurl}/tokens/${symbol",{"_index":3029,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.httpclient.get(`${environment.ciccacheurl}/tx/${address}/${offset}/${limit",{"_index":3221,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.httpclient.get(`${environment.ciccacheurl}/tx/${offset}/${limit",{"_index":3220,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.httpclient.get(`${environment.cicmetaurl}/areanames",{"_index":1438,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.httpclient.get(`${environment.cicmetaurl}/areanames/${location.tolowercase",{"_index":1439,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.httpclient.get(`${environment.cicmetaurl}/areatypes/${area.tolowercase()}`).pipe(first",{"_index":1441,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.httpclient.get(`${environment.cicmetaurl}/areatypes`).pipe(first",{"_index":1440,"title":{},"body":{"injectables/LocationService.html":{}}}],["this.isdialogopen",{"_index":1309,"title":{},"body":{"injectables/ErrorDialogService.html":{}}}],["this.iswarning(errortracestring",{"_index":1401,"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":2716,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.keystore.getfingerprint",{"_index":2719,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.keystore.getprivatekey",{"_index":2730,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.keystore.gettrustedkeys",{"_index":2724,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.linkparams",{"_index":2839,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["this.loadevent.next(date.now",{"_index":3025,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.loading",{"_index":807,"title":{},"body":{"components/AuthComponent.html":{}}}],["this.locationservice.getareanames().pipe(first()).subscribe(res",{"_index":1228,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.logerror(error",{"_index":1394,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.logger.debug(message",{"_index":1491,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.error(message",{"_index":1495,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.fatal(message",{"_index":1496,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.info(message",{"_index":1492,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.log(message",{"_index":1493,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.trace(message",{"_index":1490,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.logger.warn(message",{"_index":1494,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.loggingservice.senderrorlevelmessage",{"_index":1405,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loggingservice.senderrorlevelmessage('failed",{"_index":400,"title":{},"body":{"components/AccountsComponent.html":{}}}],["this.loggingservice.senderrorlevelmessage('login",{"_index":996,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.loggingservice.senderrorlevelmessage('unable",{"_index":677,"title":{},"body":{"components/AppComponent.html":{}}}],["this.loggingservice.senderrorlevelmessage(`failed",{"_index":1042,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.loggingservice.senderrorlevelmessage(`nobody",{"_index":1412,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loggingservice.senderrorlevelmessage(`there",{"_index":1409,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loggingservice.senderrorlevelmessage(e.message",{"_index":2727,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.loggingservice.senderrorlevelmessage(errormessage",{"_index":1349,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["this.loggingservice.senderrorlevelmessage(errortracestring",{"_index":1403,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loggingservice.sendinfolevelmessage(`loaded",{"_index":1119,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.loggingservice.sendinfolevelmessage(`result",{"_index":3293,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.loggingservice.sendinfolevelmessage(`transaction",{"_index":3295,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.loggingservice.sendinfolevelmessage(message",{"_index":1456,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["this.loggingservice.sendinfolevelmessage(request",{"_index":1448,"title":{},"body":{"interceptors/LoggingInterceptor.html":{}}}],["this.loggingservice.sendinfolevelmessage(res",{"_index":612,"title":{},"body":{"components/AdminComponent.html":{}}}],["this.loggingservice.sendinfolevelmessage(this.tokens",{"_index":3059,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.loggingservice.sendwarnlevelmessage(errortracestring",{"_index":1402,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.loginresponse(o",{"_index":994,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.loginview",{"_index":1045,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mediaquery.addlistener(this.onresize",{"_index":695,"title":{},"body":{"components/AppComponent.html":{}}}],["this.mutablekeystore",{"_index":941,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.getprivatekey",{"_index":1058,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.getprivatekeyid",{"_index":1027,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.getpublickeys().foreach(key",{"_index":1049,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.importprivatekey(localstorage.getitem(btoa('cicada_private_key",{"_index":948,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.importprivatekey(privatekeyarmored",{"_index":1039,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.isencryptedprivatekey(privatekeyarmored",{"_index":1036,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.isvalidkey(privatekeyarmored",{"_index":1030,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.mutablekeystore.loadkeyring",{"_index":942,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.name",{"_index":1392,"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":2838,"title":{},"body":{"directives/RouterLinkDirectiveStub.html":{}}}],["this.onmenuselect",{"_index":1510,"title":{},"body":{"directives/MenuSelectionDirective.html":{}}}],["this.onmenutoggle",{"_index":1516,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["this.onresize(this.mediaquery",{"_index":696,"title":{},"body":{"components/AppComponent.html":{}}}],["this.onsign",{"_index":2717,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.onsign(this.signature",{"_index":2739,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.onsign(undefined",{"_index":2741,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.onverify",{"_index":2718,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.onverify(false",{"_index":2728,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signable.html":{},"interfaces/Signer.html":{}}}],["this.organizationform",{"_index":2663,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["this.organizationform.controls",{"_index":2667,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["this.organizationform.invalid",{"_index":2668,"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":1124,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.readystateprocessor(settings",{"_index":1121,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.readystatetarget",{"_index":1125,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.recipientbloxberglink",{"_index":3121,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.registry",{"_index":2812,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["this.registry.addtoken(await",{"_index":3031,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.registry.declaratorhelper.addtrust(environment.trusteddeclaratoraddress",{"_index":2810,"title":{},"body":{"injectables/RegistryService.html":{}}}],["this.registry.getcontractaddressbyname('tokenregistry",{"_index":3024,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.registry.getcontractaddressbyname('transferauthorization",{"_index":3253,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.registry.load",{"_index":2811,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["this.registry.onload",{"_index":3021,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.registryservice.getregistry",{"_index":1110,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.registryservice.getweb3",{"_index":1108,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TransactionService.html":{}}}],["this.renderer.listen(this.elementref.nativeelement",{"_index":1507,"title":{},"body":{"directives/MenuSelectionDirective.html":{},"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{}}}],["this.route.parammap.subscribe((params",{"_index":2956,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["this.router.navigate",{"_index":2825,"title":{},"body":{"guards/RoleGuard.html":{}}}],["this.router.navigate(['/auth",{"_index":877,"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":1353,"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":3123,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(this.transaction.to",{"_index":3124,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.navigatebyurl(`/accounts/${strip0x(this.transaction.trader",{"_index":3125,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.router.navigatebyurl(`/tokens/${token.symbol",{"_index":3061,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.router.url",{"_index":1404,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.sanitizer.bypasssecuritytrustresourceurl(url",{"_index":2851,"title":{},"body":{"pipes/SafePipe.html":{}}}],["this.scanfilter",{"_index":2862,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["this.senderbloxberglink",{"_index":3119,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.sendinfolevelmessage('dropping",{"_index":1487,"title":{},"body":{"injectables/LoggingService.html":{}}}],["this.sendresponse(r",{"_index":1006,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sentencesforwarninglogging.foreach((whitelistsentence",{"_index":1416,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["this.sessionlogincount",{"_index":970,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sessiontoken",{"_index":947,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.setparammap(initialparams",{"_index":548,"title":{},"body":{"classes/ActivatedRouteStub.html":{}}}],["this.setstate('click",{"_index":971,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.signature",{"_index":2734,"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":3132,"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":1391,"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":2782,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["this.token",{"_index":2958,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["this.tokenregistry",{"_index":3022,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenregistry.entry(0",{"_index":3032,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenregistry.entry(i",{"_index":3028,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokenregistry.totaltokens",{"_index":3026,"title":{},"body":{"injectables/TokenService.html":{}}}],["this.tokens",{"_index":3057,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.tokenservice.gettokenbysymbol(params.get('id')).pipe(first()).subscribe(res",{"_index":2957,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["this.tokenservice.gettokens",{"_index":3058,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.tokenservice.loadevent.subscribe(async",{"_index":3056,"title":{},"body":{"components/TokensComponent.html":{}}}],["this.totalaccounts",{"_index":169,"title":{},"body":{"classes/AccountIndex.html":{}}}],["this.traderbloxberglink",{"_index":3116,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction",{"_index":3339,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transaction.from",{"_index":3129,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.to",{"_index":3128,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.token.address",{"_index":3127,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction.value",{"_index":3130,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.from",{"_index":3120,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.to",{"_index":3122,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.trader",{"_index":3118,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transaction?.type",{"_index":3115,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transactiondatasource",{"_index":3333,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.data",{"_index":3342,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.paginator",{"_index":3335,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactiondatasource.sort",{"_index":3336,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionlist.asobservable",{"_index":3201,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactionlist.next(this.transactions",{"_index":3246,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions",{"_index":3247,"title":{},"body":{"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["this.transactions.filter(transaction",{"_index":3343,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactions.find(cachedtx",{"_index":3222,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions.length",{"_index":3245,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactions.unshift(transaction",{"_index":3244,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.transactionservice.getaddresstransactions(address",{"_index":1137,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.transactionservice.getalltransactions(offset",{"_index":1134,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["this.transactionservice.resettransactionslist",{"_index":1102,"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":3332,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionservice.transferrequest",{"_index":3126,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["this.transactionstype",{"_index":3341,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.transactionstypes",{"_index":3338,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["this.trustedusers",{"_index":2881,"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":3226,"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":1226,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.userservice.getgenders().pipe(first()).subscribe(res",{"_index":1230,"title":{},"body":{"components/CreateAccountComponent.html":{}}}],["this.userservice.gettransactiontypes().pipe(first()).subscribe(res",{"_index":3337,"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":2813,"title":{},"body":{"injectables/RegistryService.html":{},"injectables/TransactionService.html":{}}}],["this.web3.eth.getgasprice",{"_index":3272,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.gettransaction(result.transactionhash",{"_index":3294,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.gettransactioncount(senderaddress",{"_index":3269,"title":{},"body":{"injectables/TransactionService.html":{}}}],["this.web3.eth.sendsignedtransaction(txwire",{"_index":3292,"title":{},"body":{"injectables/TransactionService.html":{}}}],["those",{"_index":3723,"title":{},"body":{"license.html":{}}}],["though",{"_index":4098,"title":{},"body":{"license.html":{}}}],["threatened",{"_index":3733,"title":{},"body":{"license.html":{}}}],["three",{"_index":3995,"title":{},"body":{"license.html":{}}}],["threw",{"_index":1413,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["through",{"_index":2444,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{}}}],["throw",{"_index":967,"title":{},"body":{"injectables/AuthService.html":{},"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["throwerror",{"_index":1327,"title":{},"body":{"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{}}}],["throwerror(err",{"_index":1360,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["thrown",{"_index":2412,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["throws",{"_index":1028,"title":{},"body":{"injectables/AuthService.html":{}}}],["thus",{"_index":3893,"title":{},"body":{"license.html":{}}}],["timber",{"_index":2115,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["timberyard",{"_index":2116,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["time",{"_index":863,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["timestamp",{"_index":1181,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["tissue",{"_index":2068,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["title",{"_index":644,"title":{},"body":{"components/AppComponent.html":{}}}],["titlecase",{"_index":1242,"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":944,"title":{},"body":{"injectables/AuthService.html":{}}}],["toggle.directive",{"_index":887,"title":{},"body":{"modules/AuthModule.html":{},"modules/SharedModule.html":{}}}],["toggle.directive.ts",{"_index":1511,"title":{},"body":{"directives/MenuToggleDirective.html":{},"directives/PasswordToggleDirective.html":{},"coverage.html":{}}}],["toggle.directive.ts:11",{"_index":2778,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggle.directive.ts:18",{"_index":1515,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["toggle.directive.ts:22",{"_index":2780,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggle.directive.ts:6",{"_index":1514,"title":{},"body":{"directives/MenuToggleDirective.html":{}}}],["toggle.directive.ts:8",{"_index":2779,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["toggledisplay",{"_index":785,"title":{},"body":{"components/AuthComponent.html":{}}}],["toggledisplay(element",{"_index":792,"title":{},"body":{"components/AuthComponent.html":{}}}],["togglepasswordvisibility",{"_index":2775,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["tohex",{"_index":3213,"title":{},"body":{"injectables/TransactionService.html":{}}}],["toi",{"_index":2310,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["toilet",{"_index":1662,"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":2960,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["token.name",{"_index":2959,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["token.owner",{"_index":2970,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["token.reserveratio",{"_index":2969,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["token.supply",{"_index":2968,"title":{},"body":{"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["token.symbol",{"_index":2462,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{}}}],["tokenaddress",{"_index":3197,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tokenagent",{"_index":2395,"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":2918,"title":{"pipes/TokenRatioPipe.html":{}},"body":{"modules/SharedModule.html":{},"pipes/TokenRatioPipe.html":{},"coverage.html":{},"overview.html":{}}}],["tokenregistry",{"_index":2978,"title":{"classes/TokenRegistry.html":{}},"body":{"classes/TokenRegistry.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"coverage.html":{}}}],["tokenregistry(await",{"_index":3023,"title":{},"body":{"injectables/TokenService.html":{}}}],["tokens",{"_index":1545,"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":3041,"title":{},"body":{"components/TokensComponent.html":{}}}],["tokens.component.scss",{"_index":3040,"title":{},"body":{"components/TokensComponent.html":{}}}],["tokens.find(token",{"_index":2461,"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":2953,"title":{"injectables/TokenService.html":{}},"body":{"components/TokenDetailsComponent.html":{},"injectables/TokenService.html":{},"components/TokensComponent.html":{},"coverage.html":{}}}],["tokenservicestub",{"_index":3034,"title":{"classes/TokenServiceStub.html":{}},"body":{"classes/TokenServiceStub.html":{},"coverage.html":{}}}],["tokensmodule",{"_index":3063,"title":{"modules/TokensModule.html":{}},"body":{"modules/TokensModule.html":{},"modules.html":{},"overview.html":{}}}],["tokensroutingmodule",{"_index":3067,"title":{"modules/TokensRoutingModule.html":{}},"body":{"modules/TokensModule.html":{},"modules/TokensRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["tom",{"_index":1529,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["tomato",{"_index":1873,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tomatoes",{"_index":1874,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["toolbox",{"_index":2888,"title":{},"body":{"components/SettingsComponent.html":{}}}],["tools",{"_index":3857,"title":{},"body":{"license.html":{}}}],["topbar",{"_index":1370,"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":3080,"title":{},"body":{"components/TopbarComponent.html":{}}}],["topbar.component.scss",{"_index":3079,"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":2982,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["tour",{"_index":2094,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tout",{"_index":1780,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tovalue",{"_index":1189,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"injectables/TransactionService.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["tovalue(value",{"_index":3278,"title":{},"body":{"injectables/TransactionService.html":{}}}],["town",{"_index":2318,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trace",{"_index":1399,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["trace|debug|info|log|warn|error|fatal|off",{"_index":1486,"title":{},"body":{"injectables/LoggingService.html":{}}}],["trade",{"_index":1805,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["trademark",{"_index":4124,"title":{},"body":{"license.html":{}}}],["trademarks",{"_index":4125,"title":{},"body":{"license.html":{}}}],["trader",{"_index":1190,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"components/TransactionDetailsComponent.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["traderbloxberglink",{"_index":3095,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["trading",{"_index":2963,"title":{},"body":{"components/TokenDetailsComponent.html":{}}}],["trainer",{"_index":1624,"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":3162,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.destinationtoken.name",{"_index":3163,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.destinationtoken.symbol",{"_index":3164,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.from",{"_index":3139,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.fromvalue",{"_index":3160,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.recipient",{"_index":3231,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transaction.recipient?.vcard.fn[0].value",{"_index":3141,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sender",{"_index":3228,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transaction.sender?.vcard.fn[0].value",{"_index":3138,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.address",{"_index":3157,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.name",{"_index":3158,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.sourcetoken.symbol",{"_index":3159,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.to",{"_index":3142,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.token._address",{"_index":3146,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tovalue",{"_index":3165,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.trader",{"_index":3156,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.block",{"_index":3147,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.success",{"_index":3151,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.timestamp",{"_index":3152,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.tx.txhash",{"_index":3150,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["transaction.tx.txindex",{"_index":3148,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["transaction.type",{"_index":3225,"title":{},"body":{"injectables/TransactionService.html":{},"components/TransactionsComponent.html":{}}}],["transaction.value",{"_index":3145,"title":{},"body":{"components/TransactionDetailsComponent.html":{},"injectables/TransactionService.html":{}}}],["transaction?.recipient?.vcard.fn[0].value",{"_index":3348,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.sender?.vcard.fn[0].value",{"_index":3347,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.tovalue",{"_index":3350,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.tx.timestamp",{"_index":3351,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.type",{"_index":3352,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transaction?.value",{"_index":3349,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiondatasource",{"_index":3306,"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":3307,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactionhelper",{"_index":1098,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionhelper(settings.w3.engine",{"_index":1112,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionlist",{"_index":3167,"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":3305,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactions.component.scss",{"_index":3304,"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":3296,"title":{"classes/TransactionServiceStub.html":{}},"body":{"classes/TransactionServiceStub.html":{},"coverage.html":{}}}],["transactionsinfo",{"_index":1078,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.filter_rounds",{"_index":1164,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.high",{"_index":1163,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["transactionsinfo.low",{"_index":1162,"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":3357,"title":{"modules/TransactionsRoutingModule.html":{}},"body":{"modules/TransactionsModule.html":{},"modules/TransactionsRoutingModule.html":{},"modules.html":{},"overview.html":{}}}],["transactionssubject",{"_index":3168,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transactionstype",{"_index":3308,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactionstypes",{"_index":3309,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiontype",{"_index":3346,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transactiontypes",{"_index":2396,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"coverage.html":{},"miscellaneous/variables.html":{}}}],["transfer",{"_index":2665,"title":{},"body":{"components/OrganizationComponent.html":{},"components/TransactionsComponent.html":{},"license.html":{}}}],["transferauthaddress",{"_index":3252,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferred",{"_index":4072,"title":{},"body":{"license.html":{}}}],["transferrequest",{"_index":3177,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferrequest(tokenaddress",{"_index":3193,"title":{},"body":{"injectables/TransactionService.html":{}}}],["transferring",{"_index":4188,"title":{},"body":{"license.html":{}}}],["transfers",{"_index":3345,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["transform",{"_index":2844,"title":{},"body":{"pipes/SafePipe.html":{},"pipes/TokenRatioPipe.html":{}}}],["transform(url",{"_index":2845,"title":{},"body":{"pipes/SafePipe.html":{}}}],["transform(value",{"_index":2973,"title":{},"body":{"pipes/TokenRatioPipe.html":{}}}],["transition",{"_index":583,"title":{},"body":{"components/AdminComponent.html":{}}}],["transition('expanded",{"_index":597,"title":{},"body":{"components/AdminComponent.html":{}}}],["transmission",{"_index":4025,"title":{},"body":{"license.html":{}}}],["transport",{"_index":2083,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["transpoter",{"_index":2110,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trash",{"_index":1675,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["trasportion",{"_index":2105,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["travel",{"_index":2095,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["traverse",{"_index":865,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["treated",{"_index":4097,"title":{},"body":{"license.html":{}}}],["treaty",{"_index":3918,"title":{},"body":{"license.html":{}}}],["tree",{"_index":181,"title":{},"body":{"components/AccountSearchComponent.html":{},"components/AccountsComponent.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"components/AuthComponent.html":{},"guards/AuthGuard.html":{},"components/CreateAccountComponent.html":{},"components/ErrorDialogComponent.html":{},"components/FooterComponent.html":{},"components/FooterStubComponent.html":{},"interceptors/MockBackendInterceptor.html":{},"components/OrganizationComponent.html":{},"components/PagesComponent.html":{},"guards/RoleGuard.html":{},"components/SettingsComponent.html":{},"components/SidebarComponent.html":{},"components/SidebarStubComponent.html":{},"components/TokenDetailsComponent.html":{},"components/TokensComponent.html":{},"components/TopbarComponent.html":{},"components/TopbarStubComponent.html":{},"components/TransactionDetailsComponent.html":{},"components/TransactionsComponent.html":{},"miscellaneous/variables.html":{}}}],["trigger",{"_index":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":4429,"title":{},"body":{"miscellaneous/variables.html":{}}}],["trustedusers",{"_index":1048,"title":{},"body":{"injectables/AuthService.html":{},"components/SettingsComponent.html":{}}}],["trustedusers.push(key.users[0].userid",{"_index":1050,"title":{},"body":{"injectables/AuthService.html":{}}}],["try",{"_index":394,"title":{},"body":{"components/AccountsComponent.html":{},"components/AppComponent.html":{},"injectables/AuthService.html":{},"injectables/TransactionService.html":{}}}],["ts",{"_index":2786,"title":{},"body":{"directives/PasswordToggleDirective.html":{}}}],["tslib",{"_index":3518,"title":{},"body":{"dependencies.html":{}}}],["tsta",{"_index":1571,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tstb",{"_index":1567,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tstc",{"_index":1575,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tudor",{"_index":2329,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tuition",{"_index":1618,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tuktuk",{"_index":2100,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tution",{"_index":1617,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["tv",{"_index":1781,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["two",{"_index":2894,"title":{},"body":{"components/SettingsComponent.html":{},"license.html":{}}}],["tx",{"_index":1082,"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":3267,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.data",{"_index":3279,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.gaslimit",{"_index":3273,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.gasprice",{"_index":3270,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.message",{"_index":3281,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.nonce",{"_index":3268,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.setsignature(r",{"_index":3289,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.to",{"_index":3275,"title":{},"body":{"injectables/TransactionService.html":{}}}],["tx.value",{"_index":3277,"title":{},"body":{"injectables/TransactionService.html":{}}}],["txhash",{"_index":1182,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["txhelper",{"_index":2854,"title":{},"body":{"classes/Settings.html":{},"classes/W3.html":{}}}],["txindex",{"_index":1183,"title":{},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{}}}],["txmsg",{"_index":3280,"title":{},"body":{"injectables/TransactionService.html":{}}}],["txtoken",{"_index":1178,"title":{"classes/TxToken.html":{}},"body":{"classes/BlocksBloom.html":{},"classes/Conversion.html":{},"classes/Transaction.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"coverage.html":{}}}],["txwire",{"_index":3290,"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":4397,"title":{"miscellaneous/typealiases.html":{}},"body":{}}],["typeerror",{"_index":1408,"title":{},"body":{"injectables/GlobalErrorHandler.html":{},"classes/HttpError.html":{}}}],["typescript",{"_index":109,"title":{},"body":{"classes/AccountIndex.html":{},"classes/TokenRegistry.html":{}}}],["typical",{"_index":4051,"title":{},"body":{"license.html":{}}}],["uchumi",{"_index":2286,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uchuuzi",{"_index":1961,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uchuzi",{"_index":1960,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ug",{"_index":2682,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ugali",{"_index":1959,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uganda",{"_index":2683,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["ugoro",{"_index":1950,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uint256",{"_index":3264,"title":{},"body":{"injectables/TransactionService.html":{}}}],["uint8array",{"_index":1092,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["uint8array(blockfilterbinstr.length",{"_index":1150,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["uint8array(blocktxfilterbinstr.length",{"_index":1158,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["ujenzi",{"_index":1807,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uji",{"_index":1958,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ukulima",{"_index":1687,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ukunda",{"_index":2248,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["umena",{"_index":1883,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["umoja",{"_index":2288,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unable",{"_index":1014,"title":{},"body":{"injectables/AuthService.html":{}}}],["unacceptable",{"_index":3720,"title":{},"body":{"license.html":{}}}],["unapproved",{"_index":609,"title":{},"body":{"components/AdminComponent.html":{},"classes/UserServiceStub.html":{}}}],["unauthorized",{"_index":1352,"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":3763,"title":{},"body":{"license.html":{}}}],["unga",{"_index":1941,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uniform",{"_index":2070,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unit",{"_index":3589,"title":{},"body":{"index.html":{}}}],["united",{"_index":2676,"title":{},"body":{"components/OrganizationComponent.html":{}}}],["university",{"_index":1593,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["unknown",{"_index":2142,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"pipes/SafePipe.html":{},"miscellaneous/variables.html":{}}}],["unless",{"_index":4059,"title":{},"body":{"license.html":{}}}],["unlimited",{"_index":3880,"title":{},"body":{"license.html":{}}}],["unmodified",{"_index":3780,"title":{},"body":{"license.html":{}}}],["unnecessary",{"_index":3905,"title":{},"body":{"license.html":{}}}],["unpacking",{"_index":4093,"title":{},"body":{"license.html":{}}}],["unsuccessful",{"_index":1339,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["until",{"_index":4154,"title":{},"body":{"license.html":{}}}],["update",{"_index":2892,"title":{},"body":{"components/SettingsComponent.html":{}}}],["updates",{"_index":4081,"title":{},"body":{"license.html":{}}}],["uploaded",{"_index":855,"title":{},"body":{"guards/AuthGuard.html":{}}}],["uppercase",{"_index":422,"title":{},"body":{"components/AccountsComponent.html":{},"components/CreateAccountComponent.html":{},"components/TransactionsComponent.html":{}}}],["urban",{"_index":2392,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["url",{"_index":847,"title":{},"body":{"guards/AuthGuard.html":{},"interceptors/MockBackendInterceptor.html":{},"components/PagesComponent.html":{},"guards/RoleGuard.html":{},"pipes/SafePipe.html":{}}}],["url.endswith('/accounttypes",{"_index":2437,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/actions",{"_index":2420,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/areanames",{"_index":2433,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/areatypes",{"_index":2435,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/categories",{"_index":2429,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/genders",{"_index":2441,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/tokens",{"_index":2425,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.endswith('/transactiontypes",{"_index":2439,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/actions\\/\\d",{"_index":2422,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/areanames\\/\\w",{"_index":2434,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/areatypes\\/\\w",{"_index":2436,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/categories\\/\\w",{"_index":2431,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.match(/\\/tokens\\/\\w",{"_index":2427,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["url.split",{"_index":2498,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urlparts",{"_index":2497,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urlparts[urlparts.length",{"_index":2500,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["urltree",{"_index":867,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["usafi",{"_index":1672,"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":864,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["useful",{"_index":4363,"title":{},"body":{"license.html":{}}}],["user",{"_index":509,"title":{},"body":{"interfaces/Action.html":{},"components/AdminComponent.html":{},"components/AppComponent.html":{},"interfaces/AreaName.html":{},"interfaces/AreaType.html":{},"guards/AuthGuard.html":{},"classes/BlocksBloom.html":{},"interfaces/Category.html":{},"classes/Conversion.html":{},"components/CreateAccountComponent.html":{},"interceptors/ErrorInterceptor.html":{},"interceptors/MockBackendInterceptor.html":{},"guards/RoleGuard.html":{},"components/SettingsComponent.html":{},"classes/Transaction.html":{},"injectables/TransactionService.html":{},"classes/Tx.html":{},"classes/TxToken.html":{},"classes/UserServiceStub.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["user's",{"_index":869,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["user.email",{"_index":2899,"title":{},"body":{"components/SettingsComponent.html":{}}}],["user.name",{"_index":2898,"title":{},"body":{"components/SettingsComponent.html":{}}}],["user.tokey(conversion.trader)).pipe(first()).subscribe((res",{"_index":3240,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.tokey(transaction.from)).pipe(first()).subscribe((res",{"_index":3227,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.tokey(transaction.to)).pipe(first()).subscribe((res",{"_index":3230,"title":{},"body":{"injectables/TransactionService.html":{}}}],["user.userid",{"_index":2900,"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":2873,"title":{},"body":{"components/SettingsComponent.html":{},"interfaces/Staff.html":{}}}],["userinfo",{"_index":3169,"title":{},"body":{"injectables/TransactionService.html":{}}}],["userkey",{"_index":3411,"title":{},"body":{"classes/UserServiceStub.html":{}}}],["username",{"_index":2890,"title":{},"body":{"components/SettingsComponent.html":{}}}],["users",{"_index":2885,"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":3371,"title":{"classes/UserServiceStub.html":{}},"body":{"classes/UserServiceStub.html":{},"coverage.html":{}}}],["uses",{"_index":4054,"title":{},"body":{"license.html":{}}}],["using",{"_index":4023,"title":{},"body":{"license.html":{}}}],["ustadh",{"_index":1641,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ustadhi",{"_index":1642,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utencils",{"_index":2073,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utensils",{"_index":2074,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["utils",{"_index":3209,"title":{},"body":{"injectables/TransactionService.html":{}}}],["utils.abicoder",{"_index":3262,"title":{},"body":{"injectables/TransactionService.html":{}}}],["uto",{"_index":2057,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uvuvi",{"_index":1747,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["uyoma",{"_index":2366,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["v",{"_index":1152,"title":{},"body":{"injectables/BlockSyncService.html":{},"injectables/TokenService.html":{},"injectables/TransactionService.html":{}}}],["v[i",{"_index":1153,"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":3453,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["validationerrors",{"_index":1270,"title":{},"body":{"classes/CustomValidator.html":{}}}],["validator",{"_index":3498,"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":3430,"title":{},"body":{"coverage.html":{}}}],["variables",{"_index":3575,"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":3251,"title":{},"body":{"injectables/TransactionService.html":{}}}],["vcards",{"_index":3520,"title":{},"body":{"dependencies.html":{}}}],["vcardvalidation",{"_index":3455,"title":{},"body":{"coverage.html":{},"miscellaneous/functions.html":{}}}],["vcardvalidation(vcard",{"_index":3546,"title":{},"body":{"miscellaneous/functions.html":{}}}],["vegetable",{"_index":1937,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vendor",{"_index":1808,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"classes/UserServiceStub.html":{},"miscellaneous/variables.html":{}}}],["verbatim",{"_index":3626,"title":{},"body":{"license.html":{}}}],["verification",{"_index":2897,"title":{},"body":{"components/SettingsComponent.html":{}}}],["verify",{"_index":2691,"title":{},"body":{"classes/PGPSigner.html":{},"interfaces/Signer.html":{}}}],["verify(digest",{"_index":2709,"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":3643,"title":{},"body":{"license.html":{}}}],["vet",{"_index":2004,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["veterinary",{"_index":2003,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["via",{"_index":3576,"title":{},"body":{"index.html":{}}}],["viatu",{"_index":1800,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["viazi",{"_index":1962,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vidziweni",{"_index":2246,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["view",{"_index":3140,"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":3098,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["views",{"_index":846,"title":{},"body":{"guards/AuthGuard.html":{},"guards/RoleGuard.html":{}}}],["viewsender",{"_index":3099,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["viewtoken",{"_index":3043,"title":{},"body":{"components/TokensComponent.html":{}}}],["viewtoken(token",{"_index":3049,"title":{},"body":{"components/TokensComponent.html":{}}}],["viewtrader",{"_index":3100,"title":{},"body":{"components/TransactionDetailsComponent.html":{}}}],["viewtransaction",{"_index":3312,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["viewtransaction(transaction",{"_index":3320,"title":{},"body":{"components/TransactionsComponent.html":{}}}],["vigungani",{"_index":2245,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vijana",{"_index":1625,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikapu",{"_index":2069,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikinduni",{"_index":2233,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vikolani",{"_index":2234,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["village",{"_index":1654,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vinyunduni",{"_index":2247,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["viogato",{"_index":2236,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["violates",{"_index":4087,"title":{},"body":{"license.html":{}}}],["violation",{"_index":4150,"title":{},"body":{"license.html":{}}}],["visibility",{"_index":593,"title":{},"body":{"components/AdminComponent.html":{}}}],["visible",{"_index":596,"title":{},"body":{"components/AdminComponent.html":{},"license.html":{}}}],["vistangani",{"_index":2238,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitabu",{"_index":1633,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitangani",{"_index":2235,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitenge",{"_index":2072,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vitungu",{"_index":1915,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vivian",{"_index":1538,"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":3972,"title":{},"body":{"license.html":{}}}],["volunteer",{"_index":1606,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vsla",{"_index":2012,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vyogato",{"_index":2237,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["vyombo",{"_index":2082,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["w",{"_index":1141,"title":{},"body":{"injectables/BlockSyncService.html":{},"license.html":{}}}],["w.onmessage",{"_index":1143,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["w.postmessage",{"_index":1144,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["w3",{"_index":2855,"title":{"classes/W3.html":{}},"body":{"classes/Settings.html":{},"classes/W3.html":{},"coverage.html":{}}}],["w3_provider",{"_index":1133,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["waiter",{"_index":1798,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waitress",{"_index":1799,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waive",{"_index":3926,"title":{},"body":{"license.html":{}}}],["waiver",{"_index":4343,"title":{},"body":{"license.html":{}}}],["wakulima",{"_index":1688,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["want",{"_index":3659,"title":{},"body":{"license.html":{}}}],["ward",{"_index":1655,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["warranties",{"_index":3814,"title":{},"body":{"license.html":{}}}],["warranty",{"_index":3696,"title":{},"body":{"license.html":{}}}],["wash",{"_index":1704,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["washing",{"_index":1792,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["waste",{"_index":1666,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["watchlady",{"_index":1809,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["watchman",{"_index":1797,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["water",{"_index":1975,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["way",{"_index":3650,"title":{},"body":{"license.html":{}}}],["ways",{"_index":3985,"title":{},"body":{"license.html":{}}}],["web",{"_index":3549,"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":3001,"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":3002,"title":{},"body":{"classes/TokenRegistry.html":{}}}],["web3provider",{"_index":4422,"title":{},"body":{"miscellaneous/variables.html":{}}}],["weight",{"_index":1558,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"interfaces/Token.html":{},"components/TokenDetailsComponent.html":{},"miscellaneous/variables.html":{}}}],["welcome",{"_index":4373,"title":{},"body":{"license.html":{}}}],["welder",{"_index":1794,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["welding",{"_index":1795,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["well",{"_index":3797,"title":{},"body":{"license.html":{}}}],["went",{"_index":1345,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["west",{"_index":2252,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["whatever",{"_index":4192,"title":{},"body":{"license.html":{}}}],["wheadsync",{"_index":1126,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["wheadsync.onmessage",{"_index":1130,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["wheadsync.postmessage",{"_index":1132,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["whether",{"_index":120,"title":{},"body":{"classes/AccountIndex.html":{},"guards/AuthGuard.html":{},"guards/RoleGuard.html":{},"license.html":{}}}],["whole",{"_index":3835,"title":{},"body":{"license.html":{}}}],["wholesaler",{"_index":2065,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["whose",{"_index":4033,"title":{},"body":{"license.html":{}}}],["widely",{"_index":3831,"title":{},"body":{"license.html":{}}}],["width",{"_index":626,"title":{},"body":{"components/AdminComponent.html":{},"components/AppComponent.html":{},"injectables/ErrorDialogService.html":{},"directives/MenuSelectionDirective.html":{}}}],["window",{"_index":3847,"title":{},"body":{"license.html":{}}}],["window.atob(transactionsinfo.block_filter",{"_index":1148,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.atob(transactionsinfo.blocktx_filter",{"_index":1156,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.dispatchevent(this.newconversionevent(transaction",{"_index":1116,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.dispatchevent(this.newtransferevent(transaction",{"_index":1114,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["window.getcomputedstyle(element).display",{"_index":828,"title":{},"body":{"components/AuthComponent.html":{}}}],["window.location.reload(true",{"_index":1047,"title":{},"body":{"injectables/AuthService.html":{}}}],["window.location.search.substring(1",{"_index":956,"title":{},"body":{"injectables/AuthService.html":{}}}],["window.matchmedia('(max",{"_index":665,"title":{},"body":{"components/AppComponent.html":{},"directives/MenuSelectionDirective.html":{}}}],["window.prompt('password",{"_index":2616,"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":1965,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["wipo",{"_index":3917,"title":{},"body":{"license.html":{}}}],["wish",{"_index":3657,"title":{},"body":{"license.html":{}}}],["within",{"_index":4135,"title":{},"body":{"license.html":{}}}],["without",{"_index":3783,"title":{},"body":{"license.html":{}}}],["wood",{"_index":2130,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["work",{"_index":1814,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["work's",{"_index":3856,"title":{},"body":{"license.html":{}}}],["worker",{"_index":1127,"title":{},"body":{"injectables/BlockSyncService.html":{},"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["worker('./../assets/js/block",{"_index":1128,"title":{},"body":{"injectables/BlockSyncService.html":{}}}],["working",{"_index":1796,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"license.html":{},"miscellaneous/variables.html":{}}}],["works",{"_index":3633,"title":{},"body":{"license.html":{}}}],["world",{"_index":3301,"title":{},"body":{"classes/TransactionServiceStub.html":{}}}],["worldwide",{"_index":4222,"title":{},"body":{"license.html":{}}}],["wote",{"_index":2386,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["wrap",{"_index":2404,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{}}}],["writing",{"_index":4304,"title":{},"body":{"license.html":{}}}],["written",{"_index":3994,"title":{},"body":{"license.html":{}}}],["wrong",{"_index":1346,"title":{},"body":{"interceptors/ErrorInterceptor.html":{}}}],["ws.dev.grassrootseconomics.net",{"_index":4424,"title":{},"body":{"miscellaneous/variables.html":{}}}],["ws://localhost:63546",{"_index":4434,"title":{},"body":{"miscellaneous/variables.html":{}}}],["wss://bloxberg",{"_index":4423,"title":{},"body":{"miscellaneous/variables.html":{}}}],["xhr",{"_index":950,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.addeventlistener('load",{"_index":964,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.getresponseheader('token",{"_index":985,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.getresponseheader('www",{"_index":991,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.onload",{"_index":989,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.open('get",{"_index":954,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.responsetype",{"_index":952,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.send",{"_index":973,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.setrequestheader('authorization",{"_index":957,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.setrequestheader('content",{"_index":959,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.setrequestheader('x",{"_index":961,"title":{},"body":{"injectables/AuthService.html":{}}}],["xhr.status",{"_index":965,"title":{},"body":{"injectables/AuthService.html":{}}}],["xmlhttprequest",{"_index":951,"title":{},"body":{"injectables/AuthService.html":{}}}],["yapha",{"_index":2239,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yava",{"_index":2240,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["years",{"_index":3996,"title":{},"body":{"license.html":{}}}],["yes",{"_index":96,"title":{},"body":{"classes/AccountIndex.html":{},"classes/ActivatedRouteStub.html":{},"classes/TokenRegistry.html":{}}}],["yoga",{"_index":1801,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yoghurt",{"_index":1963,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yogurt",{"_index":1964,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yourself",{"_index":4240,"title":{},"body":{"license.html":{}}}],["youth",{"_index":1626,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["yowani",{"_index":2241,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["ziwani",{"_index":2242,"title":{},"body":{"interceptors/MockBackendInterceptor.html":{},"miscellaneous/variables.html":{}}}],["zone.js",{"_index":3524,"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_imports\n\n\n\ncluster_AppModule_providers\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                Description\n                \n                \n                    Auth guard implementation.\nDictates access to routes depending on the authentication status.\n\n                \n\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                                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:17\n                            \n                        \n\n                \n                    \n                            Instantiates the auth guard class.\n\n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                                    Description\n                                            \n                                        \n                                        \n                                                \n                                                        router\n                                                  \n                                                        \n                                                                        Router\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                        \n                                                                \nA service that provides navigation among views and URL manipulation capabilities.\n\n\n                                                        \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n                \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            canActivate\n                        \n                        \n                    \n                \n            \n            \n                \ncanActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_guards/auth.guard.ts:35\n                \n            \n\n\n            \n                \n                    Returns whether navigation to a specific route is acceptable.\nChecks if the user has uploaded a private key.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    route\n                                    \n                                                ActivatedRouteSnapshot\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nContains the information about a route associated with a component loaded in an outlet at a particular moment in time.\nActivatedRouteSnapshot can also be used to traverse the router state tree.\n\n\n                                    \n                                \n                                \n                                    state\n                                    \n                                                RouterStateSnapshot\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nRepresents the state of the router at a moment in time.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable | Promise | boolean | UrlTree\n\n                    \n                    \n                        true - If there is an active private key in the user's localStorage.\n\n                    \n                \n            \n        \n    \n\n        \n\n\n        \n            import { Injectable } from '@angular/core';\nimport {ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot, UrlTree} from '@angular/router';\n\n// Third party imports\nimport { Observable } from 'rxjs';\n\n/**\n * Auth guard implementation.\n * Dictates access to routes depending on the authentication status.\n *\n * @implements CanActivate\n */\n@Injectable({\n  providedIn: 'root'\n})\nexport class AuthGuard implements CanActivate {\n\n  /**\n   * Instantiates the auth guard class.\n   *\n   * @param router - A service that provides navigation among views and URL manipulation capabilities.\n   */\n  constructor(private router: Router) {}\n\n  /**\n   * Returns whether navigation to a specific route is acceptable.\n   * Checks if the user has uploaded a private key.\n   *\n   * @param route - Contains the information about a route associated with a component loaded in an outlet at a particular moment in time.\n   * ActivatedRouteSnapshot can also be used to traverse the router state tree.\n   * @param state - Represents the state of the router at a moment in time.\n   * @returns true - If there is an active private key in the user's localStorage.\n   */\n  canActivate(\n    route: ActivatedRouteSnapshot,\n    state: RouterStateSnapshot): 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: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_declarations\n\n\n\ncluster_PagesModule_imports\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                Description\n                \n                \n                    Role guard implementation.\nDictates access to routes depending on the user's role.\n\n                \n\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                                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:17\n                            \n                        \n\n                \n                    \n                            Instantiates the role guard class.\n\n                            \n                                    Parameters :\n                                    \n                                        \n                                            \n                                                Name\n                                                    Type\n                                                Optional\n                                                    Description\n                                            \n                                        \n                                        \n                                                \n                                                        router\n                                                  \n                                                        \n                                                                        Router\n                                                        \n                                                  \n                                                    \n                                                            No\n                                                    \n                                                    \n                                                        \n                                                                \nA service that provides navigation among views and URL manipulation capabilities.\n\n\n                                                        \n                                                \n                                        \n                                    \n                            \n                    \n                \n            \n        \n\n\n                \n    \n    \n        Methods\n    \n    \n        \n            \n                \n                    \n                    \n                        \n                            canActivate\n                        \n                        \n                    \n                \n            \n            \n                \ncanActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot)\n                \n            \n\n\n            \n                \n                    Defined in src/app/_guards/role.guard.ts:35\n                \n            \n\n\n            \n                \n                    Returns whether navigation to a specific route is acceptable.\nChecks if the user has the required role to access the route.\n\n\n                    \n                        Parameters :\n                        \n                            \n                                \n                                    Name\n                                    Type\n                                    Optional\n                                    Description\n                                \n                            \n                            \n                                \n                                    route\n                                    \n                                                ActivatedRouteSnapshot\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nContains the information about a route associated with a component loaded in an outlet at a particular moment in time.\nActivatedRouteSnapshot can also be used to traverse the router state tree.\n\n\n                                    \n                                \n                                \n                                    state\n                                    \n                                                RouterStateSnapshot\n                                    \n\n                                    \n                                        No\n                                    \n\n\n                                    \n                                        \nRepresents the state of the router at a moment in time.\n\n\n                                    \n                                \n                            \n                        \n                    \n                    \n                    \n                    \n                        Returns :     Observable | Promise | boolean | UrlTree\n\n                    \n                    \n                        true - If the user's role matches with accepted roles.\n\n                    \n                \n            \n        \n    \n\n        \n\n\n        \n            import { Injectable } from '@angular/core';\nimport {ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot, UrlTree} from '@angular/router';\n\n// Third party imports\nimport { Observable } from 'rxjs';\n\n/**\n * Role guard implementation.\n * Dictates access to routes depending on the user's role.\n *\n * @implements CanActivate\n */\n@Injectable({\n  providedIn: 'root'\n})\nexport class RoleGuard implements CanActivate {\n\n  /**\n   * Instantiates the role guard class.\n   *\n   * @param router - A service that provides navigation among views and URL manipulation capabilities.\n   */\n  constructor(private router: Router) {}\n\n  /**\n   * Returns whether navigation to a specific route is acceptable.\n   * Checks if the user has the required role to access the route.\n   *\n   * @param route - Contains the information about a route associated with a component loaded in an outlet at a particular moment in time.\n   * ActivatedRouteSnapshot can also be used to traverse the router state tree.\n   * @param state - Represents the state of the router at a moment in time.\n   * @returns true - If the user's role matches with accepted roles.\n   */\n  canActivate(\n    route: ActivatedRouteSnapshot,\n    state: RouterStateSnapshot): 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_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                100 %\n                (9/9)\n            \n        \n        \n            \n                \n                src/app/_eth/accountIndex.ts\n            \n            variable\n            abi\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_eth/accountIndex.ts\n            \n            variable\n            web3\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_eth/token-registry.ts\n            \n            class\n            TokenRegistry\n            \n                100 %\n                (8/8)\n            \n        \n        \n            \n                \n                src/app/_eth/token-registry.ts\n            \n            variable\n            abi\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_eth/token-registry.ts\n            \n            variable\n            web3\n            \n                100 %\n                (1/1)\n            \n        \n        \n            \n                \n                src/app/_guards/auth.guard.ts\n            \n            guard\n            AuthGuard\n            \n                100 %\n                (3/3)\n            \n        \n        \n            \n                \n                src/app/_guards/role.guard.ts\n            \n            guard\n            RoleGuard\n            \n                100 %\n                (3/3)\n            \n        \n        \n            \n                \n                src/app/_helpers/array-sum.ts\n            \n            function\n            arraySum\n            \n                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/modules/AppModule.html b/docs/compodoc/modules/AppModule.html
index f68a58a..4a9ded2 100644
--- a/docs/compodoc/modules/AppModule.html
+++ b/docs/compodoc/modules/AppModule.html
@@ -65,123 +65,123 @@
 cluster_AppModule
 
 
+
+cluster_AppModule_imports
+
+
 
 cluster_AppModule_providers
-
-
-
-cluster_AppModule_bootstrap
-
+
 
 
 cluster_AppModule_declarations
-
+
 
-
-cluster_AppModule_imports
-
+
+cluster_AppModule_bootstrap
+
 
 
 
 AppComponent
-
-AppComponent
+
+AppComponent
 
 
 
 AppModule
-
-AppModule
+
+AppModule
 
 
 
 AppComponent->AppModule
-
-
+
+
 
 
 
 AppComponent 
-
-AppComponent 
+
+AppComponent 
 
 
 
 AppModule->AppComponent 
-
-
+
+
 
 
 
 AppRoutingModule
-
-AppRoutingModule
+
+AppRoutingModule
 
 
 
 AppRoutingModule->AppModule
-
-
+
+
 
 
 
 SharedModule
-
-SharedModule
+
+SharedModule
 
 
 
 SharedModule->AppModule
-
-
+
+
 
 
 
 ErrorInterceptor
-
-ErrorInterceptor
+
+ErrorInterceptor
 
 
 
 ErrorInterceptor->AppModule
-
-
+
+
 
 
 
 GlobalErrorHandler
-
-GlobalErrorHandler
+
+GlobalErrorHandler
 
 
 
 GlobalErrorHandler->AppModule
-
-
+
+
 
 
 
 HttpConfigInterceptor
-
-HttpConfigInterceptor
+
+HttpConfigInterceptor
 
 
 
 HttpConfigInterceptor->AppModule
-
-
+
+
 
 
 
 LoggingInterceptor
-
-LoggingInterceptor
+
+LoggingInterceptor
 
 
 
 LoggingInterceptor->AppModule
-
-
+
+
 
 
 
diff --git a/docs/compodoc/modules/AppModule/dependencies.svg b/docs/compodoc/modules/AppModule/dependencies.svg
index 56c9065..58c7053 100644
--- a/docs/compodoc/modules/AppModule/dependencies.svg
+++ b/docs/compodoc/modules/AppModule/dependencies.svg
@@ -24,123 +24,123 @@
 cluster_AppModule
 
 
+
+cluster_AppModule_imports
+
+
 
 cluster_AppModule_providers
-
-
-
-cluster_AppModule_bootstrap
-
+
 
 
 cluster_AppModule_declarations
-
+
 
-
-cluster_AppModule_imports
-
+
+cluster_AppModule_bootstrap
+
 
 
 
 AppComponent
-
-AppComponent
+
+AppComponent
 
 
 
 AppModule
-
-AppModule
+
+AppModule
 
 
 
 AppComponent->AppModule
-
-
+
+
 
 
 
 AppComponent 
-
-AppComponent 
+
+AppComponent 
 
 
 
 AppModule->AppComponent 
-
-
+
+
 
 
 
 AppRoutingModule
-
-AppRoutingModule
+
+AppRoutingModule
 
 
 
 AppRoutingModule->AppModule
-
-
+
+
 
 
 
 SharedModule
-
-SharedModule
+
+SharedModule
 
 
 
 SharedModule->AppModule
-
-
+
+
 
 
 
 ErrorInterceptor
-
-ErrorInterceptor
+
+ErrorInterceptor
 
 
 
 ErrorInterceptor->AppModule
-
-
+
+
 
 
 
 GlobalErrorHandler
-
-GlobalErrorHandler
+
+GlobalErrorHandler
 
 
 
 GlobalErrorHandler->AppModule
-
-
+
+
 
 
 
 HttpConfigInterceptor
-
-HttpConfigInterceptor
+
+HttpConfigInterceptor
 
 
 
 HttpConfigInterceptor->AppModule
-
-
+
+
 
 
 
 LoggingInterceptor
-
-LoggingInterceptor
+
+LoggingInterceptor
 
 
 
 LoggingInterceptor->AppModule
-
-
+
+
 
 
 
diff --git a/docs/compodoc/modules/AuthModule.html b/docs/compodoc/modules/AuthModule.html
index 809a264..c82a42a 100644
--- a/docs/compodoc/modules/AuthModule.html
+++ b/docs/compodoc/modules/AuthModule.html
@@ -65,55 +65,55 @@
 cluster_AuthModule
 
 
-
-cluster_AuthModule_declarations
-
-
 
 cluster_AuthModule_imports
-
+
+
+
+cluster_AuthModule_declarations
+
 
 
 
 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 299882c..bf9b54e 100644
--- a/docs/compodoc/modules/AuthModule/dependencies.svg
+++ b/docs/compodoc/modules/AuthModule/dependencies.svg
@@ -24,55 +24,55 @@
 cluster_AuthModule
 
 
-
-cluster_AuthModule_declarations
-
-
 
 cluster_AuthModule_imports
-
+
+
+
+cluster_AuthModule_declarations
+
 
 
 
 AuthComponent
-
-AuthComponent
+
+AuthComponent
 
 
 
 AuthModule
-
-AuthModule
+
+AuthModule
 
 
 
 AuthComponent->AuthModule
-
-
+
+
 
 
 
 PasswordToggleDirective
-
-PasswordToggleDirective
+
+PasswordToggleDirective
 
 
 
 PasswordToggleDirective->AuthModule
-
-
+
+
 
 
 
 AuthRoutingModule
-
-AuthRoutingModule
+
+AuthRoutingModule
 
 
 
 AuthRoutingModule->AuthModule
-
-
+
+
 
 
 
diff --git a/docs/compodoc/modules/PagesModule.html b/docs/compodoc/modules/PagesModule.html
index d41e89b..d080298 100644
--- a/docs/compodoc/modules/PagesModule.html
+++ b/docs/compodoc/modules/PagesModule.html
@@ -65,55 +65,55 @@
 cluster_PagesModule
 
 
-
-cluster_PagesModule_imports
-
-
 
 cluster_PagesModule_declarations
-
+
+
+
+cluster_PagesModule_imports
+
 
 
 
 PagesComponent
-
-PagesComponent
+
+PagesComponent
 
 
 
 PagesModule
-
-PagesModule
+
+PagesModule
 
 
 
 PagesComponent->PagesModule
-
-
+
+
 
 
 
 PagesRoutingModule
-
-PagesRoutingModule
+
+PagesRoutingModule
 
 
 
 PagesRoutingModule->PagesModule
-
-
+
+
 
 
 
 SharedModule
-
-SharedModule
+
+SharedModule
 
 
 
 SharedModule->PagesModule
-
-
+
+
 
 
 
diff --git a/docs/compodoc/modules/PagesModule/dependencies.svg b/docs/compodoc/modules/PagesModule/dependencies.svg
index e67561f..9d04652 100644
--- a/docs/compodoc/modules/PagesModule/dependencies.svg
+++ b/docs/compodoc/modules/PagesModule/dependencies.svg
@@ -24,55 +24,55 @@
 cluster_PagesModule
 
 
-
-cluster_PagesModule_imports
-
-
 
 cluster_PagesModule_declarations
-
+
+
+
+cluster_PagesModule_imports
+
 
 
 
 PagesComponent
-
-PagesComponent
+
+PagesComponent
 
 
 
 PagesModule
-
-PagesModule
+
+PagesModule
 
 
 
 PagesComponent->PagesModule
-
-
+
+
 
 
 
 PagesRoutingModule
-
-PagesRoutingModule
+
+PagesRoutingModule
 
 
 
 PagesRoutingModule->PagesModule
-
-
+
+
 
 
 
 SharedModule
-
-SharedModule
+
+SharedModule
 
 
 
 SharedModule->PagesModule
-
-
+
+
 
 
 
diff --git a/docs/compodoc/modules/TransactionsModule.html b/docs/compodoc/modules/TransactionsModule.html
index b0fc2bf..6040f32 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 b1549fc..7677c9d 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/classes/app__guards_auth_guard.authguard.html b/docs/typedoc/classes/app__guards_auth_guard.authguard.html
index 2658f28..8bbea67 100644
--- a/docs/typedoc/classes/app__guards_auth_guard.authguard.html
+++ b/docs/typedoc/classes/app__guards_auth_guard.authguard.html
@@ -68,6 +68,19 @@
 
+
+
+
+

Auth guard implementation. + Dictates access to routes depending on the authentication status.

+
+
+
implements
+

CanActivate

+
+
+
+

Hierarchy

    @@ -113,13 +126,21 @@
  • +
    +
    +

    Instantiates the auth guard class.

    +
    +

    Parameters

    • router: Router
      +
      +

      A service that provides navigation among views and URL manipulation capabilities.

      +

    Returns AuthGuard

    @@ -140,19 +161,33 @@ +
    +
    +

    Returns whether navigation to a specific route is acceptable. + Checks if the user has uploaded a private key.

    +
    +

    Parameters

    • route: ActivatedRouteSnapshot
      +
      +

      Contains the information about a route associated with a component loaded in an outlet at a particular moment in time. + ActivatedRouteSnapshot can also be used to traverse the router state tree.

      +
    • state: RouterStateSnapshot
      +
      +

      Represents the state of the router at a moment in time.

      +

    Returns boolean | UrlTree | Observable<boolean | UrlTree> | Promise<boolean | UrlTree>

    +

    true - If there is an active private key in the user's localStorage.

diff --git a/docs/typedoc/classes/app__guards_role_guard.roleguard.html b/docs/typedoc/classes/app__guards_role_guard.roleguard.html index 662d1b3..16b6f75 100644 --- a/docs/typedoc/classes/app__guards_role_guard.roleguard.html +++ b/docs/typedoc/classes/app__guards_role_guard.roleguard.html @@ -68,6 +68,19 @@
+
+
+
+

Role guard implementation. + Dictates access to routes depending on the user's role.

+
+
+
implements
+

CanActivate

+
+
+
+

Hierarchy

    @@ -113,13 +126,21 @@
  • +
    +
    +

    Instantiates the role guard class.

    +
    +

    Parameters

    • router: Router
      +
      +

      A service that provides navigation among views and URL manipulation capabilities.

      +

    Returns RoleGuard

    @@ -140,19 +161,33 @@ +
    +
    +

    Returns whether navigation to a specific route is acceptable. + Checks if the user has the required role to access the route.

    +
    +

    Parameters

    • route: ActivatedRouteSnapshot
      +
      +

      Contains the information about a route associated with a component loaded in an outlet at a particular moment in time. + ActivatedRouteSnapshot can also be used to traverse the router state tree.

      +
    • state: RouterStateSnapshot
      +
      +

      Represents the state of the router at a moment in time.

      +

    Returns boolean | UrlTree | Observable<boolean | UrlTree> | Promise<boolean | UrlTree>

    +

    true - If the user's role matches with accepted roles.

diff --git a/src/app/_guards/auth.guard.spec.ts b/src/app/_guards/auth.guard.spec.ts index 5a64c10..7e638c6 100644 --- a/src/app/_guards/auth.guard.spec.ts +++ b/src/app/_guards/auth.guard.spec.ts @@ -1,5 +1,7 @@ +// Core imports import { TestBed } from '@angular/core/testing'; +// Application imports import { AuthGuard } from '@app/_guards/auth.guard'; describe('AuthGuard', () => { diff --git a/src/app/_guards/auth.guard.ts b/src/app/_guards/auth.guard.ts index d0af8b9..39cf3d4 100644 --- a/src/app/_guards/auth.guard.ts +++ b/src/app/_guards/auth.guard.ts @@ -1,14 +1,37 @@ +// Core imports import { Injectable } from '@angular/core'; -import {CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot, UrlTree, Router} from '@angular/router'; +import {ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot, UrlTree} from '@angular/router'; + +// Third party imports import { Observable } from 'rxjs'; +/** + * Auth guard implementation. + * Dictates access to routes depending on the authentication status. + * + * @implements CanActivate + */ @Injectable({ providedIn: 'root' }) export class AuthGuard implements CanActivate { + /** + * Instantiates the auth guard class. + * + * @param router - A service that provides navigation among views and URL manipulation capabilities. + */ constructor(private router: Router) {} + /** + * Returns whether navigation to a specific route is acceptable. + * Checks if the user has uploaded a private key. + * + * @param route - Contains the information about a route associated with a component loaded in an outlet at a particular moment in time. + * ActivatedRouteSnapshot can also be used to traverse the router state tree. + * @param state - Represents the state of the router at a moment in time. + * @returns true - If there is an active private key in the user's localStorage. + */ canActivate( route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable | Promise | boolean | UrlTree { diff --git a/src/app/_guards/role.guard.spec.ts b/src/app/_guards/role.guard.spec.ts index af8dc36..3c78c74 100644 --- a/src/app/_guards/role.guard.spec.ts +++ b/src/app/_guards/role.guard.spec.ts @@ -1,5 +1,7 @@ +// Core imports import { TestBed } from '@angular/core/testing'; +// Application imports import { RoleGuard } from '@app/_guards/role.guard'; describe('RoleGuard', () => { diff --git a/src/app/_guards/role.guard.ts b/src/app/_guards/role.guard.ts index ae40c75..e53e57c 100644 --- a/src/app/_guards/role.guard.ts +++ b/src/app/_guards/role.guard.ts @@ -1,14 +1,37 @@ +// Core imports import { Injectable } from '@angular/core'; -import {CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot, UrlTree, Router} from '@angular/router'; +import {ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot, UrlTree} from '@angular/router'; + +// Third party imports import { Observable } from 'rxjs'; +/** + * Role guard implementation. + * Dictates access to routes depending on the user's role. + * + * @implements CanActivate + */ @Injectable({ providedIn: 'root' }) export class RoleGuard implements CanActivate { + /** + * Instantiates the role guard class. + * + * @param router - A service that provides navigation among views and URL manipulation capabilities. + */ constructor(private router: Router) {} + /** + * Returns whether navigation to a specific route is acceptable. + * Checks if the user has the required role to access the route. + * + * @param route - Contains the information about a route associated with a component loaded in an outlet at a particular moment in time. + * ActivatedRouteSnapshot can also be used to traverse the router state tree. + * @param state - Represents the state of the router at a moment in time. + * @returns true - If the user's role matches with accepted roles. + */ canActivate( route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable | Promise | boolean | UrlTree {