{
  "contractName": "Widgets",
  "abi": [],
  "bytecode": "0x604c602c600b82828239805160001a60731460008114601c57601e565bfe5b5030600052607381538281f30073000000000000000000000000000000000000000030146080604052600080fd00a165627a7a72305820ce809e4c5b28f658e4eb9e9baa58f14ae07cd0bdf15bc8ad0e4f311f9850bc600029",
  "deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fd00a165627a7a72305820ce809e4c5b28f658e4eb9e9baa58f14ae07cd0bdf15bc8ad0e4f311f9850bc600029",
  "sourceMap": "116:1221:36:-;;132:2:-1;166:7;155:9;146:7;137:37;252:7;246:14;243:1;238:23;232:4;229:33;270:1;265:20;;;;222:63;;265:20;274:9;222:63;;298:9;295:1;288:20;328:4;319:7;311:22;352:7;343;336:24",
  "deployedSourceMap": "116:1221:36:-;;;;;;;;",
  "source": "pragma solidity ^0.4.24;\n\nimport \"./Elements.sol\";\nimport \"../utils/strings.sol\";\nimport \"../utils/UintUtils.sol\";\n\nlibrary Widgets {\n    using strings for *;\n    using UintUtils for uint;\n    using Elements for Elements.Element;\n\n    struct Widget {\n        string title;\n        string shortDesc;\n        string longDesc;\n        uint width;\n        Elements.Element[] elements;\n    }\n\n    function toJson(Widget memory _self) internal pure returns (string) {\n        string memory json = '{\"title\":\"';\n        json = json.toSlice().concat(_self.title.toSlice());\n        json = json.toSlice().concat('\",\"shortDesc\":\"'.toSlice());\n        json = json.toSlice().concat(_self.shortDesc.toSlice());\n        json = json.toSlice().concat('\",\"longDesc\":\"'.toSlice());\n        json = json.toSlice().concat(_self.longDesc.toSlice());\n        json = json.toSlice().concat('\",\"width\":'.toSlice());\n        json = json.toSlice().concat(_self.width.toString().toSlice());\n        json = json.toSlice().concat(',\"elements\":['.toSlice());\n        for (uint i = 0; i < _self.elements.length; i++) {\n            if (i > 0) {\n                json = json.toSlice().concat(','.toSlice());\n            }\n            json = json.toSlice().concat(_self.elements[i].toJson().toSlice());\n        }\n        return json.toSlice().concat(']}'.toSlice());\n    }\n}",
  "sourcePath": "tokenboost-solidity/contracts/widget/Widgets.sol",
  "ast": {
    "absolutePath": "tokenboost-solidity/contracts/widget/Widgets.sol",
    "exportedSymbols": {
      "Widgets": [
        6424
      ]
    },
    "id": 6425,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 6239,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "0:24:36"
      },
      {
        "absolutePath": "tokenboost-solidity/contracts/widget/Elements.sol",
        "file": "./Elements.sol",
        "id": 6240,
        "nodeType": "ImportDirective",
        "scope": 6425,
        "sourceUnit": 5834,
        "src": "26:24:36",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "absolutePath": "tokenboost-solidity/contracts/utils/strings.sol",
        "file": "../utils/strings.sol",
        "id": 6241,
        "nodeType": "ImportDirective",
        "scope": 6425,
        "sourceUnit": 5457,
        "src": "51:30:36",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "absolutePath": "tokenboost-solidity/contracts/utils/UintUtils.sol",
        "file": "../utils/UintUtils.sol",
        "id": 6242,
        "nodeType": "ImportDirective",
        "scope": 6425,
        "sourceUnit": 3762,
        "src": "82:32:36",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "library",
        "documentation": null,
        "fullyImplemented": true,
        "id": 6424,
        "linearizedBaseContracts": [
          6424
        ],
        "name": "Widgets",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "id": 6244,
            "libraryName": {
              "contractScope": null,
              "id": 6243,
              "name": "strings",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 5456,
              "src": "144:7:36",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_strings_$5456",
                "typeString": "library strings"
              }
            },
            "nodeType": "UsingForDirective",
            "src": "138:20:36",
            "typeName": null
          },
          {
            "id": 6247,
            "libraryName": {
              "contractScope": null,
              "id": 6245,
              "name": "UintUtils",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 3761,
              "src": "169:9:36",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_UintUtils_$3761",
                "typeString": "library UintUtils"
              }
            },
            "nodeType": "UsingForDirective",
            "src": "163:25:36",
            "typeName": {
              "id": 6246,
              "name": "uint",
              "nodeType": "ElementaryTypeName",
              "src": "183:4:36",
              "typeDescriptions": {
                "typeIdentifier": "t_uint256",
                "typeString": "uint256"
              }
            }
          },
          {
            "id": 6250,
            "libraryName": {
              "contractScope": null,
              "id": 6248,
              "name": "Elements",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 5833,
              "src": "199:8:36",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_Elements_$5833",
                "typeString": "library Elements"
              }
            },
            "nodeType": "UsingForDirective",
            "src": "193:36:36",
            "typeName": {
              "contractScope": null,
              "id": 6249,
              "name": "Elements.Element",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 5632,
              "src": "212:16:36",
              "typeDescriptions": {
                "typeIdentifier": "t_struct$_Element_$5632_storage_ptr",
                "typeString": "struct Elements.Element"
              }
            }
          },
          {
            "canonicalName": "Widgets.Widget",
            "id": 6262,
            "members": [
              {
                "constant": false,
                "id": 6252,
                "name": "title",
                "nodeType": "VariableDeclaration",
                "scope": 6262,
                "src": "259:12:36",
                "stateVariable": false,
                "storageLocation": "default",
                "typeDescriptions": {
                  "typeIdentifier": "t_string_storage_ptr",
                  "typeString": "string"
                },
                "typeName": {
                  "id": 6251,
                  "name": "string",
                  "nodeType": "ElementaryTypeName",
                  "src": "259:6:36",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_storage_ptr",
                    "typeString": "string"
                  }
                },
                "value": null,
                "visibility": "internal"
              },
              {
                "constant": false,
                "id": 6254,
                "name": "shortDesc",
                "nodeType": "VariableDeclaration",
                "scope": 6262,
                "src": "281:16:36",
                "stateVariable": false,
                "storageLocation": "default",
                "typeDescriptions": {
                  "typeIdentifier": "t_string_storage_ptr",
                  "typeString": "string"
                },
                "typeName": {
                  "id": 6253,
                  "name": "string",
                  "nodeType": "ElementaryTypeName",
                  "src": "281:6:36",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_storage_ptr",
                    "typeString": "string"
                  }
                },
                "value": null,
                "visibility": "internal"
              },
              {
                "constant": false,
                "id": 6256,
                "name": "longDesc",
                "nodeType": "VariableDeclaration",
                "scope": 6262,
                "src": "307:15:36",
                "stateVariable": false,
                "storageLocation": "default",
                "typeDescriptions": {
                  "typeIdentifier": "t_string_storage_ptr",
                  "typeString": "string"
                },
                "typeName": {
                  "id": 6255,
                  "name": "string",
                  "nodeType": "ElementaryTypeName",
                  "src": "307:6:36",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_storage_ptr",
                    "typeString": "string"
                  }
                },
                "value": null,
                "visibility": "internal"
              },
              {
                "constant": false,
                "id": 6258,
                "name": "width",
                "nodeType": "VariableDeclaration",
                "scope": 6262,
                "src": "332:10:36",
                "stateVariable": false,
                "storageLocation": "default",
                "typeDescriptions": {
                  "typeIdentifier": "t_uint256",
                  "typeString": "uint256"
                },
                "typeName": {
                  "id": 6257,
                  "name": "uint",
                  "nodeType": "ElementaryTypeName",
                  "src": "332:4:36",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  }
                },
                "value": null,
                "visibility": "internal"
              },
              {
                "constant": false,
                "id": 6261,
                "name": "elements",
                "nodeType": "VariableDeclaration",
                "scope": 6262,
                "src": "352:27:36",
                "stateVariable": false,
                "storageLocation": "default",
                "typeDescriptions": {
                  "typeIdentifier": "t_array$_t_struct$_Element_$5632_storage_$dyn_storage_ptr",
                  "typeString": "struct Elements.Element[]"
                },
                "typeName": {
                  "baseType": {
                    "contractScope": null,
                    "id": 6259,
                    "name": "Elements.Element",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 5632,
                    "src": "352:16:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Element_$5632_storage_ptr",
                      "typeString": "struct Elements.Element"
                    }
                  },
                  "id": 6260,
                  "length": null,
                  "nodeType": "ArrayTypeName",
                  "src": "352:18:36",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_struct$_Element_$5632_storage_$dyn_storage_ptr",
                    "typeString": "struct Elements.Element[]"
                  }
                },
                "value": null,
                "visibility": "internal"
              }
            ],
            "name": "Widget",
            "nodeType": "StructDefinition",
            "scope": 6424,
            "src": "235:151:36",
            "visibility": "public"
          },
          {
            "body": {
              "id": 6422,
              "nodeType": "Block",
              "src": "460:875:36",
              "statements": [
                {
                  "assignments": [
                    6270
                  ],
                  "declarations": [
                    {
                      "constant": false,
                      "id": 6270,
                      "name": "json",
                      "nodeType": "VariableDeclaration",
                      "scope": 6423,
                      "src": "470:18:36",
                      "stateVariable": false,
                      "storageLocation": "memory",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string"
                      },
                      "typeName": {
                        "id": 6269,
                        "name": "string",
                        "nodeType": "ElementaryTypeName",
                        "src": "470:6:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_storage_ptr",
                          "typeString": "string"
                        }
                      },
                      "value": null,
                      "visibility": "internal"
                    }
                  ],
                  "id": 6272,
                  "initialValue": {
                    "argumentTypes": null,
                    "hexValue": "7b227469746c65223a22",
                    "id": 6271,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "string",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "491:12:36",
                    "subdenomination": null,
                    "typeDescriptions": {
                      "typeIdentifier": "t_stringliteral_8faf2a088ae147a766277ec4af97127fb88ca29105086a4c6a1d26ef5f0e64ee",
                      "typeString": "literal_string \"{\"title\":\"\""
                    },
                    "value": "{\"title\":\""
                  },
                  "nodeType": "VariableDeclarationStatement",
                  "src": "470:33:36"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 6283,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftHandSide": {
                      "argumentTypes": null,
                      "id": 6273,
                      "name": "json",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 6270,
                      "src": "513:4:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "nodeType": "Assignment",
                    "operator": "=",
                    "rightHandSide": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "expression": {
                                "argumentTypes": null,
                                "id": 6278,
                                "name": "_self",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6264,
                                "src": "542:5:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Widget_$6262_memory_ptr",
                                  "typeString": "struct Widgets.Widget memory"
                                }
                              },
                              "id": 6279,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "title",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 6252,
                              "src": "542:11:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory",
                                "typeString": "string memory"
                              }
                            },
                            "id": 6280,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "542:19:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6281,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "542:21:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        ],
                        "expression": {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "id": 6274,
                              "name": "json",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6270,
                              "src": "520:4:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            },
                            "id": 6275,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "520:12:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6276,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "520:14:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        },
                        "id": 6277,
                        "isConstant": false,
                        "isLValue": true,
                        "isPure": false,
                        "lValueRequested": false,
                        "memberName": "concat",
                        "nodeType": "MemberAccess",
                        "referencedDeclaration": 5341,
                        "src": "520:21:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_function_internal_pure$_t_struct$_slice_$3768_memory_ptr_$_t_struct$_slice_$3768_memory_ptr_$returns$_t_string_memory_ptr_$bound_to$_t_struct$_slice_$3768_memory_ptr_$",
                          "typeString": "function (struct strings.slice memory,struct strings.slice memory) pure returns (string memory)"
                        }
                      },
                      "id": 6282,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "kind": "functionCall",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "520:44:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "src": "513:51:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_memory_ptr",
                      "typeString": "string memory"
                    }
                  },
                  "id": 6284,
                  "nodeType": "ExpressionStatement",
                  "src": "513:51:36"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 6294,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftHandSide": {
                      "argumentTypes": null,
                      "id": 6285,
                      "name": "json",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 6270,
                      "src": "574:4:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "nodeType": "Assignment",
                    "operator": "=",
                    "rightHandSide": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "hexValue": "222c2273686f727444657363223a22",
                              "id": 6290,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "603:17:36",
                              "subdenomination": null,
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_69393e7ec2bfd534b8f1bad46c7516c2dc27410f9c9f50b6dff1037139b7a621",
                                "typeString": "literal_string \"\",\"shortDesc\":\"\""
                              },
                              "value": "\",\"shortDesc\":\""
                            },
                            "id": 6291,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "603:25:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6292,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "603:27:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        ],
                        "expression": {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "id": 6286,
                              "name": "json",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6270,
                              "src": "581:4:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            },
                            "id": 6287,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "581:12:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6288,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "581:14:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        },
                        "id": 6289,
                        "isConstant": false,
                        "isLValue": true,
                        "isPure": false,
                        "lValueRequested": false,
                        "memberName": "concat",
                        "nodeType": "MemberAccess",
                        "referencedDeclaration": 5341,
                        "src": "581:21:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_function_internal_pure$_t_struct$_slice_$3768_memory_ptr_$_t_struct$_slice_$3768_memory_ptr_$returns$_t_string_memory_ptr_$bound_to$_t_struct$_slice_$3768_memory_ptr_$",
                          "typeString": "function (struct strings.slice memory,struct strings.slice memory) pure returns (string memory)"
                        }
                      },
                      "id": 6293,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "kind": "functionCall",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "581:50:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "src": "574:57:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_memory_ptr",
                      "typeString": "string memory"
                    }
                  },
                  "id": 6295,
                  "nodeType": "ExpressionStatement",
                  "src": "574:57:36"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 6306,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftHandSide": {
                      "argumentTypes": null,
                      "id": 6296,
                      "name": "json",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 6270,
                      "src": "641:4:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "nodeType": "Assignment",
                    "operator": "=",
                    "rightHandSide": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "expression": {
                                "argumentTypes": null,
                                "id": 6301,
                                "name": "_self",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6264,
                                "src": "670:5:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Widget_$6262_memory_ptr",
                                  "typeString": "struct Widgets.Widget memory"
                                }
                              },
                              "id": 6302,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "shortDesc",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 6254,
                              "src": "670:15:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory",
                                "typeString": "string memory"
                              }
                            },
                            "id": 6303,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "670:23:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6304,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "670:25:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        ],
                        "expression": {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "id": 6297,
                              "name": "json",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6270,
                              "src": "648:4:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            },
                            "id": 6298,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "648:12:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6299,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "648:14:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        },
                        "id": 6300,
                        "isConstant": false,
                        "isLValue": true,
                        "isPure": false,
                        "lValueRequested": false,
                        "memberName": "concat",
                        "nodeType": "MemberAccess",
                        "referencedDeclaration": 5341,
                        "src": "648:21:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_function_internal_pure$_t_struct$_slice_$3768_memory_ptr_$_t_struct$_slice_$3768_memory_ptr_$returns$_t_string_memory_ptr_$bound_to$_t_struct$_slice_$3768_memory_ptr_$",
                          "typeString": "function (struct strings.slice memory,struct strings.slice memory) pure returns (string memory)"
                        }
                      },
                      "id": 6305,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "kind": "functionCall",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "648:48:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "src": "641:55:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_memory_ptr",
                      "typeString": "string memory"
                    }
                  },
                  "id": 6307,
                  "nodeType": "ExpressionStatement",
                  "src": "641:55:36"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 6317,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftHandSide": {
                      "argumentTypes": null,
                      "id": 6308,
                      "name": "json",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 6270,
                      "src": "706:4:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "nodeType": "Assignment",
                    "operator": "=",
                    "rightHandSide": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "hexValue": "222c226c6f6e6744657363223a22",
                              "id": 6313,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "735:16:36",
                              "subdenomination": null,
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_9c73c9153268d5611a90d7fde0e17bf83f239a24ca472937aabdc593cf87a232",
                                "typeString": "literal_string \"\",\"longDesc\":\"\""
                              },
                              "value": "\",\"longDesc\":\""
                            },
                            "id": 6314,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "735:24:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6315,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "735:26:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        ],
                        "expression": {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "id": 6309,
                              "name": "json",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6270,
                              "src": "713:4:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            },
                            "id": 6310,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "713:12:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6311,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "713:14:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        },
                        "id": 6312,
                        "isConstant": false,
                        "isLValue": true,
                        "isPure": false,
                        "lValueRequested": false,
                        "memberName": "concat",
                        "nodeType": "MemberAccess",
                        "referencedDeclaration": 5341,
                        "src": "713:21:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_function_internal_pure$_t_struct$_slice_$3768_memory_ptr_$_t_struct$_slice_$3768_memory_ptr_$returns$_t_string_memory_ptr_$bound_to$_t_struct$_slice_$3768_memory_ptr_$",
                          "typeString": "function (struct strings.slice memory,struct strings.slice memory) pure returns (string memory)"
                        }
                      },
                      "id": 6316,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "kind": "functionCall",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "713:49:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "src": "706:56:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_memory_ptr",
                      "typeString": "string memory"
                    }
                  },
                  "id": 6318,
                  "nodeType": "ExpressionStatement",
                  "src": "706:56:36"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 6329,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftHandSide": {
                      "argumentTypes": null,
                      "id": 6319,
                      "name": "json",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 6270,
                      "src": "772:4:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "nodeType": "Assignment",
                    "operator": "=",
                    "rightHandSide": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "expression": {
                                "argumentTypes": null,
                                "id": 6324,
                                "name": "_self",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6264,
                                "src": "801:5:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Widget_$6262_memory_ptr",
                                  "typeString": "struct Widgets.Widget memory"
                                }
                              },
                              "id": 6325,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "longDesc",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 6256,
                              "src": "801:14:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory",
                                "typeString": "string memory"
                              }
                            },
                            "id": 6326,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "801:22:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6327,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "801:24:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        ],
                        "expression": {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "id": 6320,
                              "name": "json",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6270,
                              "src": "779:4:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            },
                            "id": 6321,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "779:12:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6322,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "779:14:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        },
                        "id": 6323,
                        "isConstant": false,
                        "isLValue": true,
                        "isPure": false,
                        "lValueRequested": false,
                        "memberName": "concat",
                        "nodeType": "MemberAccess",
                        "referencedDeclaration": 5341,
                        "src": "779:21:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_function_internal_pure$_t_struct$_slice_$3768_memory_ptr_$_t_struct$_slice_$3768_memory_ptr_$returns$_t_string_memory_ptr_$bound_to$_t_struct$_slice_$3768_memory_ptr_$",
                          "typeString": "function (struct strings.slice memory,struct strings.slice memory) pure returns (string memory)"
                        }
                      },
                      "id": 6328,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "kind": "functionCall",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "779:47:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "src": "772:54:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_memory_ptr",
                      "typeString": "string memory"
                    }
                  },
                  "id": 6330,
                  "nodeType": "ExpressionStatement",
                  "src": "772:54:36"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 6340,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftHandSide": {
                      "argumentTypes": null,
                      "id": 6331,
                      "name": "json",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 6270,
                      "src": "836:4:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "nodeType": "Assignment",
                    "operator": "=",
                    "rightHandSide": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "hexValue": "222c227769647468223a",
                              "id": 6336,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "865:12:36",
                              "subdenomination": null,
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_dd0692004ac9638bc2bff8f0a9b379ef0370099632afbc54de8391fb1d56f10c",
                                "typeString": "literal_string \"\",\"width\":\""
                              },
                              "value": "\",\"width\":"
                            },
                            "id": 6337,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "865:20:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6338,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "865:22:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        ],
                        "expression": {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "id": 6332,
                              "name": "json",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6270,
                              "src": "843:4:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            },
                            "id": 6333,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "843:12:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6334,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "843:14:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        },
                        "id": 6335,
                        "isConstant": false,
                        "isLValue": true,
                        "isPure": false,
                        "lValueRequested": false,
                        "memberName": "concat",
                        "nodeType": "MemberAccess",
                        "referencedDeclaration": 5341,
                        "src": "843:21:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_function_internal_pure$_t_struct$_slice_$3768_memory_ptr_$_t_struct$_slice_$3768_memory_ptr_$returns$_t_string_memory_ptr_$bound_to$_t_struct$_slice_$3768_memory_ptr_$",
                          "typeString": "function (struct strings.slice memory,struct strings.slice memory) pure returns (string memory)"
                        }
                      },
                      "id": 6339,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "kind": "functionCall",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "843:45:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "src": "836:52:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_memory_ptr",
                      "typeString": "string memory"
                    }
                  },
                  "id": 6341,
                  "nodeType": "ExpressionStatement",
                  "src": "836:52:36"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 6354,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftHandSide": {
                      "argumentTypes": null,
                      "id": 6342,
                      "name": "json",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 6270,
                      "src": "898:4:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "nodeType": "Assignment",
                    "operator": "=",
                    "rightHandSide": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "expression": {
                                  "argumentTypes": null,
                                  "expression": {
                                    "argumentTypes": null,
                                    "id": 6347,
                                    "name": "_self",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6264,
                                    "src": "927:5:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Widget_$6262_memory_ptr",
                                      "typeString": "struct Widgets.Widget memory"
                                    }
                                  },
                                  "id": 6348,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "width",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 6258,
                                  "src": "927:11:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 6349,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "toString",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 3760,
                                "src": "927:20:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$bound_to$_t_uint256_$",
                                  "typeString": "function (uint256) pure returns (string memory)"
                                }
                              },
                              "id": 6350,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "927:22:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            },
                            "id": 6351,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "927:30:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6352,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "927:32:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        ],
                        "expression": {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "id": 6343,
                              "name": "json",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6270,
                              "src": "905:4:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            },
                            "id": 6344,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "905:12:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6345,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "905:14:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        },
                        "id": 6346,
                        "isConstant": false,
                        "isLValue": true,
                        "isPure": false,
                        "lValueRequested": false,
                        "memberName": "concat",
                        "nodeType": "MemberAccess",
                        "referencedDeclaration": 5341,
                        "src": "905:21:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_function_internal_pure$_t_struct$_slice_$3768_memory_ptr_$_t_struct$_slice_$3768_memory_ptr_$returns$_t_string_memory_ptr_$bound_to$_t_struct$_slice_$3768_memory_ptr_$",
                          "typeString": "function (struct strings.slice memory,struct strings.slice memory) pure returns (string memory)"
                        }
                      },
                      "id": 6353,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "kind": "functionCall",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "905:55:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "src": "898:62:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_memory_ptr",
                      "typeString": "string memory"
                    }
                  },
                  "id": 6355,
                  "nodeType": "ExpressionStatement",
                  "src": "898:62:36"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 6365,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftHandSide": {
                      "argumentTypes": null,
                      "id": 6356,
                      "name": "json",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 6270,
                      "src": "970:4:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "nodeType": "Assignment",
                    "operator": "=",
                    "rightHandSide": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "hexValue": "2c22656c656d656e7473223a5b",
                              "id": 6361,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "999:15:36",
                              "subdenomination": null,
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_f6557a878415a832cea5bed4ec59182b6dd9028ab2b3277fa4ab39cb47c9c217",
                                "typeString": "literal_string \",\"elements\":[\""
                              },
                              "value": ",\"elements\":["
                            },
                            "id": 6362,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "999:23:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6363,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "999:25:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        ],
                        "expression": {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "id": 6357,
                              "name": "json",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6270,
                              "src": "977:4:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            },
                            "id": 6358,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "977:12:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6359,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "977:14:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        },
                        "id": 6360,
                        "isConstant": false,
                        "isLValue": true,
                        "isPure": false,
                        "lValueRequested": false,
                        "memberName": "concat",
                        "nodeType": "MemberAccess",
                        "referencedDeclaration": 5341,
                        "src": "977:21:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_function_internal_pure$_t_struct$_slice_$3768_memory_ptr_$_t_struct$_slice_$3768_memory_ptr_$returns$_t_string_memory_ptr_$bound_to$_t_struct$_slice_$3768_memory_ptr_$",
                          "typeString": "function (struct strings.slice memory,struct strings.slice memory) pure returns (string memory)"
                        }
                      },
                      "id": 6364,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "kind": "functionCall",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "977:48:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "src": "970:55:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_memory_ptr",
                      "typeString": "string memory"
                    }
                  },
                  "id": 6366,
                  "nodeType": "ExpressionStatement",
                  "src": "970:55:36"
                },
                {
                  "body": {
                    "id": 6411,
                    "nodeType": "Block",
                    "src": "1084:191:36",
                    "statements": [
                      {
                        "condition": {
                          "argumentTypes": null,
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 6381,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "argumentTypes": null,
                            "id": 6379,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6368,
                            "src": "1102:1:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "argumentTypes": null,
                            "hexValue": "30",
                            "id": 6380,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1106:1:36",
                            "subdenomination": null,
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "1102:5:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": null,
                        "id": 6394,
                        "nodeType": "IfStatement",
                        "src": "1098:87:36",
                        "trueBody": {
                          "id": 6393,
                          "nodeType": "Block",
                          "src": "1109:76:36",
                          "statements": [
                            {
                              "expression": {
                                "argumentTypes": null,
                                "id": 6391,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "argumentTypes": null,
                                  "id": 6382,
                                  "name": "json",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6270,
                                  "src": "1127:4:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_string_memory_ptr",
                                    "typeString": "string memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "argumentTypes": null,
                                  "arguments": [
                                    {
                                      "argumentTypes": null,
                                      "arguments": [],
                                      "expression": {
                                        "argumentTypes": [],
                                        "expression": {
                                          "argumentTypes": null,
                                          "hexValue": "2c",
                                          "id": 6387,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "kind": "string",
                                          "lValueRequested": false,
                                          "nodeType": "Literal",
                                          "src": "1156:3:36",
                                          "subdenomination": null,
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_stringliteral_3e7a35b97029f9e0cf6effd71c1a7958822e9a217d3a3aec886668a7dd8231cb",
                                            "typeString": "literal_string \",\""
                                          },
                                          "value": ","
                                        },
                                        "id": 6388,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "toSlice",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 3828,
                                        "src": "1156:11:36",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                                          "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                                        }
                                      },
                                      "id": 6389,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "1156:13:36",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                                        "typeString": "struct strings.slice memory"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                                        "typeString": "struct strings.slice memory"
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": null,
                                      "arguments": [],
                                      "expression": {
                                        "argumentTypes": [],
                                        "expression": {
                                          "argumentTypes": null,
                                          "id": 6383,
                                          "name": "json",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 6270,
                                          "src": "1134:4:36",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_string_memory_ptr",
                                            "typeString": "string memory"
                                          }
                                        },
                                        "id": 6384,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "toSlice",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 3828,
                                        "src": "1134:12:36",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                                          "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                                        }
                                      },
                                      "id": 6385,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "1134:14:36",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                                        "typeString": "struct strings.slice memory"
                                      }
                                    },
                                    "id": 6386,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "concat",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 5341,
                                    "src": "1134:21:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_struct$_slice_$3768_memory_ptr_$_t_struct$_slice_$3768_memory_ptr_$returns$_t_string_memory_ptr_$bound_to$_t_struct$_slice_$3768_memory_ptr_$",
                                      "typeString": "function (struct strings.slice memory,struct strings.slice memory) pure returns (string memory)"
                                    }
                                  },
                                  "id": 6390,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1134:36:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_string_memory_ptr",
                                    "typeString": "string memory"
                                  }
                                },
                                "src": "1127:43:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_string_memory_ptr",
                                  "typeString": "string memory"
                                }
                              },
                              "id": 6392,
                              "nodeType": "ExpressionStatement",
                              "src": "1127:43:36"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "argumentTypes": null,
                          "id": 6409,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "argumentTypes": null,
                            "id": 6395,
                            "name": "json",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6270,
                            "src": "1198:4:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_memory_ptr",
                              "typeString": "string memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "argumentTypes": null,
                            "arguments": [
                              {
                                "argumentTypes": null,
                                "arguments": [],
                                "expression": {
                                  "argumentTypes": [],
                                  "expression": {
                                    "argumentTypes": null,
                                    "arguments": [],
                                    "expression": {
                                      "argumentTypes": [],
                                      "expression": {
                                        "argumentTypes": null,
                                        "baseExpression": {
                                          "argumentTypes": null,
                                          "expression": {
                                            "argumentTypes": null,
                                            "id": 6400,
                                            "name": "_self",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 6264,
                                            "src": "1227:5:36",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_struct$_Widget_$6262_memory_ptr",
                                              "typeString": "struct Widgets.Widget memory"
                                            }
                                          },
                                          "id": 6401,
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "elements",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 6261,
                                          "src": "1227:14:36",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_struct$_Element_$5632_memory_$dyn_memory",
                                            "typeString": "struct Elements.Element memory[] memory"
                                          }
                                        },
                                        "id": 6403,
                                        "indexExpression": {
                                          "argumentTypes": null,
                                          "id": 6402,
                                          "name": "i",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 6368,
                                          "src": "1242:1:36",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "nodeType": "IndexAccess",
                                        "src": "1227:17:36",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Element_$5632_memory",
                                          "typeString": "struct Elements.Element memory"
                                        }
                                      },
                                      "id": 6404,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "toJson",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 5832,
                                      "src": "1227:24:36",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_internal_pure$_t_struct$_Element_$5632_memory_ptr_$returns$_t_string_memory_ptr_$bound_to$_t_struct$_Element_$5632_memory_ptr_$",
                                        "typeString": "function (struct Elements.Element memory) pure returns (string memory)"
                                      }
                                    },
                                    "id": 6405,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "1227:26:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_string_memory_ptr",
                                      "typeString": "string memory"
                                    }
                                  },
                                  "id": 6406,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "toSlice",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 3828,
                                  "src": "1227:34:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                                    "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                                  }
                                },
                                "id": 6407,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1227:36:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                                  "typeString": "struct strings.slice memory"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                                  "typeString": "struct strings.slice memory"
                                }
                              ],
                              "expression": {
                                "argumentTypes": null,
                                "arguments": [],
                                "expression": {
                                  "argumentTypes": [],
                                  "expression": {
                                    "argumentTypes": null,
                                    "id": 6396,
                                    "name": "json",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6270,
                                    "src": "1205:4:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_string_memory_ptr",
                                      "typeString": "string memory"
                                    }
                                  },
                                  "id": 6397,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "toSlice",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 3828,
                                  "src": "1205:12:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                                    "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                                  }
                                },
                                "id": 6398,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1205:14:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                                  "typeString": "struct strings.slice memory"
                                }
                              },
                              "id": 6399,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "concat",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 5341,
                              "src": "1205:21:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_struct$_slice_$3768_memory_ptr_$_t_struct$_slice_$3768_memory_ptr_$returns$_t_string_memory_ptr_$bound_to$_t_struct$_slice_$3768_memory_ptr_$",
                                "typeString": "function (struct strings.slice memory,struct strings.slice memory) pure returns (string memory)"
                              }
                            },
                            "id": 6408,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "1205:59:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_memory_ptr",
                              "typeString": "string memory"
                            }
                          },
                          "src": "1198:66:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        "id": 6410,
                        "nodeType": "ExpressionStatement",
                        "src": "1198:66:36"
                      }
                    ]
                  },
                  "condition": {
                    "argumentTypes": null,
                    "commonType": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    },
                    "id": 6375,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftExpression": {
                      "argumentTypes": null,
                      "id": 6371,
                      "name": "i",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 6368,
                      "src": "1052:1:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "nodeType": "BinaryOperation",
                    "operator": "<",
                    "rightExpression": {
                      "argumentTypes": null,
                      "expression": {
                        "argumentTypes": null,
                        "expression": {
                          "argumentTypes": null,
                          "id": 6372,
                          "name": "_self",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6264,
                          "src": "1056:5:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Widget_$6262_memory_ptr",
                            "typeString": "struct Widgets.Widget memory"
                          }
                        },
                        "id": 6373,
                        "isConstant": false,
                        "isLValue": true,
                        "isPure": false,
                        "lValueRequested": false,
                        "memberName": "elements",
                        "nodeType": "MemberAccess",
                        "referencedDeclaration": 6261,
                        "src": "1056:14:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Element_$5632_memory_$dyn_memory",
                          "typeString": "struct Elements.Element memory[] memory"
                        }
                      },
                      "id": 6374,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "lValueRequested": false,
                      "memberName": "length",
                      "nodeType": "MemberAccess",
                      "referencedDeclaration": null,
                      "src": "1056:21:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "src": "1052:25:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "id": 6412,
                  "initializationExpression": {
                    "assignments": [
                      6368
                    ],
                    "declarations": [
                      {
                        "constant": false,
                        "id": 6368,
                        "name": "i",
                        "nodeType": "VariableDeclaration",
                        "scope": 6423,
                        "src": "1040:6:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 6367,
                          "name": "uint",
                          "nodeType": "ElementaryTypeName",
                          "src": "1040:4:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "value": null,
                        "visibility": "internal"
                      }
                    ],
                    "id": 6370,
                    "initialValue": {
                      "argumentTypes": null,
                      "hexValue": "30",
                      "id": 6369,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": true,
                      "kind": "number",
                      "lValueRequested": false,
                      "nodeType": "Literal",
                      "src": "1049:1:36",
                      "subdenomination": null,
                      "typeDescriptions": {
                        "typeIdentifier": "t_rational_0_by_1",
                        "typeString": "int_const 0"
                      },
                      "value": "0"
                    },
                    "nodeType": "VariableDeclarationStatement",
                    "src": "1040:10:36"
                  },
                  "loopExpression": {
                    "expression": {
                      "argumentTypes": null,
                      "id": 6377,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "lValueRequested": false,
                      "nodeType": "UnaryOperation",
                      "operator": "++",
                      "prefix": false,
                      "src": "1079:3:36",
                      "subExpression": {
                        "argumentTypes": null,
                        "id": 6376,
                        "name": "i",
                        "nodeType": "Identifier",
                        "overloadedDeclarations": [],
                        "referencedDeclaration": 6368,
                        "src": "1079:1:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      },
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "id": 6378,
                    "nodeType": "ExpressionStatement",
                    "src": "1079:3:36"
                  },
                  "nodeType": "ForStatement",
                  "src": "1035:240:36"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "arguments": [],
                        "expression": {
                          "argumentTypes": [],
                          "expression": {
                            "argumentTypes": null,
                            "hexValue": "5d7d",
                            "id": 6417,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "string",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1313:4:36",
                            "subdenomination": null,
                            "typeDescriptions": {
                              "typeIdentifier": "t_stringliteral_ab149d31dbf8c3ed1cc7ba15c88205185e426c492b6b350058945b7266ec7e76",
                              "typeString": "literal_string \"]}\""
                            },
                            "value": "]}"
                          },
                          "id": 6418,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "toSlice",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 3828,
                          "src": "1313:12:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                            "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                          }
                        },
                        "id": 6419,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "kind": "functionCall",
                        "lValueRequested": false,
                        "names": [],
                        "nodeType": "FunctionCall",
                        "src": "1313:14:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                          "typeString": "struct strings.slice memory"
                        }
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                          "typeString": "struct strings.slice memory"
                        }
                      ],
                      "expression": {
                        "argumentTypes": null,
                        "arguments": [],
                        "expression": {
                          "argumentTypes": [],
                          "expression": {
                            "argumentTypes": null,
                            "id": 6413,
                            "name": "json",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6270,
                            "src": "1291:4:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_memory_ptr",
                              "typeString": "string memory"
                            }
                          },
                          "id": 6414,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "toSlice",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 3828,
                          "src": "1291:12:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                            "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                          }
                        },
                        "id": 6415,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "kind": "functionCall",
                        "lValueRequested": false,
                        "names": [],
                        "nodeType": "FunctionCall",
                        "src": "1291:14:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                          "typeString": "struct strings.slice memory"
                        }
                      },
                      "id": 6416,
                      "isConstant": false,
                      "isLValue": true,
                      "isPure": false,
                      "lValueRequested": false,
                      "memberName": "concat",
                      "nodeType": "MemberAccess",
                      "referencedDeclaration": 5341,
                      "src": "1291:21:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_internal_pure$_t_struct$_slice_$3768_memory_ptr_$_t_struct$_slice_$3768_memory_ptr_$returns$_t_string_memory_ptr_$bound_to$_t_struct$_slice_$3768_memory_ptr_$",
                        "typeString": "function (struct strings.slice memory,struct strings.slice memory) pure returns (string memory)"
                      }
                    },
                    "id": 6420,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "1291:37:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_memory_ptr",
                      "typeString": "string memory"
                    }
                  },
                  "functionReturnParameters": 6268,
                  "id": 6421,
                  "nodeType": "Return",
                  "src": "1284:44:36"
                }
              ]
            },
            "documentation": null,
            "id": 6423,
            "implemented": true,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "toJson",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 6265,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 6264,
                  "name": "_self",
                  "nodeType": "VariableDeclaration",
                  "scope": 6423,
                  "src": "408:19:36",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_Widget_$6262_memory_ptr",
                    "typeString": "struct Widgets.Widget"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 6263,
                    "name": "Widget",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 6262,
                    "src": "408:6:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Widget_$6262_storage_ptr",
                      "typeString": "struct Widgets.Widget"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "407:21:36"
            },
            "payable": false,
            "returnParameters": {
              "id": 6268,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 6267,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 6423,
                  "src": "452:6:36",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 6266,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "452:6:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "451:8:36"
            },
            "scope": 6424,
            "src": "392:943:36",
            "stateMutability": "pure",
            "superFunction": null,
            "visibility": "internal"
          }
        ],
        "scope": 6425,
        "src": "116:1221:36"
      }
    ],
    "src": "0:1337:36"
  },
  "legacyAST": {
    "absolutePath": "tokenboost-solidity/contracts/widget/Widgets.sol",
    "exportedSymbols": {
      "Widgets": [
        6424
      ]
    },
    "id": 6425,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 6239,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "0:24:36"
      },
      {
        "absolutePath": "tokenboost-solidity/contracts/widget/Elements.sol",
        "file": "./Elements.sol",
        "id": 6240,
        "nodeType": "ImportDirective",
        "scope": 6425,
        "sourceUnit": 5834,
        "src": "26:24:36",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "absolutePath": "tokenboost-solidity/contracts/utils/strings.sol",
        "file": "../utils/strings.sol",
        "id": 6241,
        "nodeType": "ImportDirective",
        "scope": 6425,
        "sourceUnit": 5457,
        "src": "51:30:36",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "absolutePath": "tokenboost-solidity/contracts/utils/UintUtils.sol",
        "file": "../utils/UintUtils.sol",
        "id": 6242,
        "nodeType": "ImportDirective",
        "scope": 6425,
        "sourceUnit": 3762,
        "src": "82:32:36",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "library",
        "documentation": null,
        "fullyImplemented": true,
        "id": 6424,
        "linearizedBaseContracts": [
          6424
        ],
        "name": "Widgets",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "id": 6244,
            "libraryName": {
              "contractScope": null,
              "id": 6243,
              "name": "strings",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 5456,
              "src": "144:7:36",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_strings_$5456",
                "typeString": "library strings"
              }
            },
            "nodeType": "UsingForDirective",
            "src": "138:20:36",
            "typeName": null
          },
          {
            "id": 6247,
            "libraryName": {
              "contractScope": null,
              "id": 6245,
              "name": "UintUtils",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 3761,
              "src": "169:9:36",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_UintUtils_$3761",
                "typeString": "library UintUtils"
              }
            },
            "nodeType": "UsingForDirective",
            "src": "163:25:36",
            "typeName": {
              "id": 6246,
              "name": "uint",
              "nodeType": "ElementaryTypeName",
              "src": "183:4:36",
              "typeDescriptions": {
                "typeIdentifier": "t_uint256",
                "typeString": "uint256"
              }
            }
          },
          {
            "id": 6250,
            "libraryName": {
              "contractScope": null,
              "id": 6248,
              "name": "Elements",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 5833,
              "src": "199:8:36",
              "typeDescriptions": {
                "typeIdentifier": "t_contract$_Elements_$5833",
                "typeString": "library Elements"
              }
            },
            "nodeType": "UsingForDirective",
            "src": "193:36:36",
            "typeName": {
              "contractScope": null,
              "id": 6249,
              "name": "Elements.Element",
              "nodeType": "UserDefinedTypeName",
              "referencedDeclaration": 5632,
              "src": "212:16:36",
              "typeDescriptions": {
                "typeIdentifier": "t_struct$_Element_$5632_storage_ptr",
                "typeString": "struct Elements.Element"
              }
            }
          },
          {
            "canonicalName": "Widgets.Widget",
            "id": 6262,
            "members": [
              {
                "constant": false,
                "id": 6252,
                "name": "title",
                "nodeType": "VariableDeclaration",
                "scope": 6262,
                "src": "259:12:36",
                "stateVariable": false,
                "storageLocation": "default",
                "typeDescriptions": {
                  "typeIdentifier": "t_string_storage_ptr",
                  "typeString": "string"
                },
                "typeName": {
                  "id": 6251,
                  "name": "string",
                  "nodeType": "ElementaryTypeName",
                  "src": "259:6:36",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_storage_ptr",
                    "typeString": "string"
                  }
                },
                "value": null,
                "visibility": "internal"
              },
              {
                "constant": false,
                "id": 6254,
                "name": "shortDesc",
                "nodeType": "VariableDeclaration",
                "scope": 6262,
                "src": "281:16:36",
                "stateVariable": false,
                "storageLocation": "default",
                "typeDescriptions": {
                  "typeIdentifier": "t_string_storage_ptr",
                  "typeString": "string"
                },
                "typeName": {
                  "id": 6253,
                  "name": "string",
                  "nodeType": "ElementaryTypeName",
                  "src": "281:6:36",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_storage_ptr",
                    "typeString": "string"
                  }
                },
                "value": null,
                "visibility": "internal"
              },
              {
                "constant": false,
                "id": 6256,
                "name": "longDesc",
                "nodeType": "VariableDeclaration",
                "scope": 6262,
                "src": "307:15:36",
                "stateVariable": false,
                "storageLocation": "default",
                "typeDescriptions": {
                  "typeIdentifier": "t_string_storage_ptr",
                  "typeString": "string"
                },
                "typeName": {
                  "id": 6255,
                  "name": "string",
                  "nodeType": "ElementaryTypeName",
                  "src": "307:6:36",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_storage_ptr",
                    "typeString": "string"
                  }
                },
                "value": null,
                "visibility": "internal"
              },
              {
                "constant": false,
                "id": 6258,
                "name": "width",
                "nodeType": "VariableDeclaration",
                "scope": 6262,
                "src": "332:10:36",
                "stateVariable": false,
                "storageLocation": "default",
                "typeDescriptions": {
                  "typeIdentifier": "t_uint256",
                  "typeString": "uint256"
                },
                "typeName": {
                  "id": 6257,
                  "name": "uint",
                  "nodeType": "ElementaryTypeName",
                  "src": "332:4:36",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  }
                },
                "value": null,
                "visibility": "internal"
              },
              {
                "constant": false,
                "id": 6261,
                "name": "elements",
                "nodeType": "VariableDeclaration",
                "scope": 6262,
                "src": "352:27:36",
                "stateVariable": false,
                "storageLocation": "default",
                "typeDescriptions": {
                  "typeIdentifier": "t_array$_t_struct$_Element_$5632_storage_$dyn_storage_ptr",
                  "typeString": "struct Elements.Element[]"
                },
                "typeName": {
                  "baseType": {
                    "contractScope": null,
                    "id": 6259,
                    "name": "Elements.Element",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 5632,
                    "src": "352:16:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Element_$5632_storage_ptr",
                      "typeString": "struct Elements.Element"
                    }
                  },
                  "id": 6260,
                  "length": null,
                  "nodeType": "ArrayTypeName",
                  "src": "352:18:36",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_struct$_Element_$5632_storage_$dyn_storage_ptr",
                    "typeString": "struct Elements.Element[]"
                  }
                },
                "value": null,
                "visibility": "internal"
              }
            ],
            "name": "Widget",
            "nodeType": "StructDefinition",
            "scope": 6424,
            "src": "235:151:36",
            "visibility": "public"
          },
          {
            "body": {
              "id": 6422,
              "nodeType": "Block",
              "src": "460:875:36",
              "statements": [
                {
                  "assignments": [
                    6270
                  ],
                  "declarations": [
                    {
                      "constant": false,
                      "id": 6270,
                      "name": "json",
                      "nodeType": "VariableDeclaration",
                      "scope": 6423,
                      "src": "470:18:36",
                      "stateVariable": false,
                      "storageLocation": "memory",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string"
                      },
                      "typeName": {
                        "id": 6269,
                        "name": "string",
                        "nodeType": "ElementaryTypeName",
                        "src": "470:6:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_storage_ptr",
                          "typeString": "string"
                        }
                      },
                      "value": null,
                      "visibility": "internal"
                    }
                  ],
                  "id": 6272,
                  "initialValue": {
                    "argumentTypes": null,
                    "hexValue": "7b227469746c65223a22",
                    "id": 6271,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "string",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "491:12:36",
                    "subdenomination": null,
                    "typeDescriptions": {
                      "typeIdentifier": "t_stringliteral_8faf2a088ae147a766277ec4af97127fb88ca29105086a4c6a1d26ef5f0e64ee",
                      "typeString": "literal_string \"{\"title\":\"\""
                    },
                    "value": "{\"title\":\""
                  },
                  "nodeType": "VariableDeclarationStatement",
                  "src": "470:33:36"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 6283,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftHandSide": {
                      "argumentTypes": null,
                      "id": 6273,
                      "name": "json",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 6270,
                      "src": "513:4:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "nodeType": "Assignment",
                    "operator": "=",
                    "rightHandSide": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "expression": {
                                "argumentTypes": null,
                                "id": 6278,
                                "name": "_self",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6264,
                                "src": "542:5:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Widget_$6262_memory_ptr",
                                  "typeString": "struct Widgets.Widget memory"
                                }
                              },
                              "id": 6279,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "title",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 6252,
                              "src": "542:11:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory",
                                "typeString": "string memory"
                              }
                            },
                            "id": 6280,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "542:19:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6281,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "542:21:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        ],
                        "expression": {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "id": 6274,
                              "name": "json",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6270,
                              "src": "520:4:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            },
                            "id": 6275,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "520:12:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6276,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "520:14:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        },
                        "id": 6277,
                        "isConstant": false,
                        "isLValue": true,
                        "isPure": false,
                        "lValueRequested": false,
                        "memberName": "concat",
                        "nodeType": "MemberAccess",
                        "referencedDeclaration": 5341,
                        "src": "520:21:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_function_internal_pure$_t_struct$_slice_$3768_memory_ptr_$_t_struct$_slice_$3768_memory_ptr_$returns$_t_string_memory_ptr_$bound_to$_t_struct$_slice_$3768_memory_ptr_$",
                          "typeString": "function (struct strings.slice memory,struct strings.slice memory) pure returns (string memory)"
                        }
                      },
                      "id": 6282,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "kind": "functionCall",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "520:44:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "src": "513:51:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_memory_ptr",
                      "typeString": "string memory"
                    }
                  },
                  "id": 6284,
                  "nodeType": "ExpressionStatement",
                  "src": "513:51:36"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 6294,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftHandSide": {
                      "argumentTypes": null,
                      "id": 6285,
                      "name": "json",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 6270,
                      "src": "574:4:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "nodeType": "Assignment",
                    "operator": "=",
                    "rightHandSide": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "hexValue": "222c2273686f727444657363223a22",
                              "id": 6290,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "603:17:36",
                              "subdenomination": null,
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_69393e7ec2bfd534b8f1bad46c7516c2dc27410f9c9f50b6dff1037139b7a621",
                                "typeString": "literal_string \"\",\"shortDesc\":\"\""
                              },
                              "value": "\",\"shortDesc\":\""
                            },
                            "id": 6291,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "603:25:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6292,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "603:27:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        ],
                        "expression": {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "id": 6286,
                              "name": "json",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6270,
                              "src": "581:4:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            },
                            "id": 6287,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "581:12:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6288,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "581:14:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        },
                        "id": 6289,
                        "isConstant": false,
                        "isLValue": true,
                        "isPure": false,
                        "lValueRequested": false,
                        "memberName": "concat",
                        "nodeType": "MemberAccess",
                        "referencedDeclaration": 5341,
                        "src": "581:21:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_function_internal_pure$_t_struct$_slice_$3768_memory_ptr_$_t_struct$_slice_$3768_memory_ptr_$returns$_t_string_memory_ptr_$bound_to$_t_struct$_slice_$3768_memory_ptr_$",
                          "typeString": "function (struct strings.slice memory,struct strings.slice memory) pure returns (string memory)"
                        }
                      },
                      "id": 6293,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "kind": "functionCall",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "581:50:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "src": "574:57:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_memory_ptr",
                      "typeString": "string memory"
                    }
                  },
                  "id": 6295,
                  "nodeType": "ExpressionStatement",
                  "src": "574:57:36"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 6306,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftHandSide": {
                      "argumentTypes": null,
                      "id": 6296,
                      "name": "json",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 6270,
                      "src": "641:4:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "nodeType": "Assignment",
                    "operator": "=",
                    "rightHandSide": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "expression": {
                                "argumentTypes": null,
                                "id": 6301,
                                "name": "_self",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6264,
                                "src": "670:5:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Widget_$6262_memory_ptr",
                                  "typeString": "struct Widgets.Widget memory"
                                }
                              },
                              "id": 6302,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "shortDesc",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 6254,
                              "src": "670:15:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory",
                                "typeString": "string memory"
                              }
                            },
                            "id": 6303,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "670:23:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6304,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "670:25:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        ],
                        "expression": {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "id": 6297,
                              "name": "json",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6270,
                              "src": "648:4:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            },
                            "id": 6298,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "648:12:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6299,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "648:14:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        },
                        "id": 6300,
                        "isConstant": false,
                        "isLValue": true,
                        "isPure": false,
                        "lValueRequested": false,
                        "memberName": "concat",
                        "nodeType": "MemberAccess",
                        "referencedDeclaration": 5341,
                        "src": "648:21:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_function_internal_pure$_t_struct$_slice_$3768_memory_ptr_$_t_struct$_slice_$3768_memory_ptr_$returns$_t_string_memory_ptr_$bound_to$_t_struct$_slice_$3768_memory_ptr_$",
                          "typeString": "function (struct strings.slice memory,struct strings.slice memory) pure returns (string memory)"
                        }
                      },
                      "id": 6305,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "kind": "functionCall",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "648:48:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "src": "641:55:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_memory_ptr",
                      "typeString": "string memory"
                    }
                  },
                  "id": 6307,
                  "nodeType": "ExpressionStatement",
                  "src": "641:55:36"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 6317,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftHandSide": {
                      "argumentTypes": null,
                      "id": 6308,
                      "name": "json",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 6270,
                      "src": "706:4:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "nodeType": "Assignment",
                    "operator": "=",
                    "rightHandSide": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "hexValue": "222c226c6f6e6744657363223a22",
                              "id": 6313,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "735:16:36",
                              "subdenomination": null,
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_9c73c9153268d5611a90d7fde0e17bf83f239a24ca472937aabdc593cf87a232",
                                "typeString": "literal_string \"\",\"longDesc\":\"\""
                              },
                              "value": "\",\"longDesc\":\""
                            },
                            "id": 6314,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "735:24:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6315,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "735:26:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        ],
                        "expression": {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "id": 6309,
                              "name": "json",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6270,
                              "src": "713:4:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            },
                            "id": 6310,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "713:12:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6311,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "713:14:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        },
                        "id": 6312,
                        "isConstant": false,
                        "isLValue": true,
                        "isPure": false,
                        "lValueRequested": false,
                        "memberName": "concat",
                        "nodeType": "MemberAccess",
                        "referencedDeclaration": 5341,
                        "src": "713:21:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_function_internal_pure$_t_struct$_slice_$3768_memory_ptr_$_t_struct$_slice_$3768_memory_ptr_$returns$_t_string_memory_ptr_$bound_to$_t_struct$_slice_$3768_memory_ptr_$",
                          "typeString": "function (struct strings.slice memory,struct strings.slice memory) pure returns (string memory)"
                        }
                      },
                      "id": 6316,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "kind": "functionCall",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "713:49:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "src": "706:56:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_memory_ptr",
                      "typeString": "string memory"
                    }
                  },
                  "id": 6318,
                  "nodeType": "ExpressionStatement",
                  "src": "706:56:36"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 6329,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftHandSide": {
                      "argumentTypes": null,
                      "id": 6319,
                      "name": "json",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 6270,
                      "src": "772:4:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "nodeType": "Assignment",
                    "operator": "=",
                    "rightHandSide": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "expression": {
                                "argumentTypes": null,
                                "id": 6324,
                                "name": "_self",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6264,
                                "src": "801:5:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Widget_$6262_memory_ptr",
                                  "typeString": "struct Widgets.Widget memory"
                                }
                              },
                              "id": 6325,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "longDesc",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 6256,
                              "src": "801:14:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory",
                                "typeString": "string memory"
                              }
                            },
                            "id": 6326,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "801:22:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6327,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "801:24:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        ],
                        "expression": {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "id": 6320,
                              "name": "json",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6270,
                              "src": "779:4:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            },
                            "id": 6321,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "779:12:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6322,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "779:14:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        },
                        "id": 6323,
                        "isConstant": false,
                        "isLValue": true,
                        "isPure": false,
                        "lValueRequested": false,
                        "memberName": "concat",
                        "nodeType": "MemberAccess",
                        "referencedDeclaration": 5341,
                        "src": "779:21:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_function_internal_pure$_t_struct$_slice_$3768_memory_ptr_$_t_struct$_slice_$3768_memory_ptr_$returns$_t_string_memory_ptr_$bound_to$_t_struct$_slice_$3768_memory_ptr_$",
                          "typeString": "function (struct strings.slice memory,struct strings.slice memory) pure returns (string memory)"
                        }
                      },
                      "id": 6328,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "kind": "functionCall",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "779:47:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "src": "772:54:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_memory_ptr",
                      "typeString": "string memory"
                    }
                  },
                  "id": 6330,
                  "nodeType": "ExpressionStatement",
                  "src": "772:54:36"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 6340,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftHandSide": {
                      "argumentTypes": null,
                      "id": 6331,
                      "name": "json",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 6270,
                      "src": "836:4:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "nodeType": "Assignment",
                    "operator": "=",
                    "rightHandSide": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "hexValue": "222c227769647468223a",
                              "id": 6336,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "865:12:36",
                              "subdenomination": null,
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_dd0692004ac9638bc2bff8f0a9b379ef0370099632afbc54de8391fb1d56f10c",
                                "typeString": "literal_string \"\",\"width\":\""
                              },
                              "value": "\",\"width\":"
                            },
                            "id": 6337,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "865:20:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6338,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "865:22:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        ],
                        "expression": {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "id": 6332,
                              "name": "json",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6270,
                              "src": "843:4:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            },
                            "id": 6333,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "843:12:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6334,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "843:14:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        },
                        "id": 6335,
                        "isConstant": false,
                        "isLValue": true,
                        "isPure": false,
                        "lValueRequested": false,
                        "memberName": "concat",
                        "nodeType": "MemberAccess",
                        "referencedDeclaration": 5341,
                        "src": "843:21:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_function_internal_pure$_t_struct$_slice_$3768_memory_ptr_$_t_struct$_slice_$3768_memory_ptr_$returns$_t_string_memory_ptr_$bound_to$_t_struct$_slice_$3768_memory_ptr_$",
                          "typeString": "function (struct strings.slice memory,struct strings.slice memory) pure returns (string memory)"
                        }
                      },
                      "id": 6339,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "kind": "functionCall",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "843:45:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "src": "836:52:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_memory_ptr",
                      "typeString": "string memory"
                    }
                  },
                  "id": 6341,
                  "nodeType": "ExpressionStatement",
                  "src": "836:52:36"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 6354,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftHandSide": {
                      "argumentTypes": null,
                      "id": 6342,
                      "name": "json",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 6270,
                      "src": "898:4:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "nodeType": "Assignment",
                    "operator": "=",
                    "rightHandSide": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "expression": {
                                  "argumentTypes": null,
                                  "expression": {
                                    "argumentTypes": null,
                                    "id": 6347,
                                    "name": "_self",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6264,
                                    "src": "927:5:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Widget_$6262_memory_ptr",
                                      "typeString": "struct Widgets.Widget memory"
                                    }
                                  },
                                  "id": 6348,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "width",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 6258,
                                  "src": "927:11:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 6349,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "toString",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 3760,
                                "src": "927:20:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$bound_to$_t_uint256_$",
                                  "typeString": "function (uint256) pure returns (string memory)"
                                }
                              },
                              "id": 6350,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "927:22:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            },
                            "id": 6351,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "927:30:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6352,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "927:32:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        ],
                        "expression": {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "id": 6343,
                              "name": "json",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6270,
                              "src": "905:4:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            },
                            "id": 6344,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "905:12:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6345,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "905:14:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        },
                        "id": 6346,
                        "isConstant": false,
                        "isLValue": true,
                        "isPure": false,
                        "lValueRequested": false,
                        "memberName": "concat",
                        "nodeType": "MemberAccess",
                        "referencedDeclaration": 5341,
                        "src": "905:21:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_function_internal_pure$_t_struct$_slice_$3768_memory_ptr_$_t_struct$_slice_$3768_memory_ptr_$returns$_t_string_memory_ptr_$bound_to$_t_struct$_slice_$3768_memory_ptr_$",
                          "typeString": "function (struct strings.slice memory,struct strings.slice memory) pure returns (string memory)"
                        }
                      },
                      "id": 6353,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "kind": "functionCall",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "905:55:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "src": "898:62:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_memory_ptr",
                      "typeString": "string memory"
                    }
                  },
                  "id": 6355,
                  "nodeType": "ExpressionStatement",
                  "src": "898:62:36"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "id": 6365,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftHandSide": {
                      "argumentTypes": null,
                      "id": 6356,
                      "name": "json",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 6270,
                      "src": "970:4:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "nodeType": "Assignment",
                    "operator": "=",
                    "rightHandSide": {
                      "argumentTypes": null,
                      "arguments": [
                        {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "hexValue": "2c22656c656d656e7473223a5b",
                              "id": 6361,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "999:15:36",
                              "subdenomination": null,
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_f6557a878415a832cea5bed4ec59182b6dd9028ab2b3277fa4ab39cb47c9c217",
                                "typeString": "literal_string \",\"elements\":[\""
                              },
                              "value": ",\"elements\":["
                            },
                            "id": 6362,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "999:23:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6363,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "999:25:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        }
                      ],
                      "expression": {
                        "argumentTypes": [
                          {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        ],
                        "expression": {
                          "argumentTypes": null,
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "argumentTypes": null,
                              "id": 6357,
                              "name": "json",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6270,
                              "src": "977:4:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            },
                            "id": 6358,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toSlice",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3828,
                            "src": "977:12:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                              "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                            }
                          },
                          "id": 6359,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "977:14:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                            "typeString": "struct strings.slice memory"
                          }
                        },
                        "id": 6360,
                        "isConstant": false,
                        "isLValue": true,
                        "isPure": false,
                        "lValueRequested": false,
                        "memberName": "concat",
                        "nodeType": "MemberAccess",
                        "referencedDeclaration": 5341,
                        "src": "977:21:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_function_internal_pure$_t_struct$_slice_$3768_memory_ptr_$_t_struct$_slice_$3768_memory_ptr_$returns$_t_string_memory_ptr_$bound_to$_t_struct$_slice_$3768_memory_ptr_$",
                          "typeString": "function (struct strings.slice memory,struct strings.slice memory) pure returns (string memory)"
                        }
                      },
                      "id": 6364,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "kind": "functionCall",
                      "lValueRequested": false,
                      "names": [],
                      "nodeType": "FunctionCall",
                      "src": "977:48:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_string_memory_ptr",
                        "typeString": "string memory"
                      }
                    },
                    "src": "970:55:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_memory_ptr",
                      "typeString": "string memory"
                    }
                  },
                  "id": 6366,
                  "nodeType": "ExpressionStatement",
                  "src": "970:55:36"
                },
                {
                  "body": {
                    "id": 6411,
                    "nodeType": "Block",
                    "src": "1084:191:36",
                    "statements": [
                      {
                        "condition": {
                          "argumentTypes": null,
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 6381,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "argumentTypes": null,
                            "id": 6379,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6368,
                            "src": "1102:1:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "argumentTypes": null,
                            "hexValue": "30",
                            "id": 6380,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1106:1:36",
                            "subdenomination": null,
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "1102:5:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": null,
                        "id": 6394,
                        "nodeType": "IfStatement",
                        "src": "1098:87:36",
                        "trueBody": {
                          "id": 6393,
                          "nodeType": "Block",
                          "src": "1109:76:36",
                          "statements": [
                            {
                              "expression": {
                                "argumentTypes": null,
                                "id": 6391,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "argumentTypes": null,
                                  "id": 6382,
                                  "name": "json",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6270,
                                  "src": "1127:4:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_string_memory_ptr",
                                    "typeString": "string memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "argumentTypes": null,
                                  "arguments": [
                                    {
                                      "argumentTypes": null,
                                      "arguments": [],
                                      "expression": {
                                        "argumentTypes": [],
                                        "expression": {
                                          "argumentTypes": null,
                                          "hexValue": "2c",
                                          "id": 6387,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "kind": "string",
                                          "lValueRequested": false,
                                          "nodeType": "Literal",
                                          "src": "1156:3:36",
                                          "subdenomination": null,
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_stringliteral_3e7a35b97029f9e0cf6effd71c1a7958822e9a217d3a3aec886668a7dd8231cb",
                                            "typeString": "literal_string \",\""
                                          },
                                          "value": ","
                                        },
                                        "id": 6388,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "toSlice",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 3828,
                                        "src": "1156:11:36",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                                          "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                                        }
                                      },
                                      "id": 6389,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "1156:13:36",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                                        "typeString": "struct strings.slice memory"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                                        "typeString": "struct strings.slice memory"
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": null,
                                      "arguments": [],
                                      "expression": {
                                        "argumentTypes": [],
                                        "expression": {
                                          "argumentTypes": null,
                                          "id": 6383,
                                          "name": "json",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 6270,
                                          "src": "1134:4:36",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_string_memory_ptr",
                                            "typeString": "string memory"
                                          }
                                        },
                                        "id": 6384,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "toSlice",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 3828,
                                        "src": "1134:12:36",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                                          "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                                        }
                                      },
                                      "id": 6385,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "1134:14:36",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                                        "typeString": "struct strings.slice memory"
                                      }
                                    },
                                    "id": 6386,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "concat",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 5341,
                                    "src": "1134:21:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_struct$_slice_$3768_memory_ptr_$_t_struct$_slice_$3768_memory_ptr_$returns$_t_string_memory_ptr_$bound_to$_t_struct$_slice_$3768_memory_ptr_$",
                                      "typeString": "function (struct strings.slice memory,struct strings.slice memory) pure returns (string memory)"
                                    }
                                  },
                                  "id": 6390,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1134:36:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_string_memory_ptr",
                                    "typeString": "string memory"
                                  }
                                },
                                "src": "1127:43:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_string_memory_ptr",
                                  "typeString": "string memory"
                                }
                              },
                              "id": 6392,
                              "nodeType": "ExpressionStatement",
                              "src": "1127:43:36"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "argumentTypes": null,
                          "id": 6409,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "argumentTypes": null,
                            "id": 6395,
                            "name": "json",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6270,
                            "src": "1198:4:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_memory_ptr",
                              "typeString": "string memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "argumentTypes": null,
                            "arguments": [
                              {
                                "argumentTypes": null,
                                "arguments": [],
                                "expression": {
                                  "argumentTypes": [],
                                  "expression": {
                                    "argumentTypes": null,
                                    "arguments": [],
                                    "expression": {
                                      "argumentTypes": [],
                                      "expression": {
                                        "argumentTypes": null,
                                        "baseExpression": {
                                          "argumentTypes": null,
                                          "expression": {
                                            "argumentTypes": null,
                                            "id": 6400,
                                            "name": "_self",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 6264,
                                            "src": "1227:5:36",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_struct$_Widget_$6262_memory_ptr",
                                              "typeString": "struct Widgets.Widget memory"
                                            }
                                          },
                                          "id": 6401,
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "elements",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 6261,
                                          "src": "1227:14:36",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_struct$_Element_$5632_memory_$dyn_memory",
                                            "typeString": "struct Elements.Element memory[] memory"
                                          }
                                        },
                                        "id": 6403,
                                        "indexExpression": {
                                          "argumentTypes": null,
                                          "id": 6402,
                                          "name": "i",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 6368,
                                          "src": "1242:1:36",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "nodeType": "IndexAccess",
                                        "src": "1227:17:36",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Element_$5632_memory",
                                          "typeString": "struct Elements.Element memory"
                                        }
                                      },
                                      "id": 6404,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "toJson",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 5832,
                                      "src": "1227:24:36",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_internal_pure$_t_struct$_Element_$5632_memory_ptr_$returns$_t_string_memory_ptr_$bound_to$_t_struct$_Element_$5632_memory_ptr_$",
                                        "typeString": "function (struct Elements.Element memory) pure returns (string memory)"
                                      }
                                    },
                                    "id": 6405,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "1227:26:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_string_memory_ptr",
                                      "typeString": "string memory"
                                    }
                                  },
                                  "id": 6406,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "toSlice",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 3828,
                                  "src": "1227:34:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                                    "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                                  }
                                },
                                "id": 6407,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1227:36:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                                  "typeString": "struct strings.slice memory"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                                  "typeString": "struct strings.slice memory"
                                }
                              ],
                              "expression": {
                                "argumentTypes": null,
                                "arguments": [],
                                "expression": {
                                  "argumentTypes": [],
                                  "expression": {
                                    "argumentTypes": null,
                                    "id": 6396,
                                    "name": "json",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6270,
                                    "src": "1205:4:36",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_string_memory_ptr",
                                      "typeString": "string memory"
                                    }
                                  },
                                  "id": 6397,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "toSlice",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 3828,
                                  "src": "1205:12:36",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                                    "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                                  }
                                },
                                "id": 6398,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1205:14:36",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                                  "typeString": "struct strings.slice memory"
                                }
                              },
                              "id": 6399,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "concat",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 5341,
                              "src": "1205:21:36",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_struct$_slice_$3768_memory_ptr_$_t_struct$_slice_$3768_memory_ptr_$returns$_t_string_memory_ptr_$bound_to$_t_struct$_slice_$3768_memory_ptr_$",
                                "typeString": "function (struct strings.slice memory,struct strings.slice memory) pure returns (string memory)"
                              }
                            },
                            "id": 6408,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "1205:59:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_memory_ptr",
                              "typeString": "string memory"
                            }
                          },
                          "src": "1198:66:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        "id": 6410,
                        "nodeType": "ExpressionStatement",
                        "src": "1198:66:36"
                      }
                    ]
                  },
                  "condition": {
                    "argumentTypes": null,
                    "commonType": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    },
                    "id": 6375,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "lValueRequested": false,
                    "leftExpression": {
                      "argumentTypes": null,
                      "id": 6371,
                      "name": "i",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 6368,
                      "src": "1052:1:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "nodeType": "BinaryOperation",
                    "operator": "<",
                    "rightExpression": {
                      "argumentTypes": null,
                      "expression": {
                        "argumentTypes": null,
                        "expression": {
                          "argumentTypes": null,
                          "id": 6372,
                          "name": "_self",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6264,
                          "src": "1056:5:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Widget_$6262_memory_ptr",
                            "typeString": "struct Widgets.Widget memory"
                          }
                        },
                        "id": 6373,
                        "isConstant": false,
                        "isLValue": true,
                        "isPure": false,
                        "lValueRequested": false,
                        "memberName": "elements",
                        "nodeType": "MemberAccess",
                        "referencedDeclaration": 6261,
                        "src": "1056:14:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Element_$5632_memory_$dyn_memory",
                          "typeString": "struct Elements.Element memory[] memory"
                        }
                      },
                      "id": 6374,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "lValueRequested": false,
                      "memberName": "length",
                      "nodeType": "MemberAccess",
                      "referencedDeclaration": null,
                      "src": "1056:21:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "src": "1052:25:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "id": 6412,
                  "initializationExpression": {
                    "assignments": [
                      6368
                    ],
                    "declarations": [
                      {
                        "constant": false,
                        "id": 6368,
                        "name": "i",
                        "nodeType": "VariableDeclaration",
                        "scope": 6423,
                        "src": "1040:6:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 6367,
                          "name": "uint",
                          "nodeType": "ElementaryTypeName",
                          "src": "1040:4:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "value": null,
                        "visibility": "internal"
                      }
                    ],
                    "id": 6370,
                    "initialValue": {
                      "argumentTypes": null,
                      "hexValue": "30",
                      "id": 6369,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": true,
                      "kind": "number",
                      "lValueRequested": false,
                      "nodeType": "Literal",
                      "src": "1049:1:36",
                      "subdenomination": null,
                      "typeDescriptions": {
                        "typeIdentifier": "t_rational_0_by_1",
                        "typeString": "int_const 0"
                      },
                      "value": "0"
                    },
                    "nodeType": "VariableDeclarationStatement",
                    "src": "1040:10:36"
                  },
                  "loopExpression": {
                    "expression": {
                      "argumentTypes": null,
                      "id": 6377,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": false,
                      "lValueRequested": false,
                      "nodeType": "UnaryOperation",
                      "operator": "++",
                      "prefix": false,
                      "src": "1079:3:36",
                      "subExpression": {
                        "argumentTypes": null,
                        "id": 6376,
                        "name": "i",
                        "nodeType": "Identifier",
                        "overloadedDeclarations": [],
                        "referencedDeclaration": 6368,
                        "src": "1079:1:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      },
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "id": 6378,
                    "nodeType": "ExpressionStatement",
                    "src": "1079:3:36"
                  },
                  "nodeType": "ForStatement",
                  "src": "1035:240:36"
                },
                {
                  "expression": {
                    "argumentTypes": null,
                    "arguments": [
                      {
                        "argumentTypes": null,
                        "arguments": [],
                        "expression": {
                          "argumentTypes": [],
                          "expression": {
                            "argumentTypes": null,
                            "hexValue": "5d7d",
                            "id": 6417,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "string",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1313:4:36",
                            "subdenomination": null,
                            "typeDescriptions": {
                              "typeIdentifier": "t_stringliteral_ab149d31dbf8c3ed1cc7ba15c88205185e426c492b6b350058945b7266ec7e76",
                              "typeString": "literal_string \"]}\""
                            },
                            "value": "]}"
                          },
                          "id": 6418,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "toSlice",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 3828,
                          "src": "1313:12:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                            "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                          }
                        },
                        "id": 6419,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "kind": "functionCall",
                        "lValueRequested": false,
                        "names": [],
                        "nodeType": "FunctionCall",
                        "src": "1313:14:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                          "typeString": "struct strings.slice memory"
                        }
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                          "typeString": "struct strings.slice memory"
                        }
                      ],
                      "expression": {
                        "argumentTypes": null,
                        "arguments": [],
                        "expression": {
                          "argumentTypes": [],
                          "expression": {
                            "argumentTypes": null,
                            "id": 6413,
                            "name": "json",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6270,
                            "src": "1291:4:36",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_memory_ptr",
                              "typeString": "string memory"
                            }
                          },
                          "id": 6414,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "toSlice",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 3828,
                          "src": "1291:12:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$returns$_t_struct$_slice_$3768_memory_ptr_$bound_to$_t_string_memory_ptr_$",
                            "typeString": "function (string memory) pure returns (struct strings.slice memory)"
                          }
                        },
                        "id": 6415,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": false,
                        "kind": "functionCall",
                        "lValueRequested": false,
                        "names": [],
                        "nodeType": "FunctionCall",
                        "src": "1291:14:36",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_slice_$3768_memory_ptr",
                          "typeString": "struct strings.slice memory"
                        }
                      },
                      "id": 6416,
                      "isConstant": false,
                      "isLValue": true,
                      "isPure": false,
                      "lValueRequested": false,
                      "memberName": "concat",
                      "nodeType": "MemberAccess",
                      "referencedDeclaration": 5341,
                      "src": "1291:21:36",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_internal_pure$_t_struct$_slice_$3768_memory_ptr_$_t_struct$_slice_$3768_memory_ptr_$returns$_t_string_memory_ptr_$bound_to$_t_struct$_slice_$3768_memory_ptr_$",
                        "typeString": "function (struct strings.slice memory,struct strings.slice memory) pure returns (string memory)"
                      }
                    },
                    "id": 6420,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": false,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "1291:37:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_memory_ptr",
                      "typeString": "string memory"
                    }
                  },
                  "functionReturnParameters": 6268,
                  "id": 6421,
                  "nodeType": "Return",
                  "src": "1284:44:36"
                }
              ]
            },
            "documentation": null,
            "id": 6423,
            "implemented": true,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "toJson",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 6265,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 6264,
                  "name": "_self",
                  "nodeType": "VariableDeclaration",
                  "scope": 6423,
                  "src": "408:19:36",
                  "stateVariable": false,
                  "storageLocation": "memory",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_Widget_$6262_memory_ptr",
                    "typeString": "struct Widgets.Widget"
                  },
                  "typeName": {
                    "contractScope": null,
                    "id": 6263,
                    "name": "Widget",
                    "nodeType": "UserDefinedTypeName",
                    "referencedDeclaration": 6262,
                    "src": "408:6:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Widget_$6262_storage_ptr",
                      "typeString": "struct Widgets.Widget"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "407:21:36"
            },
            "payable": false,
            "returnParameters": {
              "id": 6268,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 6267,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 6423,
                  "src": "452:6:36",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 6266,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "452:6:36",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "451:8:36"
            },
            "scope": 6424,
            "src": "392:943:36",
            "stateMutability": "pure",
            "superFunction": null,
            "visibility": "internal"
          }
        ],
        "scope": 6425,
        "src": "116:1221:36"
      }
    ],
    "src": "0:1337:36"
  },
  "compiler": {
    "name": "solc",
    "version": "0.4.24+commit.e67f0147.Emscripten.clang"
  },
  "networks": {},
  "schemaVersion": "2.0.1",
  "updatedAt": "2018-10-24T12:40:22.247Z"
}