Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x 8x | export enum Icons { /* Icons for Symbol */ add = 'fa fa-plus', // Create, Add addCircle = 'fa fa-plus-circle', // Plus with Circle minusCircle = 'fa fa-minus-circle', // Minus with Circle edit = 'fa fa-pencil', // Edit, Edit Mode, Rename destroy = 'fa fa-times', // Destroy, Remove, Delete destroyCircle = 'fa fa-times-circle', // Destroy, Remove, Delete exchange = 'fa fa-exchange', // Edit-Peer copy = 'fa fa-copy', // Copy clipboard = 'fa fa-clipboard', // Clipboard flatten = 'fa-chain-broken', // Flatten, Link broken, Mark Lost trash = 'fa fa-trash-o', // Move to trash lock = 'fa fa-lock', // Protect unlock = 'fa fa-unlock', // Unprotect clone = 'fa fa-clone', // clone undo = 'fa fa-undo', // Rollback, Restore search = 'fa fa-search', // Search start = 'fa fa-play', // Enable stop = 'fa fa-stop', // Disable analyse = 'fa fa-stethoscope', // Scrub deepCheck = 'fa fa-cog', // Deep Scrub, Setting, Configuration reweight = 'fa-balance-scale', // Reweight left = 'fa fa-arrow-left', // Mark out right = 'fa fa-arrow-right', // Mark in down = 'fa fa-arrow-down', // Mark Down erase = 'fa fa-eraser', // Purge user = 'fa fa-user', // User, Initiators share = 'fa fa-share-alt', // share key = 'fa fa-key-modern', // S3 Keys, Swift Keys, Authentication warning = 'fa fa-exclamation-triangle', // Notification warning info = 'fa fa-info', // Notification information infoCircle = 'fa fa-info-circle', // Info on landing page questionCircle = 'fa fa-question-circle-o', check = 'fa fa-check', // Notification check show = 'fa fa-eye', // Show paragraph = 'fa fa-paragraph', // Silence Matcher - Attribute name terminal = 'fa fa-terminal', // Silence Matcher - Value magic = 'fa fa-magic', // Silence Matcher - Regex checkbox hourglass = 'fa fa-hourglass-o', // Task filledHourglass = 'fa fa-hourglass', // Task table = 'fa fa-table', // Table, spinner = 'fa spinner', // spinner, Load refresh = 'fa fa-refresh', // Refresh bullseye = 'fa fa-bullseye', // Target disk = 'fa fa-hdd-o', // Hard disk, disks server = 'fa fa-server', // Server, Portal filter = 'fa fa-filter', // Filter lineChart = 'fa fa-line-chart', // Line chart signOut = 'fa fa-sign-out', // Sign Out health = 'fa fa-heartbeat', // Health circle = 'fa fa-circle', // Circle bell = 'fa fa-bell', // Notification tag = 'fa fa-tag', // Tag, Badge leftArrow = 'fa fa-angle-left', // Left facing angle rightArrow = 'fa fa-angle-right', // Right facing angle leftArrowDouble = 'fa fa-angle-double-left', // Left facing Double angle rightArrowDouble = 'fa fa-angle-double-right', // Left facing Double angle flag = 'fa fa-flag', // OSD configuration /* Icons for special effect */ width = 'fa fa-fw', // set one or more icons to the same fixed width large = 'fa fa-lg', // icon becomes 33% larger large2x = 'fa fa-2x', // icon becomes 50% larger large3x = 'fa fa-3x', // icon becomes 3 times larger stack = 'fa fa-stack', // To stack multiple icons stack1x = 'fa fa-stack-1x', // To stack regularly sized icon stack2x = 'fa fa-stack-2x', // To stack regularly sized icon pulse = 'fa fa-pulse', // To have spinner rotate with 8 steps spin = 'fa fa-spin', // To get any icon to rotate inverse = 'fa fa-inverse' // To get an alternative icon color } |