{
  "newdefines": [
    {
      "name": "definer",
      "desc": "Load Definitions If Not Already Loaded",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "' _* ^\"def_\" dup _ isnull) { true exch ! true } { pop false } ifelse '",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "untelldate",
      "desc": "Convert from Date to Tell Milliseconds",
      "type": "Exec",
      "depict": {
        "raw": "date-time --> tell-msec",
        "in": "date-time",
        "out": "tell-msec"
      },
      "runnable": "' js$ 62135578800000 add 3600000 add '",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "telldate",
      "desc": "Convert from Tell Milliseconds to Formatted Date",
      "type": "Exec",
      "depict": {
        "raw": "tell-msec --> date-time-formatted",
        "in": "tell-msec",
        "out": "date-time-formatted"
      },
      "runnable": "'62135578800000 sub 3600000 sub fromjs$ &\" GMT\" dup Time.DateOf &\" \" exch Time.TimeForm &'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "countup?",
      "desc": "For Loop Only If Terminus Greater Than or Equal to Initial",
      "type": "Exec",
      "depict": {
        "raw": "count --> initial step terminus allow",
        "in": "count",
        "out": "initial step terminus allow"
      },
      "runnable": "\"countup third second le\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "digits",
      "desc": "Slice Leading Digits and Trailing String",
      "type": "Exec",
      "depict": {
        "raw": "str --> digs right-of",
        "in": "str",
        "out": "digs right-of"
      },
      "runnable": "\" empty exch length countup { pop dup 1 left numeric { exch second 1 left & exch -1 left false } { true } ifelse ? } for % % stack: digs right-of % \"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "dtfull",
      "desc": "Full DateTime Parts",
      "type": "Exec",
      "depict": {
        "raw": "dtime --> dow-verbose month-verbose dom-super year time-ampm",
        "in": "dtime",
        "out": "dow-verbose month-verbose dom-super year time-ampm"
      },
      "runnable": "` \"f\" Time.Time$ \",\" 0 3 1 parse exch trim \" \" slice dup < |1  &\"st\" |2  &\"nd\" |3  &\"rd\" |21  &\"st\" |22  &\"nd\" |23  &\"rd\" |31  &\"st\" > not { &\"th\" } if rot trim \" \" slice `",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "cap1st",
      "desc": "Capitalize First Letters",
      "type": "Exec",
      "depict": {
        "raw": "str --> 1st-lets-cap",
        "in": "str",
        "out": "1st-lets-cap"
      },
      "runnable": "` % % adjust first letters to be capitalized % trim \"  \" \" \" replall \"  \" \" \" replall \"  \" \" \" replall \"  \" \" \" replall empty exch { \" \" slice exch isnull ? dup 1 left upper exch -1 left & &\" \" ^3) exch } loop pop2 trim `",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "commas",
      "desc": "Replace All Commas",
      "type": "Exec",
      "depict": {
        "raw": "builder repl-comma --> adj-builder",
        "in": "builder repl-comma",
        "out": "adj-builder"
      },
      "runnable": "' \",\" replall '",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "comma!",
      "desc": "Add Comma Seped Entry to Build",
      "type": "Exec",
      "depict": {
        "raw": "item -->",
        "in": "item",
        "out": ""
      },
      "runnable": "' % appends to var build _comma { ^\" ,\" } if true !comma catcr ^:builder '",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "toklist",
      "desc": "Build Comma Seped List of Tokens",
      "type": "Exec",
      "depict": {
        "raw": "str -->",
        "in": "str",
        "out": ""
      },
      "runnable": "' % appends to var build false !comma \"|\" right$ { \"|\" slice exch trim isnull ? % stack: remaining token-body-line execstr % stack: remaining ordinal token-name pop2nd quoter comma! } loop pop2 '",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "isletter",
      "desc": "Is Letter",
      "type": "Exec",
      "depict": {
        "raw": "char --> is-letter",
        "in": "char",
        "out": "is-letter"
      },
      "runnable": "\"lower asc dup 0x61 ge exch 0x7A le and\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "toletter",
      "desc": "Number to Letter Uppercase",
      "type": "Exec",
      "depict": {
        "raw": "ordinal --> cap-letter",
        "in": "ordinal",
        "out": "cap-letter"
      },
      "runnable": "\"1 max 26 min letter\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "capord",
      "desc": "Capital Letter to Ordinal Normalized",
      "type": "Exec",
      "depict": {
        "raw": "letter --> ordinal",
        "in": "letter",
        "out": "ordinal"
      },
      "runnable": "\"upper asc 0x40 sub 1 max 26 min\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "divmod",
      "desc": "Multiples and Remainder",
      "type": "Exec",
      "depict": {
        "raw": "num div --> multiples remainder",
        "in": "num div",
        "out": "multiples remainder"
      },
      "runnable": "\"2 copy div normint tuck mod\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "isupper",
      "desc": "Is Upper Case Letter",
      "type": "Exec",
      "depict": {
        "raw": "char --> is-uppercase",
        "in": "char",
        "out": "is-uppercase"
      },
      "runnable": "\"asc dup 0x41 ge exch 0x5A le and\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "charat",
      "desc": "Get Character at Position in String",
      "type": "Exec",
      "depict": {
        "raw": "str pos --> char",
        "in": "str pos",
        "out": "char"
      },
      "runnable": "\"1 mid\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "charat(",
      "desc": "Get Character at Position in String Preserved",
      "type": "Exec",
      "depict": {
        "raw": "str pos --> str char",
        "in": "str pos",
        "out": "str char"
      },
      "runnable": "\"seq221 1 mid\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "quocsv",
      "desc": "Surround Single Lines Csv Fields Comma Separated with Double Quotes",
      "type": "Exec",
      "depict": {
        "raw": "csv-raw --> adj-csv",
        "in": "csv-raw",
        "out": "adj-csv"
      },
      "runnable": "` \",\" '\",\"' replall ^'\"' &'\",' `",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "upper?",
      "desc": "Is Character in Upper Case Range",
      "type": "Exec",
      "depict": {
        "raw": "char --> upper-case",
        "in": "char",
        "out": "upper-case"
      },
      "runnable": "\"asc 0x60 lt\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "step!",
      "desc": "Set Tick and Gearing to Force Next Step",
      "type": "Exec",
      "depict": {
        "raw": "tick-id-->",
        "in": "tick-id",
        "out": ""
      },
      "runnable": "\"dup !tick !Gearing\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "axuact",
      "desc": "Action Unit Process in Locker Code",
      "type": "Exec",
      "depict": {
        "raw": "--> action-type",
        "in": "",
        "out": "action-type"
      },
      "runnable": "\"_Arching.ServLock 1 right upper\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "axumoff",
      "desc": "Message Bypass Action Set in Locker Code",
      "type": "Exec",
      "depict": {
        "raw": "--> action-type",
        "in": "",
        "out": "action-type"
      },
      "runnable": "'_Arching.ServLock -2 left 1 left \"9\" eq$'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "axutype",
      "desc": "Type of Action Unit in Locker Code",
      "type": "Exec",
      "depict": {
        "raw": "--> action-type",
        "in": "",
        "out": "action-type"
      },
      "runnable": "\"_Arching.ServLock 1 left upper\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "numprods",
      "desc": "Number of Products in Locker Code",
      "type": "Exec",
      "depict": {
        "raw": "--> num-prods",
        "in": "",
        "out": "num-prods"
      },
      "runnable": "\"_Arching.ServLock -2 left 1 left\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "twilnum",
      "desc": "Twilio Channel Number in Locker Code",
      "type": "Exec",
      "depict": {
        "raw": "--> twilio-chan-number",
        "in": "",
        "out": "twilio-chan-number"
      },
      "runnable": "\"_Arching.ServLock -3 left 1 left\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "twilchan",
      "desc": "Twilio Channel Letter from Number in Locker Code",
      "type": "Exec",
      "depict": {
        "raw": "--> twilio-chan-letter",
        "in": "",
        "out": "twilio-chan-letter"
      },
      "runnable": "\"twilnum letter\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "nextext",
      "desc": "Append Text Wildcard and Get Next File",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"textwild nextfile\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "prevtext",
      "desc": "Append Text Wildcard and Get Previous File",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"textwild prevfile\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "estnow",
      "desc": "Get Time and Date Now EST Values",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "'Time.Now dup !Msg.date \"Eastern Standard Time\" Time.ToUtc base$ !Msg.msec'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "Pho.!",
      "desc": "Instruct Phocus Admin of Photoshop",
      "type": "Exec",
      "depict": {
        "raw": "js -->",
        "in": "js",
        "out": ""
      },
      "runnable": "' _Arching.Phocus { asc2hex quoter ^\"Phocus(\" jspend Base.! } { @Phocus Url.! } ifelse '",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "emptyx",
      "desc": "Exchange Empty String with Top Item",
      "type": "Exec",
      "depict": {
        "raw": "item --> empty item",
        "in": "item",
        "out": "empty item"
      },
      "runnable": "\"empty exch\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "notpop",
      "desc": "If Not Found Pop One Item",
      "type": "Exec",
      "depict": {
        "raw": "[ item ] logic -->",
        "in": "[ item ] logic",
        "out": ""
      },
      "runnable": "\"not { pop } if\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "notpop2",
      "desc": "If Not Found Pop Two Items",
      "type": "Exec",
      "depict": {
        "raw": "[ item item ] logic -->",
        "in": "[ item item ] logic",
        "out": ""
      },
      "runnable": "\"not { pop2 } if\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "sliceposx",
      "desc": "Slice the String After Ordinal Position Left Right",
      "type": "Exec",
      "depict": {
        "raw": "str char-pos --> right-part left-part",
        "in": "str char-pos",
        "out": "right-part left-part"
      },
      "runnable": "\"2 copy minus left tuck left\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "slicepos",
      "desc": "Slice the String After Ordinal Position Right Left",
      "type": "Exec",
      "depict": {
        "raw": "str char-pos --> left-part right-part",
        "in": "str char-pos",
        "out": "left-part right-part"
      },
      "runnable": "\"sliceposx exch\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "slicex",
      "desc": "Slice String with Token Yield Right Left",
      "type": "Exec",
      "depict": {
        "raw": "str token --> right-part left-part",
        "in": "str token",
        "out": "right-part left-part"
      },
      "runnable": "\"slice exch\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "param$",
      "desc": "Isolate Named Parameter",
      "type": "Exec",
      "depict": {
        "raw": "str token --> parameter",
        "in": "str token",
        "out": "parameter"
      },
      "runnable": "'right$ \"|\" left$'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "escquo",
      "desc": "Escape String and Quote",
      "type": "Exec",
      "depict": {
        "raw": "str --> esc-quo-string",
        "in": "str",
        "out": "esc-quo-string"
      },
      "runnable": "\"escape quoter\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "svalx",
      "desc": "String Value Convert to Hex and Append",
      "type": "Exec",
      "depict": {
        "raw": "builder valname --> adj-build",
        "in": "builder valname",
        "out": "adj-build"
      },
      "runnable": "'dup _ asc2hex quotesep \" hex2asc !\" catpref catcatcr'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "look&dup",
      "desc": "Build String Use Item as Quoted Then Duplicate as Looker",
      "type": "Exec",
      "depict": {
        "raw": "build look-item --> build",
        "in": "build look-item",
        "out": "build"
      },
      "runnable": "'dup quo&cr &\"|\" ^ &\" \" &'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "quo&cr",
      "desc": "Double Quote and Append CrLf",
      "type": "Exec",
      "depict": {
        "raw": "item --> quoted-and-cr",
        "in": "item",
        "out": "quoted-and-cr"
      },
      "runnable": "'quoter &;'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "look&",
      "desc": "Build String Use Item as Quoted",
      "type": "Exec",
      "depict": {
        "raw": "build look-item --> build",
        "in": "build look-item",
        "out": "build"
      },
      "runnable": "'quo&cr &'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "folder(",
      "desc": "Formalize and Create Folder Duped",
      "type": "Exec",
      "depict": {
        "raw": "path-informal --> path-formal path-formal",
        "in": "path-informal",
        "out": "path-formal path-formal"
      },
      "runnable": "' folder dup '",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "copyfile(",
      "desc": "Copy File Preserving Destination",
      "type": "Exec",
      "depict": {
        "raw": "src dest --> dest",
        "in": "src dest",
        "out": "dest"
      },
      "runnable": "'to3rd copyfile'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "perscreen",
      "desc": "Calculate Region as Percentages of App Screen",
      "type": "Exec",
      "depict": {
        "raw": "app-per-x app-per-y app-per-w app-per-h --> app-pix-x app-pix-y app-pix-w app-pix-h",
        "in": "app-per-x app-per-y app-per-w app-per-h",
        "out": "app-pix-x app-pix-y app-pix-w app-pix-h"
      },
      "runnable": "\"_App.Width pull5th mul int _App.Height pull5th mul int _App.Width pull5th mul int _App.Height pull5th mul int *monitfix \"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "(@@",
      "desc": "Push Current Task",
      "type": "Exec",
      "depict": {
        "raw": "--> task@",
        "in": "",
        "out": "task@"
      },
      "runnable": "\"@@ (@\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "Form.Focus",
      "desc": "Give Focus to Form",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"Mep._Hwnd Win.Focus\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "ofsrc",
      "desc": "Prefix Path of Wwwroot Source",
      "type": "Exec",
      "depict": {
        "raw": "file-name --> file-spec",
        "in": "file-name",
        "out": "file-spec"
      },
      "runnable": "'\"wwwroot\\\" ofapp ^'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "logic$",
      "desc": "Convert Logic Value to String",
      "type": "Exec",
      "depict": {
        "raw": "logic --> logic-str",
        "in": "logic",
        "out": "logic-str"
      },
      "runnable": "'{ \"true\" } { \"false\" } ifelse'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "atleft?",
      "desc": "Pass String Through If Matches At Left",
      "type": "Exec",
      "depict": {
        "raw": "str left-str --> [ str ] matches-left",
        "in": "str left-str",
        "out": "[ str ] matches-left"
      },
      "runnable": "\"atleft( dup not { pop2nd } if\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "whole(",
      "desc": "Pass Number Through Check If Whole",
      "type": "Exec",
      "depict": {
        "raw": "number --> number whole",
        "in": "number",
        "out": "number whole"
      },
      "runnable": "\"dup whole\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "unwhole(",
      "desc": "Pass Number Through Check Negative or Zero",
      "type": "Exec",
      "depict": {
        "raw": "number --> number not-whole",
        "in": "number",
        "out": "number not-whole"
      },
      "runnable": "\"dup unwhole\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "whole?",
      "desc": "Pass Number Through If Whole",
      "type": "Exec",
      "depict": {
        "raw": "number --> [ number ] is-whole",
        "in": "number",
        "out": "[ number ] is-whole"
      },
      "runnable": "\"whole( dup not { pop2nd } if\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "unwhole?",
      "desc": "Pass Number Through If Negative or Zero",
      "type": "Exec",
      "depict": {
        "raw": "number --> [ number ] not-whole",
        "in": "number",
        "out": "[ number ] not-whole"
      },
      "runnable": "\"unwhole( dup not { pop2nd } if\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "guid?",
      "desc": "Non-Empty Guid and Guid on Stack",
      "type": "Exec",
      "depict": {
        "raw": "guid --> [ guid ] non-empty",
        "in": "guid",
        "out": "[ guid ] non-empty"
      },
      "runnable": "\"dup _Mojo.EmptyGuid ne$ { true } { pop false } ifelse\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "seq112",
      "desc": "Sequence Stack First First Second Item",
      "type": "Exec",
      "depict": {
        "raw": "2nd 1st --> 1st 1st 2nd",
        "in": "2nd 1st",
        "out": "1st 1st 2nd"
      },
      "runnable": "\"dup rot\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "seq221",
      "desc": "Sequence Stack Second Second First Item",
      "type": "Exec",
      "depict": {
        "raw": "2nd 1st --> 2nd 2nd 1st",
        "in": "2nd 1st",
        "out": "2nd 2nd 1st"
      },
      "runnable": "\"second exch\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "exists(?",
      "desc": "Does File Exist and Keep Filespec",
      "type": "Exec",
      "depict": {
        "raw": "filespec --> filespec exists",
        "in": "filespec",
        "out": "filespec exists"
      },
      "runnable": "\"dup exists\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "text?bin_",
      "desc": "Get Lookup Item Names From Bin Text File",
      "type": "Exec",
      "depict": {
        "raw": "root-name --> [ . . . ] count",
        "in": "root-name",
        "out": "[ . . . ] count"
      },
      "runnable": "\"text_bin lookstr_\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "nospc$",
      "desc": "Replace All Spaces With Underline",
      "type": "Exec",
      "depict": {
        "raw": "str --> adj-str",
        "in": "str",
        "out": "adj-str"
      },
      "runnable": "\"Str.NoSpaces\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "deparen",
      "desc": "Extract Parenthesized String and Left Of",
      "type": "Exec",
      "depict": {
        "raw": "str --> left-part parened",
        "in": "str",
        "out": "left-part parened"
      },
      "runnable": "'\"(\" slice \")\" left$'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "spread",
      "desc": "Enumerate Gathered Elements",
      "type": "Exec",
      "depict": {
        "raw": "--> [ . . . count ] items-present",
        "in": "",
        "out": "[ . . . count ] items-present"
      },
      "runnable": "\"_builder lookstr_ dupnzis\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "gather",
      "desc": "Collect Elements Into Lookup",
      "type": "Exec",
      "depict": {
        "raw": "empty [ . . . ] -->",
        "in": "empty [ . . . ]",
        "out": ""
      },
      "runnable": "\" { isnull ? _builder exch lookstr? { !builder } if } loop pop \"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "exec$",
      "desc": "Execute File Untranslated",
      "type": "Exec",
      "depict": {
        "raw": "file-spec --> [ . . . ]",
        "in": "file-spec",
        "out": "[ . . . ]"
      },
      "runnable": "\"read execstr\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "text?bin",
      "desc": "Lookup Action for Text File in Bin",
      "type": "Exec",
      "depict": {
        "raw": "lookup file-root --> [ . . . ] found",
        "in": "lookup file-root",
        "out": "[ . . . ] found"
      },
      "runnable": "\"text ofbin exch Str.NoSpaces exch lookin\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "looked",
      "desc": "Create Lookup Item",
      "type": "Exec",
      "depict": {
        "raw": "lookup --> lookup-format",
        "in": "lookup",
        "out": "lookup-format"
      },
      "runnable": "'nospc$ ^\"|\" &\" \"'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "val:&hex",
      "desc": "Add String From Hex to Named Value",
      "type": "Exec",
      "depict": {
        "raw": "data-to-add val -->",
        "in": "data-to-add val",
        "out": ""
      },
      "runnable": "\"dup _ rot hex2asc & exch !\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "val:&",
      "desc": "Add to Named Value",
      "type": "Exec",
      "depict": {
        "raw": "data-to-add val -->",
        "in": "data-to-add val",
        "out": ""
      },
      "runnable": "\"dup _ &3) exch !\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "join2)",
      "desc": "Join Top Two Items With Third and Fourth Items",
      "type": "Exec",
      "depict": {
        "raw": "item1 item2 item3 item4 --> item1&item3 item2&item4",
        "in": "item1 item2 item3 item4",
        "out": "item1&item3 item2&item4"
      },
      "runnable": "\"^3) exch &3) exch\"",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "quo&comma",
      "desc": "Quote and Append Comma",
      "type": "Exec",
      "depict": {
        "raw": "build str --> adj-build",
        "in": "build str",
        "out": "adj-build"
      },
      "runnable": "'quoter & &\",\"'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "normcomma",
      "desc": "Normalize Commas and Whitespace",
      "type": "Exec",
      "depict": {
        "raw": "build str --> adj-build",
        "in": "build str",
        "out": "adj-build"
      },
      "runnable": "' trim ret empty replall lf commas \" ,\" commas \", \" commas \",,\" commas dup 1 right \",\" eq$ { -1 right } if '",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "oftemp",
      "desc": "Prefix Temp Work Folder",
      "type": "Exec",
      "depict": {
        "raw": "srvc-name --> dir-file-part",
        "in": "srvc-name",
        "out": "dir-file-part"
      },
      "runnable": "'\"c:\\___Work\" folder ^'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "write(",
      "desc": "Overlay Write Keeping Dest File",
      "type": "Exec",
      "depict": {
        "raw": "data dest-file --> dest-file",
        "in": "data dest-file",
        "out": "dest-file"
      },
      "runnable": "'to3rd write'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "safeto",
      "desc": "Overlay Write File Extended",
      "type": "Exec",
      "depict": {
        "raw": "data dest-file dest-ext -->",
        "in": "data dest-file dest-ext",
        "out": ""
      },
      "runnable": "'tuck write( exch overext'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "ofmark",
      "desc": "Prefix Extension of Marks Folder",
      "type": "Exec",
      "depict": {
        "raw": "markroot -->",
        "in": "markroot",
        "out": ""
      },
      "runnable": "'\"Marks\\\" ofbin ^ jpeg'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "ofnark",
      "desc": "Prefix Extension of Narks Folder",
      "type": "Exec",
      "depict": {
        "raw": "markroot -->",
        "in": "markroot",
        "out": ""
      },
      "runnable": "'\"Narks\\\" ofbin ^ jpeg'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "textover",
      "desc": "Rename to Text with Overwrite",
      "type": "Exec",
      "depict": {
        "raw": "file -->",
        "in": "file",
        "out": ""
      },
      "runnable": "'\".txt\" overext'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "textwild",
      "desc": "Append Text to Wildcard Set",
      "type": "Exec",
      "depict": {
        "raw": "prefix -->",
        "in": "prefix",
        "out": ""
      },
      "runnable": "'&\"*.txt\" !wilder'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "safetext",
      "desc": "Overlay Write File Text Extended",
      "type": "Exec",
      "depict": {
        "raw": "data dest-file -->",
        "in": "data dest-file",
        "out": ""
      },
      "runnable": "'write( textover'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "overtext",
      "desc": "Overlay File Copy and Text Extended",
      "type": "Exec",
      "depict": {
        "raw": "src-file dest-file -->",
        "in": "src-file dest-file",
        "out": ""
      },
      "runnable": "'copyfile( textover'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "oversafe",
      "desc": "Overlay Rextended File and Text Extended",
      "type": "Exec",
      "depict": {
        "raw": "dest-file new-dest-text -->",
        "in": "dest-file new-dest-text",
        "out": ""
      },
      "runnable": "'second exch reextend overtext'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "overto",
      "desc": "Overlay Copy Rextended File and Extended",
      "type": "Exec",
      "depict": {
        "raw": "src-file dest-file new-dest-ext -->",
        "in": "src-file dest-file new-dest-ext",
        "out": ""
      },
      "runnable": "'tuck copyfile( exch overext'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "residual",
      "desc": "Create Residual File and Extended Proto File",
      "type": "Exec",
      "depict": {
        "raw": "file-data out-file dest-ext --> proto",
        "in": "file-data out-file dest-ext",
        "out": "proto"
      },
      "runnable": "'tuck write( dup rot reextend copyfile('",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "hideus",
      "desc": "Hide the Fire and Help Forms",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "'helpoff false current'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "showus",
      "desc": "Show the Fire and Help Forms",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "'true current helpon'",
      "source_file": "Robot104/addedefs_new defs.txt"
    },
    {
      "name": "wec(",
      "desc": "Push Exec String to Survey Post",
      "type": "Exec",
      "depict": {
        "raw": "exec-string -->",
        "in": "exec-string",
        "out": ""
      },
      "runnable": "\"Stack.=Nucleus Stack.(\"",
      "source_file": "Robot104/defcmndr_command stream definition group.txt"
    },
    {
      "name": "wec)",
      "desc": "Push Exec String to Survey Bottom",
      "type": "Exec",
      "depict": {
        "raw": "exec-string -->",
        "in": "exec-string",
        "out": ""
      },
      "runnable": "\"Stack.=Nucleus Stack.)\"",
      "source_file": "Robot104/defcmndr_command stream definition group.txt"
    },
    {
      "name": "fire(",
      "desc": "Execute Downstream Fire Code",
      "type": "Exec",
      "depict": {
        "raw": "fire-str -->",
        "in": "fire-str",
        "out": ""
      },
      "runnable": "\"Stack.=Nucleus Stack.(\"",
      "source_file": "Robot104/defcmndr_command stream definition group.txt"
    },
    {
      "name": "xonetext",
      "desc": "Text of Xone",
      "type": "Exec",
      "depict": {
        "raw": "prefix --> xone-text",
        "in": "prefix",
        "out": "xone-text"
      },
      "runnable": "'text ofxone'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "xoned",
      "desc": "Prefix Server Locker Code to Suffix and Text",
      "type": "Exec",
      "depict": {
        "raw": "prefix --> locker-suff-text",
        "in": "prefix",
        "out": "locker-suff-text"
      },
      "runnable": "'^_Arching.ServLock xonetext'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "xoned<",
      "desc": "Prefix Original Locker Code to Suffix and Text",
      "type": "Exec",
      "depict": {
        "raw": "prefix --> orig-suff-text",
        "in": "prefix",
        "out": "orig-suff-text"
      },
      "runnable": "'^_Arching.OrigLock xonetext'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "xoned?<",
      "desc": "Prefix Original Locker Code with Suffix Text Exec and Finaled if Exists",
      "type": "Exec",
      "depict": {
        "raw": "suffix --> existed",
        "in": "suffix",
        "out": "existed"
      },
      "runnable": "' xoned< dup exists { dup exec$ \".xtx\" overext true } { pop false } ifelse '",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "lockxone<",
      "desc": "Original Server Lock Text File",
      "type": "Exec",
      "depict": {
        "raw": "--> xone-lock-file",
        "in": "",
        "out": "xone-lock-file"
      },
      "runnable": "'_Arching.OrigLock xonetext'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "lockxone",
      "desc": "Server Lock Text File",
      "type": "Exec",
      "depict": {
        "raw": "--> xone-lock-file",
        "in": "",
        "out": "xone-lock-file"
      },
      "runnable": "'_Arching.ServLock xonetext'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "lock&",
      "desc": "Append Server Lock Text File Part",
      "type": "Exec",
      "depict": {
        "raw": "part-spec --> xone-lock-file-spec",
        "in": "part-spec",
        "out": "xone-lock-file-spec"
      },
      "runnable": "'&_Arching.ServLock xonetext'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "xlsrec",
      "desc": "Parse Inflow Record for Excel",
      "type": "Exec",
      "depict": {
        "raw": "hdr-var -->",
        "in": "hdr-var",
        "out": ""
      },
      "runnable": "`dup ^\"Field.\" _ *condimpl`",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "xlsesc",
      "desc": "Parse Escaped Inflow Record for Excel",
      "type": "Exec",
      "depict": {
        "raw": "hdr-var -->",
        "in": "hdr-var",
        "out": ""
      },
      "runnable": "`dup ^\"Field.\" _ unescape *condimpl`",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "xlshex",
      "desc": "Parse Hex Format Inflow Record for Excel",
      "type": "Exec",
      "depict": {
        "raw": "hdr-var -->",
        "in": "hdr-var",
        "out": ""
      },
      "runnable": "`dup ^\"Field.\" _ hex2asc *condimpl`",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "xlsenc",
      "desc": "Parse Encoded Inflow Record for Excel",
      "type": "Exec",
      "depict": {
        "raw": "hdr-var -->",
        "in": "hdr-var",
        "out": ""
      },
      "runnable": "`dup ^\"Field.\" _ *unencode *condimpl`",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "xheader",
      "desc": "Isolate Xml Node Header",
      "type": "Exec",
      "depict": {
        "raw": "xml-text hdr-name --> xml-text header-content",
        "in": "xml-text hdr-name",
        "out": "xml-text header-content"
      },
      "runnable": "`second exch dup !header ^\"<\" right$ \">\" left$`",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "xattrib",
      "desc": "Isolate Xml Node Attribute",
      "type": "Exec",
      "depict": {
        "raw": "xml-text hdr attr --> xml-text hdr",
        "in": "xml-text hdr attr",
        "out": "xml-text hdr"
      },
      "runnable": "`2 copy &'=\"' right$ '\"' left$ exch ^\"Field.\" exch second log)( exch !`",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "xvalat",
      "desc": "Isolate Xml Node Value Attribute",
      "type": "Exec",
      "depict": {
        "raw": "xml-text node-text val-name --> xml-text node-text",
        "in": "xml-text node-text val-name",
        "out": "xml-text node-text"
      },
      "runnable": "` 2 copy exch \"></\" &3 &\">\" \"/>\" exch replall exch ^\"<\" right$ \">\" left$ 'value=\"' right$ '\"' left$ exch ^\"Field.\" exch second log)( exch ! `",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "xvalue",
      "desc": "Isolate Xml Node Content Value",
      "type": "Exec",
      "depict": {
        "raw": "xml-text val-name --> xml-text",
        "in": "xml-text val-name",
        "out": "xml-text"
      },
      "runnable": "` 2 copy exch \"></\" &3 &\">\" \"/>\" exch replall exch ^\"<\" right$ \">\" right$ second ^\"</\" left$ exch ^\"Field.\" exch second log)( exch ! `",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "oftell",
      "desc": "Prefix Installation Telling Folder",
      "type": "Exec",
      "depict": {
        "raw": "reg-name --> dir-file-part",
        "in": "reg-name",
        "out": "dir-file-part"
      },
      "runnable": "' _Arching.Combo _Arching.Dombo or { \"Bin\\Tree\\Tell\" conduit } { \"Tell\" connect } ifelse '",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "oflocn",
      "desc": "Prefix Installation Location Folder",
      "type": "Exec",
      "depict": {
        "raw": "reg-name --> dir-file-part",
        "in": "reg-name",
        "out": "dir-file-part"
      },
      "runnable": "' _Arching.Combo _Arching.Dombo or { \"Bin\\Tree\\Locn\" conduit } { \"Locn\" connect } ifelse '",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "ofrslt",
      "desc": "Prefix Installation Location Folder",
      "type": "Exec",
      "depict": {
        "raw": "reg-name --> dir-file-part",
        "in": "reg-name",
        "out": "dir-file-part"
      },
      "runnable": "'\"Results\" conduit'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "ofmedia",
      "desc": "Prefix Installation Media Folder",
      "type": "Exec",
      "depict": {
        "raw": "reg-name --> dir-file-part",
        "in": "reg-name",
        "out": "dir-file-part"
      },
      "runnable": "' _Arching.Combo _Arching.Dombo or { \"Bin\\Tree\\Media\" conduit } { \"Media\" connect } ifelse '",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "ofmail",
      "desc": "Prefix Installation Email Folder",
      "type": "Exec",
      "depict": {
        "raw": "reg-name --> dir-file-part",
        "in": "reg-name",
        "out": "dir-file-part"
      },
      "runnable": "' _Arching.Combo _Arching.Dombo or { \"Mail\" ofctre folder ^ } { \"Mail\" connect } ifelse '",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "maildom",
      "desc": "Domain Mailbox",
      "type": "Exec",
      "depict": {
        "raw": "--> mail-addr",
        "in": "",
        "out": "mail-addr"
      },
      "runnable": "'_Arching.DomMail &\"@\" &_Arching.Domain'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "ofinst",
      "desc": "Prefix Installation Connector Folder",
      "type": "Exec",
      "depict": {
        "raw": "reg-name --> dir-file-part",
        "in": "reg-name",
        "out": "dir-file-part"
      },
      "runnable": "'\"Inst\" connect'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "ofreg",
      "desc": "Prefix Registration Connector Folder",
      "type": "Exec",
      "depict": {
        "raw": "reg-name --> dir-file-part",
        "in": "reg-name",
        "out": "dir-file-part"
      },
      "runnable": "'\"Reg\" connect'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "ext*reg",
      "desc": "Execute Extended in Registration Folder",
      "type": "Exec",
      "depict": {
        "raw": "reg-prefix extension -->",
        "in": "reg-prefix extension",
        "out": ""
      },
      "runnable": "'exch inst$ & ^ ofreg exec$'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "oftwid",
      "desc": "Prefix Twilio Incoming Connector Folder",
      "type": "Exec",
      "depict": {
        "raw": "twilio-name --> dir-file-part",
        "in": "twilio-name",
        "out": "dir-file-part"
      },
      "runnable": "'\"Twid\" connect'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "oftwix",
      "desc": "Prefix Twilio Outgoing Connector Folder",
      "type": "Exec",
      "depict": {
        "raw": "twilio-name --> dir-file-part",
        "in": "twilio-name",
        "out": "dir-file-part"
      },
      "runnable": "'\"Twix\" connect'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "ofmms",
      "desc": "Prefix Mms Outgoing Connector Folder",
      "type": "Exec",
      "depict": {
        "raw": "file-name --> dir-file-part",
        "in": "file-name",
        "out": "dir-file-part"
      },
      "runnable": "'\"Mms\" connect'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "oftwil",
      "desc": "Prefix Twilio Connector Folder",
      "type": "Exec",
      "depict": {
        "raw": "twilio-name --> dir-file-part",
        "in": "twilio-name",
        "out": "dir-file-part"
      },
      "runnable": "'\"Twil\" connect'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "ofgate",
      "desc": "Prefix Folder of Access Gating",
      "type": "Exec",
      "depict": {
        "raw": "str --> gate-spec",
        "in": "str",
        "out": "gate-spec"
      },
      "runnable": "'\"Gating\" connect'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "Msg.*?",
      "desc": "Determine Message Validity from Dir and Seed",
      "type": "Exec",
      "depict": {
        "raw": "dir seed --> dir seed valid",
        "in": "dir seed",
        "out": "dir seed valid"
      },
      "runnable": "' empty !Msg.xact empty !Msg.numbr execing _Msg.numbr any)? '",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "connect",
      "desc": "Prefix Connector Yielding Folder",
      "type": "Exec",
      "depict": {
        "raw": "str dir-name --> str-folder-spec",
        "in": "str dir-name",
        "out": "str-folder-spec"
      },
      "runnable": "'ofconn folder ^'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "conduit",
      "desc": "Prefix Conduit Yielding Folder",
      "type": "Exec",
      "depict": {
        "raw": "str dir-name --> str-folder-spec",
        "in": "str dir-name",
        "out": "str-folder-spec"
      },
      "runnable": "'ofcond folder ^'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "snaps",
      "desc": "Prefix Snap Results Yielding Folder",
      "type": "Exec",
      "depict": {
        "raw": "str dir-name --> str-folder-spec",
        "in": "str dir-name",
        "out": "str-folder-spec"
      },
      "runnable": "\"ofsnap folder ^\"",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "ofvias",
      "desc": "Prefix Vias Connector Folder",
      "type": "Exec",
      "depict": {
        "raw": "vias-name --> dir-file-part",
        "in": "vias-name",
        "out": "dir-file-part"
      },
      "runnable": "'\"Vias\" connect'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "ofmerch",
      "desc": "Prefix Commerce Connector Folder",
      "type": "Exec",
      "depict": {
        "raw": "merch-name --> dir-file-part",
        "in": "merch-name",
        "out": "dir-file-part"
      },
      "runnable": "'\"Commerce\" connect'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "ofmsg",
      "desc": "Prefix Message Connector Folder",
      "type": "Exec",
      "depict": {
        "raw": "msg-name --> dir-file-part",
        "in": "msg-name",
        "out": "dir-file-part"
      },
      "runnable": "'\"Message\" connect'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "ofpurch",
      "desc": "Prefix Purchase Connector Folder",
      "type": "Exec",
      "depict": {
        "raw": "purch-name --> dir-file-part",
        "in": "purch-name",
        "out": "dir-file-part"
      },
      "runnable": "'\"Purch\" connect'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "ofsrvc",
      "desc": "Prefix Service Connector Folder",
      "type": "Exec",
      "depict": {
        "raw": "srvc-name --> dir-file-part",
        "in": "srvc-name",
        "out": "dir-file-part"
      },
      "runnable": "'\"Serv\" connect'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "ofserv",
      "desc": "Prefix Conduit Bin Service Folder",
      "type": "Exec",
      "depict": {
        "raw": "serv-name --> dir-file-part",
        "in": "serv-name",
        "out": "dir-file-part"
      },
      "runnable": "'\"Serv\" ofcbin folder ^'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "ofctre",
      "desc": "Prefix Conduit Bin Connector Folder",
      "type": "Exec",
      "depict": {
        "raw": "ctre-name --> dir-file-part",
        "in": "ctre-name",
        "out": "dir-file-part"
      },
      "runnable": "'\"Tree\" ofcbin folder ^'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "ofphos",
      "desc": "Prefix Current PhoSend Phone Connector Folder",
      "type": "Exec",
      "depict": {
        "raw": "phos-file --> fspec",
        "in": "phos-file",
        "out": "fspec"
      },
      "runnable": "'^_Arching.Phosend'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "phosend!",
      "desc": "Set PhoSend Phone Connector Folder in Snap",
      "type": "Exec",
      "depict": {
        "raw": "cond-phone -->",
        "in": "cond-phone",
        "out": ""
      },
      "runnable": "'ofsnap folder !Arching.Phosend'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "ofatns",
      "desc": "Prefix Conduit Result Connector Atns Folder",
      "type": "Exec",
      "depict": {
        "raw": "atn-name --> dir-file-part",
        "in": "atn-name",
        "out": "dir-file-part"
      },
      "runnable": "'\"Atns\" phosend'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "ofback",
      "desc": "Prefix Conduit Result Connector Backs Folder",
      "type": "Exec",
      "depict": {
        "raw": "back-name --> dir-file-part",
        "in": "back-name",
        "out": "dir-file-part"
      },
      "runnable": "'\"Backs\" phosend'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "offont",
      "desc": "Prefix Conduit Result Connector Fonts Folder",
      "type": "Exec",
      "depict": {
        "raw": "font-name --> dir-file-part",
        "in": "font-name",
        "out": "dir-file-part"
      },
      "runnable": "'\"Fonts\" phosend'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "ofpico",
      "desc": "Prefix Conduit Result Connector Picons Folder",
      "type": "Exec",
      "depict": {
        "raw": "picon-name --> dir-file-part",
        "in": "picon-name",
        "out": "dir-file-part"
      },
      "runnable": "'\"Picons\" phosend'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "ofprts",
      "desc": "Prefix Conduit Result Connector Printers Folder",
      "type": "Exec",
      "depict": {
        "raw": "printers-name --> dir-file-part",
        "in": "printers-name",
        "out": "dir-file-part"
      },
      "runnable": "'\"Printers\" phosend'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "ofprod",
      "desc": "Prefix Conduit Result Connector Products Folder",
      "type": "Exec",
      "depict": {
        "raw": "prod-name --> dir-file-part",
        "in": "prod-name",
        "out": "dir-file-part"
      },
      "runnable": "'\"Products\" phosend'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "ofphtem",
      "desc": "Prefix Phosend Result Connector Templates Folder",
      "type": "Exec",
      "depict": {
        "raw": "tem-name --> dir-file-part",
        "in": "tem-name",
        "out": "dir-file-part"
      },
      "runnable": "'\"Templates\" phosend'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "phosend",
      "desc": "Prefix Result Connector Yielding Folder",
      "type": "Exec",
      "depict": {
        "raw": "dir-name --> folder-spec",
        "in": "dir-name",
        "out": "folder-spec"
      },
      "runnable": "'ofphos folder ^'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "oftico",
      "desc": "Prefix Conduit Result Connector Ticons Folder",
      "type": "Exec",
      "depict": {
        "raw": "ticon-name --> dir-file-part",
        "in": "ticon-name",
        "out": "dir-file-part"
      },
      "runnable": "'\"Ticons\" phosend'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "ofcbin",
      "desc": "Prefix Conduit Bin Folder",
      "type": "Exec",
      "depict": {
        "raw": "cbin-name --> dir-file-part",
        "in": "cbin-name",
        "out": "dir-file-part"
      },
      "runnable": "'\"Bin\" conduit'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "ofcond",
      "desc": "Prefix Conduit Folder",
      "type": "Exec",
      "depict": {
        "raw": "cond-name --> dir-file-part",
        "in": "cond-name",
        "out": "dir-file-part"
      },
      "runnable": "'_Arching.Conduit folder ^'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "bintree",
      "desc": "Bin Tree Folder",
      "type": "Exec",
      "depict": {
        "raw": "--> bin-tree-folder",
        "in": "",
        "out": "bin-tree-folder"
      },
      "runnable": "'\"Tree\\\" ofbin'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "oftree",
      "desc": "Prefix Bin Tree Folder",
      "type": "Exec",
      "depict": {
        "raw": "trcmd-name --> dir-file-part",
        "in": "trcmd-name",
        "out": "dir-file-part"
      },
      "runnable": "'bintree ^'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "ofglo",
      "desc": "Prefix Global Connector Folder",
      "type": "Exec",
      "depict": {
        "raw": "conn-name --> dir-file-part",
        "in": "conn-name",
        "out": "dir-file-part"
      },
      "runnable": "'\"Global\" ofconn -1 left ^\"c\" folder ^'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "clogged",
      "desc": "Make Connector Typed Log Entry",
      "type": "Exec",
      "depict": {
        "raw": "file-data clog-type -->",
        "in": "file-data clog-type",
        "out": ""
      },
      "runnable": "'&\"_\" jsnow & clog!'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "clog!",
      "desc": "Make Connector Log Entry",
      "type": "Exec",
      "depict": {
        "raw": "file-data clog-filename -->",
        "in": "file-data clog-filename",
        "out": ""
      },
      "runnable": "'ofclog &\".log\" write'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "ofclog",
      "desc": "Prefix Connector Log Path",
      "type": "Exec",
      "depict": {
        "raw": "filename --> filespec",
        "in": "filename",
        "out": "filespec"
      },
      "runnable": "'^\"Log\\\" ofconn'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "text?conn",
      "desc": "Lookup Action for Text File in Connector",
      "type": "Exec",
      "depict": {
        "raw": "lookup file-root --> [ . . ] found",
        "in": "lookup file-root",
        "out": "[ . . ] found"
      },
      "runnable": "\"text ofconn exch Str.NoSpaces exch lookin\"",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "email_",
      "desc": "Get Email Address of Subject Number",
      "type": "Exec",
      "depict": {
        "raw": "subject --> has-email",
        "in": "subject",
        "out": "has-email"
      },
      "runnable": "'empty !Msg.email &\"_info\" text*subj _Msg.email any)?'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "email!",
      "desc": "Set Email Address of Subject Number",
      "type": "Exec",
      "depict": {
        "raw": "email subject -->",
        "in": "email subject",
        "out": ""
      },
      "runnable": "'exch !Msg.email &\"_info\" empty \"Msg.email\" sval exch text!subj'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "Cton.Cmd",
      "desc": "Run Cutter Process Copy In/Out",
      "type": "Exec",
      "depict": {
        "raw": "subject cmd -->",
        "in": "subject cmd",
        "out": ""
      },
      "runnable": "' second !Cton.Root &\".cmd\" ofapp &\" \" ^ &\" \" &_Arching.ServLock \"cutter_\" Cton.UnCmd ^\"cmd /C \" *runsnorm '",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "Cton.Run",
      "desc": "Run Cutter Process Copy In",
      "type": "Exec",
      "depict": {
        "raw": "subject -->",
        "in": "subject",
        "out": ""
      },
      "runnable": "'\"xcut\" Cton.Cmd'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "Cton.Sun",
      "desc": "Run Cutter Process Copy Out",
      "type": "Exec",
      "depict": {
        "raw": "subject -->",
        "in": "subject",
        "out": ""
      },
      "runnable": "'\"ycut\" Cton.Cmd'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "Cton.UnCmd",
      "desc": "Finalize Command",
      "type": "Exec",
      "depict": {
        "raw": "cmd-type -->",
        "in": "cmd-type",
        "out": ""
      },
      "runnable": "'locked ofxone \".xtx\" overext'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "Cton.UnCut",
      "desc": "Finalize Cutter Command",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "'\"cutter_\" Cton.UnCmd'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "Cton.UnPrt",
      "desc": "Finalize Printer Command",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "'\"printer_\" Cton.UnCmd'",
      "source_file": "Robot104/defcnctr_connector group definitions.txt"
    },
    {
      "name": "Edit.!",
      "desc": "Issue Javascript Directive to Editor Form",
      "type": "Exec",
      "depict": {
        "raw": "js-cmd -->",
        "in": "js-cmd",
        "out": ""
      },
      "runnable": "\"@Edit Url.!\"",
      "source_file": "Robot104/defeditr_editor definition group.txt"
    },
    {
      "name": "editoff",
      "desc": "Make Edit and Window in Edit Form Hidden",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"@Edit false Mep.Window hide\"",
      "source_file": "Robot104/defeditr_editor definition group.txt"
    },
    {
      "name": "editon",
      "desc": "Make Edit and Window in Edit Form Visible",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"@Edit show true Mep.Window\"",
      "source_file": "Robot104/defeditr_editor definition group.txt"
    },
    {
      "name": "ember!",
      "desc": "Save Wirex2 Into Ember Slot",
      "type": "Exec",
      "depict": {
        "raw": " --> ",
        "in": "",
        "out": ""
      },
      "runnable": "'wirex2( \"embset\" log)( &; \"Ember.\" &_Ember.Slot !'",
      "source_file": "Robot104/defember_ember vectors.txt"
    },
    {
      "name": "Ember.!",
      "desc": "Execute Javascript in Ember Form",
      "type": "Exec",
      "depict": {
        "raw": "js-str --> ",
        "in": "js-str",
        "out": ""
      },
      "runnable": "' \"deftoper\" ^\"def_\" _ isnull) { @Help Url.! } { asc2hex quoter ^\"ToOver(\" &\");\" Top.! } ifelse '",
      "source_file": "Robot104/defember_ember vectors.txt"
    },
    {
      "name": "ember!@",
      "desc": "Save Ember Slot Contents Into Ember Slot File",
      "type": "Exec",
      "depict": {
        "raw": " --> ",
        "in": "",
        "out": ""
      },
      "runnable": "'\"Ember.\" &_Ember.Slot _ \"ember\" &_Ember.Slot &\"_ember process \" &_Ember.Slot text!here '",
      "source_file": "Robot104/defember_ember vectors.txt"
    },
    {
      "name": "ember_@",
      "desc": "Load Ember Slot Contents From File",
      "type": "Exec",
      "depict": {
        "raw": " --> ",
        "in": "",
        "out": ""
      },
      "runnable": "'\"ember\" &_Ember.Slot &\"_ember process \" &_Ember.Slot heretext read \"Ember.\" &_Ember.Slot ! '",
      "source_file": "Robot104/defember_ember vectors.txt"
    },
    {
      "name": "ember_",
      "desc": "Load Ember Slot Contents Into Request",
      "type": "Exec",
      "depict": {
        "raw": " --> ",
        "in": "",
        "out": ""
      },
      "runnable": "'\"Ember.\" &_Ember.Slot _ asc2hex quoter ^\"ToRequest(\" &\");\" Ember.!'",
      "source_file": "Robot104/defember_ember vectors.txt"
    },
    {
      "name": "ember*",
      "desc": "Execute Ember Slot Contents",
      "type": "Exec",
      "depict": {
        "raw": " --> ",
        "in": "",
        "out": ""
      },
      "runnable": "'\"Ember.\" &_Ember.Slot _ execstr'",
      "source_file": "Robot104/defember_ember vectors.txt"
    },
    {
      "name": "ember=",
      "desc": "Store Stack Results Into Response",
      "type": "Exec",
      "depict": {
        "raw": "built-str --> ",
        "in": "built-str",
        "out": ""
      },
      "runnable": "'asc2hex quoter ^\"ToResponse(\" &\");\" Ember.!'",
      "source_file": "Robot104/defember_ember vectors.txt"
    },
    {
      "name": "Info.!",
      "desc": "Direct the Info Text Field Content for Base Help Form",
      "type": "Exec",
      "depict": {
        "raw": "info-str -->",
        "in": "info-str",
        "out": ""
      },
      "runnable": "\"quoter ^'BasicData._Info = ' &';' ';I;' log)( Base.!\"",
      "source_file": "Robot104/defhelps_help group definitions.txt"
    },
    {
      "name": "Base.!",
      "desc": "Issue Javascript Directive to Base Help Form",
      "type": "Exec",
      "depict": {
        "raw": "js-cmd -->",
        "in": "js-cmd",
        "out": ""
      },
      "runnable": "\"@Help Url.!\"",
      "source_file": "Robot104/defhelps_help group definitions.txt"
    },
    {
      "name": "baseoff",
      "desc": "Make Base Help and Window in Base Help Form Hidden",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"@Help false Mep.Window\"",
      "source_file": "Robot104/defhelps_help group definitions.txt"
    },
    {
      "name": "baseon",
      "desc": "Make Base Help and Window in Base Help Form Visible",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"@Help true Mep.Window\"",
      "source_file": "Robot104/defhelps_help group definitions.txt"
    },
    {
      "name": "helped/",
      "desc": "Unfloat By Switching Help Over to Task",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"_@ @@ _@ exch )@ floatup\"",
      "source_file": "Robot104/defhelps_help group definitions.txt"
    },
    {
      "name": "helpfloat",
      "desc": "Float Form Above Help",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"_@ help@ _@ exch )@ show floatup\"",
      "source_file": "Robot104/defhelps_help group definitions.txt"
    },
    {
      "name": "helpstd",
      "desc": "Standard Help for New Task",
      "type": "Exec",
      "depict": {
        "raw": "help-root mep-name -->",
        "in": "help-root mep-name",
        "out": ""
      },
      "runnable": "'exch html exch \"helparea\" exch *helplopn *helpabov'",
      "source_file": "Robot104/defhelps_help group definitions.txt"
    },
    {
      "name": "unhelp)",
      "desc": "Return to Superseded Current Help",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"@@ .__Helped dup .!_Helper !Helping helpon\"",
      "source_file": "Robot104/defhelps_help group definitions.txt"
    },
    {
      "name": "help(",
      "desc": "Supersede Current Help",
      "type": "Exec",
      "depict": {
        "raw": "--> current-help",
        "in": "",
        "out": "current-help"
      },
      "runnable": "\"helpoff subform @@ .__Helper .!_Helped\"",
      "source_file": "Robot104/defhelps_help group definitions.txt"
    },
    {
      "name": "help)",
      "desc": "Float Over Superseded Current Help",
      "type": "Exec",
      "depict": {
        "raw": "current-help -->",
        "in": "current-help",
        "out": ""
      },
      "runnable": "\"App.Above\"",
      "source_file": "Robot104/defhelps_help group definitions.txt"
    },
    {
      "name": "taskup",
      "desc": "Float Above Prior Task Use Same Help",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"owner(_) floatup *helpsame @@\"",
      "source_file": "Robot104/defhelps_help group definitions.txt"
    },
    {
      "name": "floathide",
      "desc": "Float Above Prior Help and Hide It",
      "type": "Exec",
      "depict": {
        "raw": "float-base -->",
        "in": "float-base",
        "out": ""
      },
      "runnable": "\"_@ second floatup exch !@ hide !@\"",
      "source_file": "Robot104/defhelps_help group definitions.txt"
    },
    {
      "name": "newtab",
      "desc": "Revert to New Tab",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"empty newtab& Help.!\"",
      "source_file": "Robot104/defhelps_help group definitions.txt"
    },
    {
      "name": "newtab&",
      "desc": "Append Revert to New Tab",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "'&\"Tabber(2);\"'",
      "source_file": "Robot104/defhelps_help group definitions.txt"
    },
    {
      "name": "newedits?",
      "desc": "After True Edits Check for New",
      "type": "Exec",
      "depict": {
        "raw": "--> new-edits",
        "in": "",
        "out": "new-edits"
      },
      "runnable": "\"_Edits negative\"",
      "source_file": "Robot104/defhelps_help group definitions.txt"
    },
    {
      "name": "deleting",
      "desc": "Delete Dir Cycle Seed File",
      "type": "Exec",
      "depict": {
        "raw": "path seed -->path seed",
        "in": "path seed",
        "out": "path seed"
      },
      "runnable": "\"filing del\"",
      "source_file": "Robot104/defiling_file ops definitions.txt"
    },
    {
      "name": "prevof",
      "desc": "Previous File of Wildcard Spec",
      "type": "Exec",
      "depict": {
        "raw": "path seed spec --> path next no-next-file",
        "in": "path seed spec",
        "out": "path next no-next-file"
      },
      "runnable": "\"^3 File.PrevOf isnull\"",
      "source_file": "Robot104/defiling_file ops definitions.txt"
    },
    {
      "name": "listing",
      "desc": "Create List of Objects From Dir Cycle",
      "type": "Exec",
      "depict": {
        "raw": "path seed -->path seed empty [ . . . ]",
        "in": "path seed",
        "out": "path seed empty [ . . . ]"
      },
      "runnable": "\"empty second ^4 exec$\"",
      "source_file": "Robot104/defiling_file ops definitions.txt"
    },
    {
      "name": "finalerr",
      "desc": "Finalized File Process with Error Tag",
      "type": "Exec",
      "depict": {
        "raw": "path file-name --> path file-name",
        "in": "path file-name",
        "out": "path file-name"
      },
      "runnable": "'dup ^3 \".xty\" overext'",
      "source_file": "Robot104/defiling_file ops definitions.txt"
    },
    {
      "name": "ind@(",
      "desc": "Set and Commit Effect for Msys Indicators",
      "type": "Exec",
      "depict": {
        "raw": "indic-directive -->",
        "in": "indic-directive",
        "out": ""
      },
      "runnable": "\"ind@ ind(\"",
      "source_file": "Robot104/defindic_indicator group definitions.txt"
    },
    {
      "name": "ind)@(",
      "desc": "End Prior Set New and Commit Effect for Msys Indicators",
      "type": "Exec",
      "depict": {
        "raw": "indic-directive -->",
        "in": "indic-directive",
        "out": ""
      },
      "runnable": "\"ind) ind@(\"",
      "source_file": "Robot104/defindic_indicator group definitions.txt"
    },
    {
      "name": "ind)",
      "desc": "End Effects for Msys Indicators",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"_Nav.IndicIn *\"",
      "source_file": "Robot104/defindic_indicator group definitions.txt"
    },
    {
      "name": "ind@",
      "desc": "Set Effects for Msys Indicators",
      "type": "Exec",
      "depict": {
        "raw": "indic-directive -->",
        "in": "indic-directive",
        "out": ""
      },
      "runnable": "\"_Nav.IndicSet *\"",
      "source_file": "Robot104/defindic_indicator group definitions.txt"
    },
    {
      "name": "ind(",
      "desc": "Commit Effects for Msys Indicators",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"_Nav.IndicOut *\"",
      "source_file": "Robot104/defindic_indicator group definitions.txt"
    },
    {
      "name": "indw@(",
      "desc": "Set and Commit Effect for Msys Indicators",
      "type": "Exec",
      "depict": {
        "raw": "indic-directive -->",
        "in": "indic-directive",
        "out": ""
      },
      "runnable": "\"indw@ indw(\"",
      "source_file": "Robot104/defindic_indicator group definitions.txt"
    },
    {
      "name": "indw)@(",
      "desc": "End Prior Set New and Commit Effect for Csys Indicators",
      "type": "Exec",
      "depict": {
        "raw": "indic-directive -->",
        "in": "indic-directive",
        "out": ""
      },
      "runnable": "\"indw) indw@(\"",
      "source_file": "Robot104/defindic_indicator group definitions.txt"
    },
    {
      "name": "indw)",
      "desc": "End Effects for Msys Indicators",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"_Naw.IndicIn *\"",
      "source_file": "Robot104/defindic_indicator group definitions.txt"
    },
    {
      "name": "indw@",
      "desc": "Set Effects for Csys Indicators",
      "type": "Exec",
      "depict": {
        "raw": "indic-directive -->",
        "in": "indic-directive",
        "out": ""
      },
      "runnable": "\"_Naw.IndicSet *\"",
      "source_file": "Robot104/defindic_indicator group definitions.txt"
    },
    {
      "name": "indw(",
      "desc": "Commit Effects for Csys Indicators",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"_Naw.IndicOut *\"",
      "source_file": "Robot104/defindic_indicator group definitions.txt"
    },
    {
      "name": "inde@(",
      "desc": "Set and Commit Effect for Esys Indicators",
      "type": "Exec",
      "depict": {
        "raw": "indic-directive -->",
        "in": "indic-directive",
        "out": ""
      },
      "runnable": "\"inde@ inde(\"",
      "source_file": "Robot104/defindic_indicator group definitions.txt"
    },
    {
      "name": "inde)@(",
      "desc": "End Prior Set New and Commit Effect for Esys Indicators",
      "type": "Exec",
      "depict": {
        "raw": "indic-directive -->",
        "in": "indic-directive",
        "out": ""
      },
      "runnable": "\"inde) inde@(\"",
      "source_file": "Robot104/defindic_indicator group definitions.txt"
    },
    {
      "name": "inde)",
      "desc": "End Effects for Esys Indicators",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"_Nae.IndicIn *\"",
      "source_file": "Robot104/defindic_indicator group definitions.txt"
    },
    {
      "name": "inde@",
      "desc": "Set Effects for Esys Indicators",
      "type": "Exec",
      "depict": {
        "raw": "indic-directive -->",
        "in": "indic-directive",
        "out": ""
      },
      "runnable": "\"_Nae.IndicSet *\"",
      "source_file": "Robot104/defindic_indicator group definitions.txt"
    },
    {
      "name": "inde(",
      "desc": "Commit Effects for Esys Indicators",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"_Nae.IndicOut *\"",
      "source_file": "Robot104/defindic_indicator group definitions.txt"
    },
    {
      "name": "any)?",
      "desc": "Does String Have Any Length",
      "type": "Exec",
      "depict": {
        "raw": "string --> not-null",
        "in": "string",
        "out": "not-null"
      },
      "runnable": "`isnull) not`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "any?",
      "desc": "Check for Null and Remove if Null",
      "type": "Exec",
      "depict": {
        "raw": "string --> [ string ] if not null        string-not-null",
        "in": "string",
        "out": "[ string ] if not null        string-not-null"
      },
      "runnable": "`null? not`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "App.!Bin",
      "desc": "Set the Current Working Bin",
      "type": "Exec",
      "depict": {
        "raw": "bin-path -->",
        "in": "bin-path",
        "out": ""
      },
      "runnable": "`dup !bin !App.Bin`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "App.!SubDims",
      "desc": "Store Location and Dimensions of Subform",
      "type": "Exec",
      "depict": {
        "raw": "perx pery perw perh subform-ordinal --> perx pery perw perh subform-ordinal",
        "in": "perx pery perw perh subform-ordinal",
        "out": "perx pery perw perh subform-ordinal"
      },
      "runnable": "`fifth catspc &5 catspc &4 catspc &3 second ^\"Subf.Dim\" !`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "App.Above",
      "desc": "Float Current Subform Above Another Subform",
      "type": "Exec",
      "depict": {
        "raw": "substrate-ordinal -->",
        "in": "substrate-ordinal",
        "out": ""
      },
      "runnable": "`subform exch App.Float !App.Floated`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "App.DimSub",
      "desc": "Dimension and Display SubForm",
      "type": "Exec",
      "depict": {
        "raw": "left top width height -->",
        "in": "left top width height",
        "out": ""
      },
      "runnable": "`App.Dim true App.Seen`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "App.PerSub",
      "desc": "Dimension Subform as Percentage of App Region",
      "type": "Exec",
      "depict": {
        "raw": "per-x per-y per-w per-h -->",
        "in": "per-x per-y per-w per-h",
        "out": ""
      },
      "runnable": "`perscreen App.DimSub`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "App.Shelled",
      "desc": "Float Current Subform Above Task Tree",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`_tasker App.Above`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "App.Sub",
      "desc": "Start the Subform",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`[ form-type ] if enable  enable   subform -->`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "App.SubDims",
      "desc": "Get Stored Subform Location and Dimension Coordinates",
      "type": "Exec",
      "depict": {
        "raw": "subform --> perx pery perw perh",
        "in": "subform",
        "out": "perx pery perw perh"
      },
      "runnable": "`^\"Subf.Dim\" _ execstr`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "App.SubDone",
      "desc": "Hide and Close Subform",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`false App.Seen App.SubOff`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "appendfile",
      "desc": "Append File to Another",
      "type": "Exec",
      "depict": {
        "raw": "src-file dest-file -->",
        "in": "src-file dest-file",
        "out": ""
      },
      "runnable": "`exch read exch append`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "atleft",
      "desc": "Compare String Characters at Left",
      "type": "Exec",
      "depict": {
        "raw": "str1 seek --> is-at-left",
        "in": "str1 seek",
        "out": "is-at-left"
      },
      "runnable": "`length swap2&3 left eq$`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "atleft(",
      "desc": "Compare String Characters at Left Keeping Source String",
      "type": "Exec",
      "depict": {
        "raw": "str1 seek -->str1      is-at-left",
        "in": "str1 seek",
        "out": "str1      is-at-left"
      },
      "runnable": "`second exch atleft`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "aux1",
      "desc": "Engage Core Timer",
      "type": "Exec",
      "depict": {
        "raw": "exec-str time-ms -->",
        "in": "exec-str time-ms",
        "out": ""
      },
      "runnable": "`true 1 aux`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "aux2",
      "desc": "Engage Initial Span Timer",
      "type": "Exec",
      "depict": {
        "raw": "init-action time-ms -->",
        "in": "init-action time-ms",
        "out": ""
      },
      "runnable": "`true 2 aux`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "aux3",
      "desc": "Time the Pop-Up Menu",
      "type": "Exec",
      "depict": {
        "raw": "pop-action time-ms -->",
        "in": "pop-action time-ms",
        "out": ""
      },
      "runnable": "`true 3 aux`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "aux4",
      "desc": "Stage the Next Action",
      "type": "Exec",
      "depict": {
        "raw": "action delay-ms -->",
        "in": "action delay-ms",
        "out": ""
      },
      "runnable": "`true 4 aux`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "aux5",
      "desc": "Standoff Timer",
      "type": "Exec",
      "depict": {
        "raw": "action-text ms -->",
        "in": "action-text ms",
        "out": ""
      },
      "runnable": "`true 5 aux`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "base-",
      "desc": "Delete Base Referenced Node",
      "type": "Exec",
      "depict": {
        "raw": "base-ref -->",
        "in": "base-ref",
        "out": ""
      },
      "runnable": "`^\"Base.\" run-`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "base!",
      "desc": "Merge Pad Into Base Referenced Node Children",
      "type": "Exec",
      "depict": {
        "raw": "base-ref -->",
        "in": "base-ref",
        "out": ""
      },
      "runnable": "`^\"Base.\" run!`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "base(",
      "desc": "Base Run Tree Element Opener Without Attributes",
      "type": "Exec",
      "depict": {
        "raw": "--> base-prefix",
        "in": "",
        "out": "base-prefix"
      },
      "runnable": "`'<Base> <'`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "base)",
      "desc": "Closing Base Run Tree Element",
      "type": "Exec",
      "depict": {
        "raw": "based-str -->",
        "in": "based-str",
        "out": ""
      },
      "runnable": "`&'</Base>' gear`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "base/_",
      "desc": "Dance With With Base Ref Node After Removing Below",
      "type": "Exec",
      "depict": {
        "raw": "base-ref  pres-id -->",
        "in": "base-ref  pres-id",
        "out": ""
      },
      "runnable": "`dup Tree./Below base_`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "base_",
      "desc": "Dance With Base Referenced Node",
      "type": "Exec",
      "depict": {
        "raw": "base-ref  pres-id -->",
        "in": "base-ref  pres-id",
        "out": ""
      },
      "runnable": "`exch ^\"Base.\" exch run_`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "base+",
      "desc": "Append Pad to Base Referenced Node",
      "type": "Exec",
      "depict": {
        "raw": "base-ref -->",
        "in": "base-ref",
        "out": ""
      },
      "runnable": "`^\"Base.\" run+`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "binappend",
      "desc": "Append Data to File Within Bin Purview",
      "type": "Exec",
      "depict": {
        "raw": "data filename -->",
        "in": "data filename",
        "out": ""
      },
      "runnable": "`ofbin append`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "bintext",
      "desc": "Modify File Root to Text File in Bin",
      "type": "Exec",
      "depict": {
        "raw": "file-root --> file-spec",
        "in": "file-root",
        "out": "file-spec"
      },
      "runnable": "`text ofbin`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "brace",
      "desc": "Brace String",
      "type": "Exec",
      "depict": {
        "raw": "string --> braced-string",
        "in": "string",
        "out": "braced-string"
      },
      "runnable": "`^\"{\" &\"}\"`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "bracket",
      "desc": "Bracket String",
      "type": "Exec",
      "depict": {
        "raw": "string --> bracketed-string",
        "in": "string",
        "out": "bracketed-string"
      },
      "runnable": "`^\"[\" &\"]\"`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "branch",
      "desc": "Lineage Without Root",
      "type": "Exec",
      "depict": {
        "raw": "pres-id --> short-lineage",
        "in": "pres-id",
        "out": "short-lineage"
      },
      "runnable": "`hier \"\\\" Str.Right`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "browser",
      "desc": "Establish a New Browser",
      "type": "Exec",
      "depict": {
        "raw": "mep-name  mep-slot -->",
        "in": "mep-name  mep-slot",
        "out": ""
      },
      "runnable": "`this) \"StdWeb\" exch subformed hide`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "catcat",
      "desc": "Concatatenate Three Stack tems",
      "type": "Exec",
      "depict": {
        "raw": "item1 item2 item3 --> item1&item2&item3",
        "in": "item1 item2 item3",
        "out": "item1&item2&item3"
      },
      "runnable": "`concat concat`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "catpref",
      "desc": "Join Item with Third and Second Items",
      "type": "Exec",
      "depict": {
        "raw": "item1 item2 item3 --> item2&item3&item1",
        "in": "item1 item2 item3",
        "out": "item2&item3&item1"
      },
      "runnable": "`concat prefix`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "chain(",
      "desc": "Push Command to Chain Survey",
      "type": "Exec",
      "depict": {
        "raw": "chain-vec -->",
        "in": "chain-vec",
        "out": ""
      },
      "runnable": "`vec Stack.=Chain Stack.(`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "charif",
      "desc": "Convert to Character if Numeric",
      "type": "Exec",
      "depict": {
        "raw": "string --> char-if-numeric",
        "in": "string",
        "out": "char-if-numeric"
      },
      "runnable": "`isnull not { dup numeric  {  char  } if } if`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "cls",
      "desc": "Add Xml Element Terminating Angle Bracket",
      "type": "Exec",
      "depict": {
        "raw": "xml --> adj-xml",
        "in": "xml",
        "out": "adj-xml"
      },
      "runnable": "`&'> '`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "cls/",
      "desc": "Terminate Xml Header and Lead Into Matching Closure",
      "type": "Exec",
      "depict": {
        "raw": "xml --> adj-xml",
        "in": "xml",
        "out": "adj-xml"
      },
      "runnable": "`&'> </'`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "cog",
      "desc": "Gear Step the Persistant Mep Xml File",
      "type": "Exec",
      "depict": {
        "raw": "Bin\\list\\ directory is the root folder derived from address ( a#b#c . . . #y#z ) of persistant mep (\\a\\b\\c\\ . . . \\y\\) end segment (z) represents the tree file z.tlt within ...\\y\\ folder First plan field in example is indicating the type of xml while the second refers to a Pep",
        "in": "Bin\\list\\ directory is the root folder derived from address ( a#b#c . . . #y#z ) of persistant mep (\\a\\b\\c\\ . . . \\y\\) end segment (z) represents the tree file z.tlt within ...\\y\\ folder First plan field in example is indicating the type of xml while the second refers to a Pep",
        "out": ""
      },
      "runnable": "`oflist read gear `",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "countdown",
      "desc": "Count Ordinal Downwards from Number",
      "type": "Exec",
      "depict": {
        "raw": "number -->  number -1 1",
        "in": "number",
        "out": "number -1 1"
      },
      "runnable": "`-1 1`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "countup",
      "desc": "Count Ordinal Up To Number",
      "type": "Exec",
      "depict": {
        "raw": "number -->  1 1 number",
        "in": "number",
        "out": "1 1 number"
      },
      "runnable": "`1 1 rot`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "cr",
      "desc": "Carriage Return",
      "type": "Exec",
      "depict": {
        "raw": "--> cr",
        "in": "",
        "out": "cr"
      },
      "runnable": "`empty catcr`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "dance",
      "desc": "Command Zpanel and Decode Return",
      "type": "Exec",
      "depict": {
        "raw": "param  verb ---> func-result",
        "in": "param  verb -",
        "out": "func-result"
      },
      "runnable": "`@Comm  \"Adance\" do entdec \"<string>\" 1 1 1 parse \"</string>\" 0 1 1 parse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "dance)",
      "desc": "Command Zpanel Without Return",
      "type": "Exec",
      "depict": {
        "raw": "param  dance-verb -->",
        "in": "param  dance-verb",
        "out": ""
      },
      "runnable": "`@Comm \"Adance\" do pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Data.!Val",
      "desc": "Store Field Named Data from Set Into Global Value",
      "type": "Exec",
      "depict": {
        "raw": "val-name field-name data-set -->",
        "in": "val-name field-name data-set",
        "out": ""
      },
      "runnable": "`Data._Field exch ^\"_\" !`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Data.Records?",
      "desc": "Does Set Contain Data",
      "type": "Exec",
      "depict": {
        "raw": "dset --> data-in-set",
        "in": "dset",
        "out": "data-in-set"
      },
      "runnable": "`Data.RecCount positive`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Data.Working",
      "desc": "Standard Workspace for Database Activity",
      "type": "Exec",
      "depict": {
        "raw": "[ workspace-mode ] if enable workspace-enable -->  true opens standard workspace false closes it",
        "in": "[ workspace-mode ] if enable workspace-enable",
        "out": "true opens standard workspace false closes it"
      },
      "runnable": "`{ \"Privacy\" _D.Work Data.WorkOpen } { _D.Work Data.WorkClose } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "default",
      "desc": "Look in Default Vectors",
      "type": "Exec",
      "depict": {
        "raw": "[ . . . ] seed-found --> [ . . . ] found",
        "in": "[ . . . ] seed-found",
        "out": "[ . . . ] found"
      },
      "runnable": "`\"Default\" look pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "delfiles",
      "desc": "Delete Files Specified",
      "type": "Exec",
      "depict": {
        "raw": "filespec -->",
        "in": "filespec",
        "out": ""
      },
      "runnable": "`files { isnull ?  del } loop pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "desk",
      "desc": "Inform Desk of Top Level Message Event",
      "type": "Exec",
      "depict": {
        "raw": "cmd-mode -prop  build-str   proc --> build-str",
        "in": "cmd-mode -prop  build-str   proc",
        "out": "build-str"
      },
      "runnable": "`^' proc=\"' '\"' catcat exch token123 pull4th \"prop\" *attrplus \"mode\" *attrplus \"cmd\" *attrplus`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "do",
      "desc": "Perform Operation Within the Current Mep Hub",
      "type": "Exec",
      "depict": {
        "raw": "[ . . . ]  verb --> [ . . . ]",
        "in": "[ . . . ]  verb",
        "out": "[ . . . ]"
      },
      "runnable": "`Mep.Do`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "dup2nd",
      "desc": "Duplicate Second Stack Item",
      "type": "Exec",
      "depict": {
        "raw": "item1  item2 -->  item1   item1    item2",
        "in": "item1  item2",
        "out": "item1   item1    item2"
      },
      "runnable": "`second exch`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "eighth",
      "desc": "Copy Eighth Item From Stack",
      "type": "Exec",
      "depict": {
        "raw": "item8 item7 item6 item5 item4 item3 item2 item1 --> item8 item7 item6 item5 item4 item3 item2 item1 item7",
        "in": "item8 item7 item6 item5 item4 item3 item2 item1",
        "out": "item8 item7 item6 item5 item4 item3 item2 item1 item7"
      },
      "runnable": "`7 index`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "eighth)",
      "desc": "Bring Eighth Item to Top of Stack",
      "type": "Exec",
      "depict": {
        "raw": "item8 item7 item6 item5 item4 item3 item2 item1 --> item7 item6 item5 item4 item3 item2 item1 item8",
        "in": "item8 item7 item6 item5 item4 item3 item2 item1",
        "out": "item7 item6 item5 item4 item3 item2 item1 item8"
      },
      "runnable": "`8 -1 roll`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "end(",
      "desc": "Push Exec to Closure Post",
      "type": "Exec",
      "depict": {
        "raw": "closure-exec -->",
        "in": "closure-exec",
        "out": ""
      },
      "runnable": "`\"Closure\" Stack.Set Stack.Push`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "end)",
      "desc": "Push Exec to Closure Pre",
      "type": "Exec",
      "depict": {
        "raw": "closure-exec -->",
        "in": "closure-exec",
        "out": ""
      },
      "runnable": "`\"Closure\" Stack.Set Stack.Bottom`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Ent.(2&1",
      "desc": "Page Data Terms",
      "type": "Exec",
      "depict": {
        "raw": "term2 term1 -->",
        "in": "term2 term1",
        "out": ""
      },
      "runnable": "`_Ent.ExitData term1&2 exch`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Ent._",
      "desc": "Split Exit Data at First Term",
      "type": "Exec",
      "depict": {
        "raw": "-->  pre-term   post-term",
        "in": "",
        "out": "pre-term   post-term"
      },
      "runnable": "`_Ent.ExitData \"_\" slice`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Ent._D",
      "desc": "Get Accepted String Past First Term",
      "type": "Exec",
      "depict": {
        "raw": "--> accept-params",
        "in": "",
        "out": "accept-params"
      },
      "runnable": "`Ent._ pop2nd`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Ent._D1",
      "desc": "Get First Token of Accepted Params",
      "type": "Exec",
      "depict": {
        "raw": "--> param-token-1",
        "in": "",
        "out": "param-token-1"
      },
      "runnable": "`Ent._D token1`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Ent._D2",
      "desc": "Get Second Token of Accepted Params",
      "type": "Exec",
      "depict": {
        "raw": "--> param-token-2",
        "in": "",
        "out": "param-token-2"
      },
      "runnable": "`Ent._D token2`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Ent._E1",
      "desc": "Get First Token Of Accepted",
      "type": "Exec",
      "depict": {
        "raw": "--> first-part",
        "in": "",
        "out": "first-part"
      },
      "runnable": "`_Ent.ExitData token1`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Ent._E2",
      "desc": "Get Second Token Of Accepted",
      "type": "Exec",
      "depict": {
        "raw": "--> 2nd-part",
        "in": "",
        "out": "2nd-part"
      },
      "runnable": "`_Ent.ExitData token2`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Ent._E3",
      "desc": "Get Third Token Of Accepted",
      "type": "Exec",
      "depict": {
        "raw": "--> 3rd-part",
        "in": "",
        "out": "3rd-part"
      },
      "runnable": "`_Ent.ExitData token3`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Ent._E4",
      "desc": "Get Fourth Token Of Accepted",
      "type": "Exec",
      "depict": {
        "raw": "--> 4th-part",
        "in": "",
        "out": "4th-part"
      },
      "runnable": "`_Ent.ExitData token4`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Ent._E5",
      "desc": "Get Fifth Token Of Accepted",
      "type": "Exec",
      "depict": {
        "raw": "-->5th-part",
        "in": "",
        "out": "5th-part"
      },
      "runnable": "`_Ent.ExitData token5`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Ent._E6",
      "desc": "Get Sixth Token Of Accepted",
      "type": "Exec",
      "depict": {
        "raw": "--> 6th-part",
        "in": "",
        "out": "6th-part"
      },
      "runnable": "`_Ent.ExitData token6`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Ent._E7",
      "desc": "Get Seventh Token Of Accepted",
      "type": "Exec",
      "depict": {
        "raw": "--> 7th-part",
        "in": "",
        "out": "7th-part"
      },
      "runnable": "`_Ent.ExitData token7`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Ent._E8",
      "desc": "Get Eighth Token Of Accepted",
      "type": "Exec",
      "depict": {
        "raw": "--> 8th-part",
        "in": "",
        "out": "8th-part"
      },
      "runnable": "`_Ent.ExitData token8`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Ent._E9",
      "desc": "Get Ninth Token Of Accepted",
      "type": "Exec",
      "depict": {
        "raw": "--> 9th-part",
        "in": "",
        "out": "9th-part"
      },
      "runnable": "`_Ent.ExitData token9`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "escat",
      "desc": "Escape String and Concatenate",
      "type": "Exec",
      "depict": {
        "raw": "url-str string --> append-url-str",
        "in": "url-str string",
        "out": "append-url-str"
      },
      "runnable": "`escape &`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "escdquocat",
      "desc": "Concatenate Double Quote Escape-Sequence of String",
      "type": "Exec",
      "depict": {
        "raw": "build-str string -->build-and-dquoted-string",
        "in": "build-str string",
        "out": "build-and-dquoted-string"
      },
      "runnable": "`escdquoter &`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "escdquoter",
      "desc": "Double Quote Escape-Sequence of String",
      "type": "Exec",
      "depict": {
        "raw": "string --> dquoted-string",
        "in": "string",
        "out": "dquoted-string"
      },
      "runnable": "`escape quoter`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "escquocat",
      "desc": "Concatenate Single Quote Escape-Sequence of String",
      "type": "Exec",
      "depict": {
        "raw": "build-str raw-str --> raw-str-and-escaped-quoted-str",
        "in": "build-str raw-str",
        "out": "raw-str-and-escaped-quoted-str"
      },
      "runnable": "`escquoter &`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "escquoter",
      "desc": "Single Quote Escape-Sequence of String",
      "type": "Exec",
      "depict": {
        "raw": "raw-str --> escaped-quoted-str",
        "in": "raw-str",
        "out": "escaped-quoted-str"
      },
      "runnable": "`escape squoter`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "exact$",
      "desc": "Exactly Equal Including Case",
      "type": "Exec",
      "depict": {
        "raw": "stra  strb -->  exactly-equal",
        "in": "stra  strb",
        "out": "exactly-equal"
      },
      "runnable": "`false compare pop zero`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "exdup",
      "desc": "Exchange Top Two Items Duplicate New Top Item",
      "type": "Exec",
      "depict": {
        "raw": "item2 item1 --> item1 item2 item2",
        "in": "item2 item1",
        "out": "item1 item2 item2"
      },
      "runnable": "`exch dup`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "exec",
      "desc": "Execute File Possibly Relative To App Dir",
      "type": "Exec",
      "depict": {
        "raw": "file-spec --> [ . . . ]",
        "in": "file-spec",
        "out": "[ . . . ]"
      },
      "runnable": "`read execstr`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "extwrite",
      "desc": "Write File Data to New Extension",
      "type": "Exec",
      "depict": {
        "raw": "file-data  filename   extension -->",
        "in": "file-data  filename   extension",
        "out": ""
      },
      "runnable": "`reextend write`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "fifth",
      "desc": "Get Fifth Stack Item",
      "type": "Exec",
      "depict": {
        "raw": " item5 item4 item3 item2 item1 -->item5 item4 item3 item2 item1 item5",
        "in": "item5 item4 item3 item2 item1",
        "out": "item5 item4 item3 item2 item1 item5"
      },
      "runnable": "`4 index`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "fifth)",
      "desc": "Bring Fifth Item to Top of Stack",
      "type": "Exec",
      "depict": {
        "raw": "item5 item4 item3 item2 item1 --> item4 item3 item2 item1 item5",
        "in": "item5 item4 item3 item2 item1",
        "out": "item4 item3 item2 item1 item5"
      },
      "runnable": "`5 -1 roll`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "File.Copy(",
      "desc": "Copy the File Keeping the Destination Filename",
      "type": "Exec",
      "depict": {
        "raw": "source dest --> dest",
        "in": "source dest",
        "out": "dest"
      },
      "runnable": "`to3rd copyfile`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "File.CopyOf",
      "desc": "Copy a File With New Extension",
      "type": "Exec",
      "depict": {
        "raw": "source dest new-ext -->",
        "in": "source dest new-ext",
        "out": ""
      },
      "runnable": "`reextend copyfile`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "File.Count",
      "desc": "Count the Files that Match Filespec",
      "type": "Exec",
      "depict": {
        "raw": "wildcard-filespec --> count",
        "in": "wildcard-filespec",
        "out": "count"
      },
      "runnable": "`0 exch filein { isnull) ? + 0 empty dir } loop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "File.Final?",
      "desc": "Have the Files in Spec Run Out",
      "type": "Exec",
      "depict": {
        "raw": "file-seed  filespec --> file-seed        end-of-files",
        "in": "file-seed  filespec",
        "out": "file-seed        end-of-files"
      },
      "runnable": "`File.NextOf isnull`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "File.MakeNorm",
      "desc": "Make Normalized Directory and Force Existence",
      "type": "Exec",
      "depict": {
        "raw": "dir-to-make --> normalized-dir  directory to make has no backslash, the normalized does",
        "in": "dir-to-make",
        "out": "normalized-dir  directory to make has no backslash, the normalized does"
      },
      "runnable": "`dup mkdir normpath`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "File.NextDirOf",
      "desc": "Get Next Directory of Target Folder",
      "type": "Exec",
      "depict": {
        "raw": "dir-seed folder-path --> next-dir-of-folder  folder path must have ending backslash empty directory seed for first dir of folder",
        "in": "dir-seed folder-path",
        "out": "next-dir-of-folder  folder path must have ending backslash empty directory seed for first dir of folder"
      },
      "runnable": "`&\"*\" _vbDirectory exch rot dirmore`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "File.PrevDirOf",
      "desc": "Get Previous Directory of Target Folder",
      "type": "Exec",
      "depict": {
        "raw": "dir-seed folder-path --> next-dir-of-folder  folder path must have ending backslash empty directory seed for first dir of folder",
        "in": "dir-seed folder-path",
        "out": "next-dir-of-folder  folder path must have ending backslash empty directory seed for first dir of folder"
      },
      "runnable": "`&\"*\" _vbDirectory exch rot dirless`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "File.NextOf",
      "desc": "Get Next File Within Directory",
      "type": "Exec",
      "depict": {
        "raw": "prior-filename wildcard-spec --> next-filename  empty prior file root gets first in path empty file root out indicates no next file",
        "in": "prior-filename wildcard-spec",
        "out": "next-filename  empty prior file root gets first in path empty file root out indicates no next file"
      },
      "runnable": "`_vbNormal swap1&3 dirmore`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "File.PrevOf",
      "desc": "Get Previous File Within Directory",
      "type": "Exec",
      "depict": {
        "raw": "prior-fileroot wildcard-spec --> prev-file  empty prior file root gets last in path empty file root out indicates no prev file",
        "in": "prior-fileroot wildcard-spec",
        "out": "prev-file  empty prior file root gets last in path empty file root out indicates no prev file"
      },
      "runnable": "`_vbNormal swap1&3 dirless`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "File.Retreat",
      "desc": "Retreat One Path Level",
      "type": "Exec",
      "depict": {
        "raw": "path --> retreated-path  assumed to be backslash at end of path",
        "in": "path",
        "out": "retreated-path  assumed to be backslash at end of path"
      },
      "runnable": "`-1 right pathonly`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "File.Unpath",
      "desc": "Retreat the Terminating Backslash of Path",
      "type": "Exec",
      "depict": {
        "raw": "file-name --> path-no-backslash",
        "in": "file-name",
        "out": "path-no-backslash"
      },
      "runnable": "`pathonly -1 right`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "File.ValHand",
      "desc": "Determine the Validity of Returned C Style File Handle",
      "type": "Exec",
      "depict": {
        "raw": "file-handle --> [file-handle ] if valid   valid",
        "in": "file-handle",
        "out": "[file-handle ] if valid   valid"
      },
      "runnable": "`dup -1 eq { pop2 false } { true } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "filein",
      "desc": "First File in Directory",
      "type": "Exec",
      "depict": {
        "raw": "file-spec --> first-file  emtpy string if no files match",
        "in": "file-spec",
        "out": "first-file  emtpy string if no files match"
      },
      "runnable": "`_vbNormal exch dir`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "files",
      "desc": "Get List of Files from Filespec",
      "type": "Exec",
      "depict": {
        "raw": "filespec --> empty [ . . . ]",
        "in": "filespec",
        "out": "empty [ . . . ]"
      },
      "runnable": "`empty exch \"Reverse\" File.List execstr`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "fourth",
      "desc": "Get Fourth Stack Item",
      "type": "Exec",
      "depict": {
        "raw": "item4 item3 item2 item1 -->item4 item3 item2 item1 item4",
        "in": "item4 item3 item2 item1",
        "out": "item4 item3 item2 item1 item4"
      },
      "runnable": "`3 index`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "fourth)",
      "desc": "Bring Fourth Item to Top Of Stack",
      "type": "Exec",
      "depict": {
        "raw": "item4 item3 item2 item1 --> item3 item2 item1 item4",
        "in": "item4 item3 item2 item1",
        "out": "item3 item2 item1 item4"
      },
      "runnable": "`4 -1 roll`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "fromleft",
      "desc": "Trim From Left of String",
      "type": "Exec",
      "depict": {
        "raw": "str  count --> adj-str",
        "in": "str  count",
        "out": "adj-str"
      },
      "runnable": "`dupnzis { minus left } if`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "fromright",
      "desc": "Trim From Right of String",
      "type": "Exec",
      "depict": {
        "raw": "str count --> adj-str",
        "in": "str count",
        "out": "adj-str"
      },
      "runnable": "`dupnzis { minus right } if`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "gear",
      "desc": "Merge Xml Directive into Default Zpanel Run Tree",
      "type": "Exec",
      "depict": {
        "raw": "patch-xml-string -->",
        "in": "patch-xml-string",
        "out": ""
      },
      "runnable": "`^'<Patch> ' &'</Patch> ' gear()`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "gear()",
      "desc": "Merge Xml Directive into Default Zpanel Run Tree Inner",
      "type": "Exec",
      "depict": {
        "raw": "already-patch-xml-string -->",
        "in": "already-patch-xml-string",
        "out": ""
      },
      "runnable": "`spin \"JoinXml\" dance) spin`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "get",
      "desc": "Get Operation From the Current Mep Hub",
      "type": "Exec",
      "depict": {
        "raw": "[ . . . ]  property --> [ . . . ]",
        "in": "[ . . . ]  property",
        "out": "[ . . . ]"
      },
      "runnable": "`Mep.Get`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "halfint",
      "desc": "Convert Half the Value to Integer",
      "type": "Exec",
      "depict": {
        "raw": "number --> half-number-int",
        "in": "number",
        "out": "half-number-int"
      },
      "runnable": "`2.0 div normint`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Help.!",
      "desc": "Issue Javascript Directive to Help Form",
      "type": "Exec",
      "depict": {
        "raw": "js-cmd -->",
        "in": "js-cmd",
        "out": ""
      },
      "runnable": "`Help.@Help Url.!`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Help.!Dim",
      "desc": "Resize the Help Browser",
      "type": "Exec",
      "depict": {
        "raw": "help-x help-y help-w help-h -->",
        "in": "help-x help-y help-w help-h",
        "out": ""
      },
      "runnable": "`Help.@Help Url.BrowDim Help.Show`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Help.!PageH",
      "desc": "Set the Horizontal Page Quadrant for Help Area",
      "type": "Exec",
      "depict": {
        "raw": "horiz-quadrant -->",
        "in": "horiz-quadrant",
        "out": ""
      },
      "runnable": "`Help.@Help normint _Help.Width mul dup _Help.Width add 100 add pixels \"DimWidth\" do pixels minus \"DimLeft\" do`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Help.!PageV",
      "desc": "Set the Vertical Page Quadrant of Help Area",
      "type": "Exec",
      "depict": {
        "raw": "vert-quadrant -->",
        "in": "vert-quadrant",
        "out": ""
      },
      "runnable": "`Help.@Help normint _Help.Height mul dup _Help.Height add 100 add pixels \"DimHeight\" do pixels minus \"DimTop\" do`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Help.@Help",
      "desc": "Change Mep to the Current Help Form",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`*helpform`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Help.Hide",
      "desc": "Hide the Help Screen",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`Help.@Help hide`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Help.Normal",
      "desc": "Resize the Help Screen to Normal",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`*helparea perscreen Help.!Dim`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Help.Quadrant",
      "desc": "Shift Help Area to Page Quadrant",
      "type": "Exec",
      "depict": {
        "raw": "horz-quad  vert-quad -->",
        "in": "horz-quad  vert-quad",
        "out": ""
      },
      "runnable": "`Help.!PageV Help.!PageH`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Help.Show",
      "desc": "Show the Help Screen",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`Help.@Help show`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "here",
      "desc": "Acting Directory",
      "type": "Exec",
      "depict": {
        "raw": "--> acting-dir",
        "in": "",
        "out": "acting-dir"
      },
      "runnable": "`_here`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "hide",
      "desc": "Hide the Current Mep Form",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`Mep.Hide`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "hier",
      "desc": "Tree Node Lineage String",
      "type": "Exec",
      "depict": {
        "raw": "pres-id --> lineage-string",
        "in": "pres-id",
        "out": "lineage-string"
      },
      "runnable": "`\"Fpath\" get -1 left`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "hours",
      "desc": "Convert to Hours",
      "type": "Exec",
      "depict": {
        "raw": "hours --> seconds",
        "in": "hours",
        "out": "seconds"
      },
      "runnable": "`60 mul minutes`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "incr=",
      "desc": "Increment to Next Alphabetic Vector",
      "type": "Exec",
      "depict": {
        "raw": "--> vector-incremented",
        "in": "",
        "out": "vector-incremented"
      },
      "runnable": "`_* incralph`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "incr2nd",
      "desc": "Increment Second Item on Stack",
      "type": "Exec",
      "depict": {
        "raw": "a b --> a+1 b",
        "in": "a b",
        "out": "a+1 b"
      },
      "runnable": "`exch + exch`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "incr3rd",
      "desc": "Increment Third Item on Stack",
      "type": "Exec",
      "depict": {
        "raw": "a b c --> a+1 b c",
        "in": "a b c",
        "out": "a+1 b c"
      },
      "runnable": "`rot + tuck`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "incralph",
      "desc": "Increment Alphabetically",
      "type": "Exec",
      "depict": {
        "raw": "letter-str --> next-letter-str  empty string provided causes capital A as next",
        "in": "letter-str",
        "out": "next-letter-str  empty string provided causes capital A as next"
      },
      "runnable": "`dup -1 right exch ^\"@\" 1 right asc + char &`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "incrminus",
      "desc": "Increment and Invert Arithmetic",
      "type": "Exec",
      "depict": {
        "raw": "number --> -(number+1)",
        "in": "number",
        "out": "-(number+1)"
      },
      "runnable": "`+ minus`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "incrpair",
      "desc": "Increment the Coordinate Pair of Stack Items",
      "type": "Exec",
      "depict": {
        "raw": "item1 item2 --> item1+1    item2+1",
        "in": "item1 item2",
        "out": "item1+1    item2+1"
      },
      "runnable": "`incr2nd +`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "inevent",
      "desc": "Inform in the Event Framework",
      "type": "Exec",
      "depict": {
        "raw": "--> informed",
        "in": "",
        "out": "informed"
      },
      "runnable": "`_event inform`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "inform",
      "desc": "Generic Dispatch of Form Type",
      "type": "Exec",
      "depict": {
        "raw": "action --> informed",
        "in": "action",
        "out": "informed"
      },
      "runnable": "`subform Mep.BaseOf look `",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "inproc",
      "desc": "Does File Exist Within Current Purview",
      "type": "Exec",
      "depict": {
        "raw": "filename --> filespec ( if found ) or filename (if not found)  found",
        "in": "filename",
        "out": "filespec ( if found ) or filename (if not found)  found"
      },
      "runnable": "`dup ofbin exists { ofbin  true } { dup ofhere exists  {  ofhere   true  }  {  false  } ifelse } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "jpeg",
      "desc": "Add Jpeg Extension",
      "type": "Exec",
      "depict": {
        "raw": "filename --> filename-jpeg",
        "in": "filename",
        "out": "filename-jpeg"
      },
      "runnable": "`\".jpg\" reextend`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "last",
      "desc": "Get Last Item in Empty String Terminated List",
      "type": "Exec",
      "depict": {
        "raw": "empty [ . . . . . ] --> empty [ . . . . . ] list-count",
        "in": "empty [ . . . . . ]",
        "out": "empty [ . . . . . ] list-count"
      },
      "runnable": "`0 { dup + index isnull) ?  + } loop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "last)",
      "desc": "Pull Last Item in Empty Item Terminated List",
      "type": "Exec",
      "depict": {
        "raw": "empty [ . . . . . ] --> empty [ . . . . ]  last-item  the last item is pulled from the list an empty string return means the list is empty",
        "in": "empty [ . . . . . ]",
        "out": "empty [ . . . . ]  last-item  the last item is pulled from the list an empty string return means the list is empty"
      },
      "runnable": "`last -1 roll`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "leftof",
      "desc": "Get String to Left of Token",
      "type": "Exec",
      "depict": {
        "raw": "orig-string pos-in-string --> left-part  pos is one-based",
        "in": "orig-string pos-in-string",
        "out": "left-part  pos is one-based"
      },
      "runnable": "`- left`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "length(",
      "desc": "Put Length of String Below String on Stack",
      "type": "Exec",
      "depict": {
        "raw": "string --> length      string",
        "in": "string",
        "out": "length      string"
      },
      "runnable": "`length exch`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "length)",
      "desc": "Length of String Consuming String",
      "type": "Exec",
      "depict": {
        "raw": "string --> length",
        "in": "string",
        "out": "length"
      },
      "runnable": "`length pop2nd`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "letcat",
      "desc": "Concatenate Capital Letter from Number",
      "type": "Exec",
      "depict": {
        "raw": "string number --> string+char-num  number is 1 to 26",
        "in": "string number",
        "out": "string+char-num  number is 1 to 26"
      },
      "runnable": "`letter &`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "letter",
      "desc": "Create Letter from Number",
      "type": "Exec",
      "depict": {
        "raw": "number --> capital-char  number usually  from 1 to 26",
        "in": "number",
        "out": "capital-char  number usually  from 1 to 26"
      },
      "runnable": "`&H40 add char`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "listed",
      "desc": "Make Full File Spec of List Root Name",
      "type": "Exec",
      "depict": {
        "raw": "list-root --> filespec",
        "in": "list-root",
        "out": "filespec"
      },
      "runnable": "`&\".tlt\" oflist`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "localhost",
      "desc": "Prefix Localhost Url",
      "type": "Exec",
      "depict": {
        "raw": "lhost-url-suffix --> hosted-url",
        "in": "lhost-url-suffix",
        "out": "hosted-url"
      },
      "runnable": "`^\"http://localhost/\"`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "localport",
      "desc": "Prefix Localhost Url with Port",
      "type": "Exec",
      "depict": {
        "raw": "url-suffix  port --> local-ported-url",
        "in": "url-suffix  port",
        "out": "local-ported-url"
      },
      "runnable": "`^\"http://localhost:\" &\"/\" ^`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "log()",
      "desc": "Display Top Stack Item With Label",
      "type": "Exec",
      "depict": {
        "raw": "top-item  label --> top-item",
        "in": "top-item  label",
        "out": "top-item"
      },
      "runnable": "`&2 logs`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "look",
      "desc": "Lookup in Proc File",
      "type": "Exec",
      "depict": {
        "raw": "lookup-item root-name --> [ results ] if item found  item-found",
        "in": "lookup-item root-name",
        "out": "[ results ] if item found  item-found"
      },
      "runnable": "`\".txt\" filer { lookin } { pop false } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "look_",
      "desc": "Get Lookup Elements Locally",
      "type": "Exec",
      "depict": {
        "raw": "local-prefix --> [ items . . ]  item-count",
        "in": "local-prefix",
        "out": "[ items . . ]  item-count"
      },
      "runnable": "`\".txt\" filer { lookin_ } { 0 } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "look=",
      "desc": "Lookup in Current Proc File",
      "type": "Exec",
      "depict": {
        "raw": "lookup-item -> [ results ] if item found  item-found",
        "in": "lookup-item -> [ results ] if item found  item-found",
        "out": ""
      },
      "runnable": "`_* look`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "lookif",
      "desc": "Look Up Within Process Areas If File Exists",
      "type": "Exec",
      "depict": {
        "raw": "[ . . . ] proc-root --> [ . . . ]    (if result true)  result",
        "in": "[ . . . ] proc-root",
        "out": "[ . . . ]    (if result true)  result"
      },
      "runnable": "`\".txt\" filer { exec } { false } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "lookin",
      "desc": "Lookup Within File Contents",
      "type": "Exec",
      "depict": {
        "raw": "lookup-item  filename --> [ results ] if item found  item-found",
        "in": "lookup-item  filename",
        "out": "[ results ] if item found  item-found"
      },
      "runnable": "`read lookstr`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "lookin_",
      "desc": "Get Elements of Lookup in File",
      "type": "Exec",
      "depict": {
        "raw": "lookup-file --> [ items . . ]  item-count",
        "in": "lookup-file",
        "out": "[ items . . ]  item-count"
      },
      "runnable": "`read lookstr_`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "lookstr)",
      "desc": "Lookup Without Checking Found",
      "type": "Exec",
      "depict": {
        "raw": "element-name exec-string --> [ items . . ] if found",
        "in": "element-name exec-string",
        "out": "[ items . . ] if found"
      },
      "runnable": "`lookstr pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "lookstr?",
      "desc": "Look for Subject and Add to Lookup If New",
      "type": "Exec",
      "depict": {
        "raw": "lookup-content lookup-subject --> [ items . . ] false /or/ adj-lookup-content true if new item false, items are only from 'found' lookup processes any spaces are converted to underlines",
        "in": "lookup-content lookup-subject",
        "out": "[ items . . ] false /or/ adj-lookup-content true if new item false, items are only from 'found' lookup processes any spaces are converted to underlines"
      },
      "runnable": "`underspc dup keep( exch dup keep( lookstr not keep) keep) third { ^\"|\" catcr & exch } { pop2 } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "lookstr_",
      "desc": "Get the Elements of the Lookup",
      "type": "Exec",
      "depict": {
        "raw": "lookup-content --> [ lookup1 lookup2 . . . ]  lookup-count",
        "in": "lookup-content",
        "out": "[ lookup1 lookup2 . . . ]  lookup-count"
      },
      "runnable": "`\" empty ^<\" catcr ^ catcr &\">\" catcr execstr`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "make",
      "desc": "Descend Tree Hierarchy Creating Nodes if Not Exist",
      "type": "Exec",
      "depict": {
        "raw": "hier-string  pres-node --> final-node",
        "in": "hier-string  pres-node",
        "out": "final-node"
      },
      "runnable": "`true exch \"Seek\" do pop2 pop2nd`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep.!Above",
      "desc": "Set Parent of Pres Node",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`parent child -->`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep.!Value",
      "desc": "Set Value of Mep Object",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`value -->`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep._Above",
      "desc": "Get Parent Node of Given Node",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`node-id --> parent-id`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep._Below",
      "desc": "Get Last Child and Child Count",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`parent-node --> last-child  child-count`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep._Event",
      "desc": "Get Form of Mep Event",
      "type": "Exec",
      "depict": {
        "raw": "--> mep-form",
        "in": "",
        "out": "mep-form"
      },
      "runnable": "`_App.EvMep Mep.FormOf`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep._First",
      "desc": "Get First Sibling of Pres Index",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`pres-index --> first-sibling`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep._Next",
      "desc": "Get Next Sibling Id",
      "type": "Mep",
      "depict": {
        "raw": " -1 result for no next sibling",
        "in": "-1 result for no next sibling",
        "out": ""
      },
      "runnable": "`pres-id --> next-sibling-id`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep._Prev",
      "desc": "Get Previous Sibling Id",
      "type": "Mep",
      "depict": {
        "raw": " -1 result for no previous sibling",
        "in": "-1 result for no previous sibling",
        "out": ""
      },
      "runnable": "`pres-id --> previous-sibling-id`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep._Value",
      "desc": "Get Value from Mep Object",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`--> value`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep.Beginner",
      "desc": "Flag Start of a Clean Instance of the Named Mep Form",
      "type": "Exec",
      "depict": {
        "raw": "mep-ident -->",
        "in": "mep-ident",
        "out": ""
      },
      "runnable": "`!@ -1 Mep.!Mep`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep.Can",
      "desc": "Mep Event Trap",
      "type": "Exec",
      "depict": {
        "raw": "mep-event-str -->  event string is vector|exec",
        "in": "mep-event-str",
        "out": "event string is vector|exec"
      },
      "runnable": "`_@ \"|^\" catpref Mep.Decode`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep.CanClick",
      "desc": "Establish Click Event",
      "type": "Exec",
      "depict": {
        "raw": "click-exec-string -->",
        "in": "click-exec-string",
        "out": ""
      },
      "runnable": "`^\"Click|\" Mep.Can`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep.Clear",
      "desc": "Clear the Main Form Element",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`-->`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep.Closer",
      "desc": "End Mep Instance",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`_@ dup Mep.End Mep./ pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep.Dim",
      "desc": "Dimension the Main Form Element",
      "type": "Mep",
      "depict": {
        "raw": "dimension main form element",
        "in": "dimension main form element",
        "out": ""
      },
      "runnable": "`x y w h -->`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep.DimForm",
      "desc": "Locate Browser Screen",
      "type": "Mep",
      "depict": {
        "raw": "dimension form",
        "in": "dimension form",
        "out": ""
      },
      "runnable": "`left top width height -->`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep.DimWin",
      "desc": "Dimension the Primary Element of Form",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`x y w h -->`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep.Do",
      "desc": "Mep Do Method",
      "type": "Exec",
      "depict": {
        "raw": "mep-action -->",
        "in": "mep-action",
        "out": ""
      },
      "runnable": "`_@ \"|\" catpref Mep.Action`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep.Event",
      "desc": "Invoke an Event from Mep",
      "type": "Exec",
      "depict": {
        "raw": "mep-action -->",
        "in": "mep-action",
        "out": ""
      },
      "runnable": "`_@ \"|^\" catpref Mep.Action`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep.FocusWin",
      "desc": "Focus on Window of Current Mep",
      "type": "Exec",
      "depict": {
        "raw": "mep-slot -->",
        "in": "mep-slot",
        "out": ""
      },
      "runnable": "`Mep._Hwnd Win.Focus`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep.ForceTop",
      "desc": "Force Current Mep Form to Top",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`Mep._FormHwnd Win.FocusTop `",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep.Get",
      "desc": "Mep Get Property",
      "type": "Exec",
      "depict": {
        "raw": "property name --> property value(s)",
        "in": "property name",
        "out": "property value(s)"
      },
      "runnable": "`_@ \"|_\" catpref Mep.Action`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep.Hide",
      "desc": "Hide Mep Form",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`false \"VisibleF\" set`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep.New",
      "desc": "Reserve and Identify New Mep Slot",
      "type": "Exec",
      "depict": {
        "raw": "--> new-slot-ident",
        "in": "",
        "out": "new-slot-ident"
      },
      "runnable": "`-1 Mep.!Mep empty Mep._`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep.NotTop",
      "desc": "Make Mep Form Not Topmost",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`Mep._FormHwnd Win.NotTop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep.Remove",
      "desc": "Remove Tree Node",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`pres-id -->`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep.Set",
      "desc": "Mep Set Property",
      "type": "Exec",
      "depict": {
        "raw": "value property name -->",
        "in": "value property name",
        "out": ""
      },
      "runnable": "`_@ \"|!\" catpref Mep.Action`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep.Show",
      "desc": "Make Mep Form Visible",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`true \"VisibleF\" set`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep.Url",
      "desc": "New Browser Form",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`\"StdWeb\" Mep.Start`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mep.Window",
      "desc": "Set Visibility of Main Form Element",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`visible -->`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "milliseconds",
      "desc": "Convert to Milliseconds",
      "type": "Exec",
      "depict": {
        "raw": "msec --> seconds",
        "in": "msec",
        "out": "seconds"
      },
      "runnable": "`1000.0 div`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Mouse.Reset",
      "desc": "Reset Mouse Flags",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`false !Mouse.Dir false !Mouse.Dclick false !Mouse.Click false !Mouse.Down false !Mouse.Context 0 !Mouse.Xits`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "navcore",
      "desc": "Navigate to Core Relative Url",
      "type": "Exec",
      "depict": {
        "raw": "navroot   x y w h    mep-slot -->",
        "in": "navroot   x y w h    mep-slot",
        "out": ""
      },
      "runnable": "`_@ exch navtocore`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "navcorefile",
      "desc": "Navigate Current Browser to Core Relative Url",
      "type": "Exec",
      "depict": {
        "raw": "core-file -->",
        "in": "core-file",
        "out": ""
      },
      "runnable": "`ofcore navtofile`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "navfile",
      "desc": "Navigate to File",
      "type": "Exec",
      "depict": {
        "raw": "navroot   x y w h   mep-slot -->",
        "in": "navroot   x y w h   mep-slot",
        "out": ""
      },
      "runnable": "`_@ exch browser navsize ofcore navtofile`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "navhost",
      "desc": "Navigate to Localhost",
      "type": "Exec",
      "depict": {
        "raw": "navroot   x y w h    mep-slot -->",
        "in": "navroot   x y w h    mep-slot",
        "out": ""
      },
      "runnable": "`_@ exch navtohost`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "navhostport",
      "desc": "Navigate to Host Url with Port Address",
      "type": "Exec",
      "depict": {
        "raw": " hosted-file -->",
        "in": "hosted-file",
        "out": ""
      },
      "runnable": "`\"Status|Url.ExecStatus\" Mep.Can ^\"http://localhost\" \">hostport> \" log() 0 \"_self\" Url.Navigate true Mep.Window`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "navlocal",
      "desc": "Navigate to Host Url",
      "type": "Exec",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`\">host> \" log() \"Status|Url.ExecStatus\" Mep.Can`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "navport",
      "desc": "Navigate to Localhost With Port",
      "type": "Exec",
      "depict": {
        "raw": "navroot   x y w h    mep-slot -->",
        "in": "navroot   x y w h    mep-slot",
        "out": ""
      },
      "runnable": "`_@ exch browser navsize \"Status|Url.ExecStatus\" Mep.Can ^\"http://localhost\" \">hostp> \" log() 0 \"_self\" Url.Navigate true Mep.Window`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "navreset",
      "desc": "zzzReset Vectors for Navigation Browser",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`_@ Mep./ pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "navsize",
      "desc": "Navigation Sizing",
      "type": "Exec",
      "depict": {
        "raw": "x y   w h -->",
        "in": "x y   w h",
        "out": ""
      },
      "runnable": "`2 copy 6 2 roll App.DimSub 0 0 4 2 roll 4 copy Mep.DimWin exch 1.0 mul normint exch 1.0 mul normint \"Dim\" do`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "navtocore",
      "desc": "Navigate to Core Relative Url",
      "type": "Exec",
      "depict": {
        "raw": "navroot   x y w h   mep-name    mep-slot -->",
        "in": "navroot   x y w h   mep-name    mep-slot",
        "out": ""
      },
      "runnable": "`browser navsize ofcore navtofile`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "navtofile",
      "desc": "Navigate to File System Url",
      "type": "Exec",
      "depict": {
        "raw": "nav-full-spec -->",
        "in": "nav-full-spec",
        "out": ""
      },
      "runnable": "`false Mep.Window \">file> \" log() \"Status|Url.ExecStatus\" Mep.Can ^\"file://\" 0 \"_self\" Url.Navigate`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "navtohost",
      "desc": "Navigate to Localhost",
      "type": "Exec",
      "depict": {
        "raw": "navroot   x y w h   mep-name    mep-slot -->",
        "in": "navroot   x y w h   mep-name    mep-slot",
        "out": ""
      },
      "runnable": "`browser navsize navlocal`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "navtourl",
      "desc": "Navigate to Url",
      "type": "Exec",
      "depict": {
        "raw": "navroot -->",
        "in": "navroot",
        "out": ""
      },
      "runnable": "`\">url> \" log() \"Status|Url.ExecStatus\" Mep.Can 0 \"_self\" Url.Navigate true Mep.Window`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "navurl",
      "desc": "Navigate to Url",
      "type": "Exec",
      "depict": {
        "raw": "navroot   x y w h    mep-slot -->",
        "in": "navroot   x y w h    mep-slot",
        "out": ""
      },
      "runnable": "`_@ exch browser navsize navtourl`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "neg(",
      "desc": "Test Number for Negative Leaving on Stack",
      "type": "Exec",
      "depict": {
        "raw": "number --> number       is-negative",
        "in": "number",
        "out": "number       is-negative"
      },
      "runnable": "`dup negative`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "neg?",
      "desc": "Pass Through Value if Negative",
      "type": "Exec",
      "depict": {
        "raw": "number --> [ number ] if negative  negative",
        "in": "number",
        "out": "[ number ] if negative  negative"
      },
      "runnable": "`dup negative { true } { pop false } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "negative",
      "desc": "Is Less Than Zero",
      "type": "Exec",
      "depict": {
        "raw": "number --> less-than-zero",
        "in": "number",
        "out": "less-than-zero"
      },
      "runnable": "`0 lt`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "newchild",
      "desc": "Make New Child of Current Node to be New Current",
      "type": "Exec",
      "depict": {
        "raw": "node-name -->",
        "in": "node-name",
        "out": ""
      },
      "runnable": "`_\\ newnode !\\`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "newcurnode",
      "desc": "Anchor a New Descendent Pres Tree Node",
      "type": "Exec",
      "depict": {
        "raw": "node-text parent-node --> new-node",
        "in": "node-text parent-node",
        "out": "new-node"
      },
      "runnable": "`newnode dup !\\`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "newnode",
      "desc": "Add Pres Tree Node Yielding Id",
      "type": "Exec",
      "depict": {
        "raw": "node-text parent-node --> new-node",
        "in": "node-text parent-node",
        "out": "new-node"
      },
      "runnable": "`Tree.New(`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "ninth",
      "desc": "Copy Ninth Item From Stack",
      "type": "Exec",
      "depict": {
        "raw": "item9 item8 item7 item6 item5 item4 item3 item2 item1 --> item9 item8 item7 item6 item5 item4 item3 item2 item1 item9",
        "in": "item9 item8 item7 item6 item5 item4 item3 item2 item1",
        "out": "item9 item8 item7 item6 item5 item4 item3 item2 item1 item9"
      },
      "runnable": "`8 index`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "ninth)",
      "desc": "Bring Ninth Item to Top of Stack",
      "type": "Exec",
      "depict": {
        "raw": "item9 item8 item7 item6 item5 item4 item3 item2 item1 --> item8 item7 item6 item5 item4 item3 item2 item1 item9",
        "in": "item9 item8 item7 item6 item5 item4 item3 item2 item1",
        "out": "item8 item7 item6 item5 item4 item3 item2 item1 item9"
      },
      "runnable": "`9 -1 roll`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "noevent",
      "desc": "Turn Off All Actions For Activity Group",
      "type": "Exec",
      "depict": {
        "raw": "action-root --> mep-tree-index",
        "in": "action-root",
        "out": "mep-tree-index"
      },
      "runnable": "`Mep./`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "none(",
      "desc": "Maintain Stack Item Tell Negative or Zero",
      "type": "Exec",
      "depict": {
        "raw": "number -->number      not-positive",
        "in": "number",
        "out": "number      not-positive"
      },
      "runnable": "`pos( not`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "nonroot",
      "desc": "Current Node Non-Root",
      "type": "Exec",
      "depict": {
        "raw": "--> nonroot",
        "in": "",
        "out": "nonroot"
      },
      "runnable": "`_\\ positive`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "nonzero",
      "desc": "Is Number Not Equal to Zero",
      "type": "Exec",
      "depict": {
        "raw": "number --> non-zero",
        "in": "number",
        "out": "non-zero"
      },
      "runnable": "`0 ne`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "normpair",
      "desc": "Normalize Coordinate Pair to Long Integer",
      "type": "Exec",
      "depict": {
        "raw": "real1 real2 --> int1 int2",
        "in": "real1 real2",
        "out": "int1 int2"
      },
      "runnable": "`exch normint exch normint`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "normpath",
      "desc": "Normalize Path to Insure Trailing Backslash",
      "type": "Exec",
      "depict": {
        "raw": "any-path --> norm-path",
        "in": "any-path",
        "out": "norm-path"
      },
      "runnable": "`&\"\\\" \"\\\\\" \"\\\" replall`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "normreal",
      "desc": "Convert to Real Number",
      "type": "Exec",
      "depict": {
        "raw": "number --> real-number",
        "in": "number",
        "out": "real-number"
      },
      "runnable": "`1.0 mul`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "nostack",
      "desc": "Clear Stack",
      "type": "Exec",
      "depict": {
        "raw": "[ obj1 . . . ] -->   Clear Stack",
        "in": "[ obj1 . . . ]",
        "out": "Clear Stack"
      },
      "runnable": "`count popoff`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "null?",
      "desc": "Is String Empty Discarding Empty",
      "type": "Exec",
      "depict": {
        "raw": "string --> [ string ] if not null        string-null",
        "in": "string",
        "out": "[ string ] if not null        string-null"
      },
      "runnable": "`isnull dup { pop2nd } if`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "ofapp",
      "desc": "Prefix Path of Application",
      "type": "Exec",
      "depict": {
        "raw": "filename --> pathed-filename",
        "in": "filename",
        "out": "pathed-filename"
      },
      "runnable": "`^_app`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "ofbin",
      "desc": "Prefix Bin Path",
      "type": "Exec",
      "depict": {
        "raw": "filename --> pathed-filename",
        "in": "filename",
        "out": "pathed-filename"
      },
      "runnable": "`bin ^`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "ofcore",
      "desc": "Prefix Filespec with Core Local Browser Path",
      "type": "Exec",
      "depict": {
        "raw": "file-spec --> core-pathed-spec",
        "in": "file-spec",
        "out": "core-pathed-spec"
      },
      "runnable": "`^\"Core\\\" ofapp`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "ofdebug",
      "desc": "Prefix Debug Path",
      "type": "Exec",
      "depict": {
        "raw": "file --> debug-pathed-file",
        "in": "file",
        "out": "debug-pathed-file"
      },
      "runnable": "`^\"Debug\\\" ofbin`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "ofdesk",
      "desc": "Prefix Path of Global Desk Operating Resources",
      "type": "Exec",
      "depict": {
        "raw": "filename --> desk-spec",
        "in": "filename",
        "out": "desk-spec"
      },
      "runnable": "`^\"Desk\\\" ofbin`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "ofhost",
      "desc": "Prefix Native File Path of Localhost Server",
      "type": "Exec",
      "depict": {
        "raw": "filespec --> hosted-filespec",
        "in": "filespec",
        "out": "hosted-filespec"
      },
      "runnable": "`^_App.Hosting`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "oflist",
      "desc": "Prefix List Directory",
      "type": "Exec",
      "depict": {
        "raw": "filename --> pathed-name",
        "in": "filename",
        "out": "pathed-name"
      },
      "runnable": "`^\"list\\\" ofbin`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "ofpath",
      "desc": "Prefix Focus Path",
      "type": "Exec",
      "depict": {
        "raw": "filename --> pathed-filename",
        "in": "filename",
        "out": "pathed-filename"
      },
      "runnable": "`^_path`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "ofshort",
      "desc": "Prefix the Shortcut Directory to File",
      "type": "Exec",
      "depict": {
        "raw": "file-string --> pathed-file-string",
        "in": "file-string",
        "out": "pathed-file-string"
      },
      "runnable": "`^\"Short\\\" ofbin`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "ordinal",
      "desc": "Get Ordinal Rank of Letter",
      "type": "Exec",
      "depict": {
        "raw": "letter --> ordinal-rank  the ordinal rank of A or a is 1",
        "in": "letter",
        "out": "ordinal-rank  the ordinal rank of A or a is 1"
      },
      "runnable": "`1 left upper asc &H40 sub 1 max 26 min`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "overwrite",
      "desc": "Rename and Force Overwrite File",
      "type": "Exec",
      "depict": {
        "raw": "srcfile destfile -->",
        "in": "srcfile destfile",
        "out": ""
      },
      "runnable": "`dup del movefile`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "owner",
      "desc": "Vector to Owner",
      "type": "Exec",
      "depict": {
        "raw": "[ data for op ] owner-op --> [ data from op ]  owner-intercepted",
        "in": "[ data for op ] owner-op",
        "out": "[ data from op ]  owner-intercepted"
      },
      "runnable": "`false exch _owner look pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "owner()",
      "desc": "Change Mep to Originating Form",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`owner(_) !@`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "owner(_)",
      "desc": "Get Name of Originating Mep Form",
      "type": "Exec",
      "depict": {
        "raw": "--> orig-mep",
        "in": "",
        "out": "orig-mep"
      },
      "runnable": "`\"Owners\" Stack.Set Stack.()`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "owning",
      "desc": "Establish Owners Process",
      "type": "Exec",
      "depict": {
        "raw": "owner-id  prior-owner   exit-cmds -->",
        "in": "owner-id  prior-owner   exit-cmds",
        "out": ""
      },
      "runnable": "`!Task.Request !Task.Prior !Task.Exiting *ownershp`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Pack._Dense",
      "desc": "Extract the Core Identity Strings",
      "type": "Exec",
      "depict": {
        "raw": "file-name --> file-name  dense-version",
        "in": "file-name",
        "out": "file-name  dense-version"
      },
      "runnable": "`dup 32 right -4 right dup 4 right exch -5 right dup 4 right exch -5 right dup 8 right exch -9 right ^ ^ ^ -4 right dup 5 left exch -6 left & dup 6 left exch -10 left & `",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "pad!",
      "desc": "Set Pad With Xml String",
      "type": "Exec",
      "depict": {
        "raw": "xml-string -->",
        "in": "xml-string",
        "out": ""
      },
      "runnable": "`\"SetXml\" dance)`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "pad*",
      "desc": "Get Pad Dance Exec String",
      "type": "Exec",
      "depict": {
        "raw": "-->  dance-exec",
        "in": "",
        "out": "dance-exec"
      },
      "runnable": "`\"dance\" \"Spot\" dance`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "pad@",
      "desc": "Set Pad to Node Relative Referenced From Pad",
      "type": "Exec",
      "depict": {
        "raw": "rel-ref -->",
        "in": "rel-ref",
        "out": ""
      },
      "runnable": "`\"Beam\" dance)`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "pad=",
      "desc": "Set Pad With Absolute Run Referenced Node",
      "type": "Exec",
      "depict": {
        "raw": "abs-ref -->",
        "in": "abs-ref",
        "out": ""
      },
      "runnable": "`\"Shine\" dance)`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "parens",
      "desc": "Parenthesize String",
      "type": "Exec",
      "depict": {
        "raw": "string --> parenthesized-string",
        "in": "string",
        "out": "parenthesized-string"
      },
      "runnable": "`^\"(\" &\")\"`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "percent",
      "desc": "Convert Percentage to Unit Terms",
      "type": "Exec",
      "depict": {
        "raw": "percentage --> unit-terms  unit terms is 1.0 for 100 percent",
        "in": "percentage",
        "out": "unit-terms  unit terms is 1.0 for 100 percent"
      },
      "runnable": "`100.0 div`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "perform",
      "desc": "Perform File if it Exists",
      "type": "Exec",
      "depict": {
        "raw": "filename -->",
        "in": "filename",
        "out": ""
      },
      "runnable": "`dup File.Exist { exec } { pop } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "permul",
      "desc": "Multiply Rect Percentages of Rect",
      "type": "Exec",
      "depict": {
        "raw": "rectx recty rectw recth perx pery perw perh -->",
        "in": "rectx recty rectw recth perx pery perw perh",
        "out": ""
      },
      "runnable": "`  pull4th 5 index mul 8 -1 roll add   pull4th 4 index mul 7 -1 roll add   pull4th 6 -1 roll mul   pull4th 5 -1 roll mul `",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "perwin",
      "desc": "Region of Subform Percentage Coordinate Twips",
      "type": "Exec",
      "depict": {
        "raw": "per-x per-y per-w per-h --> twips-x twips-y twips-w twips-h (returns pixels now)",
        "in": "per-x per-y per-w per-h",
        "out": "twips-x twips-y twips-w twips-h (returns pixels now)"
      },
      "runnable": "` subform App._Rect pop3rd pop3rd pull6th third mul push6th pull5th second mul push5th exch pull4th mul tuck mul `",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "photon",
      "desc": "Prefix Photon Messaging Directory to Path",
      "type": "Exec",
      "depict": {
        "raw": "path-file --> photon-spec",
        "in": "path-file",
        "out": "photon-spec"
      },
      "runnable": "`^\"Photon\\\" ofbin`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "phrase1",
      "desc": "First Segment of Dot Separated Phrases",
      "type": "Exec",
      "depict": {
        "raw": "string --> phrase-1",
        "in": "string",
        "out": "phrase-1"
      },
      "runnable": "`\".\" 0 1 1 parse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "pi",
      "desc": "The Constant Pi",
      "type": "Exec",
      "depict": {
        "raw": "--> pi",
        "in": "",
        "out": "pi"
      },
      "runnable": "`3.14159265358979`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "pixels",
      "desc": "Convert Pixels to Twips",
      "type": "Exec",
      "depict": {
        "raw": "pixels --> twips",
        "in": "pixels",
        "out": "twips"
      },
      "runnable": "`_TwipsPerPixel mul`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "pop1&3",
      "desc": "Remove First and Third Items",
      "type": "Exec",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`pop pop2nd`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "pop2",
      "desc": "Pop Next Two Stack Items",
      "type": "Exec",
      "depict": {
        "raw": "item1 item2 -->",
        "in": "item1 item2",
        "out": ""
      },
      "runnable": "`pop pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "pop2&3",
      "desc": "Remove the Second and Third Stack Items",
      "type": "Exec",
      "depict": {
        "raw": "item3 item2 item1 --> item1",
        "in": "item3 item2 item1",
        "out": "item1"
      },
      "runnable": "`tuck pop2`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "pop3",
      "desc": "Remove Top Three Items",
      "type": "Exec",
      "depict": {
        "raw": ". . . item0 item1 item2 item3 --> item0 . . .",
        "in": ". . . item0 item1 item2 item3",
        "out": "item0 . . ."
      },
      "runnable": "`3 popoff`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "pop3&4",
      "desc": "Remove the Third and Fourth Stack Items",
      "type": "Exec",
      "depict": {
        "raw": "item4 item3 item2 item1 --> item2 item1",
        "in": "item4 item3 item2 item1",
        "out": "item2 item1"
      },
      "runnable": "`pop3rd pop3rd`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "pop3rd",
      "desc": "Delete Third Stack Item",
      "type": "Exec",
      "depict": {
        "raw": "item1 item2 item3 --> item2    item3",
        "in": "item1 item2 item3",
        "out": "item2    item3"
      },
      "runnable": "`rot pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "pop4",
      "desc": "Pop Top Four Items",
      "type": "Exec",
      "depict": {
        "raw": ". . . item1 item2 item3 item4 --> . . .",
        "in": ". . . item1 item2 item3 item4",
        "out": ". . ."
      },
      "runnable": "`4 popoff`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "pop4th",
      "desc": "Pop Fourth Stack Item",
      "type": "Exec",
      "depict": {
        "raw": "item1 item2 item3 item4 --> item2    item3    item4",
        "in": "item1 item2 item3 item4",
        "out": "item2    item3    item4"
      },
      "runnable": "`pull4th pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "pop5th",
      "desc": "Delete Fifth Stack Item",
      "type": "Exec",
      "depict": {
        "raw": "item1 item2 item3 item4 item5 --> item2    item3    item4    item5",
        "in": "item1 item2 item3 item4 item5",
        "out": "item2    item3    item4    item5"
      },
      "runnable": "`pull5th pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "poplist",
      "desc": "Remove Stack Objects Thru Empty List Terminator",
      "type": "Exec",
      "depict": {
        "raw": "empty [ . . . ] -->",
        "in": "empty [ . . . ]",
        "out": ""
      },
      "runnable": "`{ isnull) ? } loop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "pos(",
      "desc": "Test If Number Positive",
      "type": "Exec",
      "depict": {
        "raw": "number --> number       is-positive",
        "in": "number",
        "out": "number       is-positive"
      },
      "runnable": "`dup positive`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "pos?",
      "desc": "Pass Through Value for Positive",
      "type": "Exec",
      "depict": {
        "raw": "number --> [ number ] if positive  positive",
        "in": "number",
        "out": "[ number ] if positive  positive"
      },
      "runnable": "`dup positive { true } { pop false } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "positive",
      "desc": "Greater Than Zero",
      "type": "Exec",
      "depict": {
        "raw": "number --> greater-than-zero",
        "in": "number",
        "out": "greater-than-zero"
      },
      "runnable": "`0 gt`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "procif",
      "desc": "Perform File if Exists in Purview",
      "type": "Exec",
      "depict": {
        "raw": "[ . . . items . . . ] filename --> [ . . . items . . . ]",
        "in": "[ . . . items . . . ] filename",
        "out": "[ . . . items . . . ]"
      },
      "runnable": "`inproc { exec } { pop } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "pull4th",
      "desc": "Pull the Fourth Stack Item to the Top",
      "type": "Exec",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`4 -1 roll`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "pull5th",
      "desc": "Pull the Fifth Stack Item to the Top",
      "type": "Exec",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`5 -1 roll`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "pull6th",
      "desc": "Pull the Sixth Stack Item to the Top",
      "type": "Exec",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`6 -1 roll`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "push4th",
      "desc": "Make Top Stack Item the Fourth Item",
      "type": "Exec",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`4 1 roll`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "push5th",
      "desc": "Make Top Stack Item the Fifth Item",
      "type": "Exec",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`5 1 roll`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "push6th",
      "desc": "Make Top Stack Item the Sixth Item",
      "type": "Exec",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`6 1 roll`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "quocat",
      "desc": "Double Quote String and Concatenate",
      "type": "Exec",
      "depict": {
        "raw": "build-str string --> new-build-str",
        "in": "build-str string",
        "out": "new-build-str"
      },
      "runnable": "`quoter &`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "quocatcr",
      "desc": "Quote String and Add Cr",
      "type": "Exec",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`quoter catcr`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "quocatspc",
      "desc": "Quote String and Add Space",
      "type": "Exec",
      "depict": {
        "raw": "string --> quoted-spaced",
        "in": "string",
        "out": "quoted-spaced"
      },
      "runnable": "`quoter catspc`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "rebin",
      "desc": "Re-Extend and Prefix Path of Bin",
      "type": "Exec",
      "depict": {
        "raw": "file-root-model --> file-name",
        "in": "file-root-model",
        "out": "file-name"
      },
      "runnable": "`reextend ofbin`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "remove",
      "desc": "Remove String from String",
      "type": "Exec",
      "depict": {
        "raw": "string remove-string --> adj-string",
        "in": "string remove-string",
        "out": "adj-string"
      },
      "runnable": "`empty replall`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "replall",
      "desc": "Replace All of Substring",
      "type": "Exec",
      "depict": {
        "raw": "subject-str replace with --> out-str",
        "in": "subject-str replace with",
        "out": "out-str"
      },
      "runnable": "`rot -1 replace pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "reselect",
      "desc": "Reselect Current Node With Tree Select Also",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`selected selnode Tree.Select`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "restof",
      "desc": "Extract the Remaining String Past Token and Sep",
      "type": "Exec",
      "depict": {
        "raw": "str-with-token  token --> token   remaining-string",
        "in": "str-with-token  token",
        "out": "token   remaining-string"
      },
      "runnable": "`length incrminus swap2&3 left`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "retext",
      "desc": "Re-extend Filename to Text File",
      "type": "Exec",
      "depict": {
        "raw": "filename --> with-text-ext",
        "in": "filename",
        "out": "with-text-ext"
      },
      "runnable": "`\".txt\" reextend`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "revslice",
      "desc": "From End of  Split String at Token",
      "type": "Exec",
      "depict": {
        "raw": "src-string token --> left-part  right-part",
        "in": "src-string token",
        "out": "left-part  right-part"
      },
      "runnable": "`reverse exch reverse exch slice reverse exch reverse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "rightof",
      "desc": "Get the String to the Right of Token and Token",
      "type": "Exec",
      "depict": {
        "raw": "orig-string pos-in-string --> right-part  pos is one-based",
        "in": "orig-string pos-in-string",
        "out": "right-part  pos is one-based"
      },
      "runnable": "`- fromleft`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "root?",
      "desc": "Is Current Node the Root",
      "type": "Exec",
      "depict": {
        "raw": "--> is-root",
        "in": "",
        "out": "is-root"
      },
      "runnable": "`_\\ zero`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "rootlook",
      "desc": "Invoke Tree Root Vector Lookup",
      "type": "Exec",
      "depict": {
        "raw": "root-lookup -->",
        "in": "root-lookup",
        "out": ""
      },
      "runnable": "`_event exch look pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "rootnode",
      "desc": "Establish Root Node as Current Reference",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`0 !\\`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "run-",
      "desc": "Delete Absolute Run Tree Referenced Node",
      "type": "Exec",
      "depict": {
        "raw": "abs-ref -->",
        "in": "abs-ref",
        "out": ""
      },
      "runnable": "`\"Chop\" dance)`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "run!",
      "desc": "Merge Pad Into Absolute Referenced Node Children",
      "type": "Exec",
      "depict": {
        "raw": "abs-ref -->",
        "in": "abs-ref",
        "out": ""
      },
      "runnable": "`\"TackXml\" dance)`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "run()",
      "desc": "Retain Mep and Dance",
      "type": "Exec",
      "depict": {
        "raw": "arg  verb -->",
        "in": "arg  verb",
        "out": ""
      },
      "runnable": "`_@ tuck dance run)`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "run)",
      "desc": "Dance Within the Original Mep",
      "type": "Exec",
      "depict": {
        "raw": "prior-mep  dance-exec -->",
        "in": "prior-mep  dance-exec",
        "out": ""
      },
      "runnable": "`this) dup execstr`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "run*",
      "desc": "Dance With Entire Run Tree",
      "type": "Exec",
      "depict": {
        "raw": "ent-ident   ent-page    pres-id -->",
        "in": "ent-ident   ent-page    pres-id",
        "out": ""
      },
      "runnable": "`!\\ !Ent.Page !Ent.Ident empty \"DanceRun\" run()`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "run/_",
      "desc": "Dance With With Abs Ref Node After Removing Below",
      "type": "Exec",
      "depict": {
        "raw": "abs-ref  pres-id -->",
        "in": "abs-ref  pres-id",
        "out": ""
      },
      "runnable": "`dup Tree./Below run_`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "run@",
      "desc": "Merge Pad Into Absolute Referenced Node Siblings",
      "type": "Exec",
      "depict": {
        "raw": "abs-ref -->",
        "in": "abs-ref",
        "out": ""
      },
      "runnable": "`\"MergeAbs\" dance)`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "run_",
      "desc": "Dance With Absolute Referenced Node",
      "type": "Exec",
      "depict": {
        "raw": "abs-ref  pres-id -->",
        "in": "abs-ref  pres-id",
        "out": ""
      },
      "runnable": "`!\\ this( pad= pad* run)`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "run+",
      "desc": "Append Pad to Absolute Run Tree Referenced Node",
      "type": "Exec",
      "depict": {
        "raw": "abs-ref -->",
        "in": "abs-ref",
        "out": ""
      },
      "runnable": "`\"Add\" dance)`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "safecall",
      "desc": "Insure Safe Call",
      "type": "Exec",
      "depict": {
        "raw": "[ . . . ] call-root --> [ . . .]",
        "in": "[ . . . ] call-root",
        "out": "[ . . .]"
      },
      "runnable": "`any? { call } if`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "safexec",
      "desc": "Insure No Remaining Stack Items After Exec",
      "type": "Exec",
      "depict": {
        "raw": "[ objects . . .  ] app-command -->",
        "in": "[ objects . . .  ] app-command",
        "out": ""
      },
      "runnable": "`execstr nostack`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "seek*",
      "desc": "Seek Named Tree Node Descend from Current Node",
      "type": "Exec",
      "depict": {
        "raw": "name --> [ node ] if exists   exists",
        "in": "name",
        "out": "[ node ] if exists   exists"
      },
      "runnable": "`false _\\ \"Seek\" do pop2nd pop3rd not dup not { pop2nd } if`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "select",
      "desc": "Set the Current Task Selection Value",
      "type": "Exec",
      "depict": {
        "raw": "pres-id -->",
        "in": "pres-id",
        "out": ""
      },
      "runnable": "`.!Selected`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "select*",
      "desc": "Select Visually the Current Node",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`_\\ Task.!Select`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "select?",
      "desc": "Current Selection As Node and Indicate Existence",
      "type": "Exec",
      "depict": {
        "raw": "--> selection-exists",
        "in": "",
        "out": "selection-exists"
      },
      "runnable": "`selected dup !\\ whole`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "selected",
      "desc": "Get Selected Node from Current Task Tree",
      "type": "Exec",
      "depict": {
        "raw": "--> sel-node",
        "in": "",
        "out": "sel-node"
      },
      "runnable": "`._Selected`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "selnode",
      "desc": "Set Current Node and Selection",
      "type": "Exec",
      "depict": {
        "raw": "pres-id -->",
        "in": "pres-id",
        "out": ""
      },
      "runnable": "`dup select !\\`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "send",
      "desc": "Format Body and Verb for Message Transmit",
      "type": "Exec",
      "depict": {
        "raw": "verb  body -->",
        "in": "verb  body",
        "out": ""
      },
      "runnable": "`escape ^\"|\" & \"SendUtil\" dance)`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "seq121",
      "desc": "Sequence Stack TOS First Second First Order",
      "type": "Exec",
      "depict": {
        "raw": "item-2 item-1 --> item-1 item-2 item-1",
        "in": "item-2 item-1",
        "out": "item-1 item-2 item-1"
      },
      "runnable": "`exch second`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "seq211",
      "desc": "Order Stack Items Second First First from TOS",
      "type": "Exec",
      "depict": {
        "raw": "item2 item1 --> item1 item1 item2",
        "in": "item2 item1",
        "out": "item1 item1 item2"
      },
      "runnable": "`dup rot`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "set",
      "desc": "Set Operation From the Current Mep Hub",
      "type": "Exec",
      "depict": {
        "raw": "[ . . . ]  property -->",
        "in": "[ . . . ]  property",
        "out": ""
      },
      "runnable": "`Mep.Set`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "seventh",
      "desc": "Copy Seventh Item From Stack",
      "type": "Exec",
      "depict": {
        "raw": "item7 item6 item5 item4 item3 item2 item1 --> item7 item6 item5 item4 item3 item2 item1 item7",
        "in": "item7 item6 item5 item4 item3 item2 item1",
        "out": "item7 item6 item5 item4 item3 item2 item1 item7"
      },
      "runnable": "`6 index`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "seventh)",
      "desc": "Bring Seventh Item to Top of Stack",
      "type": "Exec",
      "depict": {
        "raw": "item7 item6 item5 item4 item3 item2 item1 --> item6 item5 item4 item3 item2 item1 item7",
        "in": "item7 item6 item5 item4 item3 item2 item1",
        "out": "item6 item5 item4 item3 item2 item1 item7"
      },
      "runnable": "`7 -1 roll`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "show",
      "desc": "Show the Current Mep Form",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`Mep.Show`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "sixth",
      "desc": "Copy Sixth Item From Stack",
      "type": "Exec",
      "depict": {
        "raw": "item6 item5 item4 item3 item2 item1 --> item6 item5 item4 item3 item2 item1 item6",
        "in": "item6 item5 item4 item3 item2 item1",
        "out": "item6 item5 item4 item3 item2 item1 item6"
      },
      "runnable": "`5 index`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "sixth)",
      "desc": "Bring Sixth Item to Top of Stack",
      "type": "Exec",
      "depict": {
        "raw": "item6 item5 item4 item3 item2 item1 --> item5 item4 item3 item2 item1 item6",
        "in": "item6 item5 item4 item3 item2 item1",
        "out": "item5 item4 item3 item2 item1 item6"
      },
      "runnable": "`6 -1 roll`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "slice?",
      "desc": "Is Remainder of Split Empty",
      "type": "Exec",
      "depict": {
        "raw": "src-string token --> left-part  has-right  is true if token found and right of token is not empty",
        "in": "src-string token",
        "out": "left-part  has-right  is true if token found and right of token is not empty"
      },
      "runnable": "`slice any)?`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "spin",
      "desc": "Pre and Post Gear Spin",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`false !Commed empty \"Ticker\" dance any? { logs  true !Commed } if`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "squocat",
      "desc": "Single Quote String and Concatenate",
      "type": "Exec",
      "depict": {
        "raw": "orig-string string --> orig-and-quoted-string",
        "in": "orig-string string",
        "out": "orig-and-quoted-string"
      },
      "runnable": "`squoter &`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "squotesep",
      "desc": "Single Quote the String and Add Space",
      "type": "Exec",
      "depict": {
        "raw": "string --> single-quoted-str-and-spc",
        "in": "string",
        "out": "single-quoted-str-and-spc"
      },
      "runnable": "`squoter catspc`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Stack.!",
      "desc": "Send Null Terminated List to Stack",
      "type": "Exec",
      "depict": {
        "raw": "empty [ list-item1 . . . ] -->",
        "in": "empty [ list-item1 . . . ]",
        "out": ""
      },
      "runnable": "`{ isnull ?  Stack.Push } loop pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Stack.!Fwd",
      "desc": "Move Items Into Stack Retaining Forward Order",
      "type": "Exec",
      "depict": {
        "raw": "[ . . . ] count -->",
        "in": "[ . . . ] count",
        "out": ""
      },
      "runnable": "`countup { pop  Stack.Bottom } for`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Stack.!Rev",
      "desc": "Move Items Into Stack Reversing Order",
      "type": "Exec",
      "depict": {
        "raw": "[ . . . ] count -->",
        "in": "[ . . . ] count",
        "out": ""
      },
      "runnable": "`countup { pop  Stack.Push } for`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Stack.(",
      "desc": "Push to Top of Current Stack",
      "type": "Exec",
      "depict": {
        "raw": "item -->",
        "in": "item",
        "out": ""
      },
      "runnable": "`Stack.Push`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Stack.()",
      "desc": "Get the Top Stack Item Without Removing",
      "type": "Exec",
      "depict": {
        "raw": "--> top-item",
        "in": "",
        "out": "top-item"
      },
      "runnable": "`0 Stack.@Index`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Stack.(End)",
      "desc": "End Temporary Stack",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`Stack.End`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Stack.(Start)",
      "desc": "Start a Temporary Stack",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`empty Stack.Start pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Stack.)",
      "desc": "Push to Bottom of Current Stack",
      "type": "Exec",
      "depict": {
        "raw": "item -->",
        "in": "item",
        "out": ""
      },
      "runnable": "`Stack.Bottom`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Stack.*",
      "desc": "Start Current Mep Forms Stack",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`_@ Stack.Start pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Stack./",
      "desc": "Remove Top Stack Item",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`Stack.Pop pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Stack.Any?",
      "desc": "Any Items in Stack",
      "type": "Exec",
      "depict": {
        "raw": "--> has-items",
        "in": "",
        "out": "has-items"
      },
      "runnable": "`Stack.Count positive`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Stack.Bottom",
      "desc": "Send New Stack Item to End of Stack",
      "type": "Exec",
      "depict": {
        "raw": "new-item -->  new item is at bottom of currently set stack",
        "in": "new-item",
        "out": "new item is at bottom of currently set stack"
      },
      "runnable": "`Stack.Push Stack.Count 1 Stack.Roll`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Stack.Down",
      "desc": "Ordinal Stack Downwards Count",
      "type": "Exec",
      "depict": {
        "raw": "-->  stk-count -1 1",
        "in": "",
        "out": "stk-count -1 1"
      },
      "runnable": "`Stack.Count countdown`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Stack.FwdList",
      "desc": "Create Text Exec of List Items Retaining Forward Order",
      "type": "Exec",
      "depict": {
        "raw": "--> forward-list",
        "in": "",
        "out": "forward-list"
      },
      "runnable": "`empty Stack.Up { pop  Stack.Pop quocatcr ^ } for`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Stack.PopLast",
      "desc": "Pop the Last Item in Stack",
      "type": "Exec",
      "depict": {
        "raw": "--> last-item",
        "in": "",
        "out": "last-item"
      },
      "runnable": "`Stack.Count -1 Stack.Roll Stack.Pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Stack.RevList",
      "desc": "Create Text Exec of List Items Reversing Order",
      "type": "Exec",
      "depict": {
        "raw": "--> reverse-list",
        "in": "",
        "out": "reverse-list"
      },
      "runnable": "`empty Stack.Up { pop  Stack.Pop quoter catcatcr } for`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Stack.Start(",
      "desc": "Start a Temporary Stack Preserving Prior",
      "type": "Exec",
      "depict": {
        "raw": "-->  prior-stack",
        "in": "",
        "out": "prior-stack"
      },
      "runnable": "`Stack.Get Stack.(Start)`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Stack.Start)",
      "desc": "Start a Stack To Be Identified By Name",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`Stack.Start pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Stack.Up",
      "desc": "Ordinal Stack Upwards Count",
      "type": "Exec",
      "depict": {
        "raw": "--> 1 1 stk-count",
        "in": "",
        "out": "1 1 stk-count"
      },
      "runnable": "`Stack.Count countup`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "stepsdown",
      "desc": "Perform Index Controlled Recursive Step Downcount",
      "type": "Exec",
      "depict": {
        "raw": "[ . . . ]  count   step-vector -->",
        "in": "[ . . . ]  count   step-vector",
        "out": ""
      },
      "runnable": "`exch countdown { pop  0 rot  third call  pop2 } for pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "stepsup",
      "desc": "Perform Index Controlled Recursive Step Upcount",
      "type": "Exec",
      "depict": {
        "raw": "[ . . . ]  count   step-vector -->",
        "in": "[ . . . ]  count   step-vector",
        "out": ""
      },
      "runnable": "`exch countup { pop  0 rot  third call  pop2 } for pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.&Cspec",
      "desc": "Add C Literal Style String Quoted",
      "type": "Exec",
      "depict": {
        "raw": "build-str  unspeced-str --> build&speced-str",
        "in": "build-str  unspeced-str",
        "out": "build&speced-str"
      },
      "runnable": "`Str.Cspec quocat`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str._Color",
      "desc": "Translate Hex Color String",
      "type": "Exec",
      "depict": {
        "raw": "color-string --> color-value",
        "in": "color-string",
        "out": "color-value"
      },
      "runnable": "`\"#\" 0 2 1 parse any? { pop2nd } if ^\"0x\" execstr`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.CatValue",
      "desc": "Concatenate Quoted Value Definer",
      "type": "Exec",
      "depict": {
        "raw": "constructing-string value-name --> constructing-string",
        "in": "constructing-string value-name",
        "out": "constructing-string"
      },
      "runnable": "`dup _ quotesep \"!\" catpref catcatcr `",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.Cfile",
      "desc": "Convert Normalized Path to C Acceptable",
      "type": "Exec",
      "depict": {
        "raw": "normal-path --> c-path",
        "in": "normal-path",
        "out": "c-path"
      },
      "runnable": "`-1 right Str.Cspec`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.Cspec",
      "desc": "Process String for C Literal Acceptance",
      "type": "Exec",
      "depict": {
        "raw": "unspeced-str --> speced-str",
        "in": "unspeced-str",
        "out": "speced-str"
      },
      "runnable": "`\"\\\" \"\\\\\" replall`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.DotParts",
      "desc": "Break Apart Dotted String",
      "type": "Exec",
      "depict": {
        "raw": "subject-string --> [ prefix        dotted-suffix ] if dot exists      [ subject-string ] if not exists     dot-exists",
        "in": "subject-string",
        "out": "[ prefix        dotted-suffix ] if dot exists      [ subject-string ] if not exists     dot-exists"
      },
      "runnable": "`Str.Dotted { 2 copy left  tuck fromleft  true } { false } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.Dotted",
      "desc": "Check for Period Within String",
      "type": "Exec",
      "depict": {
        "raw": "subject-string --> subject-string      [ first-dot-position ] (only if dot exists)      dot-exists",
        "in": "subject-string",
        "out": "subject-string      [ first-dot-position ] (only if dot exists)      dot-exists"
      },
      "runnable": "`\".\" within dupnzis`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.EndDot",
      "desc": "Insure Single Period at End",
      "type": "Exec",
      "depict": {
        "raw": "string --> single-dot-ended",
        "in": "string",
        "out": "single-dot-ended"
      },
      "runnable": "`&\".\" \"..\" \".\" replall`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.ExprFilter",
      "desc": "Modify Characters for Regular Expressions Use",
      "type": "Exec",
      "depict": {
        "raw": "unfiltered --> filtered  makes reserved characters 'quoted'",
        "in": "unfiltered",
        "out": "filtered  makes reserved characters 'quoted'"
      },
      "runnable": "` \"\\\"  \"\\\\\" replall  \"^\"  \"\\^\" replall  \"$\"  \"\\$\" replall  \"*\"  \"\\*\" replall  \"+\"  \"\\+\" replall  \"?\"  \"\\?\" replall  \".\"  \"\\.\" replall  \"(\"  \"\\(\" replall  \")\"  \"\\)\" replall  \"{\"  \"\\{\" replall  \"}\"  \"\\}\" replall  \"[\"  \"\\[\" replall  \"]\"  \"\\]\" replall  \"/\"  \"\\/\" replall  \"_\"  \"\\_\" replall  \"-\"  \"\\-\" replall  '\"'  '\\\"' replall  \"|\"  \"\\|\" replall `",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.Find",
      "desc": "Find One Occurrence of String Within Another",
      "type": "Exec",
      "depict": {
        "raw": "str-to-find string-searched --> pos-found  pos-found is zero if not found",
        "in": "str-to-find string-searched",
        "out": "pos-found  pos-found is zero if not found"
      },
      "runnable": "`1 find pop2nd`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.Find?",
      "desc": "Find One Occurrence of String Within Another",
      "type": "Exec",
      "depict": {
        "raw": "str-to-find string-searched --> found",
        "in": "str-to-find string-searched",
        "out": "found"
      },
      "runnable": "`Str.Find positive`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.FirstLine",
      "desc": "Extract First Line of Text String",
      "type": "Exec",
      "depict": {
        "raw": "string --> first-line  result has no cr or lf at end",
        "in": "string",
        "out": "first-line  result has no cr or lf at end"
      },
      "runnable": "`0 line pop2&3`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.Found",
      "desc": "Count String Matches Within Another",
      "type": "Exec",
      "depict": {
        "raw": "str-to-find searched-string --> occurrences",
        "in": "str-to-find searched-string",
        "out": "occurrences"
      },
      "runnable": "`-1 find pop incrminus`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.IncrSerA",
      "desc": "Increment Alternating Starting Digit Serial Number",
      "type": "Exec",
      "depict": {
        "raw": "start-serial-string --> next-serial-string",
        "in": "start-serial-string",
        "out": "next-serial-string"
      },
      "runnable": "`length -2 2 { 2 copy 1 mid asc +  true push4th  dup  <  |90   pop   2 copy   2 copy - 1 mid + dup 9 gt   {   pop    pull5th not push5th    2   } if   exch - exch Str.Replant   pop3rd exch   65  |73 pop 75  |74 pop 75  |77 pop 78  |79 pop 80  |81 pop 82  |87 pop 88  > pop  char Str.Replant  exch ? } for`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.IncrSerB",
      "desc": "Increment Alternating Starting Letter Serial Number",
      "type": "Exec",
      "depict": {
        "raw": "start-serial-string --> next-serial-string",
        "in": "start-serial-string",
        "out": "next-serial-string"
      },
      "runnable": "`length -2 2 { 2 copy 1 mid + dup 9 gt  true push5th  {  pop   2 copy   2 copy - 1 mid asc +   dup   <   |90    pop    pull5th not push5th    65   |73 pop 75   |74 pop 75   |77 pop 78   |79 pop 80   |81 pop 82   |87 pop 88   > pop   char   exch - exch Str.Replant   pop3rd exch   2  } if  Str.Replant  exch ? } for`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.IncrSern",
      "desc": "Increment Alternating Alpha-Digit Serial Number",
      "type": "Exec",
      "depict": {
        "raw": "start-serial-string --> next-serial-string",
        "in": "start-serial-string",
        "out": "next-serial-string"
      },
      "runnable": "`length 1 and nonzero { dup 1 left asc &H39 gt  {  ^\"9\" Str.IncrSerA -1 left  }  {  ^\"A\" Str.IncrSerB -1 left  } ifelse } { dup 1 left asc &H39 gt  {  Str.IncrSerB  }  {  Str.IncrSerA  } ifelse } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.InParen",
      "desc": "Extract String from Parentheses",
      "type": "Exec",
      "depict": {
        "raw": "str-to-parse --> text-in-parens  the first character of string is assumed to be the open parenthesis",
        "in": "str-to-parse",
        "out": "text-in-parens  the first character of string is assumed to be the open parenthesis"
      },
      "runnable": "`-1 left \")\" 0 1 1 parse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.Left",
      "desc": "Split String Use Left Part",
      "type": "Exec",
      "depict": {
        "raw": "src-string token --> left-of-token",
        "in": "src-string token",
        "out": "left-of-token"
      },
      "runnable": "`slice pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.LineSeps",
      "desc": "Replace Line Feed and Cr With String",
      "type": "Exec",
      "depict": {
        "raw": "subject-str replacer --> adj-subj-str",
        "in": "subject-str replacer",
        "out": "adj-subj-str"
      },
      "runnable": "`exch 0x0D char 0x0A char & dup dup & exch replall 0x0D char 0x0A char & third replall 0x0A char 0x0D char & dup dup & exch replall 0x0A char 0x0D char & third replall 0x0D char third replall 0x0A char third replall pop2nd`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.ListFwd",
      "desc": "Create Exec String with Items Including Count",
      "type": "Exec",
      "depict": {
        "raw": "[ item . . ] count --> items-exec-with-count",
        "in": "[ item . . ] count",
        "out": "items-exec-with-count"
      },
      "runnable": "`empty 1 1 fourth { pop rot quocatcr ^ } for ^ catcr`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.Look((",
      "desc": "Start a Lookup Gathering File",
      "type": "Exec",
      "depict": {
        "raw": "lookup-filename --> lookup-filename  lookup-content",
        "in": "lookup-filename",
        "out": "lookup-filename  lookup-content"
      },
      "runnable": "`dup read`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.Look))",
      "desc": "Close a Lookup Gathering Set",
      "type": "Exec",
      "depict": {
        "raw": "lookup-filename lookup-content -->",
        "in": "lookup-filename lookup-content",
        "out": ""
      },
      "runnable": "`exch write`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.Minimal",
      "desc": "Collapse String Into Single Line and Trim",
      "type": "Exec",
      "depict": {
        "raw": "text-para --> text-line",
        "in": "text-para",
        "out": "text-line"
      },
      "runnable": "`Str.NoLines trim`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.NextIf",
      "desc": "Build Next Value If Not Null",
      "type": "Exec",
      "depict": {
        "raw": "building-string value-name --> building-string-appended",
        "in": "building-string value-name",
        "out": "building-string-appended"
      },
      "runnable": "`dup ^\" !\" catcr exch _ isnull { pop2 } { quoter ^ & } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.NextLook",
      "desc": "Attach Next Lookup Field",
      "type": "Exec",
      "depict": {
        "raw": "[ other list data ] list-data list list-item-name --> updated-list  list entries are compiled in reverse order with the nearest item in stack at the bottom of the list",
        "in": "[ other list data ] list-data list list-item-name",
        "out": "updated-list  list entries are compiled in reverse order with the nearest item in stack at the bottom of the list"
      },
      "runnable": "`^\"|\" catspc rot quoter catcatcr ^`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.NoExt",
      "desc": "Truncate the Extension From Filename",
      "type": "Exec",
      "depict": {
        "raw": "filename --> unextended-filename",
        "in": "filename",
        "out": "unextended-filename"
      },
      "runnable": "`empty reextend`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.NoLines",
      "desc": "Remove Line Marking Characters in String",
      "type": "Exec",
      "depict": {
        "raw": "string --> unlined-string",
        "in": "string",
        "out": "unlined-string"
      },
      "runnable": "`10 char \" \" replall 13 char \" \" replall`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.Normal",
      "desc": "Normalize String to Single Interior Spaces",
      "type": "Exec",
      "depict": {
        "raw": "str-unfiltered --> str-normalized",
        "in": "str-unfiltered",
        "out": "str-normalized"
      },
      "runnable": "`Str.NoLines Str.NormSpc trim`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.NormSpc",
      "desc": "Reduce All Space Gaps to Single Space",
      "type": "Exec",
      "depict": {
        "raw": "str-spaced --> str-norm",
        "in": "str-spaced",
        "out": "str-norm"
      },
      "runnable": "`{ \"  \" within zero ?  \"  \" \" \" replall } loop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.NoSpaces",
      "desc": "Insure No Spaces",
      "type": "Exec",
      "depict": {
        "raw": "str-to-check --> result-str",
        "in": "str-to-check",
        "out": "result-str"
      },
      "runnable": "`\" \" \"_\" replall`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.PersName",
      "desc": "Combine Name Parts into Full Personal Name",
      "type": "Exec",
      "depict": {
        "raw": "first middle last --> syntax-correct-name",
        "in": "first middle last",
        "out": "syntax-correct-name"
      },
      "runnable": "`exch isnull { pop \" \" } { ^\" \" catspc } ifelse ^ &`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.PostDig",
      "desc": "Get Digits from End",
      "type": "Exec",
      "depict": {
        "raw": "get-from --> end-number",
        "in": "get-from",
        "out": "end-number"
      },
      "runnable": "`empty exch { isnull ?  dup 1 right dup numeric exch \".\" eq$ or  {  seq121 1 right ^ exch -1 right   false  }  {  true  } ifelse  ? } loop pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.PostUnDig",
      "desc": "Remove Digits From End of String",
      "type": "Exec",
      "depict": {
        "raw": "subject-str --> unpost-digits-string",
        "in": "subject-str",
        "out": "unpost-digits-string"
      },
      "runnable": "`{ isnull ?  dup 1 right dup numeric exch \".\" eq$ or  {  -1 right   false  }  {  true  } ifelse  ? } loop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.Raw(4)",
      "desc": "Make Exec String of Top Four Stack Items, No Quotes",
      "type": "Exec",
      "depict": {
        "raw": "item1 item2 item3 item4 --> tem1 item2 item3 item4       items-spaced",
        "in": "item1 item2 item3 item4",
        "out": "tem1 item2 item3 item4       items-spaced"
      },
      "runnable": "`fourth catspc &4 catspc &3 catspc &2`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.Replant",
      "desc": "Replace Indexed Character of Serial String",
      "type": "Exec",
      "depict": {
        "raw": " serial-string index new-nth-digit --> new-serial-string",
        "in": "serial-string index new-nth-digit",
        "out": "new-serial-string"
      },
      "runnable": "`third third - dupnzis { left } { pop empty } ifelse ^ tuck exch length rot sub dupnzis { right & } { pop } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.RevLeft",
      "desc": "Split String from End Use Left Part",
      "type": "Exec",
      "depict": {
        "raw": "src-string  search-token --> left-part",
        "in": "src-string  search-token",
        "out": "left-part"
      },
      "runnable": "`exch reverse exch reverse Str.Right reverse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.RevRight",
      "desc": "Split String from End Use Right Part",
      "type": "Exec",
      "depict": {
        "raw": "src-string  search-token --> right-part",
        "in": "src-string  search-token",
        "out": "right-part"
      },
      "runnable": "`exch reverse exch reverse Str.Left reverse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.Right",
      "desc": "Split String Use Right Part",
      "type": "Exec",
      "depict": {
        "raw": "src-string token --> right-of-token",
        "in": "src-string token",
        "out": "right-of-token"
      },
      "runnable": "`slice pop2nd`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.Under",
      "desc": "Force Hyphens to Underline",
      "type": "Exec",
      "depict": {
        "raw": "hyphen-str --> under-str",
        "in": "hyphen-str",
        "out": "under-str"
      },
      "runnable": "`\"-\" \"_\" replall`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.UnSpace",
      "desc": "Delete Spaces From String",
      "type": "Exec",
      "depict": {
        "raw": "string --> unspaced-string",
        "in": "string",
        "out": "unspaced-string"
      },
      "runnable": "`\" \" remove`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.Version",
      "desc": "Create Version String from Decimal Paired Digits",
      "type": "Exec",
      "depict": {
        "raw": "nnnnnn --> v.v.v  max value of nn pair is 35 v is the base 36 representation of nn",
        "in": "nnnnnn",
        "out": "v.v.v  max value of nn pair is 35 v is the base 36 representation of nn"
      },
      "runnable": "`dup 2 left 36 base &\".\" second 3 2 mid 36 base & &\".\" exch 5 2 mid 36 base &`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Str.ZeroNon",
      "desc": "Substitute Zero if Not Numeric",
      "type": "Exec",
      "depict": {
        "raw": "string --> zero or number",
        "in": "string",
        "out": "zero or number"
      },
      "runnable": "`dup numeric not { pop 0 } if`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "subfocus",
      "desc": "Focus on Subform Window",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`subform Mep.FocusWin`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "subform",
      "desc": "Mep Subform Table Index of Current Mep",
      "type": "Exec",
      "depict": {
        "raw": "--> subform-index",
        "in": "",
        "out": "subform-index"
      },
      "runnable": "`_@ Mep._`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "subform?",
      "desc": "Active Subform Existence",
      "type": "Exec",
      "depict": {
        "raw": "--> subform-exists",
        "in": "",
        "out": "subform-exists"
      },
      "runnable": "`subform positive`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "subformed",
      "desc": "Start a New Subformed Mep Slot",
      "type": "Exec",
      "depict": {
        "raw": "form-type  mep-slot -->",
        "in": "form-type  mep-slot",
        "out": ""
      },
      "runnable": "`Mep.!Mep App.SubOn`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "swap1&3",
      "desc": "Exchange the First and Third Stack Items from TOS",
      "type": "Exec",
      "depict": {
        "raw": "item3 item2 item1 -->   item1 item2 item3",
        "in": "item3 item2 item1",
        "out": "item1 item2 item3"
      },
      "runnable": "`exch rot`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "swap2&3",
      "desc": "Exchange the Second and Third Stack Items from TOS",
      "type": "Exec",
      "depict": {
        "raw": "item3 item2 item1 -->   item2 item3 item1",
        "in": "item3 item2 item1",
        "out": "item2 item3 item1"
      },
      "runnable": "`rot exch`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "System.AndNoTrap",
      "desc": "Qualify No Trap Occurred",
      "type": "Exec",
      "depict": {
        "raw": "logic-flag --> qualified-logic-flag",
        "in": "logic-flag",
        "out": "qualified-logic-flag"
      },
      "runnable": "`System.Trapped not and`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "System.Arch",
      "desc": "Set Files Archive Flag",
      "type": "Exec",
      "depict": {
        "raw": "filename arch-flag -->",
        "in": "filename arch-flag",
        "out": ""
      },
      "runnable": "`second System._Attr exch { _vbArchive or } { _vbArchive -1 xor and } ifelse exch System.!Attr`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "System.ChainFocus",
      "desc": "Chain to App with Focus",
      "type": "Exec",
      "depict": {
        "raw": "command-line -->",
        "in": "command-line",
        "out": ""
      },
      "runnable": "`*runsnorm exit`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "System.EmptyDir",
      "desc": "Delete all Files in Directory",
      "type": "Exec",
      "depict": {
        "raw": "dir-to-empty -->  directory must have backslash",
        "in": "dir-to-empty",
        "out": "directory must have backslash"
      },
      "runnable": "`&\"*.*\" delfiles`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "System.FileTimes",
      "desc": "Get Time/Date of File",
      "type": "Exec",
      "depict": {
        "raw": "filename --> modified accessed created",
        "in": "filename",
        "out": "modified accessed created"
      },
      "runnable": "`File.Ftimes`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "System.Protect(",
      "desc": "Remember the Entry Tick",
      "type": "Exec",
      "depict": {
        "raw": "--> current-tick",
        "in": "",
        "out": "current-tick"
      },
      "runnable": "`_tick dup !Xper.Memory dup 1 gt { dup !Xper.Nz } if`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "System.Protect)",
      "desc": "Next Timer Tick and Protect Object Stack",
      "type": "Exec",
      "depict": {
        "raw": "[ any ] --> [ any ]  reports if any object exists on stack after timing step",
        "in": "[ any ]",
        "out": "[ any ]  reports if any object exists on stack after timing step"
      },
      "runnable": "`tick count nonzero { _Xper.Memory ^\"Tick(\" &\")(\"  _tick & &\"[\" &2 &\"]\" logs } if`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "System.RunFocus",
      "desc": "Run with Normal Focus",
      "type": "Exec",
      "depict": {
        "raw": "full-cmd-line -->",
        "in": "full-cmd-line",
        "out": ""
      },
      "runnable": "`_vbNormalFocus System.Shell pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "System.RunSmall",
      "desc": "Run Minimized Without Focus",
      "type": "Exec",
      "depict": {
        "raw": "cmd-line -->",
        "in": "cmd-line",
        "out": ""
      },
      "runnable": "`_vbMinimizedNoFocus System.Shell pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "System.Screen",
      "desc": "Full Screen of System",
      "type": "Exec",
      "depict": {
        "raw": "--> x y w h  in pixels",
        "in": "",
        "out": "x y w h  in pixels"
      },
      "runnable": "`0.0 0.0 1.0 1.0 perscreen`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "System.SendEnter",
      "desc": "Send Enter Key",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`\"~\" false System.SendKeys`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "System.TrapOff",
      "desc": "Disable Error Trapping",
      "type": "Exec",
      "depict": {
        "raw": "stop trapping global errors",
        "in": "stop trapping global errors",
        "out": ""
      },
      "runnable": "`empty valve`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "System.TrapOn",
      "desc": "Enable Trapping of Global Errors",
      "type": "Exec",
      "depict": {
        "raw": "-->  clear the global error trap indicate no trap use a blank to cause error valving to use of 'global' verb",
        "in": "",
        "out": "clear the global error trap indicate no trap use a blank to cause error valving to use of 'global' verb"
      },
      "runnable": "`global { pop2 } if 0 !Trap.Number \" \" valve 0 !Trap.Number empty !Trap.Desc empty !Trap.Text`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "System.Trapped",
      "desc": "Pass Through If No Trap Occurred",
      "type": "Exec",
      "depict": {
        "raw": "--> error-trapped  true if trapped system error has occurred",
        "in": "",
        "out": "error-trapped  true if trapped system error has occurred"
      },
      "runnable": "`global dupnz { _Trap.Show  {  \"Error \" second catcatspc   &4 third Dialog.Message  } if  !Trap.Number  !Trap.Desc  !Trap.Text } if _Trap.Number nonzero`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "System.Trapping",
      "desc": "Establish Error Report Silently",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`global dupnz { !Trap.Number  !Trap.Desc  !Trap.Text } if`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "System.TrapText",
      "desc": "Condense the Trappable Error Description",
      "type": "Exec",
      "depict": {
        "raw": "--> error-text",
        "in": "",
        "out": "error-text"
      },
      "runnable": "`_Trap.Number &\" flagged, \" _Trap.Text catcatcr _Trap.Desc catcatcr`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "System.Values",
      "desc": "Get Values from Prefix Matching Numeric",
      "type": "Exec",
      "depict": {
        "raw": "empty [. . anything . . ] num-value val-prefix --> named-val",
        "in": "empty [. . anything . . ] num-value val-prefix",
        "out": "named-val"
      },
      "runnable": "`true true pull4th values isnull not { {  exch isnull ?   pop2nd  } loop  pop } if`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Task.!Sel",
      "desc": "Set Task Tree Selected Node",
      "type": "Exec",
      "depict": {
        "raw": "pres-index -->  does not visibly select the tree node",
        "in": "pres-index",
        "out": "does not visibly select the tree node"
      },
      "runnable": "`Task.@ selnode`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Task.!Select",
      "desc": "Select the Task Tree Node Visibly",
      "type": "Exec",
      "depict": {
        "raw": "pres-id -->",
        "in": "pres-id",
        "out": ""
      },
      "runnable": "`Task.() Task.!Sel Tree.Select Task.)(`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Task.()",
      "desc": "Disable Current Task Tree",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`Task.@ Tree.Off`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Task.)(",
      "desc": "Enable the Task Tree",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`Task.@ Tree.On`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Task.*Quiet",
      "desc": "Ownership Return Quietly",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`*taskquet`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Task.*Return",
      "desc": "Ownership Return",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`*taskrtrn`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Task.*Stay",
      "desc": "Stay at the Current Task Ownership Level",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`*taskstay`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Task.@",
      "desc": "Focus on the Task Tree",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`_owner !@`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Task.@Child",
      "desc": "Extend the Current Task Name to Child Name",
      "type": "Exec",
      "depict": {
        "raw": "child-tree --> pep-name",
        "in": "child-tree",
        "out": "pep-name"
      },
      "runnable": "`_@ &\"#\" ^`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Task.@CmdArg",
      "desc": "Separate Command and Arguments of Entry Data",
      "type": "Exec",
      "depict": {
        "raw": "-->  cmd   args",
        "in": "",
        "out": "cmd   args"
      },
      "runnable": "`Task.@Sel _Ent.ExitData \"|\" slice unescape`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Task.@Page",
      "desc": "Task Page Operation Intro",
      "type": "Exec",
      "depict": {
        "raw": "page-and-op --> op",
        "in": "page-and-op",
        "out": "op"
      },
      "runnable": "`Task.@Sel dup term1 !Ent.Page term2`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Task.@Root",
      "desc": "Select the Root Node of Task",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`Task.@ rootnode select*`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Task.@Save",
      "desc": "Save the Current Task Tree to Owner",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`*tasksave`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Task.@Sel",
      "desc": "Focus on Task Current Selected Node",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`Task.@ selected !\\`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Task.@Sel(",
      "desc": "Focus on Task Current Selected Node Leave on Stack",
      "type": "Exec",
      "depict": {
        "raw": "--> selected",
        "in": "",
        "out": "selected"
      },
      "runnable": "`Task.@Sel _\\`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Task.@Sel?",
      "desc": "Focus on Task Current Selected Node Check Valid",
      "type": "Exec",
      "depict": {
        "raw": "-->  cursel-exists",
        "in": "",
        "out": "cursel-exists"
      },
      "runnable": "`Task.@Sel _\\ whole`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Task.Hide",
      "desc": "Hide the Task Operation Panel",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`Task.@ hide`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Task.Ops(",
      "desc": "Work with Task Form Preserving Current Mep",
      "type": "Exec",
      "depict": {
        "raw": "--> prior-mep",
        "in": "",
        "out": "prior-mep"
      },
      "runnable": "`_@ Task.@`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Task.Ops)",
      "desc": "Restore Prior Mep After Task Form Operations",
      "type": "Exec",
      "depict": {
        "raw": "prior-mep -->",
        "in": "prior-mep",
        "out": ""
      },
      "runnable": "`\"tops) \" log() !@`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Task.Save",
      "desc": "Save Task Tree to List Area",
      "type": "Exec",
      "depict": {
        "raw": "task-ident -->",
        "in": "task-ident",
        "out": ""
      },
      "runnable": "`oflist Tree.Save pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Task.Show",
      "desc": "Show the Task Window",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`Task.@ show`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Task.Survey",
      "desc": "Push or Pull a Server to the Survey",
      "type": "Exec",
      "depict": {
        "raw": "survey-flag server-name -->  true for survey flag is push server action",
        "in": "survey-flag server-name",
        "out": "true for survey flag is push server action"
      },
      "runnable": "`*tasksurv`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "tenth",
      "desc": "Copy Tenth Item From Stack",
      "type": "Exec",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`9 index`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "tenth)",
      "desc": "Bring Tenth Item to Top of Stack",
      "type": "Exec",
      "depict": {
        "raw": "item10 item9 item8 item7 item6 item5 item4 item3 item2 item1 --> item9 item8 item7 item6 item5 item4 item3 item2 item1 item10",
        "in": "item10 item9 item8 item7 item6 item5 item4 item3 item2 item1",
        "out": "item9 item8 item7 item6 item5 item4 item3 item2 item1 item10"
      },
      "runnable": "`10 -1 roll`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "term1",
      "desc": "Extract First Underline Term",
      "type": "Exec",
      "depict": {
        "raw": "under-sep-phrase --> term1",
        "in": "under-sep-phrase",
        "out": "term1"
      },
      "runnable": "`\"_\" 0 1 1 parse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "term1&2",
      "desc": "Extract Underlined Term 1 and 2",
      "type": "Exec",
      "depict": {
        "raw": "under-sep-phrase --> term1       term2",
        "in": "under-sep-phrase",
        "out": "term1       term2"
      },
      "runnable": "`\"_\" 0 2 1 parse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "term2",
      "desc": "Extract Second Underline Term",
      "type": "Exec",
      "depict": {
        "raw": "under-sep-phrase --> term2",
        "in": "under-sep-phrase",
        "out": "term2"
      },
      "runnable": "`\"_\" 1 1 1 parse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "term3",
      "desc": "Extract Third Underline Term",
      "type": "Exec",
      "depict": {
        "raw": "under-sep-phrase --> term3",
        "in": "under-sep-phrase",
        "out": "term3"
      },
      "runnable": "`\"_\" 2 1 1 parse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "term4",
      "desc": "Extract Fourth Underline Term",
      "type": "Exec",
      "depict": {
        "raw": "under-sep-phrase --> term4",
        "in": "under-sep-phrase",
        "out": "term4"
      },
      "runnable": "`\"_\" 3 1 1 parse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "term5",
      "desc": "Extract Fifth Underline Term",
      "type": "Exec",
      "depict": {
        "raw": "under-sep-phrase --> term5",
        "in": "under-sep-phrase",
        "out": "term5"
      },
      "runnable": "`\"_\" 4 1 1 parse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "term6",
      "desc": "Extract Sixth Underline Term",
      "type": "Exec",
      "depict": {
        "raw": "under-sep-phrase --> term6",
        "in": "under-sep-phrase",
        "out": "term6"
      },
      "runnable": "`\"_\" 5 1 1 parse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "text",
      "desc": "Add Text File Extension",
      "type": "Exec",
      "depict": {
        "raw": "path-file --> path-file-txt",
        "in": "path-file",
        "out": "path-file-txt"
      },
      "runnable": "`&\".txt\"`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "textcat",
      "desc": "Add Text Extension and Concatenate",
      "type": "Exec",
      "depict": {
        "raw": "file-build  file-part --> build&part.txt",
        "in": "file-build  file-part",
        "out": "build&part.txt"
      },
      "runnable": "`text &`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "this(",
      "desc": "Retain Current Mep To Second Stack item",
      "type": "Exec",
      "depict": {
        "raw": "item -->  mep-name   item",
        "in": "item",
        "out": "mep-name   item"
      },
      "runnable": "`_@ exch`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "this)",
      "desc": "Restore Original Mep From Second Stack Item",
      "type": "Exec",
      "depict": {
        "raw": "mep-name  item -->  item",
        "in": "mep-name  item",
        "out": "item"
      },
      "runnable": "`exch !@`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "tick",
      "desc": "Next Clock Tick Process",
      "type": "Exec",
      "depict": {
        "raw": "[ interval ] if detected detected -->  nondetect or 0 interval on exit causes backhome negative interval causes no re-timing",
        "in": "[ interval ] if detected detected",
        "out": "nondetect or 0 interval on exit causes backhome negative interval causes no re-timing"
      },
      "runnable": "`{ dupnzis  {  pos? { tickagain } if  }  {  *backhome  } ifelse } { stop  *backhome } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "tickagain",
      "desc": "Next Timer Tick",
      "type": "Exec",
      "depict": {
        "raw": "tick-ms -->",
        "in": "tick-ms",
        "out": ""
      },
      "runnable": "`\"*timetrak\" exch aux1`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "tickbelow",
      "desc": "Exit Lookup if Tick Below Floor Value",
      "type": "Exec",
      "depict": {
        "raw": "tick-floor tick-file --> [ lookup-result  ] if exit-cycle true      exit-cycle",
        "in": "tick-floor tick-file",
        "out": "[ lookup-result  ] if exit-cycle true      exit-cycle"
      },
      "runnable": "`_ticker exch !ticker exch _tick gt { _tick exch lookin  true } { pop  false } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Time.!Code",
      "desc": "Encode the Time Supplied as MM TimeCode",
      "type": "Exec",
      "depict": {
        "raw": "time-secs --> time-code",
        "in": "time-secs",
        "out": "time-code"
      },
      "runnable": "`empty exch dup 3600.0 div int seq121 2 prezero & &\":\" exch 3600.0 mul rot from dup 60.0 div int seq121 2 prezero & &\":\" exch 60.0 mul rot from dup int seq121 2 prezero & &\".\" swap1&3 from &`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Time._Code",
      "desc": "Extract Time from MM TimeCode",
      "type": "Exec",
      "depict": {
        "raw": "time-code -->hours    minutes    seconds",
        "in": "time-code",
        "out": "hours    minutes    seconds"
      },
      "runnable": "`\":\" 0 3 1 parse isnull { pop  isnull  {  pop   isnull   {   pop    0 0 0   }   {   0 tuck    0 tuck   } ifelse  }  {  0 tuck  } ifelse } { } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Time._Seconds",
      "desc": "Evaluate Seconds from Time Code",
      "type": "Exec",
      "depict": {
        "raw": "time-code --> seconds",
        "in": "time-code",
        "out": "seconds"
      },
      "runnable": "`Time._Code rot 3600 mul add exch 60 mul add`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Time.DateForm",
      "desc": "Format the Date",
      "type": "Exec",
      "depict": {
        "raw": "time-date-str --> formed-date   format is yyyy/mm/dd with leading zeros",
        "in": "time-date-str",
        "out": "formed-date   format is yyyy/mm/dd with leading zeros"
      },
      "runnable": "`Time.Datels pop 2 prezero ^\"/\" & 5 prezero ^\"/\" &`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Time.DateOf",
      "desc": "Create Formatted Date from Date-Time",
      "type": "Exec",
      "depict": {
        "raw": "date-time --> formatted-date  mm/dd/yyyy",
        "in": "date-time",
        "out": "formatted-date  mm/dd/yyyy"
      },
      "runnable": "`Time.Datels pop exch \"/\" catpref exch 2 right exch \"/\" catpref`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Time.DateOrder",
      "desc": "Create Date Ascending Alpha Order String",
      "type": "Exec",
      "depict": {
        "raw": "time-date-str --> date-ordered-string  form is yyyymmdd result",
        "in": "time-date-str",
        "out": "date-ordered-string  form is yyyymmdd result"
      },
      "runnable": "`Time.Datels pop 2 prezero & 4 prezero &`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Time.Drop",
      "desc": "Files Dropped During Run",
      "type": "Exec",
      "depict": {
        "raw": "drop-str -->",
        "in": "drop-str",
        "out": ""
      },
      "runnable": "`\"drop \" log() !Ent.Dropped`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Time.FileDiff",
      "desc": "Compare the Difference in Time Between Files",
      "type": "Exec",
      "depict": {
        "raw": "filename1   filename2 --> file1-newer",
        "in": "filename1   filename2",
        "out": "file1-newer"
      },
      "runnable": "`second exists { System.FileTimes pop2  second exists  {  exch System.FileTimes pop2   \"s\" Time.Diff negative  }  {  pop2 true  } ifelse } { pop2 true } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Time.Formed",
      "desc": "Format Time/Date",
      "type": "Exec",
      "depict": {
        "raw": "time-date-str --> formed-date-time  yyyy/mm/dd hh:mm:ss",
        "in": "time-date-str",
        "out": "formed-date-time  yyyy/mm/dd hh:mm:ss"
      },
      "runnable": "`dup Time.DateForm &\" \" exch Time.TimeForm &`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Time.FullOrder",
      "desc": "Create Underline Separated Time and Date Order String",
      "type": "Exec",
      "depict": {
        "raw": "time-date --> ordered-string",
        "in": "time-date",
        "out": "ordered-string"
      },
      "runnable": "`dup Time.DateOrder exch Time.TimeOrder ^\"_\" & ^\"_\"`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Time.MinuteOrder",
      "desc": "To the Minute Ordered String",
      "type": "Exec",
      "depict": {
        "raw": "time-date --> ordered-time-string  yyyymmdd_hhmm format",
        "in": "time-date",
        "out": "ordered-time-string  yyyymmdd_hhmm format"
      },
      "runnable": "`dup Time.DateOrder &\"_\" exch Time.TimeOrder -2 right &`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Time.TimeForm",
      "desc": "Format the Time",
      "type": "Exec",
      "depict": {
        "raw": "time-date-str --> formed-time",
        "in": "time-date-str",
        "out": "formed-time"
      },
      "runnable": "`Time.Timels 2 prezero ^\":\" & 5 prezero ^\":\" & 8 prezero`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Time.TimeOf",
      "desc": "Get Formatted Time from Time-Date",
      "type": "Exec",
      "depict": {
        "raw": "time-date --> formatted-time  format is hh:mm am or hh:mm pm",
        "in": "time-date",
        "out": "formatted-time  format is hh:mm am or hh:mm pm"
      },
      "runnable": "`Time.Timels pop second 12 gt { exch 12 sub dup zero { pop 12 } if  exch 2 prezero ^\":\" &  &\" pm\" } { exdup zero { pop 12 } if  exch 2 prezero ^\":\" &  &\" am\" } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Time.TimeOrder",
      "desc": "Create Time Ascending Alpha Order String",
      "type": "Exec",
      "depict": {
        "raw": "time-date-str --> time-ordered-string  form is hhmmss  result  where hh is military time format",
        "in": "time-date-str",
        "out": "time-ordered-string  form is hhmmss  result  where hh is military time format"
      },
      "runnable": "`Time.Timels 2 prezero & 4 prezero & 6 prezero`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "to3rd",
      "desc": "Copy the Top Stack Item to the Third",
      "type": "Exec",
      "depict": {
        "raw": "item1 item2 --> item2  item1  item2",
        "in": "item1 item2",
        "out": "item2  item1  item2"
      },
      "runnable": "`dup tuck`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "token1",
      "desc": "Extract First Token",
      "type": "Exec",
      "depict": {
        "raw": "tokenized-str --> token1",
        "in": "tokenized-str",
        "out": "token1"
      },
      "runnable": "`\"|\" 0 1 1 parse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "token1&2",
      "desc": "Extract First and Second Tokens",
      "type": "Exec",
      "depict": {
        "raw": "tokenized-str --> token1   token2",
        "in": "tokenized-str",
        "out": "token1   token2"
      },
      "runnable": "`\"|\" 0 2 1 parse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "token123",
      "desc": "Extract Initial Three Tokens",
      "type": "Exec",
      "depict": {
        "raw": "tokenized-str --> token1   token2  token3",
        "in": "tokenized-str",
        "out": "token1   token2  token3"
      },
      "runnable": "`\"|\" 0 3 1 parse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "token2",
      "desc": "Extract Second Token",
      "type": "Exec",
      "depict": {
        "raw": "tokenized-str --> token2",
        "in": "tokenized-str",
        "out": "token2"
      },
      "runnable": "`\"|\" 1 1 1 parse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "token3",
      "desc": "Extract Third Token",
      "type": "Exec",
      "depict": {
        "raw": "tokenized-str --> token3",
        "in": "tokenized-str",
        "out": "token3"
      },
      "runnable": "`\"|\" 2 1 1 parse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "token4",
      "desc": "Extract Fourth Token",
      "type": "Exec",
      "depict": {
        "raw": "tokenized-str --> token4",
        "in": "tokenized-str",
        "out": "token4"
      },
      "runnable": "`\"|\" 3 1 1 parse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "token5",
      "desc": "Extract Fifth Token",
      "type": "Exec",
      "depict": {
        "raw": "tokenized-str --> token5",
        "in": "tokenized-str",
        "out": "token5"
      },
      "runnable": "`\"|\" 4 1 1 parse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "token6",
      "desc": "Extract Sixth Token",
      "type": "Exec",
      "depict": {
        "raw": "tokenized-str --> token6",
        "in": "tokenized-str",
        "out": "token6"
      },
      "runnable": "`\"|\" 5 1 1 parse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "token7",
      "desc": "Extract Seventh Token",
      "type": "Exec",
      "depict": {
        "raw": "tokenized-str --> token7",
        "in": "tokenized-str",
        "out": "token7"
      },
      "runnable": "`\"|\" 6 1 1 parse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "token8",
      "desc": "Extract Eighth Token",
      "type": "Exec",
      "depict": {
        "raw": "tokenized-str --> token8",
        "in": "tokenized-str",
        "out": "token8"
      },
      "runnable": "`\"|\" 7 1 1 parse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "token9",
      "desc": "Extract Ninth Token",
      "type": "Exec",
      "depict": {
        "raw": "tokenized-str --> token9",
        "in": "tokenized-str",
        "out": "token9"
      },
      "runnable": "`\"|\" 8 1 1 parse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "tokring",
      "desc": "Add or Overwrite Token List Variable",
      "type": "Exec",
      "depict": {
        "raw": "token-data  varname --> token-data  varname",
        "in": "token-data  varname",
        "out": "token-data  varname"
      },
      "runnable": "`{ dup _ &\"|\" rot & & } if`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.!!",
      "desc": "Store List of Value-Pairs into Current Node",
      "type": "Exec",
      "depict": {
        "raw": "count [  val-1   name-1   . . . ]",
        "in": "count [  val-1   name-1   . . . ]",
        "out": ""
      },
      "runnable": "`countup { pop  \\! } for`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.!Mark",
      "desc": "Set Mark Index of Pres Tree Node",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`mark-index pres-index -->`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.!Marks",
      "desc": "Set Picture and Tag of Pres Tree Mark",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`mark-tag mark-pic-file mark-index -->`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.!MarkSeen",
      "desc": "Overide Visibility of a Mark",
      "type": "Mep",
      "depict": {
        "raw": "if true mark is always hidden, overiding all-mark-visibility setting",
        "in": "if true mark is always hidden, overiding all-mark-visibility setting",
        "out": ""
      },
      "runnable": "`seen pres-index -->`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.!Selected",
      "desc": "Set Selected Flag of Tree Node",
      "type": "Mep",
      "depict": {
        "raw": "not available unless multi-selection enabled",
        "in": "not available unless multi-selection enabled",
        "out": ""
      },
      "runnable": "`selected-flag nodekey -->`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.!Text",
      "desc": "Store to Tree Node Text Description",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`text tree-node-key -->`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.!ValueOf",
      "desc": "Store Associated Value With Pres Tree Node",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`value-data value-name pres-index -->`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.!View",
      "desc": "Set Presentation Tree Line Pic and Mark Styling",
      "type": "Mep",
      "depict": {
        "raw": "view-style 0 (Default) Picture, Tree lines and Text associated with the item .  1 Picture and Text  2 Picture and Tree lines   3 Picture   4 Text and Tree lines   5 Text extend-style 0 (Default) Don't display either the Plus/Minus image or Mark Pictures.  1 Display Plus/Minus image.  2 Display Mark pictures and Plus/Minus image.  3 Display Mark pictures.",
        "in": "view-style 0 (Default) Picture, Tree lines and Text associated with the item .  1 Picture and Text  2 Picture and Tree lines   3 Picture   4 Text and Tree lines   5 Text extend-style 0 (Default) Don't display either the Plus/Minus image or Mark Pictures.  1 Display Plus/Minus image.  2 Display Mark pictures and Plus/Minus image.  3 Display Mark pictures.",
        "out": ""
      },
      "runnable": "`view-style extend-style -->`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.*Values",
      "desc": "Pull All Value Pairs Associated with Pres Tree Node",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`pres-index --> [ value-data value-name . . ]  value-pairs`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree./Below",
      "desc": "Remove All Children",
      "type": "Exec",
      "depict": {
        "raw": "pres-node -->",
        "in": "pres-node",
        "out": ""
      },
      "runnable": "`dup whole { {  dup Mep._Below zero ?   Mep.Remove  } loop  pop } if pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.__",
      "desc": "Get the Node Name of Parent of Current Node",
      "type": "Exec",
      "depict": {
        "raw": "-->  parent-name",
        "in": "",
        "out": "parent-name"
      },
      "runnable": "`\"__Tree\" Tree._Parent Tree._ValueOf`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree._Below",
      "desc": "Get the Count of Child Level and First Child",
      "type": "Mep",
      "depict": {
        "raw": "the first child is the first in the unsorted node sequence",
        "in": "the first child is the first in the unsorted node sequence",
        "out": ""
      },
      "runnable": "`node-id --> first-child number-children`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree._First",
      "desc": "Test for First Child of Node",
      "type": "Exec",
      "depict": {
        "raw": "pres-node --> [ first-child-node ]   if has a child  has-child",
        "in": "pres-node",
        "out": "[ first-child-node ]   if has a child  has-child"
      },
      "runnable": "`Tree.Below( { Mep._First  true } { pop  false } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree._Last",
      "desc": "Get Last Child of Node",
      "type": "Exec",
      "depict": {
        "raw": "pres-node --> [ last-child-node ]   if has a child  has-child",
        "in": "pres-node",
        "out": "[ last-child-node ]   if has a child  has-child"
      },
      "runnable": "`Tree.Below( { \"Last\" get  true } { pop  false } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree._Listed",
      "desc": "Count of Tree Nodes",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`--> tree-nodes`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree._Mark",
      "desc": "Get Pres Tree Nodes Mark Index",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`pres-index --> mark-index`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree._Marked",
      "desc": "Get the Mark Tag Associated with Mark Index",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`mark-index --> mark-tag`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree._New",
      "desc": "Get Newest Node of Pres Tree",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`--> newest-pres-index`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree._Parent",
      "desc": "Parent of Current Node",
      "type": "Exec",
      "depict": {
        "raw": "--> node-parent",
        "in": "",
        "out": "node-parent"
      },
      "runnable": "`_\\ Mep._Above`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree._Root",
      "desc": "Get Value from Pres Tree Root Node",
      "type": "Exec",
      "depict": {
        "raw": "val-name --> value",
        "in": "val-name",
        "out": "value"
      },
      "runnable": "`0 Tree._ValueOf`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree._Tag",
      "desc": "Get Tag of Tree Node",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`node-key --> tag-string`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree._Text",
      "desc": "Get Tree Node Text Description",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`tree-node-key --> text`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree._ValueOf",
      "desc": "Get Value Associated With Pres Tree Node",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`value-name pres-index --> value-data`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree._Values",
      "desc": "Get Number of Value Pairs with Pres Tree Node",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`--> num-values`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Add",
      "desc": "Add to Pres Tree",
      "type": "Mep",
      "depict": {
        "raw": "-1 for parent-node uses current list index",
        "in": "-1 for parent-node uses current list index",
        "out": ""
      },
      "runnable": "`node-text parent-node -->`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Below(",
      "desc": "Descendant Exists Saving Id",
      "type": "Exec",
      "depict": {
        "raw": "pres-id --> below-id  has-descendant",
        "in": "pres-id",
        "out": "below-id  has-descendant"
      },
      "runnable": "`Mep._Below positive`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.CellHide",
      "desc": "Hide the Pres Tree Node",
      "type": "Exec",
      "depict": {
        "raw": "pres-index -->",
        "in": "pres-index",
        "out": ""
      },
      "runnable": "`dup true \"_Hidden\" rot Tree.)! true exch \"Hidden\" set`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.CellPics",
      "desc": "Set Cell Pictures of Pres Tree Node",
      "type": "Exec",
      "depict": {
        "raw": "normal-pic selected-pic -->",
        "in": "normal-pic selected-pic",
        "out": ""
      },
      "runnable": "`oflist _\\ \"CellPicSel\" set oflist _\\ \"CellPic\" set`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.CellPicsOf",
      "desc": "Set Cell Pictures of Pres Tree Node Indexed",
      "type": "Exec",
      "depict": {
        "raw": "pres-index normal-pic selected-pic -->",
        "in": "pres-index normal-pic selected-pic",
        "out": ""
      },
      "runnable": "`oflist third \"CellPicSel\" set oflist exch \"CellPic\" set`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Changed",
      "desc": "Mark Tree as Changed",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`\"Changed\" 0 Tree.!Mark`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Changed?",
      "desc": " Has Tree Content Changed",
      "type": "Exec",
      "depict": {
        "raw": "-->  tree-changed",
        "in": "",
        "out": "tree-changed"
      },
      "runnable": "`0 Tree._Mark length) positive`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Clear",
      "desc": "Clear Tree View",
      "type": "Mep",
      "depict": {
        "raw": "was \"Clear\" Mep.Do",
        "in": "was \"Clear\" Mep.Do",
        "out": ""
      },
      "runnable": "`-->`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Click",
      "desc": "Set the Vector for Tree Click Events",
      "type": "Exec",
      "depict": {
        "raw": "tree-vector -->",
        "in": "tree-vector",
        "out": ""
      },
      "runnable": "`quoter &\" call\" ^\"NodeClick|\" Mep.Can`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Collapse",
      "desc": "Collapse Tree Node",
      "type": "Exec",
      "depict": {
        "raw": "tree-node -->",
        "in": "tree-node",
        "out": ""
      },
      "runnable": "`false exch Tree.Expand`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Dims",
      "desc": "Dimension the Tree Window in Presentation Form",
      "type": "Exec",
      "depict": {
        "raw": "pix-x pix-y  pix-w pix-h -->",
        "in": "pix-x pix-y  pix-w pix-h",
        "out": ""
      },
      "runnable": "`perwin Mep.DimWin`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Down",
      "desc": "Cycle Down Through All Pres Tree Nodes Until Root",
      "type": "Exec",
      "depict": {
        "raw": "--> last-item -1 1",
        "in": "",
        "out": "last-item -1 1"
      },
      "runnable": "`Tree.Last -1 1`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.End?",
      "desc": "Has Index Reached End of Tree Nodes",
      "type": "Exec",
      "depict": {
        "raw": "index --> index       end-of-tree",
        "in": "index",
        "out": "index       end-of-tree"
      },
      "runnable": "`dup Tree._Listed ge`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.EndOf",
      "desc": "Is End of Siblings for Node",
      "type": "Exec",
      "depict": {
        "raw": "pres-id --> pres-id       end-of-sibs",
        "in": "pres-id",
        "out": "pres-id       end-of-sibs"
      },
      "runnable": "`Mep._Next neg(`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Expand",
      "desc": "Expand or Collapse Tree Branch",
      "type": "Exec",
      "depict": {
        "raw": "expand(True)/collapse(False) key-to-expand -->",
        "in": "expand(True)/collapse(False) key-to-expand",
        "out": ""
      },
      "runnable": "`\"Expanded\" set`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Insure",
      "desc": "Insure Tree Node Visible",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`nodekey -->`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.IsUnique",
      "desc": "Is Child of Tree Node",
      "type": "Exec",
      "depict": {
        "raw": "search-text parent-node --> [ search-text or member-key ]    is-unique  true returned if this entry is NOT among child tree nodes and therefore is unique, the search text is returned if not unique the existing member's key is returned",
        "in": "search-text parent-node",
        "out": "[ search-text or member-key ]    is-unique  true returned if this entry is NOT among child tree nodes and therefore is unique, the search text is returned if not unique the existing member's key is returned"
      },
      "runnable": "`second exch Tree.Member isnull { pop true } { pop2nd false } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Last",
      "desc": "Last Index of Tree",
      "type": "Exec",
      "depict": {
        "raw": "--> last-index",
        "in": "",
        "out": "last-index"
      },
      "runnable": "`Tree._Listed -`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.ListLoad",
      "desc": "Load Pres Tree Preset from List Directory",
      "type": "Exec",
      "depict": {
        "raw": "pres-list-root -->",
        "in": "pres-list-root",
        "out": ""
      },
      "runnable": "`any? { dup extension isnull)  {  listed  } if  Tree.Load  true \"ScrollBoth\" set } if`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.ListSave",
      "desc": "Save Pres Tree Detail Data",
      "type": "Exec",
      "depict": {
        "raw": "list-spec -->",
        "in": "list-spec",
        "out": ""
      },
      "runnable": "`any? { dup extension isnull)  {  listed  } if  Tree.Save pop } if`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Load",
      "desc": "Load Pres Tree Detail Data",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`filename -->`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.MakeRoot",
      "desc": "Make Root Node in Pres Tree",
      "type": "Exec",
      "depict": {
        "raw": "node-text -->",
        "in": "node-text",
        "out": ""
      },
      "runnable": "`\"Roots\" get { 0 Tree.!Text  0 } { -1  newnode  *makeroot } ifelse !\\ 0 \"_Level\" \\!`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Marker",
      "desc": "Get the Current Node Mark Name String",
      "type": "Exec",
      "depict": {
        "raw": "--> mark-name",
        "in": "",
        "out": "mark-name"
      },
      "runnable": "`_\\ Tree._Mark`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Member",
      "desc": "Find Child Member of Parents Siblings",
      "type": "Mep",
      "depict": {
        "raw": " member-key is empty if not member for alpha keys member-key is zero if not member for numeric keys",
        "in": "member-key is empty if not member for alpha keys member-key is zero if not member for numeric keys",
        "out": ""
      },
      "runnable": "`search-node-text parent-node --> member-key`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Member(",
      "desc": "Name Is Member of Descendants",
      "type": "Exec",
      "depict": {
        "raw": "branch-name --> [ pres-index ] if is member  is-member",
        "in": "branch-name",
        "out": "[ pres-index ] if is member  is-member"
      },
      "runnable": "`_\\ Tree.Member dupnzis`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.New(",
      "desc": "Add Pres Tree Node Yielding Id",
      "type": "Exec",
      "depict": {
        "raw": "node-text parent-node --> new-node",
        "in": "node-text parent-node",
        "out": "new-node"
      },
      "runnable": "`Tree.Add Tree._New`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.NewRoot",
      "desc": "Clear Tree and Create New Root",
      "type": "Exec",
      "depict": {
        "raw": "root-name -->",
        "in": "root-name",
        "out": ""
      },
      "runnable": "`Tree.Clear Tree.MakeRoot`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Next?",
      "desc": "Has Next Sibling of Current Node",
      "type": "Exec",
      "depict": {
        "raw": "--> next-node  end-children",
        "in": "",
        "out": "next-node  end-children"
      },
      "runnable": "`_\\ Tree.EndOf`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.NextLevel?",
      "desc": "Next Level has Member",
      "type": "Exec",
      "depict": {
        "raw": "new-hier-segment --> exists-in-level",
        "in": "new-hier-segment",
        "out": "exists-in-level"
      },
      "runnable": "`_\\ Tree.IsUnique dup not tuck { pop } { !\\ } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Off",
      "desc": "Turn Tree Events Off",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`-->`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.OfLast",
      "desc": "Get Value From Last Child Assumes Existence",
      "type": "Exec",
      "depict": {
        "raw": "val-name  pres-id --> value",
        "in": "val-name  pres-id",
        "out": "value"
      },
      "runnable": "`Tree.Below( pop Tree._ValueOf`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.On",
      "desc": "Turn Tree Events On",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`-->`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Prev(",
      "desc": "Has No Previous Sibling",
      "type": "Exec",
      "depict": {
        "raw": "pres-node --> prev-node    no-prev-node",
        "in": "pres-node",
        "out": "prev-node    no-prev-node"
      },
      "runnable": "`Mep._Prev neg(`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Prev?",
      "desc": "Has No Previous Sibling from Current Node",
      "type": "Exec",
      "depict": {
        "raw": "--> prev-node  has-no-previous",
        "in": "",
        "out": "prev-node  has-no-previous"
      },
      "runnable": "`_\\ Tree.Prev(`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Remove",
      "desc": "Remove Current Node",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`_\\ Mep.Remove`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.ReRoot",
      "desc": "Clear Tree of Non-Root Nodes and Modify Root Name",
      "type": "Exec",
      "depict": {
        "raw": "root-name -->",
        "in": "root-name",
        "out": ""
      },
      "runnable": "`0 Tree./Below Tree.MakeRoot`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Rooting",
      "desc": "Establish an Organizational Root Node",
      "type": "Exec",
      "depict": {
        "raw": "root-name -->",
        "in": "root-name",
        "out": ""
      },
      "runnable": "`dup Tree.MakeRoot !\\\\ _\\ !root`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Save",
      "desc": "Save the Pres Tree Detail Data",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`filename --> result`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Select",
      "desc": "Select Current Node",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`true _\\ Tree.!Selected`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Select)",
      "desc": "Select the Tree Node",
      "type": "Mep",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`nodekey -->`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.StdStart",
      "desc": "Start up a Presentation Form",
      "type": "Exec",
      "depict": {
        "raw": "x-perwin y-perwin w-perwin h-perwin x-per y-per w-per h-per mep-ident subform-ordinal (-1 for new slot) -->",
        "in": "x-perwin y-perwin w-perwin h-perwin x-per y-per w-per h-per mep-ident subform-ordinal (-1 for new slot)",
        "out": ""
      },
      "runnable": "`Tree.Subform Tree.TreeInit Tree.Dims`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Subform",
      "desc": "Create Subform with Presentation Tree",
      "type": "Exec",
      "depict": {
        "raw": "x-per y-per w-per h-per mep-ident mep-ordinal -->  presentation tree file exists as face\\tlist\\mep-ident.tlt",
        "in": "x-per y-per w-per h-per mep-ident mep-ordinal",
        "out": "presentation tree file exists as face\\tlist\\mep-ident.tlt"
      },
      "runnable": "`this) Mep.!Mep \"StdTree\" App.SubOn perscreen App.DimSub`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Tier>1",
      "desc": "Current Node Lower than First Tier",
      "type": "Exec",
      "depict": {
        "raw": "--> second-or-more-tier",
        "in": "",
        "out": "second-or-more-tier"
      },
      "runnable": "`_\\ unwhole { false } { Tree._Parent positive } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Tier>2",
      "desc": "Current Node Lower than Second Tier",
      "type": "Exec",
      "depict": {
        "raw": "--> third-or-more-tier",
        "in": "",
        "out": "third-or-more-tier"
      },
      "runnable": "`_\\ unwhole { false } { Tree._Parent Mep._Above positive } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Tier1",
      "desc": "Current Node in First Tier",
      "type": "Exec",
      "depict": {
        "raw": "-->  first-tier",
        "in": "",
        "out": "first-tier"
      },
      "runnable": "`_\\ unwhole { false } { Tree._Parent zero } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Tier2",
      "desc": "Current Node in Second Tier",
      "type": "Exec",
      "depict": {
        "raw": "-->  second-tier",
        "in": "",
        "out": "second-tier"
      },
      "runnable": "`_\\ unwhole { false } { Tree._Parent Mep._Above zero } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.TreeInit",
      "desc": "Standard Pres Tree Initialize",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`1 \"DefRtf\" set _TLSYS_ENUM \"Indexing\" set 2 false false \"Expanding\" set false \"ShowHidden\" set`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Unchanged",
      "desc": "Mark the Task Tree as Unchanged",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`\"Default\" 0 Tree.!Mark`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Tree.Up",
      "desc": "Cycle Through All Pres Tree Nodes Beyond Root",
      "type": "Exec",
      "depict": {
        "raw": "-->  1 1 last-item",
        "in": "",
        "out": "1 1 last-item"
      },
      "runnable": "`1 1 Tree.Last`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "trimleft",
      "desc": "Trim String and Token From Left",
      "type": "Exec",
      "depict": {
        "raw": "orig-str  left-part --> right-part",
        "in": "orig-str  left-part",
        "out": "right-part"
      },
      "runnable": "`length) + fromleft`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "twips",
      "desc": "Convert Twips to Pixels",
      "type": "Exec",
      "depict": {
        "raw": "twips --> pixels",
        "in": "twips",
        "out": "pixels"
      },
      "runnable": "`_TwipsPerPixel normreal div normint`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "unbracket",
      "desc": "Get String from Within Brackets",
      "type": "Exec",
      "depict": {
        "raw": "string --> bracketed-string",
        "in": "string",
        "out": "bracketed-string"
      },
      "runnable": "`\"[\" 1 1 1 parse \"]\" 0 1 1 parse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "underhyphen",
      "desc": "Change all Underlines to Hyphens",
      "type": "Exec",
      "depict": {
        "raw": "string --> adj-string",
        "in": "string",
        "out": "adj-string"
      },
      "runnable": "`\"_\" \"-\" replall`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "underspc",
      "desc": "Spaces to Underline",
      "type": "Exec",
      "depict": {
        "raw": "str-to-check --> result-str",
        "in": "str-to-check",
        "out": "result-str"
      },
      "runnable": "`\" \" \"_\" replall`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "unlist",
      "desc": "Remove List Items From Stack Till Null",
      "type": "Exec",
      "depict": {
        "raw": "empty [ item . . . ] -->",
        "in": "empty [ item . . . ]",
        "out": ""
      },
      "runnable": "`{ isnull ? pop } loop pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "unselect",
      "desc": "Negate Any Selection for Subform",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`-1 select`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "unselected",
      "desc": "No Current Selection",
      "type": "Exec",
      "depict": {
        "raw": "--> no-sel",
        "in": "",
        "out": "no-sel"
      },
      "runnable": "`selected negative`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "unverse",
      "desc": "Build Dotted Version String from Numeric Version String",
      "type": "Exec",
      "depict": {
        "raw": "vers-numeric  len-ver --> vers-dotted",
        "in": "vers-numeric  len-ver",
        "out": "vers-dotted"
      },
      "runnable": "`empty rot { isnull ?  dup fourth left  0 add 36 base  rot isnull not { &\".\" } if  ^ exch  third fromleft } loop pop1&3 `",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "unwhole",
      "desc": "Check Number Not Whole",
      "type": "Exec",
      "depict": {
        "raw": "number --> not-whole",
        "in": "number",
        "out": "not-whole"
      },
      "runnable": "`0 le`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.!",
      "desc": "Send Native Browser Code",
      "type": "Exec",
      "depict": {
        "raw": "code-string -->",
        "in": "code-string",
        "out": ""
      },
      "runnable": "`\"Syncer\" do`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.!)",
      "desc": "Trailer and Synchronize",
      "type": "Exec",
      "depict": {
        "raw": "web-script -->",
        "in": "web-script",
        "out": ""
      },
      "runnable": "`&\");\" Url.!`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.!AlfVal",
      "desc": "Set the Field with Special Character Formatting",
      "type": "Exec",
      "depict": {
        "raw": "value-name data-value -->",
        "in": "value-name data-value",
        "out": ""
      },
      "runnable": "`Str.Cspec exch \"value\" Url.AlfSync`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.!Field",
      "desc": "Store Value in Browser Field",
      "type": "Exec",
      "depict": {
        "raw": "value-name field-id -->",
        "in": "value-name field-id",
        "out": ""
      },
      "runnable": "`exch _ Url.!AlfVal`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.!Opt",
      "desc": "String to Add Item to List Box or DropDown",
      "type": "Exec",
      "depict": {
        "raw": "display-name value list-index object-name --> browser-command  zero-based list",
        "in": "display-name value list-index object-name",
        "out": "browser-command  zero-based list"
      },
      "runnable": "`dup Url.OfAll &\".options(\" &3 &\").text=unescape(\" pull5th escape squocat &\");\" exch Url.OfAll & \".options(\" catpref &\").value=unescape(\" exch escape squocat &\");\"`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.!Opt0",
      "desc": "Add First Item to List Box or DropDown",
      "type": "Exec",
      "depict": {
        "raw": "display-name value object-name -->",
        "in": "display-name value object-name",
        "out": ""
      },
      "runnable": "`0 exch Url.!Option`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.!Option",
      "desc": "Add Item to List Box or DropDown",
      "type": "Exec",
      "depict": {
        "raw": "display-name value list-index object-name -->  zero-based list",
        "in": "display-name value list-index object-name",
        "out": "zero-based list"
      },
      "runnable": "`Url.!Opt Url.!`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.!Options",
      "desc": "Set the Number of Options in DropDown or List",
      "type": "Exec",
      "depict": {
        "raw": "number-of-options object-name -->",
        "in": "number-of-options object-name",
        "out": ""
      },
      "runnable": "`Url.!Opts Url.!`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.!Opts",
      "desc": "String to Set the Number of Options in DropDown or List",
      "type": "Exec",
      "depict": {
        "raw": "number-of-options object-name --> browser-command",
        "in": "number-of-options object-name",
        "out": "browser-command"
      },
      "runnable": "`&\".options.length = \" ^ &\";\" Url.OfAll`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.!PageH",
      "desc": "Set the Physical Browser Horizontal Visible Panel",
      "type": "Exec",
      "depict": {
        "raw": "ordinal-horiz -->  zero is leftmost",
        "in": "ordinal-horiz",
        "out": "zero is leftmost"
      },
      "runnable": "`normint _Vid.DevX mul dup _Vid.DevX add 100 add pixels \"DimWidth\" do pixels minus \"DimLeft\" do`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.!PageV",
      "desc": "Set the Physical Browser Vertical Visible Panel",
      "type": "Exec",
      "depict": {
        "raw": "ordinal-panel -->  zero is leftmost",
        "in": "ordinal-panel",
        "out": "zero is leftmost"
      },
      "runnable": "`normint _Vid.DevY mul dup _Vid.DevY add 100 add pixels \"DimHeight\" do pixels minus \"DimTop\" do`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.!Setting",
      "desc": "Set Field from Page Profile",
      "type": "Exec",
      "depict": {
        "raw": "value-name field-ident -->",
        "in": "value-name field-ident",
        "out": ""
      },
      "runnable": "`exch _ Url.!AlfVal`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.!Value",
      "desc": "Set Value Direct",
      "type": "Exec",
      "depict": {
        "raw": "value control-name -->",
        "in": "value control-name",
        "out": ""
      },
      "runnable": "`exch escape squoter ^\"unescape(\" &\")\" exch \".value=\" catpref &\";\" Url.OfAll Url.!`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.!Visibility",
      "desc": "Set Visibility of Object",
      "type": "Exec",
      "depict": {
        "raw": "visibility objname -->",
        "in": "visibility objname",
        "out": ""
      },
      "runnable": "`&\".style.visibility\" exch Url.PostSync`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.&Data",
      "desc": "Append Data Field Set",
      "type": "Exec",
      "depict": {
        "raw": "build-str value  field-name --> buils-str",
        "in": "build-str value  field-name",
        "out": "buils-str"
      },
      "runnable": "`*fieldset &`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.&Esc",
      "desc": "Append Escaped Field Setting",
      "type": "Exec",
      "depict": {
        "raw": "field-summation value-name field-id --> field-summation",
        "in": "field-summation value-name field-id",
        "out": "field-summation"
      },
      "runnable": "`exch _ escape exch \"value\" ^\".\" & exch squoter ^\"unescape(\" &\")\" ^\"=\" & &\";\" Url.OfAll &`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.&Field",
      "desc": "Append Field Setting",
      "type": "Exec",
      "depict": {
        "raw": "field-summation value-name field-id --> field-summation",
        "in": "field-summation value-name field-id",
        "out": "field-summation"
      },
      "runnable": "`exch _ Str.Cspec exch \"value\" ^\".\" & exch escape squoter ^\"unescape(\" &\")\" ^\"=\" & &\";\" Url.OfAll &`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.&Val",
      "desc": "Append Escaped Value Setting",
      "type": "Exec",
      "depict": {
        "raw": "field-summation value field-id --> field-summation",
        "in": "field-summation value field-id",
        "out": "field-summation"
      },
      "runnable": "`exch escape exch \"value\" ^\".\" & exch squoter ^\"unescape(\" &\")\" ^\"=\" & &\";\" Url.OfAll &`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.(esc)",
      "desc": "Enclose Escaped Parameter in Javascript Function",
      "type": "Exec",
      "depict": {
        "raw": "param  func --> enclosed",
        "in": "param  func",
        "out": "enclosed"
      },
      "runnable": "`exch escdquoter ^\"(\" & \");\" catcatcr`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.@Event",
      "desc": "Establish Mep of Event Source",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`Mep._Event \"url@ev \" log() !@`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url._Hwnd",
      "desc": "Window Handle of Current Browser Form",
      "type": "Exec",
      "depict": {
        "raw": "--> url-hwnd",
        "in": "",
        "out": "url-hwnd"
      },
      "runnable": "`Mep._FormHwnd`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url._Visibility",
      "desc": "Get Visibility of Object",
      "type": "Exec",
      "depict": {
        "raw": "object-name -->",
        "in": "object-name",
        "out": ""
      },
      "runnable": "`Url.DocGlobal \"style\" do \"visibility\" get`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.Accept",
      "desc": "Browser Data Accept",
      "type": "Exec",
      "depict": {
        "raw": "data  page-name -->",
        "in": "data  page-name",
        "out": ""
      },
      "runnable": "`*accepted`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.AlfSync",
      "desc": "Alpha Setting to Object Within Document",
      "type": "Exec",
      "depict": {
        "raw": "string object setting-name -->",
        "in": "string object setting-name",
        "out": ""
      },
      "runnable": "`^\".\" & exch Url.PostSync`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.BrowDim",
      "desc": "Dimension the SubForm Browser",
      "type": "Exec",
      "depict": {
        "raw": "x y w h -->",
        "in": "x y w h",
        "out": ""
      },
      "runnable": "`2 copy 6 2 roll App.DimSub 0 0 4 2 roll 4 copy Mep.DimWin exch 1.02 mul normint exch 1.02 mul normint \"Dim\" do`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.ExecStatus",
      "desc": "Respond to Embedded Status Command",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`_Url.Value execstr`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.Navigate",
      "desc": "Navigate Url",
      "type": "Exec",
      "depict": {
        "raw": "url flags target -->  url: A string expression that evaluates to the URL, full path, or Universal Naming Convention (UNC) location and name of the resource to display.   flags: use nav* values  target: _blank  Load the link into a new unnamed window.  _parent  Load the link into the immediate parent of the document the link is in.  _self  Load the link into the same window the link was clicked in.  _top  Load the link into the full body of the current window.  <window_name>  A named HTML frame. If no frame or window exists that matches the specified target name, a new window is opened for the specified link.",
        "in": "url flags target",
        "out": "url: A string expression that evaluates to the URL, full path, or Universal Naming Convention (UNC) location and name of the resource to display.   flags: use nav* values  target: _blank  Load the link into a new unnamed window.  _parent  Load the link into the immediate parent of the document the link is in.  _self  Load the link into the same window the link was clicked in.  _top  Load the link into the full body of the current window.  <window_name>  A named HTML frame. If no frame or window exists that matches the specified target name, a new window is opened for the specified link."
      },
      "runnable": "`\"Navigate\" do`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.OfAll",
      "desc": "Prefix Object Name with All in Document",
      "type": "Exec",
      "depict": {
        "raw": "object-name --> abs-doc-addressing",
        "in": "object-name",
        "out": "abs-doc-addressing"
      },
      "runnable": "`^\"document.all.\"`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.PageName",
      "desc": "Obtain Root Page Name of Url",
      "type": "Exec",
      "depict": {
        "raw": "page-url --> root-page-name",
        "in": "page-url",
        "out": "root-page-name"
      },
      "runnable": "`\"/\" Str.RevRight fileroot`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.Pager",
      "desc": "Track Returned Data from Page",
      "type": "Exec",
      "depict": {
        "raw": "returned-data page-title --> page-title",
        "in": "returned-data page-title",
        "out": "page-title"
      },
      "runnable": "`underspc exch !Ent.ExitData dup !Ent.Page`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.PostSync",
      "desc": "Synchronization Final Step",
      "type": "Exec",
      "depict": {
        "raw": "obj-name value -->",
        "in": "obj-name value",
        "out": ""
      },
      "runnable": "`escape squoter ^\"unescape(\" &\")\" ^\"=\" & &\";\" Url.OfAll Url.!`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.ReDim",
      "desc": "Dimension the Browser Window with Scrollbars",
      "type": "Exec",
      "depict": {
        "raw": "x-per y-per w-per h-per -->",
        "in": "x-per y-per w-per h-per",
        "out": ""
      },
      "runnable": "`perscreen 2 copy 6 2 roll App.DimSub 0 0 4 2 roll 4 copy Mep.DimWin \"Dim\" Mep.Do`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.Seen",
      "desc": "Set Visibility of Object",
      "type": "Exec",
      "depict": {
        "raw": "visible-setting object -->",
        "in": "visible-setting object",
        "out": ""
      },
      "runnable": "`\"style.visibility\" Url.AlfSync`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.Submit",
      "desc": "Submit Form in Browser",
      "type": "Exec",
      "depict": {
        "raw": "form-ident -->",
        "in": "form-ident",
        "out": ""
      },
      "runnable": "`^\"document.forms[\" &\"].submit();\" Url.!`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Url.ToPixels",
      "desc": "Convert Browser Unit-Stamped Coordinate",
      "type": "Exec",
      "depict": {
        "raw": "url-coord --> pix-coord",
        "in": "url-coord",
        "out": "pix-coord"
      },
      "runnable": "`\"px\" remove`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "usepath",
      "desc": "Prefix Filename With Path of Other File",
      "type": "Exec",
      "depict": {
        "raw": "filename  pathed-string --> pathed-filename",
        "in": "filename  pathed-string",
        "out": "pathed-filename"
      },
      "runnable": "`pathonly ^`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "valset",
      "desc": "Make Exec String for Setting Variable",
      "type": "Exec",
      "depict": {
        "raw": "val-name --> exec-val",
        "in": "val-name",
        "out": "exec-val"
      },
      "runnable": "`dup _ quoter \" !\" catpref`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "vec",
      "desc": "Format a Downstream Vector with No Parameter",
      "type": "Exec",
      "depict": {
        "raw": "vector --> downstream-command",
        "in": "vector",
        "out": "downstream-command"
      },
      "runnable": "`^\"*\" catcr`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "vec(",
      "desc": "Push Command to Survey Post",
      "type": "Exec",
      "depict": {
        "raw": "tem-command -->",
        "in": "tem-command",
        "out": ""
      },
      "runnable": "`vec Stack.=Nucleus Stack.(`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "vec)",
      "desc": "Push Command to Survey Bottom",
      "type": "Exec",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "`vec Stack.=Nucleus Stack.)`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "vector()",
      "desc": "Vector to Owner for Processing with Filter",
      "type": "Exec",
      "depict": {
        "raw": "filter  vector -->",
        "in": "filter  vector",
        "out": ""
      },
      "runnable": "`*invector`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "vend(",
      "desc": "Push Vector Command to Closure Post",
      "type": "Exec",
      "depict": {
        "raw": "vector -->",
        "in": "vector",
        "out": ""
      },
      "runnable": "`^\"*\" end(`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "vend)",
      "desc": "Push Vector Command to Closure Pre",
      "type": "Exec",
      "depict": {
        "raw": "vector -->",
        "in": "vector",
        "out": ""
      },
      "runnable": "`^\"*\" end)`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "verse",
      "desc": "Create Versioning Left-Filled Numeric",
      "type": "Exec",
      "depict": {
        "raw": "dotted-version   min-len -->number-string",
        "in": "dotted-version   min-len",
        "out": "number-string"
      },
      "runnable": "`empty rot 5 countup { dup2nd \".\" exch - 1 1 parse  isnull  {  pop  }  {  -16 base   fourth prezero pre3rd) exch  } ifelse } for pop1&3`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "when",
      "desc": "Notify Desk of Event in Run Tree",
      "type": "Exec",
      "depict": {
        "raw": "base-event  cmd-mode -prop   proc -->",
        "in": "base-event  cmd-mode -prop   proc",
        "out": ""
      },
      "runnable": "`empty exch desk cls/ &2 cls base( &3) ^ base)`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "whole",
      "desc": "Is Greater Than Zero or Equal",
      "type": "Exec",
      "depict": {
        "raw": "number --> is-whole-number",
        "in": "number",
        "out": "is-whole-number"
      },
      "runnable": "`0 ge`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.ClassCheck",
      "desc": "Check for App Class Exists",
      "type": "Exec",
      "depict": {
        "raw": "window-class --> win-handle  handle is zero if did not occur",
        "in": "window-class",
        "out": "win-handle  handle is zero if did not occur"
      },
      "runnable": "`0 Win.DeskClassed`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.Closer",
      "desc": "Close Window if Exists",
      "type": "Exec",
      "depict": {
        "raw": "window-name --> close-result",
        "in": "window-name",
        "out": "close-result"
      },
      "runnable": "`Win.Identify { pop2 Win.Close } if`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.DeskNext",
      "desc": "Get the Next Child Window of Desktop if Exists",
      "type": "Exec",
      "depict": {
        "raw": "prev-child-win --> next-child-win  no-next-child",
        "in": "prev-child-win",
        "out": "next-child-win  no-next-child"
      },
      "runnable": "`0 exch Win.Child dup zero`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.DeskOwning",
      "desc": "List Desktop Windows Owned by Specific Window",
      "type": "Exec",
      "depict": {
        "raw": "owner-window-handle --> zero [ win handles . . ]",
        "in": "owner-window-handle",
        "out": "zero [ win handles . . ]"
      },
      "runnable": "`0 exch 0 { Win.Desk dupnznot ?  dup _GW_OWNER Win.Relate  third eq { to3rd } if } loop pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.Detect",
      "desc": "Does Window Exist",
      "type": "Exec",
      "depict": {
        "raw": "window-name --> exists",
        "in": "window-name",
        "out": "exists"
      },
      "runnable": "`Win.Names pop length) nonzero`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.Factors",
      "desc": "Set Video Window Factors",
      "type": "Exec",
      "depict": {
        "raw": "rgb-win-hwnd chr-win-hwnd mor-win-hwnd -->",
        "in": "rgb-win-hwnd chr-win-hwnd mor-win-hwnd",
        "out": ""
      },
      "runnable": "`_WM_VCAP_HANDLE_MORPH exch Win.Vmsg _WM_VCAP_HANDLE_CHROMA exch Win.Vmsg _WM_VCAP_HANDLE_RGB exch Win.Vmsg`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.FocusTop",
      "desc": "Bring Window to Top With Focus",
      "type": "Exec",
      "depict": {
        "raw": "window-handle -->",
        "in": "window-handle",
        "out": ""
      },
      "runnable": "`dup Win.ToTop Win.Focus`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.ForceNon",
      "desc": "Window Not Topmost",
      "type": "Exec",
      "depict": {
        "raw": "win-hand -->",
        "in": "win-hand",
        "out": ""
      },
      "runnable": "`_HWND_NOTOPMOST 0 0 0 0 _SWP_NOMOVE _SWP_NOSIZE or Win.Position pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.ForceOrder",
      "desc": "Force the Order of Top Level Windows",
      "type": "Exec",
      "depict": {
        "raw": "[ window-handles ] number-handles --> [ window-handles ]      number-handles      reorder-windows",
        "in": "[ window-handles ] number-handles",
        "out": "[ window-handles ]      number-handles      reorder-windows"
      },
      "runnable": "`0 APPhwnd _GW_HWNDFIRST Win.Relate { dup zero ?  0 1 fifth -  {  dup 4 add index   third eq   { third ^\" check \" ^2 third Win.Caption ^ logs    third eq    {    incr2nd    }    {    pop2nd -1 exch    } ifelse    true   }   {   pop    false   } ifelse   ?  } for  second negative ?  third third eq ?  _GW_HWNDNEXT Win.Relate } loop pop negative`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.ForceTop",
      "desc": "Force Window to Top",
      "type": "Exec",
      "depict": {
        "raw": "win-handle -->",
        "in": "win-handle",
        "out": ""
      },
      "runnable": "`_HWND_TOPMOST 0 0 0 0 _SWP_NOMOVE _SWP_NOSIZE or Win.Position pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.Handle",
      "desc": "Get Handle of Window from Partial Identity",
      "type": "Exec",
      "depict": {
        "raw": "partial-win-name --> handle  handle is zero if no match",
        "in": "partial-win-name",
        "out": "handle  handle is zero if no match"
      },
      "runnable": "`Win.Identify { pop2 } { 0 } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.Hide",
      "desc": "Hide the Specified Window",
      "type": "Exec",
      "depict": {
        "raw": "win-hand -->",
        "in": "win-hand",
        "out": ""
      },
      "runnable": "`dupnzis { _SW_HIDE exch Win.Show pop } if`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.Identify",
      "desc": "Identify Window Main Characteristics",
      "type": "Exec",
      "depict": {
        "raw": "partial-name --> [ handle ]        optional items included  if window exists      [ full-name ]      [ class ]     exists",
        "in": "partial-name",
        "out": "[ handle ]        optional items included  if window exists      [ full-name ]      [ class ]     exists"
      },
      "runnable": "`0 exch 0 Win.Named dup Win.Caption second Win.Class isnull { pop3  false } { true } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.Max",
      "desc": "Maximize if Valid Handle",
      "type": "Exec",
      "depict": {
        "raw": "win-handle -->",
        "in": "win-handle",
        "out": ""
      },
      "runnable": "`dupnz { _WM_SYSCOMMAND  _SC_MAXIMIZE  0  Win.Message pop } if`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.Min",
      "desc": "Minimize if Handle Non-Zero",
      "type": "Exec",
      "depict": {
        "raw": "win-handle -->",
        "in": "win-handle",
        "out": ""
      },
      "runnable": "`dupnz { _WM_SYSCOMMAND  _SC_MINIMIZE  0  Win.Message pop } if`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.Names",
      "desc": "Window Name and Class Name",
      "type": "Exec",
      "depict": {
        "raw": "basic-window-name --> exact-name win-class-name",
        "in": "basic-window-name",
        "out": "exact-name win-class-name"
      },
      "runnable": "`0 exch 0 Win.Named dup Win.Caption exch Win.Class`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.NotSeqd",
      "desc": "Windows Not Top Sequenced",
      "type": "Exec",
      "depict": {
        "raw": "[ window-handles ] number-windows --> [ window-handles ]   number-windows",
        "in": "[ window-handles ] number-windows",
        "out": "[ window-handles ]   number-windows"
      },
      "runnable": "`dup - -1 0 { + index Win.NotTop } for`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.NotTop",
      "desc": "Window is Not Topmost",
      "type": "Exec",
      "depict": {
        "raw": "win-handle -->",
        "in": "win-handle",
        "out": ""
      },
      "runnable": "`_HWND_NOTOPMOST 0 0 0 0 _SWP_NOMOVE _SWP_NOSIZE or Win.Position pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.Paste",
      "desc": "Send Paste Window Message",
      "type": "Exec",
      "depict": {
        "raw": "window-handle -->",
        "in": "window-handle",
        "out": ""
      },
      "runnable": "`dupnz { _WM_PASTE  0  0  Win.Message pop } if`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.PosNotTop",
      "desc": "Position to Non Topmost Window",
      "type": "Exec",
      "depict": {
        "raw": "win-handle win-x1 win-y1 win-width win-height -->  units in pixels",
        "in": "win-handle win-x1 win-y1 win-width win-height",
        "out": "units in pixels"
      },
      "runnable": "`_HWND_NOTOPMOST push5th 0 Win.Position pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.PosTop",
      "desc": "Bring Window To Top at Position",
      "type": "Exec",
      "depict": {
        "raw": "win-handle win-x1 win-y1 win-width win-height -->  units in pixels",
        "in": "win-handle win-x1 win-y1 win-width win-height",
        "out": "units in pixels"
      },
      "runnable": "`_HWND_TOP push5th 0 Win.Position pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.PosTopmost",
      "desc": "Position to Topmost Window",
      "type": "Exec",
      "depict": {
        "raw": "win-handle win-x1 win-y1 win-width win-height -->  units in pixels",
        "in": "win-handle win-x1 win-y1 win-width win-height",
        "out": "units in pixels"
      },
      "runnable": "`_HWND_TOPMOST push5th 0 Win.Position pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.Restore",
      "desc": "Restore Window to Last Known Position",
      "type": "Exec",
      "depict": {
        "raw": "win-handle -->",
        "in": "win-handle",
        "out": ""
      },
      "runnable": "`dupnz { _WM_SYSCOMMAND  _SC_RESTORE  0  Win.Message pop } if`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.RollDown",
      "desc": "Roll Down the Active Window",
      "type": "Exec",
      "depict": {
        "raw": "win-handle -->",
        "in": "win-handle",
        "out": ""
      },
      "runnable": "`Win.Active dup Win.Rect pop3rd _App.Height .60 mul tuck Win.PosTop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.RollIn",
      "desc": "Roll Window Onto Screen",
      "type": "Exec",
      "depict": {
        "raw": "win-handle -->",
        "in": "win-handle",
        "out": ""
      },
      "runnable": "`  0 0 _App.TpixelX _App.TpixelY  0 push5th  0  Win.Position pop `",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.RollOut",
      "desc": "Roll Window Off Screen",
      "type": "Exec",
      "depict": {
        "raw": "win-handle -->",
        "in": "win-handle",
        "out": ""
      },
      "runnable": "` 0 _App.TpixelY _App.TpixelX _App.TpixelY 0 push5th 0 Win.Position pop `",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.Size",
      "desc": "Specifically Size a Window",
      "type": "Exec",
      "depict": {
        "raw": "win-handle -->",
        "in": "win-handle",
        "out": ""
      },
      "runnable": "`dupnz { _WM_SYSCOMMAND  _SC_MAXIMIZE  0  Win.Message pop } if`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.TallyOrder",
      "desc": "Tally Window Order",
      "type": "Exec",
      "depict": {
        "raw": "[ window-handles ] number-handles --> [ window-handles ]      number-handles",
        "in": "[ window-handles ] number-handles",
        "out": "[ window-handles ]      number-handles"
      },
      "runnable": "`0 APPhwnd _GW_HWNDFIRST Win.Relate { dup zero ?  0 1 fifth -  {  dup 4 add index   third eq   { third ^\" check \" ^2 third Win.Caption ^ logs    ^\"Win.T\" third + exch !    incr2nd    true   }   {   pop    false   } ifelse   ?  } for  third third eq ?  _GW_HWNDNEXT Win.Relate } loop pop2`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.TopClass",
      "desc": "Get Next Window of Class",
      "type": "Exec",
      "depict": {
        "raw": "prev-child -->[ caption ]      next-handle      next-exists",
        "in": "prev-child",
        "out": "[ caption ]      next-handle      next-exists"
      },
      "runnable": "`_W.Class exch Win.DeskClassed dup Win.Caption isnull { pop  false } { exch  true } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.TopDesk",
      "desc": "List Desktop Window Handles",
      "type": "Exec",
      "depict": {
        "raw": "start-win-handle --> [ caption         class ] if has caption     next-handle      has-caption",
        "in": "start-win-handle",
        "out": "[ caption         class ] if has caption     next-handle      has-caption"
      },
      "runnable": "`Win.Desk dup Win.Caption isnull { pop  false } { exdup Win.Class exch  true } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.Topper(",
      "desc": "Focus and Make Top Window Name Yielding Handle",
      "type": "Exec",
      "depict": {
        "raw": "window-name --> handle",
        "in": "window-name",
        "out": "handle"
      },
      "runnable": "`Win.Identify { pop2  dup Win.ToTop  dup Win.Activate } { 0 } ifelse`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.TopPosApp",
      "desc": "Position App to Top at Percent Location of Screen",
      "type": "Exec",
      "depict": {
        "raw": "win-handle app-per-x app-per-y app-per-w app-per-h -->",
        "in": "win-handle app-per-x app-per-y app-per-w app-per-h",
        "out": ""
      },
      "runnable": "`perscreen _HWND_TOPMOST push5th 0 Win.Position pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.TopSurface",
      "desc": "Surface the Window As Topmost Then Non",
      "type": "Exec",
      "depict": {
        "raw": "window-handle -->",
        "in": "window-handle",
        "out": ""
      },
      "runnable": "`dup Win.FocusTop Win.ForceNon`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Win.ToTop",
      "desc": "Bring Window to Top Without Positioning",
      "type": "Exec",
      "depict": {
        "raw": "window-handle -->",
        "in": "window-handle",
        "out": ""
      },
      "runnable": "`_HWND_TOP 0 0 0 0 _SWP_NOMOVE _SWP_NOSIZE or Win.Position pop`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "within",
      "desc": "Position of String Within Another String",
      "type": "Exec",
      "depict": {
        "raw": "search-str str-to-find --> search-str  pos-found",
        "in": "search-str str-to-find",
        "out": "search-str  pos-found"
      },
      "runnable": "`second Str.Find`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "within(?",
      "desc": "Is String Within Another String wiith Position",
      "type": "Exec",
      "depict": {
        "raw": "search-str str-to-find --> search-str  [ position ] if found is true   found",
        "in": "search-str str-to-find",
        "out": "search-str  [ position ] if found is true   found"
      },
      "runnable": "`within dupnzis`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "within?",
      "desc": "Is String Within Another String",
      "type": "Exec",
      "depict": {
        "raw": "search-str str-to-find --> search-str   found",
        "in": "search-str str-to-find",
        "out": "search-str   found"
      },
      "runnable": "`within positive`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "writebin",
      "desc": "Write Text to File in Bin",
      "type": "Exec",
      "depict": {
        "raw": "file-text  file-spec -->",
        "in": "file-text  file-spec",
        "out": ""
      },
      "runnable": "`ofbin write`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "writetxt",
      "desc": "zzzWrite a Text File Version of Filename",
      "type": "Exec",
      "depict": {
        "raw": "write-data filename -->  filename can have any extension",
        "in": "write-data filename",
        "out": "filename can have any extension"
      },
      "runnable": "`retext ofpath write`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "xml((",
      "desc": "Add Child Node of Current Node",
      "type": "Exec",
      "depict": {
        "raw": "child-name -->",
        "in": "child-name",
        "out": ""
      },
      "runnable": "`\"xml((\" vector()`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "xml()",
      "desc": "XML Text Block",
      "type": "Exec",
      "depict": {
        "raw": "text-content -->",
        "in": "text-content",
        "out": ""
      },
      "runnable": "`\"xml()\" vector()`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "xml(desc)",
      "desc": "XML Comments",
      "type": "Exec",
      "depict": {
        "raw": "comments -->",
        "in": "comments",
        "out": ""
      },
      "runnable": "`\"xml(desc)\" vector()`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "xml(pi)",
      "desc": "XML Processing Instructions",
      "type": "Exec",
      "depict": {
        "raw": "proc-instr -->",
        "in": "proc-instr",
        "out": ""
      },
      "runnable": "`\"xml(pi)\" vector()`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "xml)",
      "desc": "Absorb Attributes into Current Node",
      "type": "Exec",
      "depict": {
        "raw": "[ aval attr . . . ] count --> count is pairs of attr/values",
        "in": "[ aval attr . . . ] count",
        "out": "count is pairs of attr/values"
      },
      "runnable": "`\"xml)\" vector()`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "xml)(",
      "desc": "Other XML Block",
      "type": "Exec",
      "depict": {
        "raw": "other-block  other-type -->",
        "in": "other-block  other-type",
        "out": ""
      },
      "runnable": "`\"xml)(\" vector()`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "xml))",
      "desc": "Return to Parent Level",
      "type": "Exec",
      "depict": {
        "raw": "parent -->",
        "in": "parent",
        "out": ""
      },
      "runnable": "`\"xml))\" vector()`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "xml*(",
      "desc": "Root XML Declaration",
      "type": "Exec",
      "depict": {
        "raw": "raw-xml-string root-name -->",
        "in": "raw-xml-string root-name",
        "out": ""
      },
      "runnable": "`\"xml*(\" vector()`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "xml*)",
      "desc": "End of XML Exec",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "`\"xml*)\" vector()`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Xml.Append",
      "desc": "Append Data to Xml File",
      "type": "Exec",
      "depict": {
        "raw": "new-data -->",
        "in": "new-data",
        "out": ""
      },
      "runnable": "`_Xml.Writer append`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Xml.Derr",
      "desc": "Problem with Xml Parse Dance",
      "type": "Exec",
      "depict": {
        "raw": "error-info -->",
        "in": "error-info",
        "out": ""
      },
      "runnable": "`!Xml.Derr *xmlderor`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Xml.Error",
      "desc": "Xml Parsing Problem Messaged",
      "type": "Exec",
      "depict": {
        "raw": "error-info -->",
        "in": "error-info",
        "out": ""
      },
      "runnable": "`!Xml.Err *xmlerror`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Xml.Item",
      "desc": "Add Xml Item to String",
      "type": "Exec",
      "depict": {
        "raw": "build-string item-prefix item-data item-suffix --> build-string",
        "in": "build-string item-prefix item-data item-suffix",
        "out": "build-string"
      },
      "runnable": "`catcat Xml.Append`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Xml.Line",
      "desc": "Add Line Single Item",
      "type": "Exec",
      "depict": {
        "raw": "build-string single-item --> build-string",
        "in": "build-string single-item",
        "out": "build-string"
      },
      "runnable": "`Xml.Append`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Xml.WriteClose",
      "desc": "Close Xml Output File",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "``",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Xml.WriteOpen",
      "desc": "Start New Xml Output File",
      "type": "Exec",
      "depict": {
        "raw": "xml-file -->",
        "in": "xml-file",
        "out": ""
      },
      "runnable": "`dup !Xml.Writer File.Delete`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "xmlit",
      "desc": "Convert XML String Into Dance Exec",
      "type": "Exec",
      "depict": {
        "raw": "xml-string --> dance-xml-exec",
        "in": "xml-string",
        "out": "dance-xml-exec"
      },
      "runnable": "`\"XmlDance\" dance`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "zero",
      "desc": "Equal to Zero",
      "type": "Exec",
      "depict": {
        "raw": "number --> equal-to-zero",
        "in": "number",
        "out": "equal-to-zero"
      },
      "runnable": "`0 eq`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "zeronull",
      "desc": "Substitute Zero (or False) if No Length",
      "type": "Exec",
      "depict": {
        "raw": "string --> string or zero [if no length to string]",
        "in": "string",
        "out": "string or zero [if no length to string]"
      },
      "runnable": "`isnull { pop 0 } if`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "zeronull?",
      "desc": "Substitute Zero (or False) if No Length Check for Zero",
      "type": "Exec",
      "depict": {
        "raw": "number-or-null --> zero-value",
        "in": "number-or-null",
        "out": "zero-value"
      },
      "runnable": "`zeronull zero`",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "revsliceat",
      "desc": "Slice String at Number of Token Matches from End",
      "type": "Exec",
      "depict": {
        "raw": "str token count --> str-left str-right",
        "in": "str token count",
        "out": "str-left str-right"
      },
      "runnable": "\"tuck reverse exch reverse exch rot sliceat reverse exch reverse\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "looker",
      "desc": "Prep Lookup Name With Parentheses",
      "type": "Exec",
      "depict": {
        "raw": "raw-lookup --> preped-looker",
        "in": "raw-lookup",
        "out": "preped-looker"
      },
      "runnable": "\"Str.NoSpaces parens\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "ordlookup",
      "desc": "Create Ordinated Lookup List from Stack Items",
      "type": "Exec",
      "depict": {
        "raw": "[ . . . ] count --> ord-lookup",
        "in": "[ . . . ] count",
        "out": "ord-lookup"
      },
      "runnable": "' empty exch countdown { dup + + -1 roll dup ^\"|(\" &\") \" third - & &\" \" &\"|\" rot - & &\" \" exch quoter & catcatcr } for '",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "tillnull",
      "desc": "Count Items on Stack Until Empty String",
      "type": "Exec",
      "depict": {
        "raw": "empty [ . . . ] --> empty [ . . . ] count",
        "in": "empty [ . . . ]",
        "out": "empty [ . . . ] count"
      },
      "runnable": "\" 0 { dup + index isnull) ? + } loop \"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "rooted\\",
      "desc": "Load Settings from Node and Root Node",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"_\\ \\^Body rootnode \\^Body !\\\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "newtask",
      "desc": "Start New Task With Current Help",
      "type": "Exec",
      "depict": {
        "raw": "task-name task-type -->",
        "in": "task-name task-type",
        "out": ""
      },
      "runnable": "'help@ _@ tuck newsub .!_Helper'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "mod@?",
      "desc": "Has Tree Changed",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"Tree.Changed?\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "mod@",
      "desc": "Mark Tree Changed",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"Tree.Changed @^Renew\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "sel!",
      "desc": "Select and Show Selection",
      "type": "Exec",
      "depict": {
        "raw": "pres-id -->",
        "in": "pres-id",
        "out": ""
      },
      "runnable": "\"selnode Tree.Select select*\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "quo&spc",
      "desc": "Quote String and Concatenate Space",
      "type": "Exec",
      "depict": {
        "raw": "str --> quoted-str-spc",
        "in": "str",
        "out": "quoted-str-spc"
      },
      "runnable": "\"quocatspc\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "js&;",
      "desc": "Add End Semicolon and Concatenate CrLf",
      "type": "Exec",
      "depict": {
        "raw": "str --> str-semi-cr",
        "in": "str",
        "out": "str-semi-cr"
      },
      "runnable": "'&\";\" &;'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "js&;&",
      "desc": "Add End Semicolon and Concatenate CrLf and Concatenate",
      "type": "Exec",
      "depict": {
        "raw": "build str --> str-semi-cr",
        "in": "build str",
        "out": "str-semi-cr"
      },
      "runnable": "'&\";\" &; &'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "quo&;",
      "desc": "Quote String and Concatenate CrLf",
      "type": "Exec",
      "depict": {
        "raw": "str --> quoted-str-cr",
        "in": "str",
        "out": "quoted-str-cr"
      },
      "runnable": "\"quocatcr\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "helpdim",
      "desc": "Dimension the Help Form and Chromium",
      "type": "Exec",
      "depict": {
        "raw": "x y w h -->",
        "in": "x y w h",
        "out": ""
      },
      "runnable": "\"4 copy @^Dim @^DimWeb\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "subdims",
      "desc": "Width and Height of Subform in Pixels",
      "type": "Exec",
      "depict": {
        "raw": "--> w h",
        "in": "",
        "out": "w h"
      },
      "runnable": "\"subform App._Rect pop3rd pop3rd\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "imgchild",
      "desc": "New Child Node with Image Url",
      "type": "Exec",
      "depict": {
        "raw": "img-url node-name -->",
        "in": "img-url node-name",
        "out": ""
      },
      "runnable": "\"_\\ @!Img Tree._New !\\\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "outchain",
      "desc": "Subfolder of Outgoing Xact Images",
      "type": "Exec",
      "depict": {
        "raw": "--> out-src",
        "in": "",
        "out": "out-src"
      },
      "runnable": "'\"out\" ofxact folder'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "enc^dest",
      "desc": "Encode Multipart Virtual Destination",
      "type": "Exec",
      "depict": {
        "raw": "filename vir-dest --> multi-filename",
        "in": "filename vir-dest",
        "out": "multi-filename"
      },
      "runnable": "'asc2hex &\"_\" ^'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "root\\",
      "desc": "Set Root as Current Node",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"rootnode\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "xacting",
      "desc": "Extract Xact from Path",
      "type": "Exec",
      "depict": {
        "raw": "path -->",
        "in": "path",
        "out": ""
      },
      "runnable": "\"endpath -4 left !Xact\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "endpath",
      "desc": "Get End Path Component",
      "type": "Exec",
      "depict": {
        "raw": "path --> end-comp",
        "in": "path",
        "out": "end-comp"
      },
      "runnable": "\"pathonly -1 right fileroot\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "fwdlist",
      "desc": "Wildcard Add Files To Stack Forward Order",
      "type": "Exec",
      "depict": {
        "raw": "wild-card --> [ file1 . . . ] count",
        "in": "wild-card",
        "out": "[ file1 . . . ] count"
      },
      "runnable": "'empty exch \"Forward\" File.List execstr'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "revlist",
      "desc": "Wildcard Add Files To Stack Reverse Order",
      "type": "Exec",
      "depict": {
        "raw": "wild-card --> [ . . . file1 ] count",
        "in": "wild-card",
        "out": "[ . . . file1 ] count"
      },
      "runnable": "'empty exch \"Reverse\" File.List execstr'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "nanzero",
      "desc": "Substitute Zero If Not Numeric",
      "type": "Exec",
      "depict": {
        "raw": "str --> str-or-0",
        "in": "str",
        "out": "str-or-0"
      },
      "runnable": "\"Str.ZeroNon\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "all\\#",
      "desc": "Count of All Nodes of Tree",
      "type": "Exec",
      "depict": {
        "raw": "--> tree-nodes",
        "in": "",
        "out": "tree-nodes"
      },
      "runnable": "\"Tree._Listed\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "help@",
      "desc": "Set To Current Help Subform",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"Help.@Help\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "ofcton",
      "desc": "Prefix Cut Target Directory",
      "type": "Exec",
      "depict": {
        "raw": "filename --> filespec",
        "in": "filename",
        "out": "filespec"
      },
      "runnable": "\"^_Cton.Path\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "ofpub",
      "desc": "Prefix Node PubSub Directory",
      "type": "Exec",
      "depict": {
        "raw": "filename --> filespec",
        "in": "filename",
        "out": "filespec"
      },
      "runnable": "'^\"NodePubsubA\\\" ofapp'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "ofmach",
      "desc": "Prefix Machine Source Directory",
      "type": "Exec",
      "depict": {
        "raw": "filename --> filespec",
        "in": "filename",
        "out": "filespec"
      },
      "runnable": "'^\"Factory\\\" ofapp'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "offact",
      "desc": "Prefix Factory Directory",
      "type": "Exec",
      "depict": {
        "raw": "filename --> filespec",
        "in": "filename",
        "out": "filespec"
      },
      "runnable": "'^\"Factory\\\" ofbin'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "html",
      "desc": "Add Html Extension",
      "type": "Exec",
      "depict": {
        "raw": "fileroot --> filespec",
        "in": "fileroot",
        "out": "filespec"
      },
      "runnable": "'&\".html\"'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "jsx",
      "desc": "Add Jsx Extension",
      "type": "Exec",
      "depict": {
        "raw": "fileroot --> filespec",
        "in": "fileroot",
        "out": "filespec"
      },
      "runnable": "'&\".jsx\"'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "jsx!desk",
      "desc": "Add Jsx Extension and Save to Desk",
      "type": "Exec",
      "depict": {
        "raw": "jsx-data fileroot -->",
        "in": "jsx-data fileroot",
        "out": ""
      },
      "runnable": "\"jsx ofdesk write\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "sel@",
      "desc": "Current Task Tree and Selection",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"Task.@Sel\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "sel@?",
      "desc": "Does Current Task Tree Have Selection and Set Current",
      "type": "Exec",
      "depict": {
        "raw": "--> has-selection",
        "in": "",
        "out": "has-selection"
      },
      "runnable": "\"Task.@ select?\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "yattrval",
      "desc": "Create Yml Atribute Value With Leading Space",
      "type": "Exec",
      "depict": {
        "raw": "val name --> yattrib",
        "in": "val name",
        "out": "yattrib"
      },
      "runnable": "'yml ^\" \" &\"=\"\"\" exch yml & &\"\"\"\"'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "empty)(",
      "desc": "Replace TOS With Empty",
      "type": "Exec",
      "depict": {
        "raw": "str --> empty",
        "in": "str",
        "out": "empty"
      },
      "runnable": "\"pop empty\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "attrval",
      "desc": "Create Atribute Value With Leading Space",
      "type": "Exec",
      "depict": {
        "raw": "val name --> attrib",
        "in": "val name",
        "out": "attrib"
      },
      "runnable": "'^\" \" &\"=\"\"\" ^ &\"\"\"\"'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "attrval&",
      "desc": "Append Attribute Value",
      "type": "Exec",
      "depict": {
        "raw": "xml-text --> xml-text-attred",
        "in": "xml-text",
        "out": "xml-text-attred"
      },
      "runnable": "' attrval & '",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "sval",
      "desc": "String Value Entry and Append",
      "type": "Exec",
      "depict": {
        "raw": "builder valname --> adj-build",
        "in": "builder valname",
        "out": "adj-build"
      },
      "runnable": "\"Str.CatValue\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "aval",
      "desc": "Convert From Hex Value Entry and Append",
      "type": "Exec",
      "depict": {
        "raw": "builder valname --> adj-build",
        "in": "builder valname",
        "out": "adj-build"
      },
      "runnable": "'dup _ hex2asc quotesep \"!\" catpref catcatcr'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "jval",
      "desc": "Convert to Javascript Field Assign and Append",
      "type": "Exec",
      "depict": {
        "raw": "builder valname --> adj-build",
        "in": "builder valname",
        "out": "adj-build"
      },
      "runnable": "' dup _ \"\"\"\" \"\\\"\"\" replall cr \"\\n\" replall ^\"\"\"\" &\"\"\"\" exch ^\"document.all.txt\" &\".value = \" ^ &\";\" catcr & '",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "xval",
      "desc": "Text Encode Xml Value Entry",
      "type": "Exec",
      "depict": {
        "raw": "value valname --> xml-val-line",
        "in": "value valname",
        "out": "xml-val-line"
      },
      "runnable": "' startag exch \"value\" attrval& \"text\" \"encode\" attrval& termtag catcr '",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "xvalesc",
      "desc": "Escape Encode Xml Value Entry Alias as Text",
      "type": "Exec",
      "depict": {
        "raw": "value valname --> xml-val-line",
        "in": "value valname",
        "out": "xml-val-line"
      },
      "runnable": "' startag exch escape \"value\" attrval& \"text\" \"encode\" attrval& termtag catcr '",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "xvalhex",
      "desc": "Hex Encode Xml Value Entry Alias as Text",
      "type": "Exec",
      "depict": {
        "raw": "value valname --> xml-val-line",
        "in": "value valname",
        "out": "xml-val-line"
      },
      "runnable": "' startag exch asc2hex \"value\" attrval& \"text\" \"encode\" attrval& termtag catcr '",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "xval&hex",
      "desc": "Hex Encode Xml Value Entry Alias as Text and Append",
      "type": "Exec",
      "depict": {
        "raw": "value valname --> xml-val-line",
        "in": "value valname",
        "out": "xml-val-line"
      },
      "runnable": "'xvalhex &'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "endtag",
      "desc": "Name to End Tag",
      "type": "Exec",
      "depict": {
        "raw": "str --> adj-str",
        "in": "str",
        "out": "adj-str"
      },
      "runnable": "'^\"</\" &\">\"'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "startag",
      "desc": "Name to Start Tag",
      "type": "Exec",
      "depict": {
        "raw": "str --> adj-str",
        "in": "str",
        "out": "adj-str"
      },
      "runnable": "'^\"<\" &\" \"'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "termtag",
      "desc": "Add Self Terminating Tag",
      "type": "Exec",
      "depict": {
        "raw": "str --> adj-str",
        "in": "str",
        "out": "adj-str"
      },
      "runnable": "'&\"/>\"'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "refiling?",
      "desc": "Does Reextended File Exist",
      "type": "Exec",
      "depict": {
        "raw": "path seed ext --> path seed exists",
        "in": "path seed ext",
        "out": "path seed exists"
      },
      "runnable": "\"refiling exists\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "refile",
      "desc": "Reextended Current Process File and Write",
      "type": "Exec",
      "depict": {
        "raw": "path seed data ext --> path seed",
        "in": "path seed data ext",
        "out": "path seed"
      },
      "runnable": "\"third exch reextend ^4 write\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "refiling",
      "desc": "Reextended Current Process File",
      "type": "Exec",
      "depict": {
        "raw": "path seed ext --> path seed reext-filespec",
        "in": "path seed ext",
        "out": "path seed reext-filespec"
      },
      "runnable": "\"second exch reextend ^3\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "tojsquo",
      "desc": "Convert to JS File Format Filespec Then Quoted",
      "type": "Exec",
      "depict": {
        "raw": "win-file --> js-file-quo",
        "in": "win-file",
        "out": "js-file-quo"
      },
      "runnable": "\"tojs quoter\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "js&xact",
      "desc": "Xact Dir to JS Filespec Add Quoted",
      "type": "Exec",
      "depict": {
        "raw": "builder --> adj-build",
        "in": "builder",
        "out": "adj-build"
      },
      "runnable": "\"_Xact.Dir tojsquo &\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "fromjsquo",
      "desc": "Convert from JS Filespec Then Quoted",
      "type": "Exec",
      "depict": {
        "raw": "js-file --> win-file-quo",
        "in": "js-file",
        "out": "win-file-quo"
      },
      "runnable": "\"fromjs quoter\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "tojs",
      "desc": "Convert to JS File Format Filespec",
      "type": "Exec",
      "depict": {
        "raw": "win-file --> js-file",
        "in": "win-file",
        "out": "js-file"
      },
      "runnable": "\"*jsphfspc\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "fromjs",
      "desc": "Convert from JS Filespec",
      "type": "Exec",
      "depict": {
        "raw": "js-file --> win-file",
        "in": "js-file",
        "out": "win-file"
      },
      "runnable": "\"*jsphfspd\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "onlylf",
      "desc": "Line Feed Character",
      "type": "Exec",
      "depict": {
        "raw": "str --> adj-str",
        "in": "str",
        "out": "adj-str"
      },
      "runnable": "\"cr lf replall\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "lf",
      "desc": "Line Feed Character",
      "type": "Exec",
      "depict": {
        "raw": "--> lf",
        "in": "",
        "out": "lf"
      },
      "runnable": "\"0x0A char\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "ret",
      "desc": "Return Character",
      "type": "Exec",
      "depict": {
        "raw": "--> ret",
        "in": "",
        "out": "ret"
      },
      "runnable": "\"0x0D char\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "crlf",
      "desc": "Return Character",
      "type": "Exec",
      "depict": {
        "raw": "--> crlf",
        "in": "",
        "out": "crlf"
      },
      "runnable": "\"cr\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "catlf",
      "desc": "Append Line Feed Character",
      "type": "Exec",
      "depict": {
        "raw": "str --> adj-str",
        "in": "str",
        "out": "adj-str"
      },
      "runnable": "\"lf &\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "catret",
      "desc": "Append Return Character",
      "type": "Exec",
      "depict": {
        "raw": "str --> adj-str",
        "in": "str",
        "out": "adj-str"
      },
      "runnable": "\"ret &\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "seek!\\?",
      "desc": "Seek Descend from Current Node Set if Exists",
      "type": "Exec",
      "depict": {
        "raw": "name --> exists",
        "in": "name",
        "out": "exists"
      },
      "runnable": "' false exch seek\\? { !\\ pop true } if '",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "seek\\?",
      "desc": "Seek Named Tree Node Descend from Current Node",
      "type": "Exec",
      "depict": {
        "raw": "name --> [ node ] exists",
        "in": "name",
        "out": "[ node ] exists"
      },
      "runnable": "' seek\\ % next anchor pos seeks pop2nd pop3rd % anchor seeks not dup not { pop2nd } if '",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "now!conn",
      "desc": "Based Current Time Suffix Write Connector Text",
      "type": "Exec",
      "depict": {
        "raw": "data fileroot -->",
        "in": "data fileroot",
        "out": ""
      },
      "runnable": "'&\"_\" basenow & text!conn'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "bnow!conn",
      "desc": "Based Current Time Suffix Write Connector Binary",
      "type": "Exec",
      "depict": {
        "raw": "data fileroot -->",
        "in": "data fileroot",
        "out": ""
      },
      "runnable": "'&\"_\" basenow & btex!conn'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "text*sess",
      "desc": "Session Path and Text Extension Exec",
      "type": "Exec",
      "depict": {
        "raw": "fileroot -->",
        "in": "fileroot",
        "out": ""
      },
      "runnable": "\"text ofsess exec\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "text*fact",
      "desc": "Factory Path and Text Extension Exec",
      "type": "Exec",
      "depict": {
        "raw": "fileroot -->",
        "in": "fileroot",
        "out": ""
      },
      "runnable": "\"text offact exec\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "text*mach",
      "desc": "Machine Source Path and Text Extension Exec",
      "type": "Exec",
      "depict": {
        "raw": "fileroot -->",
        "in": "fileroot",
        "out": ""
      },
      "runnable": "\"text ofmach exec\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "text*subj",
      "desc": "Subject Path and Text Extension Exec",
      "type": "Exec",
      "depict": {
        "raw": "fileroot -->",
        "in": "fileroot",
        "out": ""
      },
      "runnable": "\"text ofsubj exec\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "text!sess",
      "desc": "Session Path and Text Extension Write",
      "type": "Exec",
      "depict": {
        "raw": "data fileroot -->",
        "in": "data fileroot",
        "out": ""
      },
      "runnable": "\"text ofsess write\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "text!fact",
      "desc": "Factory Path and Text Extension Write",
      "type": "Exec",
      "depict": {
        "raw": "data fileroot -->",
        "in": "data fileroot",
        "out": ""
      },
      "runnable": "\"text offact write\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "text!mach",
      "desc": "Machine Source Path and Text Extension Write",
      "type": "Exec",
      "depict": {
        "raw": "data fileroot -->",
        "in": "data fileroot",
        "out": ""
      },
      "runnable": "\"text ofmach write\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "text!subj",
      "desc": "Subject Path and Text Extension Write",
      "type": "Exec",
      "depict": {
        "raw": "data fileroot -->",
        "in": "data fileroot",
        "out": ""
      },
      "runnable": "\"text ofsubj write\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "ofsess",
      "desc": "Prefix Session Directory Path",
      "type": "Exec",
      "depict": {
        "raw": " filename --> filespec",
        "in": "filename",
        "out": "filespec"
      },
      "runnable": "\"^_Sess.Dir\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "ofsubj",
      "desc": "Prefix Subject Directory Path",
      "type": "Exec",
      "depict": {
        "raw": " filename --> filespec",
        "in": "filename",
        "out": "filespec"
      },
      "runnable": "\"^_Subj.Dir\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "ofsales",
      "desc": "Prefix Sales Directory Path",
      "type": "Exec",
      "depict": {
        "raw": " filename --> filespec",
        "in": "filename",
        "out": "filespec"
      },
      "runnable": "\"^_Sales.Dir\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "filed",
      "desc": "File Modified Time Stamp",
      "type": "Exec",
      "depict": {
        "raw": "dir seed --> dir seed date-time",
        "in": "dir seed",
        "out": "dir seed date-time"
      },
      "runnable": "\"filing stamp\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "made",
      "desc": "File Created Time Stamp",
      "type": "Exec",
      "depict": {
        "raw": "dir seed --> dir seed date-time",
        "in": "dir seed",
        "out": "dir seed date-time"
      },
      "runnable": "\"filing created\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "stamp",
      "desc": "File Modified Time",
      "type": "Exec",
      "depict": {
        "raw": "file --> date-mod",
        "in": "file",
        "out": "date-mod"
      },
      "runnable": "\"System.FileTimes pop2\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "created",
      "desc": "File Created Time",
      "type": "Exec",
      "depict": {
        "raw": "file --> date-create",
        "in": "file",
        "out": "date-create"
      },
      "runnable": "\"System.FileTimes pop2&3\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "stamped",
      "desc": "File Date and Time Under Sep Under Prefix",
      "type": "Exec",
      "depict": {
        "raw": "filespec --> date-time-suffix",
        "in": "filespec",
        "out": "date-time-suffix"
      },
      "runnable": "\"stamp Time.FullOrder\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "restoring",
      "desc": "Restoring Window If Not",
      "type": "Exec",
      "depict": {
        "raw": "win-handle --> restored",
        "in": "win-handle",
        "out": "restored"
      },
      "runnable": "\" dup nonzero { % % window running, insure not min or max % dup unrestored dup { second Win.Restore } if pop2nd not } if % % stack: restored % \"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "unrestored",
      "desc": "Is Window in Restored State",
      "type": "Exec",
      "depict": {
        "raw": "win-handle --> min-or-max",
        "in": "win-handle",
        "out": "min-or-max"
      },
      "runnable": "\"dup Win.IsIconic exch Win.IsZoomed or\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "elem$",
      "desc": "Make Element of String",
      "type": "Exec",
      "depict": {
        "raw": "str elem-name --> elem-str",
        "in": "str elem-name",
        "out": "elem-str"
      },
      "runnable": "'dup ^\"<\" &\">\" exch ^\"</\" &\">\" ^3) &'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "page@",
      "desc": "Page at Task Tree",
      "type": "Exec",
      "depict": {
        "raw": "--> page",
        "in": "",
        "out": "page"
      },
      "runnable": "\"Task.@ _Ent.Page\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "root@sel",
      "desc": "Select Root Task Node",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"Task.@ rootsel\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "page@sel",
      "desc": "Page at Selected Task Node",
      "type": "Exec",
      "depict": {
        "raw": "--> page",
        "in": "",
        "out": "page"
      },
      "runnable": "\"Task.@Sel _Ent.Page\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "noext",
      "desc": "Truncate the Extension From Filename",
      "type": "Exec",
      "depict": {
        "raw": "--> filename --> noext-filename",
        "in": "",
        "out": "filename --> noext-filename"
      },
      "runnable": "\"empty reextend\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "text*bin",
      "desc": "Add Text Extension and Perform in Bin",
      "type": "Exec",
      "depict": {
        "raw": "fileroot -->",
        "in": "fileroot",
        "out": ""
      },
      "runnable": "\"bintext exec\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "deskjsx",
      "desc": "Add Jsx Extension and Path to Desk",
      "type": "Exec",
      "depict": {
        "raw": "fileroot --> filespec",
        "in": "fileroot",
        "out": "filespec"
      },
      "runnable": "\"jsx ofdesk\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "jsx_desk",
      "desc": "Add Jsx Extension Read from Desk",
      "type": "Exec",
      "depict": {
        "raw": "data fileroot -->",
        "in": "data fileroot",
        "out": ""
      },
      "runnable": "\"deskjsx read\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "text!bin",
      "desc": "Add Text Extension Write to Bin",
      "type": "Exec",
      "depict": {
        "raw": "data fileroot -->",
        "in": "data fileroot",
        "out": ""
      },
      "runnable": "\"bintext write\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "curxact",
      "desc": "Read Current Xact Marker from Bin",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "'\"_curxact\" text_bin zeronull !Xact'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "xactseed",
      "desc": "Seed of Current Xact Marker",
      "type": "Exec",
      "depict": {
        "raw": "--> xact-cur-seed",
        "in": "",
        "out": "xact-cur-seed"
      },
      "runnable": "'_Xact positive { xact } { empty } ifelse'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "text_bin",
      "desc": "Add Text Extension Read From Bin",
      "type": "Exec",
      "depict": {
        "raw": "fileroot --> data",
        "in": "fileroot",
        "out": "data"
      },
      "runnable": "\"bintext read\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "text_fact",
      "desc": "Add Text Extension Read From Factory",
      "type": "Exec",
      "depict": {
        "raw": "fileroot --> data",
        "in": "fileroot",
        "out": "data"
      },
      "runnable": "\"text offact read\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "text_mach",
      "desc": "Add Text Extension Read From Machine Source",
      "type": "Exec",
      "depict": {
        "raw": "fileroot --> data",
        "in": "fileroot",
        "out": "data"
      },
      "runnable": "\"text ofmach read\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "abs_@",
      "desc": "Entire Run Tree Xml to Connector Tree Name",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"_@ abs_\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "abs!",
      "desc": "Merge Into Run Tree Absolute",
      "type": "Exec",
      "depict": {
        "raw": "abs-xml -->",
        "in": "abs-xml",
        "out": ""
      },
      "runnable": "'\"Apex\" *xmlzwebr !Response'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "web?",
      "desc": "Next Web Buffered Item",
      "type": "Exec",
      "depict": {
        "raw": "sub-addr --> [buf-item] item-exists",
        "in": "sub-addr",
        "out": "[buf-item] item-exists"
      },
      "runnable": "'^\"Apan.Web.\" \"NextSeq\" @^Adance any?'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "web!",
      "desc": "Merge Into Run Tree at Web",
      "type": "Exec",
      "depict": {
        "raw": "sub-web-xml sub-addr -->",
        "in": "sub-web-xml sub-addr",
        "out": ""
      },
      "runnable": "'elem$ \"Web\" elem$ abs!'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "abs_",
      "desc": "Write Entire Run Tree Xml to Connector",
      "type": "Exec",
      "depict": {
        "raw": "out-root -->",
        "in": "out-root",
        "out": ""
      },
      "runnable": "'\"_Run\" *xmlzwebr exch text!conn'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "text!conn",
      "desc": "Connector Path and Text Extension Write",
      "type": "Exec",
      "depict": {
        "raw": "data fileroot -->",
        "in": "data fileroot",
        "out": ""
      },
      "runnable": "\"conntext write\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "text!snap",
      "desc": "Snap Path and Text Extension Write",
      "type": "Exec",
      "depict": {
        "raw": "data fileroot -->",
        "in": "data fileroot",
        "out": ""
      },
      "runnable": "\"snaptext write\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "text!sales",
      "desc": "Commerce Path and Text Extension Write",
      "type": "Exec",
      "depict": {
        "raw": "data fileroot -->",
        "in": "data fileroot",
        "out": ""
      },
      "runnable": "\"text ofsales write\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "text*snap",
      "desc": "Snap Path and Text Extension Execute",
      "type": "Exec",
      "depict": {
        "raw": "fileroot -->",
        "in": "fileroot",
        "out": ""
      },
      "runnable": "\"snaptext exec\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "text_snap",
      "desc": "Snap Path and Text Extension Read",
      "type": "Exec",
      "depict": {
        "raw": "fileroot --> data",
        "in": "fileroot",
        "out": "data"
      },
      "runnable": "\"snaptext read\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "snaptext",
      "desc": "Format Filename with Snap Path and Text Extension",
      "type": "Exec",
      "depict": {
        "raw": "fileroot --> file-spec",
        "in": "fileroot",
        "out": "file-spec"
      },
      "runnable": "\"ofsnap text\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "btex!conn",
      "desc": "Connector Path and Text Extension Write Binary",
      "type": "Exec",
      "depict": {
        "raw": "bdata fileroot -->",
        "in": "bdata fileroot",
        "out": ""
      },
      "runnable": "\"conntext writeb\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "conn*",
      "desc": "Connector Path Execute",
      "type": "Exec",
      "depict": {
        "raw": "filename -->",
        "in": "filename",
        "out": ""
      },
      "runnable": "\"ofconn exec\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "text*conn",
      "desc": "Connector Path and Text Extension Execute",
      "type": "Exec",
      "depict": {
        "raw": "fileroot -->",
        "in": "fileroot",
        "out": ""
      },
      "runnable": "\"conntext exec\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "text_conn",
      "desc": "Connector Path and Text Extension Read",
      "type": "Exec",
      "depict": {
        "raw": "fileroot --> data",
        "in": "fileroot",
        "out": "data"
      },
      "runnable": "\"conntext read\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "text_xact",
      "desc": "Xact Path and Text Extension Read",
      "type": "Exec",
      "depict": {
        "raw": "fileroot --> data",
        "in": "fileroot",
        "out": "data"
      },
      "runnable": "\"xactext read\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "text*xact",
      "desc": "Xact Path and Text Extension Execute",
      "type": "Exec",
      "depict": {
        "raw": "fileroot -->",
        "in": "fileroot",
        "out": ""
      },
      "runnable": "\"xactext exec\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "text!xact",
      "desc": "Xact Path and Text Extension Write",
      "type": "Exec",
      "depict": {
        "raw": "fileroot -->",
        "in": "fileroot",
        "out": ""
      },
      "runnable": "\"xactext write\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "xactphase",
      "desc": "Load Current Phase from Xact Directory",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "'empty !Camera.Phase \"phase\" text*xact'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "xactinfo",
      "desc": "Load Original Values from Xact Directory",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "'\"incoming\" text*xact'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "nextdir",
      "desc": "Next Directory of Wildcard",
      "type": "Exec",
      "depict": {
        "raw": "path seed --> path next-dir no-next-dir",
        "in": "path seed",
        "out": "path next-dir no-next-dir"
      },
      "runnable": "\"second File.NextDirOf isnull\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "subon?",
      "desc": "Does Named Subform Exist",
      "type": "Exec",
      "depict": {
        "raw": "sub-name --> subformed",
        "in": "sub-name",
        "out": "subformed"
      },
      "runnable": "\"Mep._ positive\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "factory?",
      "desc": "Is Factory System to be Supervised",
      "type": "Exec",
      "depict": {
        "raw": "--> fact-superv",
        "in": "",
        "out": "fact-superv"
      },
      "runnable": "'_Arching.FactServe true? _Photoshop zeronull and'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "devices?",
      "desc": "Is Device System to be Supervised",
      "type": "Exec",
      "depict": {
        "raw": "--> dev-superv",
        "in": "",
        "out": "dev-superv"
      },
      "runnable": "'_Arching.DevServe true?'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "photos?",
      "desc": "Is Photo System to be Supervised",
      "type": "Exec",
      "depict": {
        "raw": "--> photo-superv",
        "in": "",
        "out": "photo-superv"
      },
      "runnable": "'_Arching.PhotoServe true? \"Customers\" subon? _Aamg.Testing or and'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "images?",
      "desc": "Are Images to be Supervised",
      "type": "Exec",
      "depict": {
        "raw": "--> img-superv",
        "in": "",
        "out": "img-superv"
      },
      "runnable": "\"_Arching.ImgServe true?\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "trackers?",
      "desc": "Are Trackers to be Supervised",
      "type": "Exec",
      "depict": {
        "raw": "--> trak-superv",
        "in": "",
        "out": "trak-superv"
      },
      "runnable": "\"_Arching.TrakServe true?\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "true?",
      "desc": "String Equal to True",
      "type": "Exec",
      "depict": {
        "raw": "str --> str-true",
        "in": "str",
        "out": "str-true"
      },
      "runnable": "'lower \"true\" eq$'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "comment",
      "desc": "Comment String with Slash Star Syntax",
      "type": "Exec",
      "depict": {
        "raw": "str --> commented-str",
        "in": "str",
        "out": "commented-str"
      },
      "runnable": "' ^\" \" '",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "barrier",
      "desc": "Shed and Track Remaining Stack Items",
      "type": "Exec",
      "depict": {
        "raw": "[ remaining . . . ] -->",
        "in": "[ remaining . . . ]",
        "out": ""
      },
      "runnable": "' count positive { count ^\"!!!!\" &\" [\" &_tick &\"]\" log# empty { count 1 eq ? exch dispcr$ short$ ^\"( \" catcr & } loop logs } if '",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "barrier1",
      "desc": "Shed and Track Remaining Stack Items",
      "type": "Exec",
      "depict": {
        "raw": "[ remaining . . . ] -->",
        "in": "[ remaining . . . ]",
        "out": ""
      },
      "runnable": "' count - positive { \"!!!! \" &\" [\" &_tick &\"]\" log)( count - countdown { dup + + -1 roll dispcr$ short$ ^\" \" & ^\"!! \" logs } for } if pop '",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "log#",
      "desc": "Log with Stack Count Track",
      "type": "Exec",
      "depict": {
        "raw": "log-pref -->",
        "in": "log-pref",
        "out": ""
      },
      "runnable": "'log@ dispcr$ logs'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "log@",
      "desc": "Prep Log with Stack Count Track",
      "type": "Exec",
      "depict": {
        "raw": "log-pref --> log-str",
        "in": "log-pref",
        "out": "log-str"
      },
      "runnable": "'&\" @\" _@ & &\" (\" count - & &\")\"'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "log)(",
      "desc": "Log with Stack Count Track",
      "type": "Exec",
      "depict": {
        "raw": "item log-pref --> item",
        "in": "item log-pref",
        "out": "item"
      },
      "runnable": "' log@ &\" \" count 1 gt { &2 dispcr$ short$ } { &\"-none-\" } ifelse logs '",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "dispcr$",
      "desc": "Possibly Shorten Display String",
      "type": "Exec",
      "depict": {
        "raw": "str --> adj-str",
        "in": "str",
        "out": "adj-str"
      },
      "runnable": "'cr \"\\\\\" replall cr 1 left \"\\\\\" replall cr 1 right \"\\\\\" replall'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "short$",
      "desc": "Possibly Shorten Display String",
      "type": "Exec",
      "depict": {
        "raw": "disp-str --> adj-str",
        "in": "disp-str",
        "out": "adj-str"
      },
      "runnable": "' length 80 gt { dup 40 left &\" . . . \" exch 40 right & } if '",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "final\\?",
      "desc": "Next Child Not Exist",
      "type": "Exec",
      "depict": {
        "raw": "--> child-node no-child",
        "in": "",
        "out": "child-node no-child"
      },
      "runnable": "\"Tree.Next?\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "first\\?",
      "desc": "First Child Exists",
      "type": "Exec",
      "depict": {
        "raw": "--> [ child-node ] has-child",
        "in": "",
        "out": "[ child-node ] has-child"
      },
      "runnable": "\"_\\ Tree._First\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "last\\?",
      "desc": "Last Child Exists",
      "type": "Exec",
      "depict": {
        "raw": "--> [ child-node ] has-child",
        "in": "",
        "out": "[ child-node ] has-child"
      },
      "runnable": "\"_\\ Tree._Last\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "xactext",
      "desc": "Xact Path and Reextend Text Extension",
      "type": "Exec",
      "depict": {
        "raw": "fileroot --> file-spec",
        "in": "fileroot",
        "out": "file-spec"
      },
      "runnable": "\"ofxact retext\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "oftems",
      "desc": "Prefix Template Directory",
      "type": "Exec",
      "depict": {
        "raw": "file-name --> file-spec",
        "in": "file-name",
        "out": "file-spec"
      },
      "runnable": "\"'Templates/' ofsnap ^\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "ofxact",
      "desc": "Prefix Xact Directory",
      "type": "Exec",
      "depict": {
        "raw": "file-name --> file-spec",
        "in": "file-name",
        "out": "file-spec"
      },
      "runnable": "\"_Xact *xactfold ^_Xact.Dir\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "chained",
      "desc": "Prefix Virtual Chain Xact Directory",
      "type": "Exec",
      "depict": {
        "raw": "file-name --> url-spec",
        "in": "file-name",
        "out": "url-spec"
      },
      "runnable": "'xact &\"/\" ofchain ^'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "xact",
      "desc": "Xact Nomer",
      "type": "Exec",
      "depict": {
        "raw": "--> xact-nomer",
        "in": "",
        "out": "xact-nomer"
      },
      "runnable": "'\"xact\" &_Xact'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "chain",
      "desc": "Virtual Chain Area No Trailing Slash",
      "type": "Exec",
      "depict": {
        "raw": "--> vir-chain",
        "in": "",
        "out": "vir-chain"
      },
      "runnable": "'_Arching.VirChain'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "ofchain",
      "desc": "Virtual Chain Prefix",
      "type": "Exec",
      "depict": {
        "raw": "filename --> url-rel",
        "in": "filename",
        "out": "url-rel"
      },
      "runnable": "'chain &\"/\" ^'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "ofsnap",
      "desc": "Prefix Photo Path",
      "type": "Exec",
      "depict": {
        "raw": "file-name --> file-spec",
        "in": "file-name",
        "out": "file-spec"
      },
      "runnable": "\"snap ^\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "snap",
      "desc": "Photo Pool Url With Trailing Backslash",
      "type": "Exec",
      "depict": {
        "raw": "--> snap-chain",
        "in": "",
        "out": "snap-chain"
      },
      "runnable": "\"_Arching.PhysChain\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "outbase",
      "desc": "Attraction DataBase Cmd Url",
      "type": "Exec",
      "depict": {
        "raw": "--> attr-database-url",
        "in": "",
        "out": "attr-database-url"
      },
      "runnable": "\"public &'/' &_Arching.Request\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "inbase",
      "desc": "Localhost DataBase Cmd Url",
      "type": "Exec",
      "depict": {
        "raw": "--> lhost-database-url",
        "in": "",
        "out": "lhost-database-url"
      },
      "runnable": "\"local &_Arching.Request\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "local",
      "desc": "Localhost Url With Trailing Slash",
      "type": "Exec",
      "depict": {
        "raw": "--> lhost-url",
        "in": "",
        "out": "lhost-url"
      },
      "runnable": "\"_Arching.LocalHost\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "oflocal",
      "desc": "Prefix Localhost Path",
      "type": "Exec",
      "depict": {
        "raw": "file-name --> file-spec",
        "in": "file-name",
        "out": "file-spec"
      },
      "runnable": "\"^_Arching.Lhost\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "public",
      "desc": "Public Http Attraction Website No Trailing Slash",
      "type": "Exec",
      "depict": {
        "raw": "--> attr-public",
        "in": "",
        "out": "attr-public"
      },
      "runnable": "\"http &_Arching.OutIP\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "secure",
      "desc": "Secure Https Attraction Website No Trailing Slash",
      "type": "Exec",
      "depict": {
        "raw": "--> attr-secure",
        "in": "",
        "out": "attr-secure"
      },
      "runnable": "\"https &_Arching.OutIP\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "http",
      "desc": "Http Prefix With Slashes",
      "type": "Exec",
      "depict": {
        "raw": "--> http-prefix",
        "in": "",
        "out": "http-prefix"
      },
      "runnable": "'\"http://\"'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "https",
      "desc": "Https Prefix With Slashes",
      "type": "Exec",
      "depict": {
        "raw": "--> https-prefix",
        "in": "",
        "out": "https-prefix"
      },
      "runnable": "'\"https://\"'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "hex*resp",
      "desc": "Decode Tell Hex Response and Perform",
      "type": "Exec",
      "depict": {
        "raw": "str -->",
        "in": "str",
        "out": ""
      },
      "runnable": "\"hexresp execstr\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "hexresp",
      "desc": "Decode Tell Hex Response",
      "type": "Exec",
      "depict": {
        "raw": "str --> tell-content",
        "in": "str",
        "out": "tell-content"
      },
      "runnable": "\"'*****x' right$ 'x*****' left$ hex2asc\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "serving",
      "desc": "Format Url with Remote Tell Command",
      "type": "Exec",
      "depict": {
        "raw": "str --> remote-tell-url",
        "in": "str",
        "out": "remote-tell-url"
      },
      "runnable": "\"public &'/' &_Arching.Command ^\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "telling",
      "desc": "Format Url with Localhost Tell Command",
      "type": "Exec",
      "depict": {
        "raw": "str --> tell-url",
        "in": "str",
        "out": "tell-url"
      },
      "runnable": "\"local &_Arching.Command ^\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "none?",
      "desc": "String Has No Content Retain Any Content",
      "type": "Exec",
      "depict": {
        "raw": "str --> [ str ] no-content (str if content)",
        "in": "str",
        "out": "[ str ] no-content (str if content)"
      },
      "runnable": "\"any? not\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "notnull",
      "desc": "Does String Have Content",
      "type": "Exec",
      "depict": {
        "raw": "str --> str has-content",
        "in": "str",
        "out": "str has-content"
      },
      "runnable": "\"isnull not\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "none)?",
      "desc": "Does String Have No Content Consumes String",
      "type": "Exec",
      "depict": {
        "raw": "str --> no-content",
        "in": "str",
        "out": "no-content"
      },
      "runnable": "\"isnull)\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "folder",
      "desc": "Make Directory from Normal/Unterminated Absolute Path",
      "type": "Exec",
      "depict": {
        "raw": "path-str --> norm-path",
        "in": "path-str",
        "out": "norm-path"
      },
      "runnable": "' length 3 gt { dup 1 right \"\\\" eq$ { -1 right } if File.MakeNorm } { dup ^\"bad path -\" &\"-\" logs stop } ifelse '",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "asc$",
      "desc": "Ascii of Single Leftmost Character",
      "type": "Exec",
      "depict": {
        "raw": "str --> asc-val",
        "in": "str",
        "out": "asc-val"
      },
      "runnable": "\"1 left asc\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "asc$(",
      "desc": "Ascii of Single Leftmost Character Keeping String",
      "type": "Exec",
      "depict": {
        "raw": "str --> str asc-val",
        "in": "str",
        "out": "str asc-val"
      },
      "runnable": "\"dup asc$\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "connexec",
      "desc": "Format Filename with Connector Path and Execute",
      "type": "Exec",
      "depict": {
        "raw": "fileroot --> file-spec",
        "in": "fileroot",
        "out": "file-spec"
      },
      "runnable": "\"ofconn exec\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "conntext",
      "desc": "Format Filename with Connector Path and Text Extension",
      "type": "Exec",
      "depict": {
        "raw": "fileroot --> file-spec",
        "in": "fileroot",
        "out": "file-spec"
      },
      "runnable": "\"ofconn text\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "fork?",
      "desc": "Is Forked Tree Name and Not Consumes",
      "type": "Exec",
      "depict": {
        "raw": "name --> name forked",
        "in": "name",
        "out": "name forked"
      },
      "runnable": "'\"#\" found?'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "fork)?",
      "desc": "Is Forked Tree Name and Consumes",
      "type": "Exec",
      "depict": {
        "raw": "name --> forked",
        "in": "name",
        "out": "forked"
      },
      "runnable": "'\"#\" found)?'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "fork@)?",
      "desc": "Current Tree Forked Tree Name and Consumes",
      "type": "Exec",
      "depict": {
        "raw": "--> forked",
        "in": "",
        "out": "forked"
      },
      "runnable": "\"_@ fork)?\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "fork@?",
      "desc": "Current Tree Forked Tree Name and Not Consumes",
      "type": "Exec",
      "depict": {
        "raw": "--> @ forked",
        "in": "",
        "out": "@ forked"
      },
      "runnable": "\"_@ fork?\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "fork$",
      "desc": "Relative Hier String for Current Node",
      "type": "Exec",
      "depict": {
        "raw": "--> hier-str",
        "in": "",
        "out": "hier-str"
      },
      "runnable": "\"_\\ branch\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "forker",
      "desc": "Prefix for any Possible Forked Form",
      "type": "Exec",
      "depict": {
        "raw": "--> fork-root",
        "in": "",
        "out": "fork-root"
      },
      "runnable": "'_@ \"#\" left$'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "forked",
      "desc": "Fork Level Count",
      "type": "Exec",
      "depict": {
        "raw": "--> fork-count",
        "in": "",
        "out": "fork-count"
      },
      "runnable": "'\"#\" _@ Str.Found'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "stake\\",
      "desc": "Extend From Current Node",
      "type": "Exec",
      "depict": {
        "raw": "seek-str -->",
        "in": "seek-str",
        "out": ""
      },
      "runnable": "\"_\\ make !\\\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "seek\\",
      "desc": "Seek From Current Node",
      "type": "Exec",
      "depict": {
        "raw": "seek-str --> next anchor pos seeks",
        "in": "seek-str",
        "out": "next anchor pos seeks"
      },
      "runnable": "\"false _\\ @^Seek\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "seek\\(",
      "desc": "Seek From Current Node Keep Name",
      "type": "Exec",
      "depict": {
        "raw": "seek-str --> seek-str next anchor pos seeks",
        "in": "seek-str",
        "out": "seek-str next anchor pos seeks"
      },
      "runnable": "\"dup seek\\\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "x/root*",
      "desc": "Navigate from Root Xhelp Node",
      "type": "Exec",
      "depict": {
        "raw": "abs-ref -->",
        "in": "abs-ref",
        "out": ""
      },
      "runnable": "'^\"#\" x!/*'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "x!",
      "desc": "Set Xhelp Steering",
      "type": "Exec",
      "depict": {
        "raw": "xhelp-ref -->",
        "in": "xhelp-ref",
        "out": ""
      },
      "runnable": "\"!Help.Url\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "x/(*",
      "desc": "Navigate to Xhelp Node Deferred",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"*xhelstar(\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "x/*",
      "desc": "Navigate to Xhelp Node",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"*xhelstar\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "x!/*",
      "desc": "Steer and Navigate to Xhelp Node",
      "type": "Exec",
      "depict": {
        "raw": "steer -->",
        "in": "steer",
        "out": ""
      },
      "runnable": "\"x! x/*\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "x/^>",
      "desc": "Seek to Parent Xhelp Node",
      "type": "Exec",
      "depict": {
        "raw": "steer -->",
        "in": "steer",
        "out": ""
      },
      "runnable": "'^\"^\" x! x/>'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "x/^(>",
      "desc": "Seek to Parent Xhelp Node Deferred",
      "type": "Exec",
      "depict": {
        "raw": "steer -->",
        "in": "steer",
        "out": ""
      },
      "runnable": "'^\"^\" x! x/(>'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "x/>",
      "desc": "Seek to Xhelp Node",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"*xhelseek\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "x!/>",
      "desc": "Steer and Seek to Xhelp Node",
      "type": "Exec",
      "depict": {
        "raw": "steer -->",
        "in": "steer",
        "out": ""
      },
      "runnable": "\"x! x/>\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "x/(>",
      "desc": "Seek to Xhelp Node Deferred",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"*xhelseek(\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "x!/(>",
      "desc": "Steer and Seek to Xhelp Node Deferred",
      "type": "Exec",
      "depict": {
        "raw": "steer -->",
        "in": "steer",
        "out": ""
      },
      "runnable": "\"x! x/(>\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "of#",
      "desc": "Prepare Value Name for Tree Id",
      "type": "Exec",
      "depict": {
        "raw": "tree-name --> value-name",
        "in": "tree-name",
        "out": "value-name"
      },
      "runnable": "'^\"#\" &\"#\"'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "of@",
      "desc": "Prepare Value Name for this Tree Id",
      "type": "Exec",
      "depict": {
        "raw": "--> value-name",
        "in": "",
        "out": "value-name"
      },
      "runnable": "\"_@ of#\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "of@_",
      "desc": "Get Value for this Tree Id",
      "type": "Exec",
      "depict": {
        "raw": "--> value",
        "in": "",
        "out": "value"
      },
      "runnable": "\"of@ _\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "of@!",
      "desc": "Set Value for this Tree Id",
      "type": "Exec",
      "depict": {
        "raw": "value -->",
        "in": "value",
        "out": ""
      },
      "runnable": "\"of@ !\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "un_",
      "desc": "Get and Empty Value",
      "type": "Exec",
      "depict": {
        "raw": "--> value",
        "in": "",
        "out": "value"
      },
      "runnable": "\"dup _ empty rot !\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "un._",
      "desc": "Get and Empty Rooted Value",
      "type": "Exec",
      "depict": {
        "raw": "--> value",
        "in": "",
        "out": "value"
      },
      "runnable": "\"dup ._ empty rot .!\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "x/<<",
      "desc": "Go Back an Xhelp Level",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"*xhelback\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "x/<<(",
      "desc": "Go Back an Xhelp Level Deferred",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"*xhelback(\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "view?",
      "desc": "Currently Viewing Mode",
      "type": "Exec",
      "depict": {
        "raw": "--> viewing",
        "in": "",
        "out": "viewing"
      },
      "runnable": "\"_Arching\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "retr?",
      "desc": "Currently Retreat Mode",
      "type": "Exec",
      "depict": {
        "raw": "--> retreating",
        "in": "",
        "out": "retreating"
      },
      "runnable": "\"_Xhelp.Retreat\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "retr!",
      "desc": "Set Retreat Mode",
      "type": "Exec",
      "depict": {
        "raw": "retreat -->",
        "in": "retreat",
        "out": ""
      },
      "runnable": "\"!Xhelp.Retreat\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "view!",
      "desc": "Set Viewing Mode",
      "type": "Exec",
      "depict": {
        "raw": "viewing -->",
        "in": "viewing",
        "out": ""
      },
      "runnable": "\"!Arching\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "newedit?",
      "desc": "After True Edit Check for New",
      "type": "Exec",
      "depict": {
        "raw": "--> new-edit",
        "in": "",
        "out": "new-edit"
      },
      "runnable": "\"_Edit negative\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "edit?",
      "desc": "Are Edit for Item Processes Occurring",
      "type": "Exec",
      "depict": {
        "raw": "--> editing-item",
        "in": "",
        "out": "editing-item"
      },
      "runnable": "\"_Edit any)?\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "edits?",
      "desc": "Are Edit Processes Occurring",
      "type": "Exec",
      "depict": {
        "raw": "--> editing",
        "in": "",
        "out": "editing"
      },
      "runnable": "\"_Edits any)?\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "newedit",
      "desc": "Set Edit Processes for New Item Occurring",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"-1 !Edit\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "newedits",
      "desc": "Set New Edit Processes Occurring",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"-1 !Edits\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "noedit",
      "desc": "Set Edit Processes for Item Not Occurring",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"empty !Edit\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "noedit?",
      "desc": "Are Edit Processes for Item Not Occurring",
      "type": "Exec",
      "depict": {
        "raw": "--> not-editing-item",
        "in": "",
        "out": "not-editing-item"
      },
      "runnable": "\"edit? not\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "noedits",
      "desc": "Edit Processes Not Occurring",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"empty !Edits\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "noedits?",
      "desc": "Are Edit Processes Not Occurring",
      "type": "Exec",
      "depict": {
        "raw": "--> not-editing",
        "in": "",
        "out": "not-editing"
      },
      "runnable": "\"edits? not\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "lockname",
      "desc": "Lock Name Field Read Only",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"empty *enteronm Help.!\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "lockval",
      "desc": "Lock Value Field Read Only",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"empty *enterova Help.!\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "unlockdis",
      "desc": "Lock Display and Name Fields Read Only",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"empty *enterall Help.!\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "lockdis",
      "desc": "Lock Display and Name Fields Read Only",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"empty *enteroff Help.!\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "contab&",
      "desc": "Append Revert to Content Tab",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "'&\"Tabber(1);\"'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "contab",
      "desc": "Revert to Content Tab",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"empty contab& Help.!\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "zerotab&",
      "desc": "Append Revert to First Tab",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "'&\"Tabber(0);\"'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "zerotab",
      "desc": "Revert to First Tab",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"empty zerotab& Help.!\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "untrim",
      "desc": "Unescape and Trim",
      "type": "Exec",
      "depict": {
        "raw": "str --> adj-str",
        "in": "str",
        "out": "adj-str"
      },
      "runnable": "\"unescape trim\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "cable(",
      "desc": "Wire Operation Source",
      "type": "Exec",
      "depict": {
        "raw": "--> wiresrc",
        "in": "",
        "out": "wiresrc"
      },
      "runnable": "\"Ent._E1 untrim\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "strand(",
      "desc": "Wire Operation Type",
      "type": "Exec",
      "depict": {
        "raw": "--> wiretype",
        "in": "",
        "out": "wiretype"
      },
      "runnable": "\"Ent._E2 untrim\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "wireop(",
      "desc": "Wire Operation",
      "type": "Exec",
      "depict": {
        "raw": "--> wireop",
        "in": "",
        "out": "wireop"
      },
      "runnable": "\"Ent._E3 untrim\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "wired(",
      "desc": "Wired Response for Wire Op",
      "type": "Exec",
      "depict": {
        "raw": "--> wired",
        "in": "",
        "out": "wired"
      },
      "runnable": "\"Ent._E4 untrim\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "wirex(",
      "desc": "Wired Extra Response 1 for Wire Op",
      "type": "Exec",
      "depict": {
        "raw": "--> wirex",
        "in": "",
        "out": "wirex"
      },
      "runnable": "\"Ent._E5 untrim\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "wirex2(",
      "desc": "Wired Extra Response 2 for Wire Op",
      "type": "Exec",
      "depict": {
        "raw": "--> wirex",
        "in": "",
        "out": "wirex"
      },
      "runnable": "\"Ent._E6 untrim\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "wirex3(",
      "desc": "Wired Extra Response 3 for Wire Op",
      "type": "Exec",
      "depict": {
        "raw": "--> wirex",
        "in": "",
        "out": "wirex"
      },
      "runnable": "\"Ent._E7 untrim\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "wirex4(",
      "desc": "Wired Extra Response 4 for Wire Op",
      "type": "Exec",
      "depict": {
        "raw": "--> wirex",
        "in": "",
        "out": "wirex"
      },
      "runnable": "\"Ent._E8 untrim\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "wirex5(",
      "desc": "Wired Extra Response 5 for Wire Op",
      "type": "Exec",
      "depict": {
        "raw": "--> wirex",
        "in": "",
        "out": "wirex"
      },
      "runnable": "\"Ent._E9 untrim\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "wired*",
      "desc": "Execute Wired Response for Wire Op",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"wired( dup logs execstr\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "x/act",
      "desc": "Invoke Help Action",
      "type": "Exec",
      "depict": {
        "raw": "action -->",
        "in": "action",
        "out": ""
      },
      "runnable": "\"x/act? pop\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "x/act?",
      "desc": "Invoke Help Action with Continue",
      "type": "Exec",
      "depict": {
        "raw": "action --> continue",
        "in": "action",
        "out": "continue"
      },
      "runnable": "\"*xhelperx\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "helpoff",
      "desc": "Make Help and Window in Help Form Hidden",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"Help.@Help false Mep.Window hide\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "helpon",
      "desc": "Make Help and Window in Help Form Visible",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"Help.@Help show true Mep.Window\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "left$/",
      "desc": "String to Left of Token Found from End",
      "type": "Exec",
      "depict": {
        "raw": "source token --> left-of",
        "in": "source token",
        "out": "left-of"
      },
      "runnable": "\"Str.RevLeft\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "right$/",
      "desc": "String to Right of Token Found from End",
      "type": "Exec",
      "depict": {
        "raw": "source token --> right-of",
        "in": "source token",
        "out": "right-of"
      },
      "runnable": "\"Str.RevRight\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "left)$",
      "desc": "String to Left of Token Keep Token",
      "type": "Exec",
      "depict": {
        "raw": "source token --> left-of-with",
        "in": "source token",
        "out": "left-of-with"
      },
      "runnable": "\"dup tuck Str.Left ^\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "left$",
      "desc": "String to Left of Token",
      "type": "Exec",
      "depict": {
        "raw": "source token --> left-of",
        "in": "source token",
        "out": "left-of"
      },
      "runnable": "\"Str.Left\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "right($",
      "desc": "String to Right of Token Keep Token",
      "type": "Exec",
      "depict": {
        "raw": "source token --> right-of",
        "in": "source token",
        "out": "right-of"
      },
      "runnable": "\"dup tuck Str.Right &\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "right$",
      "desc": "String to Right of Token",
      "type": "Exec",
      "depict": {
        "raw": "source token --> right-of",
        "in": "source token",
        "out": "right-of"
      },
      "runnable": "\"Str.Right\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "overext",
      "desc": "Overwrite New Extension",
      "type": "Exec",
      "depict": {
        "raw": "file newext -->",
        "in": "file newext",
        "out": ""
      },
      "runnable": "\"second exch reextend overwrite\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Form.PosTop",
      "desc": "Bring Window To Top at Position",
      "type": "Exec",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "\"Mep._FormHwnd _HWND_TOP 6 2 roll 0 Win.Position pop\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Form.Topmost",
      "desc": "Force Form to Topmost",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"Mep._FormHwnd Win.ForceTop\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Form.ToTop",
      "desc": "Bring Form to Top",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"Mep._FormHwnd Win.ToTop\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "Form.NotTop",
      "desc": "Form Not Topmost",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"Mep._FormHwnd Win.NotTop\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "response",
      "desc": "Decode Flash Result",
      "type": "Exec",
      "depict": {
        "raw": "flash-result --> decoded-result",
        "in": "flash-result",
        "out": "decoded-result"
      },
      "runnable": "'\"<string>\" 1 1 1 parse \"</string>\" 0 1 1 parse entdec'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "conn",
      "desc": "Connector Location",
      "type": "Exec",
      "depict": {
        "raw": "--> conn-dir",
        "in": "",
        "out": "conn-dir"
      },
      "runnable": "\"_Arching.Connector\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "snap(",
      "desc": "Wildcard Files Within Snap",
      "type": "Exec",
      "depict": {
        "raw": "wildcard --> snap-dir snap-seed",
        "in": "wildcard",
        "out": "snap-dir snap-seed"
      },
      "runnable": "\"!wilder snap empty\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "conn(",
      "desc": "Wildcard Files Within Connector",
      "type": "Exec",
      "depict": {
        "raw": "wildcard --> conn-dir conn-seed",
        "in": "wildcard",
        "out": "conn-dir conn-seed"
      },
      "runnable": "\"!wilder conn empty\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "ofcut",
      "desc": "Prefix Cutter Source Path",
      "type": "Exec",
      "depict": {
        "raw": "file-name --> file-spec",
        "in": "file-name",
        "out": "file-spec"
      },
      "runnable": "\"^_Arching.ReachSrc\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "ofconn",
      "desc": "Prefix Connector Path",
      "type": "Exec",
      "depict": {
        "raw": "file-name --> file-spec",
        "in": "file-name",
        "out": "file-spec"
      },
      "runnable": "\"^_Arching.Connector\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "filing(",
      "desc": "Wildcard Files Within Bin",
      "type": "Exec",
      "depict": {
        "raw": "wildcard --> bin-dir bin-seed",
        "in": "wildcard",
        "out": "bin-dir bin-seed"
      },
      "runnable": "\"!wilder empty ofbin empty\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "filing)",
      "desc": "End of File process",
      "type": "Exec",
      "depict": {
        "raw": "wildcard --> bin-dir bin-seed",
        "in": "wildcard",
        "out": "bin-dir bin-seed"
      },
      "runnable": "\"pop2\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "anytext",
      "desc": "Add Any Text Term Post Wildcard",
      "type": "Exec",
      "depict": {
        "raw": "pre-wild --> wild-spec",
        "in": "pre-wild",
        "out": "wild-spec"
      },
      "runnable": "'&\"_*.txt\"'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "nextfile",
      "desc": "Next File of Wildcard",
      "type": "Exec",
      "depict": {
        "raw": "path seed --> path next no-next-file",
        "in": "path seed",
        "out": "path next no-next-file"
      },
      "runnable": "\"_wilder nextof\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "nextof",
      "desc": "Next File of Wildcard Spec",
      "type": "Exec",
      "depict": {
        "raw": "path seed spec --> path next no-next-file",
        "in": "path seed spec",
        "out": "path next no-next-file"
      },
      "runnable": "\"^3 File.NextOf isnull\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "prevfile",
      "desc": "Previous File of Wildcard",
      "type": "Exec",
      "depict": {
        "raw": "path seed --> path next no-prev-file",
        "in": "path seed",
        "out": "path next no-prev-file"
      },
      "runnable": "\"_wilder ^3 File.PrevOf isnull\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "lookin?",
      "desc": "Look for Subject in File and Add to Lookup If New",
      "type": "Exec",
      "depict": {
        "raw": "",
        "in": "",
        "out": ""
      },
      "runnable": "% file-name lookup-subject --> [ items . . ] file-spec true ( if new item) % items are only from 'found' lookup processes  new-item, % spaces are converted to underlines in lookup-subject 'underspc dup keep( exch xflex dup keep( read lookstr not keep) keep) third { ^\"|\" catcr exch dup read &3) second write exch } { pop2 } ifelse '",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "elem(",
      "desc": "Element Within Xml String",
      "type": "Exec",
      "depict": {
        "raw": "xml-string elem-name --> xml-string elem-content",
        "in": "xml-string elem-name",
        "out": "xml-string elem-content"
      },
      "runnable": "'2 copy ^\"<\" &\">\" right$ exch ^\"</\" &\">\" left$'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "finaled",
      "desc": "Finalized File Process",
      "type": "Exec",
      "depict": {
        "raw": "path file-name --> path file-name",
        "in": "path file-name",
        "out": "path file-name"
      },
      "runnable": "'dup ^3 \".xtx\" overext'",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "reading",
      "desc": "Read Current Process File",
      "type": "Exec",
      "depict": {
        "raw": "path file-name --> path file-name content",
        "in": "path file-name",
        "out": "path file-name content"
      },
      "runnable": "\"dup ^3 read\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "execing",
      "desc": "Execute Current Process File",
      "type": "Exec",
      "depict": {
        "raw": "path file-name --> path file-name",
        "in": "path file-name",
        "out": "path file-name"
      },
      "runnable": "\"dup ^3 exec\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "filing",
      "desc": "Full Filespec of Current File Process",
      "type": "Exec",
      "depict": {
        "raw": "path file-name --> path file-name file-spec",
        "in": "path file-name",
        "out": "path file-name file-spec"
      },
      "runnable": "\"dup ^3\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "patched",
      "desc": "Patch Enclose Xml String",
      "type": "Exec",
      "depict": {
        "raw": "xml-str --> patched-xml-str",
        "in": "xml-str",
        "out": "patched-xml-str"
      },
      "runnable": "\"^'<Patch>' &'</Patch>'\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "(@",
      "desc": "Push Current Task",
      "type": "Exec",
      "depict": {
        "raw": "--> task",
        "in": "",
        "out": "task"
      },
      "runnable": "\"_@\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": ")@",
      "desc": "Restore Current Task",
      "type": "Exec",
      "depict": {
        "raw": "task -->",
        "in": "task",
        "out": ""
      },
      "runnable": "\"dup !owner !@\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "newsub",
      "desc": "Create Subform Name of Type",
      "type": "Exec",
      "depict": {
        "raw": "name type -->",
        "in": "name type",
        "out": ""
      },
      "runnable": "\"exch )@ -1 subformed\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "floatup",
      "desc": "Float Current Form Above Supplied Form",
      "type": "Exec",
      "depict": {
        "raw": "base-form -->",
        "in": "base-form",
        "out": ""
      },
      "runnable": "\"_@ false *panelflt\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "unfloat",
      "desc": "Unfloat Current Form from Supplied Form",
      "type": "Exec",
      "depict": {
        "raw": "base-form -->",
        "in": "base-form",
        "out": ""
      },
      "runnable": "\"_@ *panelufl\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "helpup",
      "desc": "Float Current Form Above Help",
      "type": "Exec",
      "depict": {
        "raw": " -->",
        "in": "",
        "out": ""
      },
      "runnable": "\"_@ Help.@Help _@ exch false *panelflt\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "root\\(",
      "desc": "Set Root as Current Node and on Stack",
      "type": "Exec",
      "depict": {
        "raw": " --> rootnode",
        "in": "",
        "out": "rootnode"
      },
      "runnable": "\"root\\ _\\\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "unchild",
      "desc": "Remove All Nodes Below Root",
      "type": "Exec",
      "depict": {
        "raw": " -->",
        "in": "",
        "out": ""
      },
      "runnable": "\"root\\( Tree./Below root\\\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "unsort",
      "desc": "Turn Off Node Sorting",
      "type": "Exec",
      "depict": {
        "raw": " -->",
        "in": "",
        "out": ""
      },
      "runnable": "' '",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "rootsel",
      "desc": "Select Root Node of Tree",
      "type": "Exec",
      "depict": {
        "raw": " -->",
        "in": "",
        "out": ""
      },
      "runnable": "\"root\\( Task.!Select\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "found)?",
      "desc": "Found String in Another and Consumes",
      "type": "Exec",
      "depict": {
        "raw": "source find --> found",
        "in": "source find",
        "out": "found"
      },
      "runnable": "\"exch Str.Found positive\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "found?",
      "desc": "Found String in Another and Not Consume",
      "type": "Exec",
      "depict": {
        "raw": "source find --> source found",
        "in": "source find",
        "out": "source found"
      },
      "runnable": "\"second Str.Found positive\"",
      "source_file": "Robot104/definitt_generated nucleus defs.txt"
    },
    {
      "name": "jsend",
      "desc": "Append Js Trailing Semicolon and CrLf",
      "type": "Exec",
      "depict": {
        "raw": "js-str --> js-ended",
        "in": "js-str",
        "out": "js-ended"
      },
      "runnable": "\"&'; '\"",
      "source_file": "Robot104/defjsops_javascript group definitions.txt"
    },
    {
      "name": "jspend",
      "desc": "Append Js Trailing Parenthesis and Semicolon and CrLf",
      "type": "Exec",
      "depict": {
        "raw": "js-str --> js-paren-ended",
        "in": "js-str",
        "out": "js-paren-ended"
      },
      "runnable": "\"&'); '\"",
      "source_file": "Robot104/defjsops_javascript group definitions.txt"
    },
    {
      "name": "jsfend",
      "desc": "Convert to Js File Quoted Append Semicolon and CrLf",
      "type": "Exec",
      "depict": {
        "raw": "js-str --> js-paren-ended",
        "in": "js-str",
        "out": "js-paren-ended"
      },
      "runnable": "'tojsquo & jsend'",
      "source_file": "Robot104/defjsops_javascript group definitions.txt"
    },
    {
      "name": "jsquo&",
      "desc": "Js Filing Quote and Append",
      "type": "Exec",
      "depict": {
        "raw": "build file --> adj-build",
        "in": "build file",
        "out": "adj-build"
      },
      "runnable": "\"tojsquo &\"",
      "source_file": "Robot104/defjsops_javascript group definitions.txt"
    },
    {
      "name": "quo&jspend",
      "desc": "Quote and Append Js Trailing Parenthesis and Semicolon and CrLf",
      "type": "Exec",
      "depict": {
        "raw": "build file --> adj-build",
        "in": "build file",
        "out": "adj-build"
      },
      "runnable": "\"quoter & jspend\"",
      "source_file": "Robot104/defjsops_javascript group definitions.txt"
    },
    {
      "name": "jbas",
      "desc": "Convert to Javascript Basic Data Assign and Append",
      "type": "Exec",
      "depict": {
        "raw": "builder valname --> adj-build",
        "in": "builder valname",
        "out": "adj-build"
      },
      "runnable": "'dup _ \"\"\"\" \"\\\"\"\" replall cr \"\\n\" replall asc2hex quoter exch quoter ^\"Jbas(\" &\",\" ^ &\");\" catcr & '",
      "source_file": "Robot104/defjsops_javascript group definitions.txt"
    },
    {
      "name": "jspar&",
      "desc": "Escaped JS Parameter Concatenate",
      "type": "Exec",
      "depict": {
        "raw": "build raw-param --> adj-build",
        "in": "build raw-param",
        "out": "adj-build"
      },
      "runnable": "\"escape quoter &\"",
      "source_file": "Robot104/defjsops_javascript group definitions.txt"
    },
    {
      "name": "ofdesktop",
      "desc": "Prefix Local Desktop Folder",
      "type": "Exec",
      "depict": {
        "raw": "filepart --> desktop-spec",
        "in": "filepart",
        "out": "desktop-spec"
      },
      "runnable": "'\"Desktop\" File.Special normpath ^'",
      "source_file": "Robot104/deflocal_localhost definition group.txt"
    },
    {
      "name": "ofdocs",
      "desc": "Prefix Local Document Folder",
      "type": "Exec",
      "depict": {
        "raw": "filepart --> docs-spec",
        "in": "filepart",
        "out": "docs-spec"
      },
      "runnable": "'\"MyDocuments\" File.Special normpath ^'",
      "source_file": "Robot104/deflocal_localhost definition group.txt"
    },
    {
      "name": "localp",
      "desc": "Localhost Url With Trailing Colon",
      "type": "Exec",
      "depict": {
        "raw": "--> lhost-urlp",
        "in": "",
        "out": "lhost-urlp"
      },
      "runnable": "'_Arching.LocalHost -1 right &\":\"'",
      "source_file": "Robot104/deflocal_localhost definition group.txt"
    },
    {
      "name": "heretext",
      "desc": "Text File in Robot",
      "type": "Exec",
      "depict": {
        "raw": "filename --> text-filename-here",
        "in": "filename",
        "out": "text-filename-here"
      },
      "runnable": "'text ofhere'",
      "source_file": "Robot104/deflocal_localhost definition group.txt"
    },
    {
      "name": "text!here",
      "desc": "Write Text File to Robot",
      "type": "Exec",
      "depict": {
        "raw": "text filename --> ",
        "in": "text filename",
        "out": ""
      },
      "runnable": "'heretext write'",
      "source_file": "Robot104/deflocal_localhost definition group.txt"
    },
    {
      "name": "text*here",
      "desc": "Exec Text File in Robot",
      "type": "Exec",
      "depict": {
        "raw": "filename --> (exec-results. . .)",
        "in": "filename",
        "out": "(exec-results. . .)"
      },
      "runnable": "'heretext exec$'",
      "source_file": "Robot104/deflocal_localhost definition group.txt"
    },
    {
      "name": "localporu",
      "desc": "Prefix Localhost Url with Port No Trailing Slash",
      "type": "Exec",
      "depict": {
        "raw": "port --> local-ported-url",
        "in": "port",
        "out": "local-ported-url"
      },
      "runnable": "\"localp ^\"",
      "source_file": "Robot104/deflocal_localhost definition group.txt"
    },
    {
      "name": "App.Standing",
      "desc": "FireDance Was Run From PhoSend",
      "type": "Exec",
      "depict": {
        "raw": "--> phosend-run",
        "in": "",
        "out": "phosend-run"
      },
      "runnable": "' _Arching.Combo _Arching.Dombo or '",
      "source_file": "Robot104/deflocal_localhost definition group.txt"
    },
    {
      "name": "ofspog",
      "desc": "Prefix Path of Spot Group",
      "type": "Exec",
      "depict": {
        "raw": "group-name --> spog-folder",
        "in": "group-name",
        "out": "spog-folder"
      },
      "runnable": "'^\"Spotbut\\\" folder'",
      "source_file": "Robot104/defmachs_machine group definitions.txt"
    },
    {
      "name": "ofspbu",
      "desc": "Spot Group and Button File Spec",
      "type": "Exec",
      "depict": {
        "raw": "button group-name --> spog-button",
        "in": "button group-name",
        "out": "spog-button"
      },
      "runnable": "'ofspog &\"Spotbut\" ^'",
      "source_file": "Robot104/defmachs_machine group definitions.txt"
    },
    {
      "name": "ofcnc",
      "desc": "Prefix Path of Cnc Folder",
      "type": "Exec",
      "depict": {
        "raw": "file-name --> file-spec",
        "in": "file-name",
        "out": "file-spec"
      },
      "runnable": "\"^_Arching.Cnc\"",
      "source_file": "Robot104/defmachs_machine group definitions.txt"
    },
    {
      "name": "ofwiz",
      "desc": "Prefix Path of Gwizard Area",
      "type": "Exec",
      "depict": {
        "raw": "filename --> pathed-filename",
        "in": "filename",
        "out": "pathed-filename"
      },
      "runnable": "'^\"Gwizard\\\" ofconn'",
      "source_file": "Robot104/defmachs_machine group definitions.txt"
    },
    {
      "name": "wiz*",
      "desc": "Gwizard Path Execute",
      "type": "Exec",
      "depict": {
        "raw": "filename -->",
        "in": "filename",
        "out": ""
      },
      "runnable": "\"ofwiz exec\"",
      "source_file": "Robot104/defmachs_machine group definitions.txt"
    },
    {
      "name": "wiz*conn",
      "desc": "Gwizard Path and Text Extension Execute",
      "type": "Exec",
      "depict": {
        "raw": "fileroot -->",
        "in": "fileroot",
        "out": ""
      },
      "runnable": "\"text wiz*\"",
      "source_file": "Robot104/defmachs_machine group definitions.txt"
    },
    {
      "name": "text_wiz",
      "desc": "Gwizard Path and Text Extension Read",
      "type": "Exec",
      "depict": {
        "raw": "fileroot --> data",
        "in": "fileroot",
        "out": "data"
      },
      "runnable": "\"text ofwiz read\"",
      "source_file": "Robot104/defmachs_machine group definitions.txt"
    },
    {
      "name": "text!wiz",
      "desc": "Gwizard Path and Text Extension Write",
      "type": "Exec",
      "depict": {
        "raw": "data fileroot -->",
        "in": "data fileroot",
        "out": ""
      },
      "runnable": "\"text ofwiz write\"",
      "source_file": "Robot104/defmachs_machine group definitions.txt"
    },
    {
      "name": "ofpgm",
      "desc": "Prefix Program Path Dir",
      "type": "Exec",
      "depict": {
        "raw": "filename --> pathed-filename",
        "in": "filename",
        "out": "pathed-filename"
      },
      "runnable": "'_Device &\"\\Program\\\" ofconn ^'",
      "source_file": "Robot104/defmachs_machine group definitions.txt"
    },
    {
      "name": "ofphog",
      "desc": "Prefix Connector Photographer Path",
      "type": "Exec",
      "depict": {
        "raw": "filename --> filespec",
        "in": "filename",
        "out": "filespec"
      },
      "runnable": "'^\"Photog\\\" ofconn'",
      "source_file": "Robot104/defphogs_chuutz photography group.txt"
    },
    {
      "name": "ofnumb",
      "desc": "Prefix Connector Sms Numbers Path",
      "type": "Exec",
      "depict": {
        "raw": "filename --> filespec",
        "in": "filename",
        "out": "filespec"
      },
      "runnable": "'^\"Numbers\\\" ofconn'",
      "source_file": "Robot104/defphogs_chuutz photography group.txt"
    },
    {
      "name": "text_subj",
      "desc": "Subject Path and Text Extension Read",
      "type": "Exec",
      "depict": {
        "raw": "fileroot --> data",
        "in": "fileroot",
        "out": "data"
      },
      "runnable": "\"subjtext read\"",
      "source_file": "Robot104/defphtog_photo system definitions.txt"
    },
    {
      "name": "subjtext",
      "desc": "Format Filename with Subject Path and Text Extension",
      "type": "Exec",
      "depict": {
        "raw": "fileroot --> file-spec",
        "in": "fileroot",
        "out": "file-spec"
      },
      "runnable": "\"ofsubj text\"",
      "source_file": "Robot104/defphtog_photo system definitions.txt"
    },
    {
      "name": "psd",
      "desc": "Add or Change to Psd Extension",
      "type": "Exec",
      "depict": {
        "raw": "filename --> psd-ext-filename",
        "in": "filename",
        "out": "psd-ext-filename"
      },
      "runnable": "'&\".psd\"'",
      "source_file": "Robot104/defphtog_photo system definitions.txt"
    },
    {
      "name": "jpg",
      "desc": "Add or Change to Jpg Extension",
      "type": "Exec",
      "depict": {
        "raw": "filename --> jpg-ext-filename",
        "in": "filename",
        "out": "jpg-ext-filename"
      },
      "runnable": "'&\".jpg\"'",
      "source_file": "Robot104/defphtog_photo system definitions.txt"
    },
    {
      "name": "png",
      "desc": "Add or Change to Png Extension",
      "type": "Exec",
      "depict": {
        "raw": "filename --> jpg-ext-filename",
        "in": "filename",
        "out": "jpg-ext-filename"
      },
      "runnable": "'&\".png\"'",
      "source_file": "Robot104/defphtog_photo system definitions.txt"
    },
    {
      "name": "repsd",
      "desc": "Add or Change to Psd Extension",
      "type": "Exec",
      "depict": {
        "raw": "filename --> psd-ext-filename",
        "in": "filename",
        "out": "psd-ext-filename"
      },
      "runnable": "'\".psd\" reextend'",
      "source_file": "Robot104/defphtog_photo system definitions.txt"
    },
    {
      "name": "rejpg",
      "desc": "Add or Change to Jpg Extension",
      "type": "Exec",
      "depict": {
        "raw": "filename --> jpg-ext-filename",
        "in": "filename",
        "out": "jpg-ext-filename"
      },
      "runnable": "'\".jpg\" reextend'",
      "source_file": "Robot104/defphtog_photo system definitions.txt"
    },
    {
      "name": "repng",
      "desc": "Add or Change to Png Extension",
      "type": "Exec",
      "depict": {
        "raw": "filename --> png-ext-filename",
        "in": "filename",
        "out": "png-ext-filename"
      },
      "runnable": "'\".png\" reextend'",
      "source_file": "Robot104/defphtog_photo system definitions.txt"
    },
    {
      "name": "chuuter!",
      "desc": "Set Shooter Venue and Shooter Number From Chuuter Form",
      "type": "Exec",
      "depict": {
        "raw": "chuuter-id -->",
        "in": "chuuter-id",
        "out": ""
      },
      "runnable": "\"dup 2 right !Shooter.Number -2 right !Shooter.Venue\"",
      "source_file": "Robot104/defphtog_photo system definitions.txt"
    },
    {
      "name": "ofincom",
      "desc": "Prefix Path of Incoming Images",
      "type": "Exec",
      "depict": {
        "raw": "filename --> pathed-filename",
        "in": "filename",
        "out": "pathed-filename"
      },
      "runnable": "\"^_Arching.Incoming\"",
      "source_file": "Robot104/defphtog_photo system definitions.txt"
    },
    {
      "name": "chuuter",
      "desc": "Shooter Venue Combined With Shooter Number",
      "type": "Exec",
      "depict": {
        "raw": "--> chuuter-id",
        "in": "",
        "out": "chuuter-id"
      },
      "runnable": "\"_Shooter.Venue &_Shooter.Number\"",
      "source_file": "Robot104/defphtog_photo system definitions.txt"
    },
    {
      "name": "chuuter?",
      "desc": "Does String Have Trailing Shooter Number",
      "type": "Exec",
      "depict": {
        "raw": "test-string --> has-shooter-number",
        "in": "test-string",
        "out": "has-shooter-number"
      },
      "runnable": "\"dup -2 right 1 right numeric { % % stack: test-string % pop false } { % % stack: test-string % 2 right numeric } ifelse \"",
      "source_file": "Robot104/defphtog_photo system definitions.txt"
    },
    {
      "name": "Vm.*Anchor",
      "desc": "Vm Load Variables of Xact",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "'\"Anchor_\" &_Arching.ServLock text*xact'",
      "source_file": "Robot104/defservr_server op definitions.txt"
    },
    {
      "name": "publib",
      "desc": "Public Http 1st Server No Trailing Slash",
      "type": "Exec",
      "depict": {
        "raw": "--> attr-public",
        "in": "",
        "out": "attr-public"
      },
      "runnable": "\"_Arching.OutIP httpck\"",
      "source_file": "Robot104/defservr_server op definitions.txt"
    },
    {
      "name": "outbasd",
      "desc": "Client Accessible 1st Server Cmd Url",
      "type": "Exec",
      "depict": {
        "raw": "--> attr-database-url",
        "in": "",
        "out": "attr-database-url"
      },
      "runnable": "\"publib &'/' &_Arching.Request\"",
      "source_file": "Robot104/defservr_server op definitions.txt"
    },
    {
      "name": "servinf",
      "desc": "Format Url with 1st Server Remote Tell Command",
      "type": "Exec",
      "depict": {
        "raw": "str --> remote-tell-url",
        "in": "str",
        "out": "remote-tell-url"
      },
      "runnable": "\"publib &'/' &_Arching.Command ^\"",
      "source_file": "Robot104/defservr_server op definitions.txt"
    },
    {
      "name": "publid",
      "desc": "Public Http 2nd Server No Trailing Slash",
      "type": "Exec",
      "depict": {
        "raw": "--> attr-public",
        "in": "",
        "out": "attr-public"
      },
      "runnable": "\"_Arching.OutIP2 httpck\"",
      "source_file": "Robot104/defservr_server op definitions.txt"
    },
    {
      "name": "outbasf",
      "desc": "Client Accessible 2nd Server Cmd Url",
      "type": "Exec",
      "depict": {
        "raw": "--> attr-database-url",
        "in": "",
        "out": "attr-database-url"
      },
      "runnable": "\"publid &'/' &_Arching.Request\"",
      "source_file": "Robot104/defservr_server op definitions.txt"
    },
    {
      "name": "servinh",
      "desc": "Format Url with 2nd Server Remote Tell Command",
      "type": "Exec",
      "depict": {
        "raw": "str --> remote-tell-url",
        "in": "str",
        "out": "remote-tell-url"
      },
      "runnable": "\"publid &'/' &_Arching.Command ^\"",
      "source_file": "Robot104/defservr_server op definitions.txt"
    },
    {
      "name": "publie",
      "desc": "Public Http 3rd Server No Trailing Slash",
      "type": "Exec",
      "depict": {
        "raw": "--> attr-public",
        "in": "",
        "out": "attr-public"
      },
      "runnable": "\"_Arching.OutIP3 httpck\"",
      "source_file": "Robot104/defservr_server op definitions.txt"
    },
    {
      "name": "outbasg",
      "desc": "Client Accessible 3rd Server Cmd Url",
      "type": "Exec",
      "depict": {
        "raw": "--> attr-database-url",
        "in": "",
        "out": "attr-database-url"
      },
      "runnable": "\"publie &'/' &_Arching.Request\"",
      "source_file": "Robot104/defservr_server op definitions.txt"
    },
    {
      "name": "servini",
      "desc": "Format Url with 3rd Server Remote Tell Command",
      "type": "Exec",
      "depict": {
        "raw": "str --> remote-tell-url",
        "in": "str",
        "out": "remote-tell-url"
      },
      "runnable": "\"publie &'/' &_Arching.Command ^\"",
      "source_file": "Robot104/defservr_server op definitions.txt"
    },
    {
      "name": "publif",
      "desc": "Public Http 4th Server No Trailing Slash",
      "type": "Exec",
      "depict": {
        "raw": "--> attr-public",
        "in": "",
        "out": "attr-public"
      },
      "runnable": "\"_Arching.OutIP4 httpck\"",
      "source_file": "Robot104/defservr_server op definitions.txt"
    },
    {
      "name": "outbash",
      "desc": "Client Accessible 4th Server Cmd Url",
      "type": "Exec",
      "depict": {
        "raw": "--> attr-database-url",
        "in": "",
        "out": "attr-database-url"
      },
      "runnable": "\"publif &'/' &_Arching.Request\"",
      "source_file": "Robot104/defservr_server op definitions.txt"
    },
    {
      "name": "servinj",
      "desc": "Format Url with 4th Server Remote Tell Command",
      "type": "Exec",
      "depict": {
        "raw": "str --> remote-tell-url",
        "in": "str",
        "out": "remote-tell-url"
      },
      "runnable": "\"publif &'/' &_Arching.Command ^\"",
      "source_file": "Robot104/defservr_server op definitions.txt"
    },
    {
      "name": "publig",
      "desc": "Public Http 5th Server No Trailing Slash",
      "type": "Exec",
      "depict": {
        "raw": "--> attr-public",
        "in": "",
        "out": "attr-public"
      },
      "runnable": "\"_Arching.OutIP5 httpck\"",
      "source_file": "Robot104/defservr_server op definitions.txt"
    },
    {
      "name": "outbasi",
      "desc": "Client Accessible 5th Server Cmd Url",
      "type": "Exec",
      "depict": {
        "raw": "--> attr-database-url",
        "in": "",
        "out": "attr-database-url"
      },
      "runnable": "\"publig &'/' &_Arching.Request\"",
      "source_file": "Robot104/defservr_server op definitions.txt"
    },
    {
      "name": "servink",
      "desc": "Format Url with 5th Server Remote Tell Command",
      "type": "Exec",
      "depict": {
        "raw": "str --> remote-tell-url",
        "in": "str",
        "out": "remote-tell-url"
      },
      "runnable": "\"publig &'/' &_Arching.Command ^\"",
      "source_file": "Robot104/defservr_server op definitions.txt"
    },
    {
      "name": "dated",
      "desc": "Convert to Date Standard Format",
      "type": "Exec",
      "depict": {
        "raw": "time --> std-date",
        "in": "time",
        "out": "std-date"
      },
      "runnable": "'Time.Datels pop ^\"/\" & &\"/\" ^'",
      "source_file": "Robot104/deftimed_date and time group definitions.txt"
    },
    {
      "name": "shdate",
      "desc": "Convert to Short Date",
      "type": "Exec",
      "depict": {
        "raw": "time-date --> short-date",
        "in": "time-date",
        "out": "short-date"
      },
      "runnable": "\"Time.Datels pop 2 prezero exch 2 prezero ^ exch 2 right ^\"",
      "source_file": "Robot104/deftimed_date and time group definitions.txt"
    },
    {
      "name": "estime",
      "desc": "Eastern Standard Date/Time from Jsed Msec",
      "type": "Exec",
      "depict": {
        "raw": "js-msec --> est-date-time",
        "in": "js-msec",
        "out": "est-date-time"
      },
      "runnable": "'fromjs$ \"Eastern Standard Time\" Time.UtcTo'",
      "source_file": "Robot104/deftimed_date and time group definitions.txt"
    },
    {
      "name": "jsmsec",
      "desc": "Eastern Standard Date/Time to Js Msec",
      "type": "Exec",
      "depict": {
        "raw": "est-date-time --> js-msec",
        "in": "est-date-time",
        "out": "js-msec"
      },
      "runnable": "'\"Eastern Standard Time\" Time.ToUtc js$'",
      "source_file": "Robot104/deftimed_date and time group definitions.txt"
    },
    {
      "name": "Top.!",
      "desc": "Javascript Command to TopOver",
      "type": "Exec",
      "depict": {
        "raw": "topover-js --> ",
        "in": "topover-js",
        "out": ""
      },
      "runnable": "'asc2hex quoter ^\"ToOver(\" &\");\" Base.!'",
      "source_file": "Robot104/deftoper_topover vectors.txt"
    },
    {
      "name": "atoped",
      "desc": "Determine Matching Atop System Arrival",
      "type": "Exec",
      "depict": {
        "raw": "atop-locn --> arrived",
        "in": "atop-locn",
        "out": "arrived"
      },
      "runnable": "' 3 charat( \")Atoped\" log)( _Atop.Vector \"))Atoped\" log)( eq exch 2 charat( \")))Atoped\" log)( _Atop.Ncont \"))))Atoped\" log)( eq rot and exch 1 left _Atop.Gcont \")))))Atoped\" log)( eq$ and '",
      "source_file": "Robot104/deftoper_topover vectors.txt"
    },
    {
      "name": "atoprim",
      "desc": "Execute Atop Ordinal Primary",
      "type": "Exec",
      "depict": {
        "raw": "primnum -->",
        "in": "primnum",
        "out": ""
      },
      "runnable": "'^\"prim\" !Atop.Cutton *atopfirg'",
      "source_file": "Robot104/deftoper_topover vectors.txt"
    },
    {
      "name": "atopvec",
      "desc": "Execute Atop Ordinal Vector",
      "type": "Exec",
      "depict": {
        "raw": "vecnum -->",
        "in": "vecnum",
        "out": ""
      },
      "runnable": "'^\"Vector\" !Atop.Cutton *atopfirg'",
      "source_file": "Robot104/deftoper_topover vectors.txt"
    },
    {
      "name": "atopviz",
      "desc": "Wait for Vectorize from Atop Page",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"*atopwtvi(\"",
      "source_file": "Robot104/deftoper_topover vectors.txt"
    },
    {
      "name": "atop(",
      "desc": "Execute Atop Step Preserving Current Tick",
      "type": "Exec",
      "depict": {
        "raw": "chain-step -->",
        "in": "chain-step",
        "out": ""
      },
      "runnable": "\"_tick !Atop.Chtick true !Atop.Within execstr\"",
      "source_file": "Robot104/deftoper_topover vectors.txt"
    },
    {
      "name": "atop)",
      "desc": "Done with Atop Step",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"false !Atop.Within _Atop.Chtick !tick \"",
      "source_file": "Robot104/deftoper_topover vectors.txt"
    },
    {
      "name": "hierpath",
      "desc": "Relative Hier for Current Node to Path String",
      "type": "Exec",
      "depict": {
        "raw": "--> hier-path-str",
        "in": "",
        "out": "hier-path-str"
      },
      "runnable": "'_\\ hier \"\\\" \"/\" replall'",
      "source_file": "Robot104/deftrees_tree and node definitions.txt"
    },
    {
      "name": "sel@safe",
      "desc": "Task Node Not Selected Then Default Root Node",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\" sel@? not { rootnode 0 Task.!Select } if \"",
      "source_file": "Robot104/deftrees_tree and node definitions.txt"
    },
    {
      "name": "nod@",
      "desc": "Tree Changed",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"@^Changed\"",
      "source_file": "Robot104/deftrees_tree and node definitions.txt"
    },
    {
      "name": "Fup.Outbound",
      "desc": "Set Phone Numbers Normal Outbound",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "'_Msg.numbr ^\"+1\" !Cnv.SrcTo _Msg.dialr ^\"+1\" !Cnv.SrcFrom'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.Inbound",
      "desc": "Set Phone Numbers Opposite of Outbound",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "'_Msg.numbr ^\"+1\" !Cnv.SrcFrom _Msg.dialr ^\"+1\" !Cnv.SrcTo'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.UnSame",
      "desc": "Reset Alternate Phone Routes",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "'empty !Msgr.Same empty !Msgr.Samf empty !Msgr.Samg'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.!Fsplit",
      "desc": "Store Message Image to Fbase Split",
      "type": "Exec",
      "depict": {
        "raw": "extension --> extension",
        "in": "extension",
        "out": "extension"
      },
      "runnable": "'_Fup.Mimage _Fup.Fbase &3 dup !Fup.Split copyfile *fuplsplt'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.!Gsplit",
      "desc": "Store Message Image to Gbase Split",
      "type": "Exec",
      "depict": {
        "raw": "extension --> extension",
        "in": "extension",
        "out": "extension"
      },
      "runnable": "'_Fup.Mimage _Fup.Gbase &3 dup !Fup.Split copyfile *fuplsplt'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.PsdOrPng",
      "desc": "Upload Extension is Psd or Png",
      "type": "Exec",
      "depict": {
        "raw": "--> is-psd-or-png",
        "in": "",
        "out": "is-psd-or-png"
      },
      "runnable": "'Fup.IsPsd Fup.IsPng or'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.PsdPngJpg",
      "desc": "Upload Extension is Psd or Png or Jpg",
      "type": "Exec",
      "depict": {
        "raw": "--> is-psd-png-jpg",
        "in": "",
        "out": "is-psd-png-jpg"
      },
      "runnable": "'Fup.IsJpg Fup.PsdOrPng or'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.IsJpg",
      "desc": "Upload Extension is Jpg",
      "type": "Exec",
      "depict": {
        "raw": "--> is-jpg",
        "in": "",
        "out": "is-jpg"
      },
      "runnable": "'_Fup.Ext lower \".jpg\" eq$'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.IsPng",
      "desc": "Upload Extension is Png",
      "type": "Exec",
      "depict": {
        "raw": "--> is-png",
        "in": "",
        "out": "is-png"
      },
      "runnable": "'_Fup.Ext lower \".png\" eq$'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.IsPsd",
      "desc": "Upload Extension is Psd",
      "type": "Exec",
      "depict": {
        "raw": "--> is-psd",
        "in": "",
        "out": "is-psd"
      },
      "runnable": "'_Fup.Ext lower \".psd\" eq$'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.Mimage))",
      "desc": "Set File Information Variables",
      "type": "Exec",
      "depict": {
        "raw": "msg-body left-part filespec --> msg-body",
        "in": "msg-body left-part filespec",
        "out": "msg-body"
      },
      "runnable": "' % stack: msg-body left-part full-spec dup File.Length !Fup.Size !Fup.Mimage % stack: msg-body left-part !Fup.Rest '",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.BackTo&",
      "desc": "Append Return Destination Phone Tag",
      "type": "Exec",
      "depict": {
        "raw": "build --> adj-build",
        "in": "build",
        "out": "adj-build"
      },
      "runnable": "'\"<To>\" &_Cnv.SrcFrom &\"</To>\" &'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.BackFrom&",
      "desc": "Append Return to Source Phone Tag",
      "type": "Exec",
      "depict": {
        "raw": "build --> adj-build",
        "in": "build",
        "out": "adj-build"
      },
      "runnable": "'\"<From>\" &_Cnv.SrcTo &\"</From>\" &'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.To&",
      "desc": "Append Destination Phone Tag",
      "type": "Exec",
      "depict": {
        "raw": "build --> adj-build",
        "in": "build",
        "out": "adj-build"
      },
      "runnable": "'\"<To>\" &_Cnv.SrcTo &\"</To>\" &'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.From&",
      "desc": "Append Source Phone Tag",
      "type": "Exec",
      "depict": {
        "raw": "build --> adj-build",
        "in": "build",
        "out": "adj-build"
      },
      "runnable": "'\"<From>\" &_Cnv.SrcFrom &\"</From>\" &'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.Medias&",
      "desc": "Append Number of Media Tag",
      "type": "Exec",
      "depict": {
        "raw": "build medias --> adj-build",
        "in": "build medias",
        "out": "adj-build"
      },
      "runnable": "'^\"<NumMedia>\" &\"</NumMedia>\" &'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.From",
      "desc": "Get Ten Digit of Source Phone",
      "type": "Exec",
      "depict": {
        "raw": "--> phone",
        "in": "",
        "out": "phone"
      },
      "runnable": "'_Cnv.SrcFrom -2 left'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.To",
      "desc": "Get Ten Digit of Dest Phone",
      "type": "Exec",
      "depict": {
        "raw": "--> phone",
        "in": "",
        "out": "phone"
      },
      "runnable": "'_Cnv.SrcTo -2 left'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.!Fmark",
      "desc": "Copy Mark to Fbased",
      "type": "Exec",
      "depict": {
        "raw": "mark-name -->",
        "in": "mark-name",
        "out": ""
      },
      "runnable": "'ofmark _Fup.Fbase &\"X.jpg\" copyfile'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.!Gmark",
      "desc": "Copy Mark to Gbased",
      "type": "Exec",
      "depict": {
        "raw": "mark-name -->",
        "in": "mark-name",
        "out": ""
      },
      "runnable": "'ofmark _Fup.Gbase &\"X.jpg\" copyfile'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.!Fmarf",
      "desc": "Copy Mark to Fbasef",
      "type": "Exec",
      "depict": {
        "raw": "mark-name -->",
        "in": "mark-name",
        "out": ""
      },
      "runnable": "'ofmark _Fup.Fbasf &\"X.jpg\" copyfile'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.!Gmarf",
      "desc": "Copy Mark to Gbasef",
      "type": "Exec",
      "depict": {
        "raw": "mark-name -->",
        "in": "mark-name",
        "out": ""
      },
      "runnable": "'ofmark _Fup.Gbasf &\"X.jpg\" copyfile'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.MoreDrive",
      "desc": "Change Drive Prefix if MoreLink Type",
      "type": "Exec",
      "depict": {
        "raw": "fspec --> maybe-adj-fspec",
        "in": "fspec",
        "out": "maybe-adj-fspec"
      },
      "runnable": "' _Fup.MoreLink { -1 left ^_Fup.MoreDrive } if '",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup._PsdPngJpg",
      "desc": "Is Extension One of Psd, Png, or Jpg",
      "type": "Exec",
      "depict": {
        "raw": "--> included",
        "in": "",
        "out": "included"
      },
      "runnable": "'_Fup.HasJpg _Fup.HasPsd or _Fup.HasPng or'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.FSrcDestT",
      "desc": "Team Member Folders Other Phone",
      "type": "Exec",
      "depict": {
        "raw": "phone -->",
        "in": "phone",
        "out": ""
      },
      "runnable": "' ofsnap folder dup !Fup.FsrcT &_Fup.Member folder dup !Fup.FdestT Xact.Msg$ & !Fup.FbaseT '",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.FSrcDestS",
      "desc": "Source and Dest Identity",
      "type": "Exec",
      "depict": {
        "raw": "phone -->",
        "in": "phone",
        "out": ""
      },
      "runnable": "' dup ofsnap folder( !Fup.FsrcS ^ folder !Fup.FdestS '",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.FDestBaseS",
      "desc": "Message Based From Fdest",
      "type": "Exec",
      "depict": {
        "raw": "phone -->",
        "in": "phone",
        "out": ""
      },
      "runnable": "' _Fup.FdestS Xact.Msg$ & \"____fbases___\" log)( !Fup.FbaseS '",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.GSrcDestS",
      "desc": "Source and Dest Identity",
      "type": "Exec",
      "depict": {
        "raw": "phone -->",
        "in": "phone",
        "out": ""
      },
      "runnable": "' dup ofsnap folder( !Fup.GsrcS ^ folder !Fup.GdestS '",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.MoreXpand",
      "desc": "Set Up Copy for Xpand",
      "type": "Exec",
      "depict": {
        "raw": "--> src-image xpand-image",
        "in": "",
        "out": "src-image xpand-image"
      },
      "runnable": "' _Fup.Mimage Fup.MoreDrive dup extension ^_Fup.Xpand '",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.!Fxmage",
      "desc": "Copy Expansion Image Into Fbased",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "' Fup.MoreXpand ^_Fup.Fbase dup !Fup.Fimage copyfile '",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.!Gxmage",
      "desc": "Copy Expansion Image Into Gbased",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "' Fup.MoreXpand ^_Fup.Gbase dup !Fup.Gimage copyfile '",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.!Fxmagf",
      "desc": "Copy Expansion Image Into Fbasef",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "' Fup.MoreXpand ^_Fup.Fbasf dup !Fup.Fimagf copyfile '",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.!Gxmagf",
      "desc": "Copy Expansion Image Into Gbasef",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "' Fup.MoreXpand ^_Fup.Gbasf dup !Fup.Gimagf copyfile '",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.Orig&",
      "desc": "Append the Original Filename Tag",
      "type": "Exec",
      "depict": {
        "raw": "builder --> adj-builder",
        "in": "builder",
        "out": "adj-builder"
      },
      "runnable": "'&\"<Original>\" _Fup.Outgo filename asc2hex & &\"</Original>\"'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup._Ext",
      "desc": "Get Message Stated File Extension or Assume Psd",
      "type": "Exec",
      "depict": {
        "raw": "--> file-extension",
        "in": "",
        "out": "file-extension"
      },
      "runnable": "' _Cnv.SrcBody \"(.\" found)? { _Cnv.SrcBody \"(.\" right$ \")\" left$ lower ^\".\" } { \".psd\" } ifelse '",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.Extension",
      "desc": "Get Message File Extension",
      "type": "Exec",
      "depict": {
        "raw": "--> file-extension",
        "in": "",
        "out": "file-extension"
      },
      "runnable": "' _Fup.HasPsd \"))))))psd\" log)( { Fup._Ext } { _Fup.HasJpg \"))))))jpg\" log)( { \".jpg\" } { _Fup.HasPng \"))))))png\" log)( { \".png\" } { empty } ifelse } ifelse } ifelse '",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.Phone/",
      "desc": "Remove Phone Tags from Message Text",
      "type": "Exec",
      "depict": {
        "raw": "--> body-unphoned-str",
        "in": "",
        "out": "body-unphoned-str"
      },
      "runnable": "'\" (PHONE)\" empty replall \"(PHONE)\" empty replall'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.UnPhone",
      "desc": "Remove Added Tags and Phone Tags from Message Text",
      "type": "Exec",
      "depict": {
        "raw": "--> body-untagged-str",
        "in": "",
        "out": "body-untagged-str"
      },
      "runnable": "'Fup.UnTag Fup.Phone/'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.UnTag",
      "desc": "Remove Added Tags from Message Text",
      "type": "Exec",
      "depict": {
        "raw": "--> body-untagged-str",
        "in": "",
        "out": "body-untagged-str"
      },
      "runnable": "'_Cnv.SrcBody \"(PSD)\" empty replall \"(JPG)\" empty replall \"(PNG)\" empty replall \"/#\" left$ '",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.TagBody",
      "desc": "Tag Body Text with File Vector",
      "type": "Exec",
      "depict": {
        "raw": "str --> tagged-str",
        "in": "str",
        "out": "tagged-str"
      },
      "runnable": "'&\" The \" _Fup.Ext -1 left upper & &\" is \"'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.Body&",
      "desc": "Append Body Text with Sid Tag",
      "type": "Exec",
      "depict": {
        "raw": "build body-src --> tagged-build",
        "in": "build body-src",
        "out": "tagged-build"
      },
      "runnable": "'^\"<Body>\" &\"</Body>\" &\"<SmsSid>\" &_Cnv.SrcSid &\"</SmsSid>\" &'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.Extra&",
      "desc": "Append Extra Tag",
      "type": "Exec",
      "depict": {
        "raw": "build --> tagged-build",
        "in": "build",
        "out": "tagged-build"
      },
      "runnable": "'_Cnv.SrcExtra ^\"<Extra>\" &\"</Extra>\" &'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.NotEq",
      "desc": "Phone Numbers Not Equal",
      "type": "Exec",
      "depict": {
        "raw": "--> not-identical",
        "in": "",
        "out": "not-identical"
      },
      "runnable": "' %%% _Cnv.SrcBody \"(PHONE)\" found)? _Cnv.SrcFrom _Cnv.SrcTo ne$ '",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.!Fflex",
      "desc": "Store Fbased File",
      "type": "Exec",
      "depict": {
        "raw": "data suffix -->",
        "in": "data suffix",
        "out": ""
      },
      "runnable": "'^_Fup.Fbase &\".flx\" write'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.!Gflex",
      "desc": "Store Gbased File",
      "type": "Exec",
      "depict": {
        "raw": "data suffix -->",
        "in": "data suffix",
        "out": ""
      },
      "runnable": "'^_Fup.Gbase &\".flx\" write'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.!Ftext",
      "desc": "Store Fbased File",
      "type": "Exec",
      "depict": {
        "raw": "data suffix -->",
        "in": "data suffix",
        "out": ""
      },
      "runnable": "'^_Fup.Fbase text write'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.!FtextT",
      "desc": "Store FbasedT File",
      "type": "Exec",
      "depict": {
        "raw": "data suffix -->",
        "in": "data suffix",
        "out": ""
      },
      "runnable": "'^_Fup.FbaseT text write'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.!Gtext",
      "desc": "Store Gbased File",
      "type": "Exec",
      "depict": {
        "raw": "data suffix -->",
        "in": "data suffix",
        "out": ""
      },
      "runnable": "'^_Fup.Gbase text write'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.!FtexS",
      "desc": "Store FbasedS File",
      "type": "Exec",
      "depict": {
        "raw": "data suffix -->",
        "in": "data suffix",
        "out": ""
      },
      "runnable": "'^_Fup.FbaseS text write'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.!GtexS",
      "desc": "Store GbasedS File",
      "type": "Exec",
      "depict": {
        "raw": "data suffix -->",
        "in": "data suffix",
        "out": ""
      },
      "runnable": "'^_Fup.GbaseS text write'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.!Ftexf",
      "desc": "Store Fbasef File",
      "type": "Exec",
      "depict": {
        "raw": "data suffix -->",
        "in": "data suffix",
        "out": ""
      },
      "runnable": "'^_Fup.Fbasf text write'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.!Gtexf",
      "desc": "Store Gbasef File",
      "type": "Exec",
      "depict": {
        "raw": "data suffix -->",
        "in": "data suffix",
        "out": ""
      },
      "runnable": "'^_Fup.Gbasf text write'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "Fup.!MmsFname",
      "desc": "Append Stamp and Sid",
      "type": "Exec",
      "depict": {
        "raw": "str --> ext-str",
        "in": "str",
        "out": "ext-str"
      },
      "runnable": "'&_Msg.msec &\"_\" &_Cnv.SrcSid !Cnv.MmsFname'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "ofupl",
      "desc": "Prefix Uploaded Files Folder",
      "type": "Exec",
      "depict": {
        "raw": "upl-name --> dir-file-part",
        "in": "upl-name",
        "out": "dir-file-part"
      },
      "runnable": "'^_Fup.PhysUpl'",
      "source_file": "Robot104/defuplod_phosend messaging basis.txt"
    },
    {
      "name": "tocond",
      "desc": "Deliver Xml Wrapped Command to Conduit",
      "type": "Exec",
      "depict": {
        "raw": "file-cont dest-file -->",
        "in": "file-cont dest-file",
        "out": ""
      },
      "runnable": "'escape ^`<SaWing proc=\"WriteFile\" file=\"` &`\" cont=\"` exch escape & &`\" ></SaWing>` patched exch ofsrvc folder &\"Ck_\" basenow & &\".qtq\" dup tuck writeb \".ptp\" overext '",
      "source_file": "Robot104/defweber_web assist definitions.txt"
    },
    {
      "name": "httpck",
      "desc": "Check for Http Mode Set Already",
      "type": "Exec",
      "depict": {
        "raw": "hostname --> adj-host",
        "in": "hostname",
        "out": "adj-host"
      },
      "runnable": "'\":\" found? { } { dup \"localhost\" eq$ { http } { https } ifelse ^ } ifelse'",
      "source_file": "Robot104/defweber_web assist definitions.txt"
    },
    {
      "name": "Web.Focus",
      "desc": "Give Focus to Web Form",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"@_Hwnd Win.Focus\"",
      "source_file": "Robot104/defweber_web assist definitions.txt"
    },
    {
      "name": "response!",
      "desc": "Save Web Response",
      "type": "Exec",
      "depict": {
        "raw": "webresp -->",
        "in": "webresp",
        "out": ""
      },
      "runnable": "'\"response\" text!conn'",
      "source_file": "Robot104/defweber_web assist definitions.txt"
    },
    {
      "name": "tellx",
      "desc": "Save Web Response Convert From Hex",
      "type": "Exec",
      "depict": {
        "raw": "webresp --> converted",
        "in": "webresp",
        "out": "converted"
      },
      "runnable": "'response! *tellresx'",
      "source_file": "Robot104/defweber_web assist definitions.txt"
    },
    {
      "name": "rehtml",
      "desc": "Reextend to Html",
      "type": "Exec",
      "depict": {
        "raw": "part-url --> htmled",
        "in": "part-url",
        "out": "htmled"
      },
      "runnable": "'\".html\" reextend'",
      "source_file": "Robot104/defweber_web assist definitions.txt"
    },
    {
      "name": "ofvir",
      "desc": "Prefix Virtual Location",
      "type": "Exec",
      "depict": {
        "raw": "part-url --> vir-url",
        "in": "part-url",
        "out": "vir-url"
      },
      "runnable": "'_Arching.VirChain &\"/\" ^'",
      "source_file": "Robot104/defweber_web assist definitions.txt"
    },
    {
      "name": "Url.RelBase",
      "desc": "Convert Url to Relative Base",
      "type": "Exec",
      "depict": {
        "raw": "url --> rel-vir-url-no-ext",
        "in": "url",
        "out": "rel-vir-url-no-ext"
      },
      "runnable": "'\"//\" right$ \"/\" right$ ^\"/\" \".\" left$'",
      "source_file": "Robot104/defweber_web assist definitions.txt"
    },
    {
      "name": "Url.RelFile",
      "desc": "Convert Url to Relative File Base",
      "type": "Exec",
      "depict": {
        "raw": "url --> rel-file-path",
        "in": "url",
        "out": "rel-file-path"
      },
      "runnable": "'\"//\" right$ \"/\" right$ \"/\" \"\\\" replall'",
      "source_file": "Robot104/defweber_web assist definitions.txt"
    },
    {
      "name": "ofvirtem",
      "desc": "Prefix Virtual Location of Templates",
      "type": "Exec",
      "depict": {
        "raw": "part-url --> vir-url",
        "in": "part-url",
        "out": "vir-url"
      },
      "runnable": "'\"Templates/\" ofvir ^'",
      "source_file": "Robot104/defweber_web assist definitions.txt"
    },
    {
      "name": "weboff",
      "desc": "Hide Web Browser Windows",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"hide false Mep.Window\"",
      "source_file": "Robot104/defweber_web assist definitions.txt"
    },
    {
      "name": "webon",
      "desc": "Show Web Browser Windows",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"true Mep.Window show\"",
      "source_file": "Robot104/defweber_web assist definitions.txt"
    },
    {
      "name": "webfon",
      "desc": "Show Force Top Web Browser Windows",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"true Mep.Window show Mep._FormHwnd Win.ToTop @_Hwnd Win.ToTop \"",
      "source_file": "Robot104/defweber_web assist definitions.txt"
    },
    {
      "name": "Xact.FromTo_",
      "desc": "From To Virtual Relative Path",
      "type": "Exec",
      "depict": {
        "raw": " --> rel-path",
        "in": "",
        "out": "rel-path"
      },
      "runnable": "'Fup.From &\"/\" Fup.To & &\"/Upl_\" &_Msg.msec'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "Xact.ToFrom_",
      "desc": "To From Virtual Relative Path",
      "type": "Exec",
      "depict": {
        "raw": " --> rel-path",
        "in": "",
        "out": "rel-path"
      },
      "runnable": "'Fup.To &\"/\" Fup.From & &\"/Upl_\" &_Msg.msec'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "Xact.FromToX",
      "desc": "From To Virtual Location External",
      "type": "Exec",
      "depict": {
        "raw": " --> vir-msg-base",
        "in": "",
        "out": "vir-msg-base"
      },
      "runnable": "'_Fup.DestUrl Xact.FromTo_ &'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "Xact.ToFromX",
      "desc": "To From Virtual Location External",
      "type": "Exec",
      "depict": {
        "raw": " --> vir-msg-base",
        "in": "",
        "out": "vir-msg-base"
      },
      "runnable": "'_Fup.DestUrl Xact.ToFrom_ &'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "Xact.From",
      "desc": "From File Location of Message",
      "type": "Exec",
      "depict": {
        "raw": " --> dir-src",
        "in": "",
        "out": "dir-src"
      },
      "runnable": "'Fup.From ofsnap folder'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "Xact.To",
      "desc": "To File Location of Message",
      "type": "Exec",
      "depict": {
        "raw": " --> dir-src",
        "in": "",
        "out": "dir-src"
      },
      "runnable": "'Fup.To ofsnap folder'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "Xact.FromFromF",
      "desc": "From From File Location of Message",
      "type": "Exec",
      "depict": {
        "raw": " --> dir-src",
        "in": "",
        "out": "dir-src"
      },
      "runnable": "'Xact.FromFrom &\"Upl_\" &_Msg.msec'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "Xact.ToToF",
      "desc": "To To File Location of Message",
      "type": "Exec",
      "depict": {
        "raw": " --> dir-src",
        "in": "",
        "out": "dir-src"
      },
      "runnable": "'Xact.ToTo &\"Upl_\" &_Msg.msec'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "Xact.FromToF",
      "desc": "From To File Location of Message",
      "type": "Exec",
      "depict": {
        "raw": " --> dir-src",
        "in": "",
        "out": "dir-src"
      },
      "runnable": "'Xact.FromTo &\"Upl_\" &_Msg.msec'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "Xact.ToFromF",
      "desc": "To From File Location of Message",
      "type": "Exec",
      "depict": {
        "raw": " --> dir-src",
        "in": "",
        "out": "dir-src"
      },
      "runnable": "'Xact.ToFrom &\"Upl_\" &_Msg.msec'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "Xact.FromFrom",
      "desc": "From From File Location of Message",
      "type": "Exec",
      "depict": {
        "raw": " --> dir-src",
        "in": "",
        "out": "dir-src"
      },
      "runnable": "'Xact.From Fup.From & folder'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "Xact.ToTo",
      "desc": "To To File Location of Message",
      "type": "Exec",
      "depict": {
        "raw": " --> dir-src",
        "in": "",
        "out": "dir-src"
      },
      "runnable": "'Xact.To Fup.To & folder'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "Xact.FromTo",
      "desc": "From To File Location of Message",
      "type": "Exec",
      "depict": {
        "raw": " --> dir-src",
        "in": "",
        "out": "dir-src"
      },
      "runnable": "'Xact.From Fup.To & folder'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "Xact.ToFrom",
      "desc": "To From File Location of Message",
      "type": "Exec",
      "depict": {
        "raw": " --> dir-src",
        "in": "",
        "out": "dir-src"
      },
      "runnable": "'Xact.To Fup.From & folder'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "Xact.FromV",
      "desc": "From Virtual Relative Location of Message",
      "type": "Exec",
      "depict": {
        "raw": " --> vir-src",
        "in": "",
        "out": "vir-src"
      },
      "runnable": "'\"/results/\" Fup.From & &\"/\"'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "Xact.ToV",
      "desc": "To Virtual Relative Location of Message",
      "type": "Exec",
      "depict": {
        "raw": " --> vir-src",
        "in": "",
        "out": "vir-src"
      },
      "runnable": "'\"/results/\" Fup.To & &\"/\"'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "Xact.FromToV",
      "desc": "From To Virtual Location",
      "type": "Exec",
      "depict": {
        "raw": " --> vir-locn",
        "in": "",
        "out": "vir-locn"
      },
      "runnable": "'Xact.FromV Fup.To & &\"/\"'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "Xact.ToFromV",
      "desc": "To From Virtual Location",
      "type": "Exec",
      "depict": {
        "raw": " --> vir-locn",
        "in": "",
        "out": "vir-locn"
      },
      "runnable": "'Xact.ToV Fup.From & &\"/\"'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "Xact.FromToM",
      "desc": "From To Virtual Location with Base of Message",
      "type": "Exec",
      "depict": {
        "raw": " --> vir-locn",
        "in": "",
        "out": "vir-locn"
      },
      "runnable": "'Xact.FromToV &\"Upl_\" &_Msg.msec'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "Xact.ToFromM",
      "desc": "From To Virtual Location with Base of Message",
      "type": "Exec",
      "depict": {
        "raw": " --> vir-locn",
        "in": "",
        "out": "vir-locn"
      },
      "runnable": "'Xact.ToFromV &\"Upl_\" &_Msg.msec'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "Xact.DTime",
      "desc": "Date Time of Message",
      "type": "Exec",
      "depict": {
        "raw": " --> fmtd-dtime",
        "in": "",
        "out": "fmtd-dtime"
      },
      "runnable": "'_Msg.msec frombase$'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "Xact.DTrepl",
      "desc": "Replace Date and Time Anchors",
      "type": "Exec",
      "depict": {
        "raw": " str --> adj-str",
        "in": "str",
        "out": "adj-str"
      },
      "runnable": "'\"___Date___\" Xact.DTime \" \" left$ dup !Msgr.Date replall \"___Time___\" Xact.DTime \" \" right$ dup !Msgr.Time replall'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "Xact.Msg$",
      "desc": "Upload Xact Based on Message Msec",
      "type": "Exec",
      "depict": {
        "raw": " --> upl-xact",
        "in": "",
        "out": "upl-xact"
      },
      "runnable": "'\"Upl_\" &_Msg.msec'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "File.Sid",
      "desc": "Create Unique Sid",
      "type": "Exec",
      "depict": {
        "raw": "sid-prefix --> unique-sid",
        "in": "sid-prefix",
        "out": "unique-sid"
      },
      "runnable": "'*finsures ^\"bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb\" 32 right &'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "File.PreJpg",
      "desc": "Pre Write of Jpg File Safely",
      "type": "Exec",
      "depict": {
        "raw": "file-name source-file dest-folder -->file-name dest-file",
        "in": "file-name source-file dest-folder",
        "out": "file-name dest-file"
      },
      "runnable": "'third ^\"_\" jsnow ^ & \".gpj\" reextend copyfile('",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "File.PrePng",
      "desc": "Pre Write of Png File Safely",
      "type": "Exec",
      "depict": {
        "raw": "file-name source-file dest-folder -->file-name dest-file",
        "in": "file-name source-file dest-folder",
        "out": "file-name dest-file"
      },
      "runnable": "'third ^\"_\" jsnow ^ &\".gnp\" reextend copyfile('",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "safe!xact",
      "desc": "Safe Xact Path and Text Extension Write",
      "type": "Exec",
      "depict": {
        "raw": "fileroot -->",
        "in": "fileroot",
        "out": ""
      },
      "runnable": "'xactext \".sts\" reextend safetext'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "ofcur",
      "desc": "Prefix Directory of Current Interacting Xacts",
      "type": "Exec",
      "depict": {
        "raw": "filename --> filespec",
        "in": "filename",
        "out": "filespec"
      },
      "runnable": "'\"Current\" connect'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "xact&",
      "desc": "Append Xact Nomer",
      "type": "Exec",
      "depict": {
        "raw": "str --> xact-nomer-added",
        "in": "str",
        "out": "xact-nomer-added"
      },
      "runnable": "'xact &'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "ofxone",
      "desc": "Prefix Directory of Xact Interaction",
      "type": "Exec",
      "depict": {
        "raw": "filename --> filespec",
        "in": "filename",
        "out": "filespec"
      },
      "runnable": "'\"xact1\\\" ofsnap ^'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "ofyone",
      "desc": "Prefix Directory of Baby Interaction",
      "type": "Exec",
      "depict": {
        "raw": "filename --> filespec",
        "in": "filename",
        "out": "filespec"
      },
      "runnable": "'\"xact2\\\" ofsnap _BabyActions { -1 left ^\"n\" } { } ifelse ^'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "phase",
      "desc": "Get Phase of Current Xact",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "\"*xactninf _Camera.Phase\"",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "jsx!xact",
      "desc": "Add Jsx Extension and Save to Xact",
      "type": "Exec",
      "depict": {
        "raw": "jsx-data fileroot -->",
        "in": "jsx-data fileroot",
        "out": ""
      },
      "runnable": "\"jsx ofxact write\"",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "curxlow",
      "desc": "Read Current Xact Effective Low Marker from Bin",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "'\"_curxlow\" text_bin zeronull !Xact'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "curzact",
      "desc": "Read Current Xact Marker from Bin for MMS",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "'\"_curzact\" text_bin zeronull !Xact'",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "oftack",
      "desc": "Prefix Tacks Xact Directory",
      "type": "Exec",
      "depict": {
        "raw": "file-name --> file-spec",
        "in": "file-name",
        "out": "file-spec"
      },
      "runnable": "\"_Tack *xactfold ^_Xact.Dir\"",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "text!tack",
      "desc": "Tack Path and Text Extension Write",
      "type": "Exec",
      "depict": {
        "raw": "data fileroot -->",
        "in": "data fileroot",
        "out": ""
      },
      "runnable": "\"text oftack write\"",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "text_tack",
      "desc": "Add Text Extension Read From Tack",
      "type": "Exec",
      "depict": {
        "raw": "fileroot --> data",
        "in": "fileroot",
        "out": "data"
      },
      "runnable": "\"text oftack read\"",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "text*tack",
      "desc": "Tack Path and Text Extension Exec",
      "type": "Exec",
      "depict": {
        "raw": "fileroot -->",
        "in": "fileroot",
        "out": ""
      },
      "runnable": "\"text oftack exec\"",
      "source_file": "Robot104/defxacts_xact definition group.txt"
    },
    {
      "name": "residue",
      "desc": "Create Residual File and Proto File with Proto Name for Reextension",
      "type": "Exec",
      "depict": {
        "raw": "file-data out-file --> proto",
        "in": "file-data out-file",
        "out": "proto"
      },
      "runnable": "'\".yty\" residual'",
      "source_file": "Robot104/defxlock_xact locking defines.txt"
    },
    {
      "name": "inst$",
      "desc": "Installation Key of Stamp and Random",
      "type": "Exec",
      "depict": {
        "raw": "--> install-key",
        "in": "",
        "out": "install-key"
      },
      "runnable": "'_Install.Stamp &\"_\" &_Install.Random'",
      "source_file": "Robot104/defxlock_xact locking defines.txt"
    },
    {
      "name": "amach",
      "desc": "Is This A Machine Level",
      "type": "Exec",
      "depict": {
        "raw": "--> is-amach",
        "in": "",
        "out": "is-amach"
      },
      "runnable": "'axutype \"A\" eq$'",
      "source_file": "Robot104/defxlock_xact locking defines.txt"
    },
    {
      "name": "locked",
      "desc": "Suffix Locker Code and Text",
      "type": "Exec",
      "depict": {
        "raw": "prefix --> ",
        "in": "prefix",
        "out": ""
      },
      "runnable": "'&_Arching.ServLock text'",
      "source_file": "Robot104/defxlock_xact locking defines.txt"
    },
    {
      "name": "lock<",
      "desc": "Switch Back to Original Locker Code",
      "type": "Exec",
      "depict": {
        "raw": "--> ",
        "in": "",
        "out": ""
      },
      "runnable": "'_Arching.OrigLock !Arching.ServLock'",
      "source_file": "Robot104/defxlock_xact locking defines.txt"
    },
    {
      "name": "lock>",
      "desc": "Save Original Locker Code",
      "type": "Exec",
      "depict": {
        "raw": "--> ",
        "in": "",
        "out": ""
      },
      "runnable": "'_Arching.ServLock !Arching.OrigLock'",
      "source_file": "Robot104/defxlock_xact locking defines.txt"
    },
    {
      "name": "Claimer.!?",
      "desc": "Attempt to Claim Both",
      "type": "Exec",
      "depict": {
        "raw": "ider --> claimed",
        "in": "ider",
        "out": "claimed"
      },
      "runnable": "' dup Claimer.!A dup Claimer.!B dup Claimer.? { dup Claimer.? { true } { dup Claimer./ false } ifelse } { dup Claimer./ false } ifelse pop2nd '",
      "source_file": "Robot104/defxlock_xact locking defines.txt"
    },
    {
      "name": "Claimer./",
      "desc": "Unclaim Both Our Claims",
      "type": "Exec",
      "depict": {
        "raw": "ider -->",
        "in": "ider",
        "out": ""
      },
      "runnable": "'^\"?_\" &\".lok\" ofxact delfiles'",
      "source_file": "Robot104/defxlock_xact locking defines.txt"
    },
    {
      "name": "Claimer.//",
      "desc": "Unclaim All Claims",
      "type": "Exec",
      "depict": {
        "raw": "-->",
        "in": "",
        "out": ""
      },
      "runnable": "'\"?_*.lok\" ofxact delfiles'",
      "source_file": "Robot104/defxlock_xact locking defines.txt"
    },
    {
      "name": "Claimer.?",
      "desc": "Are Both Claimed",
      "type": "Exec",
      "depict": {
        "raw": "ider --> both-claimed",
        "in": "ider",
        "out": "both-claimed"
      },
      "runnable": "\"dup Claimer.A? exch Claimer.B? and\"",
      "source_file": "Robot104/defxlock_xact locking defines.txt"
    },
    {
      "name": "Claimer.A?",
      "desc": "Is A Claimed",
      "type": "Exec",
      "depict": {
        "raw": "ider --> claimed",
        "in": "ider",
        "out": "claimed"
      },
      "runnable": "'\"A\" Claimer.#?'",
      "source_file": "Robot104/defxlock_xact locking defines.txt"
    },
    {
      "name": "Claimer.B?",
      "desc": "Is B Claimed",
      "type": "Exec",
      "depict": {
        "raw": "ider --> claimed",
        "in": "ider",
        "out": "claimed"
      },
      "runnable": "'\"B\" Claimer.#?'",
      "source_file": "Robot104/defxlock_xact locking defines.txt"
    },
    {
      "name": "Claimer._#",
      "desc": "Number of Claims",
      "type": "Exec",
      "depict": {
        "raw": "cltype --> claims",
        "in": "cltype",
        "out": "claims"
      },
      "runnable": "' &\"_*.lok\" !wilder 0 empty ofxact empty { nextfile ? rot + tuck } loop filing) '",
      "source_file": "Robot104/defxlock_xact locking defines.txt"
    },
    {
      "name": "Claimer.#?",
      "desc": "Is Claim Valid",
      "type": "Exec",
      "depict": {
        "raw": "ider cltype --> claimed",
        "in": "ider cltype",
        "out": "claimed"
      },
      "runnable": "' dup Claimer._# 1 eq { &\"_\" ^ &\".lok\" ofxact exists } { pop2 false } ifelse '",
      "source_file": "Robot104/defxlock_xact locking defines.txt"
    },
    {
      "name": "Claimer./?",
      "desc": "Are Both Unclaimed",
      "type": "Exec",
      "depict": {
        "raw": "--> both-unclaimed",
        "in": "",
        "out": "both-unclaimed"
      },
      "runnable": "'\"A\" Claimer._# 0 eq \"B\" Claimer._# 0 eq and'",
      "source_file": "Robot104/defxlock_xact locking defines.txt"
    },
    {
      "name": "Claimer.!A",
      "desc": "Claim A",
      "type": "Exec",
      "depict": {
        "raw": "ider -->",
        "in": "ider",
        "out": ""
      },
      "runnable": "'\"A\" Claimer.!'",
      "source_file": "Robot104/defxlock_xact locking defines.txt"
    },
    {
      "name": "Claimer.!B",
      "desc": "Claim B",
      "type": "Exec",
      "depict": {
        "raw": "ider -->",
        "in": "ider",
        "out": ""
      },
      "runnable": "'\"B\" Claimer.!'",
      "source_file": "Robot104/defxlock_xact locking defines.txt"
    },
    {
      "name": "Claimer.!",
      "desc": "Claim Type",
      "type": "Exec",
      "depict": {
        "raw": "ider cltype -->",
        "in": "ider cltype",
        "out": ""
      },
      "runnable": "'&\"_\" ^ &\".lok\" ofxact \"true !Claim.Locked\" &; exch write'",
      "source_file": "Robot104/defxlock_xact locking defines.txt"
    },
    {
      "name": "stattr$",
      "desc": "Create Status Attribute",
      "type": "Exec",
      "depict": {
        "raw": "status --> status-attr-str",
        "in": "status",
        "out": "status-attr-str"
      },
      "runnable": "'\"status\" attr$'",
      "source_file": "Robot104/defxmler_xml definitions.txt"
    },
    {
      "name": "stattr&",
      "desc": "Add Status Attribute to Build String",
      "type": "Exec",
      "depict": {
        "raw": "build-str status --> adj-build",
        "in": "build-str status",
        "out": "adj-build"
      },
      "runnable": "\"stattr$ &\"",
      "source_file": "Robot104/defxmler_xml definitions.txt"
    },
    {
      "name": "prattr$",
      "desc": "Create Proc Attribute",
      "type": "Exec",
      "depict": {
        "raw": "proc --> proc-attr-str",
        "in": "proc",
        "out": "proc-attr-str"
      },
      "runnable": "'\"proc\" attr$'",
      "source_file": "Robot104/defxmler_xml definitions.txt"
    },
    {
      "name": "prstelem$",
      "desc": "Create Element With Proc and Status Attribute",
      "type": "Exec",
      "depict": {
        "raw": "str status proc elem-name --> proc-elem-str",
        "in": "str status proc elem-name",
        "out": "proc-elem-str"
      },
      "runnable": "\"tuck prattr$ exch stattr& exch elattr$\"",
      "source_file": "Robot104/defxmler_xml definitions.txt"
    },
    {
      "name": "prelem$",
      "desc": "Create Element With Proc Attribute",
      "type": "Exec",
      "depict": {
        "raw": "str proc elem-name --> proc-elem-str",
        "in": "str proc elem-name",
        "out": "proc-elem-str"
      },
      "runnable": "\"exch prattr$ exch elattr$\"",
      "source_file": "Robot104/defxmler_xml definitions.txt"
    },
    {
      "name": "prattr&",
      "desc": "Add Proc Attribute to Build String",
      "type": "Exec",
      "depict": {
        "raw": "build-str proc --> adj-build",
        "in": "build-str proc",
        "out": "adj-build"
      },
      "runnable": "\"prattr$ &\"",
      "source_file": "Robot104/defxmler_xml definitions.txt"
    },
    {
      "name": "appattr$",
      "desc": "Surround String With Application Element and Attribues",
      "type": "Exec",
      "depict": {
        "raw": "str attrs --> apped-xml",
        "in": "str attrs",
        "out": "apped-xml"
      },
      "runnable": "'\"Ftos\" elattr$'",
      "source_file": "Robot104/defxmler_xml definitions.txt"
    },
    {
      "name": "elattr$",
      "desc": "Make Element of String With Attributes",
      "type": "Exec",
      "depict": {
        "raw": "str attrs elem-name --> elem-str",
        "in": "str attrs elem-name",
        "out": "elem-str"
      },
      "runnable": "'dup ^\"<\" &\" \" &3) &\" >\" exch ^\"</\" &\">\" ^3) &'",
      "source_file": "Robot104/defxmler_xml definitions.txt"
    },
    {
      "name": "appel$",
      "desc": "Surround Xml With Application Element",
      "type": "Exec",
      "depict": {
        "raw": "xml --> apped-xml",
        "in": "xml",
        "out": "apped-xml"
      },
      "runnable": "'\"Ftos\" elem$'",
      "source_file": "Robot104/defxmler_xml definitions.txt"
    },
    {
      "name": "elattr/$",
      "desc": "Make Element of String No Body",
      "type": "Exec",
      "depict": {
        "raw": "attrs elem-name --> elem-str",
        "in": "attrs elem-name",
        "out": "elem-str"
      },
      "runnable": "'^\"<\" &\" \" ^ &\" />\"'",
      "source_file": "Robot104/defxmler_xml definitions.txt"
    },
    {
      "name": "yelem/$",
      "desc": "Make Element of String With Yml Name No Body",
      "type": "Exec",
      "depict": {
        "raw": "elem-name --> elem-str",
        "in": "elem-name",
        "out": "elem-str"
      },
      "runnable": "'yml ^\"<\" &\" />\"'",
      "source_file": "Robot104/defxmler_xml definitions.txt"
    },
    {
      "name": "yelem/&",
      "desc": "Add Element of String With Yml Name No Body",
      "type": "Exec",
      "depict": {
        "raw": "build-str elem-name --> adj-build-str",
        "in": "build-str elem-name",
        "out": "adj-build-str"
      },
      "runnable": "\"yelem/$ &\"",
      "source_file": "Robot104/defxmler_xml definitions.txt"
    },
    {
      "name": "yelattr/$",
      "desc": "Make Element of String With Yml Name No Body",
      "type": "Exec",
      "depict": {
        "raw": "attrs elem-name --> elem-str",
        "in": "attrs elem-name",
        "out": "elem-str"
      },
      "runnable": "\"yml elattr/$\"",
      "source_file": "Robot104/defxmler_xml definitions.txt"
    },
    {
      "name": "attr$",
      "desc": "Create Attribute String",
      "type": "Exec",
      "depict": {
        "raw": "attr-val attr-name --> attr-str",
        "in": "attr-val attr-name",
        "out": "attr-str"
      },
      "runnable": "'^\" \" &\"=\" exch quocat'",
      "source_file": "Robot104/defxmler_xml definitions.txt"
    },
    {
      "name": "attr&",
      "desc": "Add Attribute to Build String",
      "type": "Exec",
      "depict": {
        "raw": "build-str attr-val attr-name --> adj-build",
        "in": "build-str attr-val attr-name",
        "out": "adj-build"
      },
      "runnable": "\"attr$ &\"",
      "source_file": "Robot104/defxmler_xml definitions.txt"
    },
    {
      "name": "yattrx$",
      "desc": "Create Yml Named Attribute Hex Valued",
      "type": "Exec",
      "depict": {
        "raw": "attr-val attr-name --> yml-attr-hexed-str",
        "in": "attr-val attr-name",
        "out": "yml-attr-hexed-str"
      },
      "runnable": "\"yml attrx$\"",
      "source_file": "Robot104/defxmler_xml definitions.txt"
    },
    {
      "name": "yattr$",
      "desc": "Create Yml Named Attribute",
      "type": "Exec",
      "depict": {
        "raw": "attr-val attr-name --> yml-attr-str",
        "in": "attr-val attr-name",
        "out": "yml-attr-str"
      },
      "runnable": "\"yml attr$\"",
      "source_file": "Robot104/defxmler_xml definitions.txt"
    },
    {
      "name": "yattr&",
      "desc": "Add Yml Named Attribute to Build String",
      "type": "Exec",
      "depict": {
        "raw": "build-str attr-val attr-name --> adj-build",
        "in": "build-str attr-val attr-name",
        "out": "adj-build"
      },
      "runnable": "\"yattr$ &\"",
      "source_file": "Robot104/defxmler_xml definitions.txt"
    },
    {
      "name": "attrx&",
      "desc": "Add Attribute Hex Valued to Build String",
      "type": "Exec",
      "depict": {
        "raw": "build-str attr-val attr-name --> adj-build",
        "in": "build-str attr-val attr-name",
        "out": "adj-build"
      },
      "runnable": "\"attrx$ &\"",
      "source_file": "Robot104/defxmler_xml definitions.txt"
    },
    {
      "name": "attrx$",
      "desc": "Create Attribute Hex Valued",
      "type": "Exec",
      "depict": {
        "raw": "attr-val attr-name --> attr-hexed-str",
        "in": "attr-val attr-name",
        "out": "attr-hexed-str"
      },
      "runnable": "'^\" \" &\"=\" exch asc2hex quocat'",
      "source_file": "Robot104/defxmler_xml definitions.txt"
    },
    {
      "name": "yattrx&",
      "desc": "Add Yml Named Attribute Hex Valued to Build String",
      "type": "Exec",
      "depict": {
        "raw": "build-str attr-val attr-name --> adj-build",
        "in": "build-str attr-val attr-name",
        "out": "adj-build"
      },
      "runnable": "\"yattrx$ &\"",
      "source_file": "Robot104/defxmler_xml definitions.txt"
    },
    {
      "name": "yelem$",
      "desc": "Make Element of String With Yml Name",
      "type": "Exec",
      "depict": {
        "raw": "str elem-name --> elem-str",
        "in": "str elem-name",
        "out": "elem-str"
      },
      "runnable": "'yml dup ^\"<\" &\">\" exch ^\"</\" &\">\" ^3) &'",
      "source_file": "Robot104/defxmler_xml definitions.txt"
    }
  ],
  "count": 1330
}