@scottish-government/designsystem-react 0.8.0 → 0.10.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (169) hide show
  1. package/.storybook/main.ts +20 -0
  2. package/.storybook/manager.ts +13 -0
  3. package/.storybook/preview-head.html +1 -0
  4. package/.storybook/preview.tsx +56 -0
  5. package/.storybook/sgdsArgTypes.ts +123 -0
  6. package/.storybook/sgdsTheme.ts +9 -0
  7. package/.storybook/vitest.setup.ts +7 -0
  8. package/@types/common/AbstractNotificationBanner.d.ts +2 -2
  9. package/@types/common/ActionLink.d.ts +1 -1
  10. package/@types/common/Icon.d.ts +1 -1
  11. package/@types/components/Accordion.d.ts +2 -3
  12. package/@types/components/Button.d.ts +5 -5
  13. package/@types/components/CategoryItem.d.ts +10 -0
  14. package/@types/components/CategoryList.d.ts +7 -0
  15. package/@types/components/Checkbox.d.ts +2 -2
  16. package/@types/components/ContentsNav.d.ts +1 -1
  17. package/@types/components/DatePicker.d.ts +1 -1
  18. package/@types/components/ErrorMessage.d.ts +1 -2
  19. package/@types/components/ErrorSummary.d.ts +1 -1
  20. package/@types/components/FileDownload.d.ts +2 -2
  21. package/@types/components/Metadata.d.ts +1 -1
  22. package/@types/components/Pagination.d.ts +1 -1
  23. package/@types/components/RadioButton.d.ts +2 -2
  24. package/@types/components/SideNavigation.d.ts +1 -1
  25. package/@types/components/SiteNavigation.d.ts +1 -1
  26. package/@types/components/SummaryList.d.ts +1 -1
  27. package/@types/components/Tabs.d.ts +3 -3
  28. package/@types/components/TextInput.d.ts +1 -1
  29. package/@types/sgds.d.ts +2 -1
  30. package/CHANGELOG.md +29 -0
  31. package/dist/common/AbstractNotificationBanner.jsx +4 -4
  32. package/dist/common/Icon.jsx +2 -2
  33. package/dist/components/Accordion/Accordion.jsx +8 -7
  34. package/dist/components/Button/Button.jsx +6 -6
  35. package/dist/components/CategoryItem/CategoryItem.jsx +35 -0
  36. package/dist/components/CategoryList/CategoryList.jsx +55 -0
  37. package/dist/components/Checkbox/Checkbox.jsx +7 -4
  38. package/dist/components/Checkbox/CheckboxGroup.jsx +5 -11
  39. package/dist/components/ContentsNav/ContentsNav.jsx +2 -2
  40. package/dist/components/DatePicker/DatePicker.jsx +1 -1
  41. package/dist/components/ErrorMessage/ErrorMessage.jsx +3 -3
  42. package/dist/components/FileDownload/FileDownload.jsx +2 -2
  43. package/dist/components/NotificationBanner/NotificationBanner.jsx +2 -2
  44. package/dist/components/PageMetadata/PageMetadata.jsx +4 -4
  45. package/dist/components/Pagination/Pagination.jsx +4 -4
  46. package/dist/components/Question/Question.jsx +1 -1
  47. package/dist/components/RadioButton/RadioButton.jsx +6 -2
  48. package/dist/components/RadioButton/RadioGroup.jsx +7 -47
  49. package/dist/components/Select/Select.jsx +1 -1
  50. package/dist/components/SideNavigation/SideNavigation.jsx +2 -2
  51. package/dist/components/SiteHeader/SiteHeader.jsx +3 -3
  52. package/dist/components/SiteNavigation/SiteNavigation.jsx +2 -2
  53. package/dist/components/SiteSearch/SiteSearch.jsx +1 -1
  54. package/dist/components/SkipLinks/SkipLinks.jsx +1 -1
  55. package/dist/components/SummaryList/SummaryList.jsx +3 -3
  56. package/dist/components/Tabs/Tabs.jsx +6 -7
  57. package/dist/components/TextInput/TextInput.jsx +5 -5
  58. package/dist/components/Textarea/Textarea.jsx +1 -1
  59. package/dist/hooks/useTracking.js +21 -0
  60. package/dist/tsconfig.tsbuildinfo +1 -1
  61. package/dist/utils/context.js +5 -0
  62. package/package.json +15 -4
  63. package/src/common/AbstractNotificationBanner.test.tsx +1 -1
  64. package/src/common/AbstractNotificationBanner.tsx +4 -4
  65. package/src/common/Icon.test.tsx +1 -1
  66. package/src/common/Icon.tsx +2 -2
  67. package/src/components/Accordion/Accordion.stories.tsx +111 -0
  68. package/src/components/Accordion/Accordion.test.tsx +5 -17
  69. package/src/components/Accordion/Accordion.tsx +11 -10
  70. package/src/components/AspectBox/AspectBox.stories.tsx +64 -0
  71. package/src/components/BackToTop/BackToTop.stories.tsx +36 -0
  72. package/src/components/Breadcrumbs/Breadcrumbs.stories.tsx +49 -0
  73. package/src/components/Breadcrumbs/Breadcrumbs.test.tsx +0 -1
  74. package/src/components/Breadcrumbs/Breadcrumbs.tsx +1 -1
  75. package/src/components/Button/Button.stories.tsx +194 -0
  76. package/src/components/Button/Button.test.tsx +4 -4
  77. package/src/components/Button/Button.tsx +9 -9
  78. package/src/components/CategoryItem/CategoryItem.stories.tsx +55 -0
  79. package/src/components/CategoryItem/CategoryItem.test.tsx +93 -0
  80. package/src/components/CategoryItem/CategoryItem.tsx +56 -0
  81. package/src/components/CategoryList/CategoryList.stories.tsx +65 -0
  82. package/src/components/CategoryList/CategoryList.test.tsx +59 -0
  83. package/src/components/CategoryList/CategoryList.tsx +33 -0
  84. package/src/components/Checkbox/Checkbox.stories.tsx +85 -0
  85. package/src/components/Checkbox/Checkbox.test.tsx +2 -2
  86. package/src/components/Checkbox/Checkbox.tsx +11 -6
  87. package/src/components/Checkbox/CheckboxGroup.stories.tsx +68 -0
  88. package/src/components/Checkbox/CheckboxGroup.tsx +7 -12
  89. package/src/components/ConfirmationMessage/ConfirmationMessage.stories.tsx +38 -0
  90. package/src/components/ContentsNav/ContentsNav.stories.tsx +43 -0
  91. package/src/components/ContentsNav/ContentsNav.test.tsx +2 -2
  92. package/src/components/ContentsNav/ContentsNav.tsx +2 -2
  93. package/src/components/CookieBanner/CookieBanner.stories.tsx +33 -0
  94. package/src/components/DatePicker/DatePicker.stories.tsx +113 -0
  95. package/src/components/DatePicker/DatePicker.tsx +1 -1
  96. package/src/components/Details/Details.stories.tsx +36 -0
  97. package/src/components/ErrorMessage/ErrorMessage.stories.tsx +19 -0
  98. package/src/components/ErrorMessage/ErrorMessage.test.tsx +3 -15
  99. package/src/components/ErrorMessage/ErrorMessage.tsx +1 -3
  100. package/src/components/ErrorSummary/ErrorSummary.stories.tsx +38 -0
  101. package/src/components/FileDownload/FileDownload.stories.tsx +75 -0
  102. package/src/components/FileDownload/FileDownload.test.tsx +1 -1
  103. package/src/components/FileDownload/FileDownload.tsx +2 -2
  104. package/src/components/HideThisPage/HideThisPage.stories.tsx +20 -0
  105. package/src/components/InsetText/InsetText.stories.tsx +21 -0
  106. package/src/components/NotificationBanner/NotificationBanner.stories.tsx +57 -0
  107. package/src/components/NotificationBanner/NotificationBanner.test.tsx +1 -1
  108. package/src/components/NotificationBanner/NotificationBanner.tsx +4 -4
  109. package/src/components/NotificationPanel/NotificationPanel.stories.tsx +32 -0
  110. package/src/components/PageHeader/PageHeader.stories.tsx +60 -0
  111. package/src/components/PageMetadata/PageMetadata.stories.tsx +58 -0
  112. package/src/components/PageMetadata/PageMetadata.test.tsx +2 -2
  113. package/src/components/PageMetadata/PageMetadata.tsx +4 -4
  114. package/src/components/Pagination/Pagination.stories.tsx +69 -0
  115. package/src/components/Pagination/Pagination.test.tsx +1 -1
  116. package/src/components/Pagination/Pagination.tsx +4 -4
  117. package/src/components/PhaseBanner/PhaseBanner.stories.tsx +38 -0
  118. package/src/components/Question/Question.stories.tsx +78 -0
  119. package/src/components/Question/Question.tsx +1 -1
  120. package/src/components/RadioButton/RadioButton.stories.tsx +67 -0
  121. package/src/components/RadioButton/RadioButton.test.tsx +2 -1
  122. package/src/components/RadioButton/RadioButton.tsx +9 -3
  123. package/src/components/RadioButton/RadioGroup.stories.tsx +77 -0
  124. package/src/components/RadioButton/RadioGroup.test.tsx +2 -2
  125. package/src/components/RadioButton/RadioGroup.tsx +8 -15
  126. package/src/components/Select/Select.stories.tsx +76 -0
  127. package/src/components/Select/Select.tsx +1 -1
  128. package/src/components/SequentialNavigation/SequentialNavigation.stories.tsx +31 -0
  129. package/src/components/SideNavigation/SideNavigation.stories.tsx +92 -0
  130. package/src/components/SideNavigation/SideNavigation.test.tsx +2 -2
  131. package/src/components/SideNavigation/SideNavigation.tsx +2 -2
  132. package/src/components/SiteFooter/SiteFooter.stories.tsx +65 -0
  133. package/src/components/SiteHeader/SiteHeader.stories.tsx +92 -0
  134. package/src/components/SiteHeader/SiteHeader.tsx +2 -7
  135. package/src/components/SiteNavigation/SiteNavigation.stories.tsx +45 -0
  136. package/src/components/SiteNavigation/SiteNavigation.test.tsx +1 -1
  137. package/src/components/SiteNavigation/SiteNavigation.tsx +2 -2
  138. package/src/components/SiteSearch/SiteSearch.stories.tsx +81 -0
  139. package/src/components/SiteSearch/SiteSearch.tsx +1 -1
  140. package/src/components/SkipLinks/SkipLinks.stories.tsx +57 -0
  141. package/src/components/SkipLinks/SkipLinks.tsx +1 -1
  142. package/src/components/SummaryCard/SummaryCard.stories.tsx +46 -0
  143. package/src/components/SummaryList/SummaryList.stories.tsx +75 -0
  144. package/src/components/SummaryList/SummaryList.test.tsx +1 -1
  145. package/src/components/SummaryList/SummaryList.tsx +3 -3
  146. package/src/components/Table/Table.stories.tsx +96 -0
  147. package/src/components/Tabs/Tabs.stories.tsx +90 -0
  148. package/src/components/Tabs/Tabs.test.tsx +6 -8
  149. package/src/components/Tabs/Tabs.tsx +8 -9
  150. package/src/components/Tag/Tag.stories.tsx +25 -0
  151. package/src/components/TaskList/TaskList.stories.tsx +129 -0
  152. package/src/components/TextInput/TextInput.stories.tsx +123 -0
  153. package/src/components/TextInput/TextInput.test.tsx +2 -2
  154. package/src/components/TextInput/TextInput.tsx +5 -5
  155. package/src/components/Textarea/Textarea.stories.tsx +71 -0
  156. package/src/components/Textarea/Textarea.tsx +1 -1
  157. package/src/components/WarningText/WarningText.stories.tsx +21 -0
  158. package/src/hooks/useTracking.test.tsx +64 -0
  159. package/src/hooks/useTracking.ts +19 -0
  160. package/src/utils/context.ts +3 -0
  161. package/static/data/autocomplete-dummy-data.json +2361 -0
  162. package/static/images/highland-cow.jpg +0 -0
  163. package/static/images/scottish-government--min.svg +11 -0
  164. package/static/images/scottish-government.svg +6 -0
  165. package/tsconfig.json +3 -2
  166. package/vite.config.ts +45 -11
  167. package/vitest-setup.ts +1 -0
  168. package/vitest.shims.d.ts +1 -0
  169. package/src/utils/slugify.ts +0 -13
@@ -0,0 +1,2361 @@
1
+ ["Being a Witness - Going to Court (Civil)",
2
+ "Planning your own funeral",
3
+ "Waste Prevention Implementation Fund",
4
+ "Wind up a company that owes you money",
5
+ "Create a Rent Increase Notice for your tenant",
6
+ "Loneliness support",
7
+ "Having a child through a surrogate",
8
+ "Having a child for someone else (surrogacy)",
9
+ "Public and bank holidays",
10
+ "Becoming a child's guardian",
11
+ "Professional indemnity insurance and protecting client money",
12
+ "Letting agent registration",
13
+ "Check if you're eligible",
14
+ "Dog microchipping: information for businesses",
15
+ "Microchip your dog",
16
+ "Get help with energy bills",
17
+ "Care homes",
18
+ "Care you can get at home",
19
+ "When funded early learning and childcare can start",
20
+ "Civil partnership in Scotland",
21
+ "Children's Hearings",
22
+ "Discounts, exemptions and reductions",
23
+ "COVID spring hardship payment",
24
+ "Report an out of control dog",
25
+ "What is council tax?",
26
+ "Paying your bill",
27
+ "Care equipment and adapting your home",
28
+ "Appeal an unsuccessful EMA application",
29
+ "COVID winter hardship payment (£100 per child)",
30
+ "Local council elections and by-elections",
31
+ "Find a nursery or childcare place",
32
+ "Arranging for someone you know to look after your child",
33
+ "Reverse Vending Machine Relief",
34
+ "Telecommunications Relief",
35
+ "Transitional Relief",
36
+ "Rural Rate Relief",
37
+ "Small Business Bonus Scheme",
38
+ "Enterprise Areas Relief",
39
+ "Hardship Relief",
40
+ "Reliefs for empty or newly re-occupied properties",
41
+ "Register a death",
42
+ "Register a death during coronavirus (COVID-19)",
43
+ "Dealing with disputes",
44
+ "Registration",
45
+ "How to register a birth",
46
+ "Registering a birth during coronavirus",
47
+ "Paying bills and arranging insurance",
48
+ "Registering a stillbirth",
49
+ "Becoming a foster carer",
50
+ "Getting help",
51
+ "Free school transport",
52
+ "District Heating Relief",
53
+ "Overview",
54
+ "Business Growth Accelerator Relief",
55
+ "Charitable Rate Relief",
56
+ "Day Nursery Relief",
57
+ "Disabled Persons Relief",
58
+ "Marriage in Scotland",
59
+ "Home education and flexi schooling",
60
+ "Apply for or renew EMA",
61
+ "Can I get EMA",
62
+ "When the payment is made",
63
+ "Publications relating to the Police Act 1997",
64
+ "Publications relating to the Protecting Vulnerable Groups (PVG) Act 2007",
65
+ "Publications relating to the Protecting Vulnerable Groups (PVG) Act 2007 during the Coronavirus (COVID-19) emergency",
66
+ "Publications relating to the Police Act 1997 during the Coronavirus (COVID-19) emergency",
67
+ "Enhanced bursary for BDS students 2021/22",
68
+ "Reducing waste",
69
+ "Housing information for the Armed Forces community",
70
+ "Applying for a high hedge notice",
71
+ "Arranging the funeral yourself",
72
+ "Funeral costs",
73
+ "Short breaks for carers",
74
+ "Adult carer support plan and young carer statement",
75
+ "Stalking: support",
76
+ "Apply to Rent Service Scotland about your rent increase",
77
+ "Personal safety and protection from crime",
78
+ "Add a porch to your house",
79
+ "What treatment can I get as a registered NHS patient?",
80
+ "Help to Buy schemes",
81
+ "Overview",
82
+ "Closing date and offers",
83
+ "Adopting a child from abroad",
84
+ "Shared equity for older people",
85
+ "The Valuation Appeal Committee",
86
+ "Support if someone shares your intimate picture without permission",
87
+ "Business bank accounts",
88
+ "After you submit your appeal",
89
+ "Fines for not giving information",
90
+ "Help and support",
91
+ "Donate your body to medical science",
92
+ "Non-domestic rates relief",
93
+ "Paying your staff",
94
+ "Organisations that can help you develop your idea",
95
+ "Help for young people and students",
96
+ "Central Scotland",
97
+ "Invoicing and payment terms",
98
+ "Best Start Grant and Best Start Foods",
99
+ "Other benefits and tax",
100
+ "How to apply",
101
+ "If the person who died was 17 or under",
102
+ "If the person who died was 18 or over",
103
+ "Overview",
104
+ "Who can apply and when",
105
+ "Funeral Support Payment",
106
+ "Help with money for parents",
107
+ "How to find out what benefits you can claim",
108
+ "If your circumstances change",
109
+ "Letting Social Security Scotland know",
110
+ "Benefits and grants",
111
+ "After you apply",
112
+ "Double claims",
113
+ "How it works",
114
+ "How to apply",
115
+ "Scottish Child Payment",
116
+ "Who should apply",
117
+ "Acting on behalf of someone claiming benefits",
118
+ "Appeal to a Tribunal about a benefit decision",
119
+ "About the Client Panels",
120
+ "Contact the research team",
121
+ "Cookie Consent Banner User Research",
122
+ "Complain about Social Security Scotland",
123
+ "Contact from Social Security Scotland",
124
+ "If you do not agree with a benefit decision",
125
+ "Social Security Scotland",
126
+ "Report benefit fraud in Scotland",
127
+ "Managing unacceptable actions",
128
+ "Overview of unacceptable actions",
129
+ "Types of unacceptable actions",
130
+ "Uploading your documents",
131
+ "Young Carer Grant",
132
+ "How long you need to be caring for the person or people you're applying for",
133
+ "How to apply",
134
+ "Sending documents",
135
+ "What a young carer is",
136
+ "Funeral Support Payment 17 or under",
137
+ "Funeral Support Payment aged 18 and over",
138
+ "Advice and support",
139
+ "Overview",
140
+ "Who this guide is for",
141
+ "Marriage outside of Scotland",
142
+ "What is intellectual property",
143
+ "North of Scotland",
144
+ "Making sure your idea works",
145
+ "Emergencies",
146
+ "Ask for patient transport",
147
+ "Discrimination",
148
+ "Health and wellbeing after separation",
149
+ "Bullying, stalking and online radicalisation",
150
+ "Getting back money owed to your business",
151
+ "Working out your council tax",
152
+ "Overview",
153
+ "Victim Notification Schemes",
154
+ "Read care service inspection reports",
155
+ "Listed building and conservation area appeals",
156
+ "Environmental appeals",
157
+ "When to appeal",
158
+ "Protect your intellectual property abroad",
159
+ "Setting up a power of attorney",
160
+ "Housing Benefit",
161
+ "Roof additions and alterations",
162
+ "Apply for a new Blue Badge",
163
+ "Attach something to or alter the outside of your flat",
164
+ "Private water supplies: what to do in an emergency",
165
+ "Overview",
166
+ "Civil cases",
167
+ "If your business or premises change",
168
+ "Certificate of appropriate alternative development appeals",
169
+ "Being referred to the Children's Reporter",
170
+ "Get advice on recycling, repairing and reusing",
171
+ "Help getting your child back from abroad or arranging contact",
172
+ "The appeals process",
173
+ "Finding and buying a plot of land",
174
+ "Help to create and grow a business",
175
+ "During a flood",
176
+ "Planning enforcement appeals",
177
+ "Researching your customers and competitors",
178
+ "Offer support for refugees",
179
+ "Home detention curfew",
180
+ "Keeping information up-to-date",
181
+ "Borrowing against something you own or plan to buy (assets)",
182
+ "Further information",
183
+ "Duty of care",
184
+ "When you're a witness",
185
+ "Insulate your home",
186
+ "Crime abroad: support",
187
+ "Further information",
188
+ "Using a solicitor",
189
+ "Overview",
190
+ "Planning permission appeals",
191
+ "Read healthcare inspection reports",
192
+ "Complain about an NHS service",
193
+ "Search for a croft",
194
+ "Your rights if you're stopped by the police while driving",
195
+ "Risk assessing your private water supply",
196
+ "Childcare you can get help with",
197
+ "Assured tenancies",
198
+ "What happens once you've applied",
199
+ "Buses, coaches and trams",
200
+ "Get a copy of your police records",
201
+ "Who has to clean up the land",
202
+ "Scheduled monument consent appeals",
203
+ "Build a shed, garage, greenhouse or other building",
204
+ "How to get it",
205
+ "Complain about a mental welfare issue",
206
+ "How guardianship is set up",
207
+ "Support for female victims",
208
+ "Support for female victims",
209
+ "After a flood",
210
+ "Support organisations",
211
+ "Starting a new food business",
212
+ "Tree works consent appeals",
213
+ "Learn how to increase profits",
214
+ "Report food crime",
215
+ "Certificate of lawfulness appeals",
216
+ "Attach something to or alter the outside of your house",
217
+ "Planning obligation appeals",
218
+ "Public libraries",
219
+ "Families of murder victims: support",
220
+ "Build a gate, fence or wall around your flat",
221
+ "Appealing convictions",
222
+ "Types of tenancy",
223
+ "Get support",
224
+ "Youth crime: support",
225
+ "Assured tenants",
226
+ "Database operators",
227
+ "Other information",
228
+ "Apply for a postal vote",
229
+ "Children and teenagers",
230
+ "Find a funeral director",
231
+ "Overview",
232
+ "Writing an export plan",
233
+ "Bereavement support for children and young people",
234
+ "Overview",
235
+ "Read reports on police complaints",
236
+ "Regulations",
237
+ "Get advice and support",
238
+ "Scottish Welfare Fund",
239
+ "What are my human rights?",
240
+ "Joint birth registration",
241
+ "Unauthorised sites",
242
+ "How long you can be held in custody",
243
+ "No heir",
244
+ "Amenity notice appeals",
245
+ "Complain about the Scottish Children's Reporter Administration (SCRA)",
246
+ "Help for food and drink businesses",
247
+ "Export insurance",
248
+ "Developing land",
249
+ "Further information",
250
+ "Who can help?",
251
+ "When caring ends",
252
+ "Register a care service",
253
+ "Vets",
254
+ "Information on healthy eating",
255
+ "If the offender is a child or young person",
256
+ "Fathers",
257
+ "Send an application to the Crofting Commission",
258
+ "Overview",
259
+ "Self-catering and holiday lets",
260
+ "Standards of service for victims and witnesses",
261
+ "Local housing allowance",
262
+ "National Park elections",
263
+ "Water charges for vacant properties",
264
+ "The 2017 Regulations",
265
+ "Mobile home site licensing – site owners",
266
+ "Home repair help for older or disabled people",
267
+ "Writing a business plan",
268
+ "Contact with your grandchildren if their parents divorce or separate",
269
+ "Battery retailers and distributors",
270
+ "Business support",
271
+ "Roads and pavements",
272
+ "What happens at a civil court case",
273
+ "Apply for a student loan",
274
+ "Lay a hard surface outside your house",
275
+ "Complain about the police",
276
+ "Employee holiday entitlement and working hours",
277
+ "Appeal an Office of the Scottish Charity Regulator decision",
278
+ "University costs",
279
+ "Changes to unmeasured water and sewerage charges for businesses",
280
+ "Short assured tenancies",
281
+ "What is FGM?",
282
+ "Victim and witness harassment: support",
283
+ "Add an extension to your house",
284
+ "Help with a relationship problem",
285
+ "Complain about an MSP, councillor or public body member",
286
+ "Data sharing of personal information",
287
+ "Support for male victims",
288
+ "The eviction process",
289
+ "Connecting water, electricity and gas services to a self-build",
290
+ "Registration and tax",
291
+ "Mobile home site licensing – residents",
292
+ "Find training for businesses",
293
+ "Self-build planning permission and building warrants",
294
+ "Find out how to prevent littering and fly tipping",
295
+ "Make your home more energy efficient",
296
+ "More information",
297
+ "Activity agreements",
298
+ "Maintaining your private water supply",
299
+ "Renew a Blue Badge",
300
+ "Road crash compensation",
301
+ "Using mediation after a separation",
302
+ "Challenge a Bus lane Enforcement Charge Notice or Penalty Charge Notice",
303
+ "Find a job",
304
+ "Contacting the police",
305
+ "Resources you'll need to create your idea",
306
+ "Pay a parking ticket",
307
+ "Pardons and disregards for convictions for sexual activity between men",
308
+ "Sheriff officer powers when they visit your home or business",
309
+ "UK elections",
310
+ "Microchip implanters",
311
+ "Scheduled monument enforcement appeals",
312
+ "Treating and recycling waste batteries",
313
+ "Do I need planning permission?",
314
+ "Advertisement appeals",
315
+ "If your complaint still is not settled",
316
+ "What happens at a Children's Hearing court case",
317
+ "Overview",
318
+ "Sheriff court decrees on debt",
319
+ "Preparing to grow",
320
+ "Dog dealers and importers",
321
+ "Legal rights",
322
+ "Legal advice for care",
323
+ "West of Scotland",
324
+ "If a young person gets in trouble with the police",
325
+ "Your rights as someone needing care",
326
+ "Advice and support",
327
+ "Complain about a solicitor or advocate",
328
+ "East of Scotland",
329
+ "Fingerprints, photographs, samples and searches",
330
+ "Storage",
331
+ "Advice and support",
332
+ "Contacting the police",
333
+ "Tenancy agreements - landlords",
334
+ "Get help with mental health",
335
+ "Help for life science businesses",
336
+ "Building, engineering and installation work behind your home",
337
+ "Complain about a care service",
338
+ "Before the court date",
339
+ "Costs",
340
+ "Advice and assistance",
341
+ "Exporting is Great",
342
+ "Applying for bankruptcy",
343
+ "Asylum and refugees",
344
+ "Report a lost, stolen or misused Blue Badge",
345
+ "Hate crime: support",
346
+ "Bankruptcy Restriction Orders",
347
+ "Further information",
348
+ "Submitting an appeal",
349
+ "Waste collections",
350
+ "Developing a new private water supply",
351
+ "Police and fiscal warnings, fixed penalty notices and compensation",
352
+ "Stop a forced marriage",
353
+ "Paying non-domestic rates",
354
+ "Instead of going to court",
355
+ "Get independent advice",
356
+ "Being charged with a crime",
357
+ "How a corporate finance advisor could help you get funding",
358
+ "Help to contact universities and research institutes",
359
+ "The decision to take a case to court",
360
+ "Recruiting and hiring",
361
+ "Cars and taxis",
362
+ "Bereavement support",
363
+ "Good neighbour agreement appeals",
364
+ "Support for families and friends of prisoners",
365
+ "Other help with childcare costs",
366
+ "Develop your leadership skills",
367
+ "High hedge appeals",
368
+ "Buying and selling a property with a private water supply",
369
+ "At court",
370
+ "Setting up a social enterprise",
371
+ "Find out about reducing food waste",
372
+ "Resolving a rented housing dispute",
373
+ "Support for male victims",
374
+ "Buying or renting premises",
375
+ "Build a gate, fence or wall around your house",
376
+ "Deleting your browser history",
377
+ "What is rape and sexual assault?",
378
+ "Different business options",
379
+ "Preparing for flooding",
380
+ "Travelling in bad weather",
381
+ "How care is regulated",
382
+ "Cashflow forecasting",
383
+ "Setting up your home office",
384
+ "Learn project management skills",
385
+ "Borrowing from banks to fund your business",
386
+ "If you're doing the work",
387
+ "Monument designation appeals",
388
+ "Changes you must report",
389
+ "What happens next",
390
+ "Road crash victims: support",
391
+ "Human trafficking: support",
392
+ "Leaving school: your options",
393
+ "Prior approval appeals",
394
+ "Changing or handing back a Blue Badge",
395
+ "Overview",
396
+ "Emergency response and rescue services",
397
+ "Add decking to your house",
398
+ "Who needs to register",
399
+ "Tenement Management Scheme",
400
+ "Apply for a post-mortem",
401
+ "Understanding your rights",
402
+ "Find your local council in Scotland",
403
+ "Your responsibilities",
404
+ "Connecting to the mains water supply",
405
+ "What to do first",
406
+ "Powers of arrest",
407
+ "Building regulations",
408
+ "Pay a bus lane penalty",
409
+ "Planning to sell your business (succession planning and exit readiness)",
410
+ "Help and advice",
411
+ "Illegal drugs and driving in Scotland",
412
+ "Complain about a judge, sheriff or justice of the peace",
413
+ "Review of minerals permissions",
414
+ "Overview",
415
+ "Who needs to register",
416
+ "How to register",
417
+ "If you're a landlord, tenant or run a business or public activity",
418
+ "Organisations that can help your business",
419
+ "Gypsy Traveller sites",
420
+ "Innovation",
421
+ "What happens next",
422
+ "If you cannot get a bus",
423
+ "If you're worried about your water supply",
424
+ "Grants and loans for energy efficiency",
425
+ "Becoming a named person for someone detained in hospital",
426
+ "Further help",
427
+ "Support for non-UK entrepreneurs in Scotland",
428
+ "Before starting a home-based business",
429
+ "Tree replacement notices",
430
+ "Asking for information",
431
+ "Starting a business",
432
+ "Scottish Veterans Commissioner",
433
+ "Getting advice",
434
+ "Arranging a testing visit",
435
+ "Witness expenses for going to court",
436
+ "Using your card",
437
+ "Eligibility guidance",
438
+ "Challenge a parking ticket",
439
+ "Read fire service inspection reports",
440
+ "Going to court",
441
+ "View an EIA",
442
+ "Maternity, paternity and parental leave: employer guide",
443
+ "Alternatives to legal aid",
444
+ "Report flooding in your area",
445
+ "Add an access ramp to your house",
446
+ "Battery producers",
447
+ "Building designation appeals",
448
+ "After you register",
449
+ "Police powers to stop and search: your rights",
450
+ "Young victims of crime: support",
451
+ "Keeping your home",
452
+ "Application process",
453
+ "Make a court claim for money",
454
+ "Respond to a court claim for money",
455
+ "What doesn't qualify",
456
+ "Communication agreements",
457
+ "Overview",
458
+ "First aid and healthcare",
459
+ "Home emergency plan",
460
+ "Overview",
461
+ "Doing the work yourself",
462
+ "Care and caring",
463
+ "Overview",
464
+ "Being an attorney",
465
+ "Being a carer",
466
+ "Report a problem with a medicine or medical device",
467
+ "The learning agreement",
468
+ "Preparing for an SQA exam",
469
+ "Resolve a school dispute if your child has additional needs",
470
+ "Environment and countryside",
471
+ "Student discounts",
472
+ "Help and support",
473
+ "Student accommodation",
474
+ "School inspection reports",
475
+ "Environment, farming and marine",
476
+ "Get your coursework back from SQA",
477
+ "Student bank accounts",
478
+ "What happens during an SQA exam",
479
+ "Find and compare your social landlord's performance",
480
+ "Private sewerage",
481
+ "Care at home",
482
+ "Signing the tenancy agreement",
483
+ "Tenancy agreements - tenants",
484
+ "Complain about a social landlord or housing association",
485
+ "Making an offer",
486
+ "Construction type",
487
+ "Conveyancing",
488
+ "Plot size",
489
+ "Designing your home",
490
+ "Staying safe during heat waves",
491
+ "Settlement",
492
+ "Overview",
493
+ "Loss of electricity, water or gas",
494
+ "Renovating an existing property",
495
+ "Getting a self-build mortgage",
496
+ "Illegal eviction",
497
+ "Buying a newly built home",
498
+ "Overview",
499
+ "Appeal against a Mental Health Tribunal decision",
500
+ "After buying",
501
+ "Overview",
502
+ "How it works",
503
+ "Missives",
504
+ "Information for lenders and IFAs",
505
+ "Conveyancing and settlement",
506
+ "Overview",
507
+ "After buying",
508
+ "After buying",
509
+ "Finding a selling agent",
510
+ "Search for recent house prices",
511
+ "Find a court",
512
+ "Complain about the Scottish Courts and Tribunals Service",
513
+ "Passwords and cloud storage",
514
+ "Court fees",
515
+ "Raise or defend an action in court",
516
+ "Criminal courts",
517
+ "If you're separated from your partner",
518
+ "How it works",
519
+ "Contact the fund team",
520
+ "Tribunals",
521
+ "Apply to become a justice of the peace",
522
+ "Further help",
523
+ "Help if you're arrested abroad",
524
+ "Jury service",
525
+ "How to complain",
526
+ "Prison and parole",
527
+ "Serve or enforce a court order",
528
+ "How to stop nuisance calls",
529
+ "Treatment for FGM",
530
+ "Check a partner's history of abuse",
531
+ "Search for a planning appeal or decision",
532
+ "Who has to pay",
533
+ "Organising an event: letting the police know",
534
+ "Tell your landlord you want to go to the Tribunal",
535
+ "Sex Offender Community Disclosure Scheme",
536
+ "Who can apply?",
537
+ "How to apply",
538
+ "Protect your water pipes in cold weather",
539
+ "Keeping your home and personal property safe",
540
+ "Main RIHF fund",
541
+ "Overview",
542
+ "Feasibility fund",
543
+ "Common insurance",
544
+ "During and after the project",
545
+ "How to apply",
546
+ "How it works",
547
+ "What qualifies",
548
+ "Find your local Children's Reporter",
549
+ "Complain about the Scottish Legal Aid Board",
550
+ "Overview",
551
+ "Wi-Fi connections, downloads and file sharing",
552
+ "Police and prosecutions",
553
+ "Complain about Children's Hearings Scotland",
554
+ "Sending money abroad and donating to charity",
555
+ "Prisons and parole",
556
+ "Further help",
557
+ "Your rights and the law",
558
+ "Report legal aid fraud",
559
+ "Increasing your sales",
560
+ "Avoiding problems",
561
+ "Young people and the law",
562
+ "Help for tourism businesses",
563
+ "Ways to grow your business",
564
+ "Children and young people's rights",
565
+ "Developing your idea",
566
+ "Money at university",
567
+ "Legal advice and legal aid",
568
+ "Heating and housing benefits",
569
+ "Further help to start a business",
570
+ "Understanding your idea",
571
+ "Registering your business",
572
+ "Financial information",
573
+ "Consumer rights and complaints",
574
+ "Protecting your idea",
575
+ "Selling your idea",
576
+ "Going to court as a victim or witness",
577
+ "Looking after a child",
578
+ "Tax and registering",
579
+ "Setting up",
580
+ "Crew management",
581
+ "Find contracts and business opportunities",
582
+ "Early years and pre-school",
583
+ "Adoption, foster care and surrogacy",
584
+ "Get help with living costs at university",
585
+ "What happens before you're given funding",
586
+ "Going to college",
587
+ "More information",
588
+ "Disclosure levels",
589
+ "How will the Disclosure system change?",
590
+ "How to make an appeal",
591
+ "How to provide information to the independent reviewer",
592
+ "Summary",
593
+ "What's next",
594
+ "Your income",
595
+ "Content of disclosure products",
596
+ "How the law treats pre-12 behaviour now",
597
+ "Debt Arrangement Scheme",
598
+ "See recent Tax Chamber decisions",
599
+ "Disclosure and criminal record checks",
600
+ "National Insurance and VAT",
601
+ "Who can register a birth in Scotland?",
602
+ "Overview",
603
+ "Council tax",
604
+ "Register your business in the UK",
605
+ "Civil partnership outside of Scotland",
606
+ "Employing people",
607
+ "Registering as an overseas company",
608
+ "Get an apprenticeship",
609
+ "Find out about training and learning opportunities",
610
+ "Choose or change your career",
611
+ "Working, jobs and careers",
612
+ "The Trustee",
613
+ "Assets",
614
+ "Make an appeal to the Tax Chamber",
615
+ "Staff training, internet use, phishing and mobile devices",
616
+ "How an accountant could help your business get funding",
617
+ "Types of projects that need an EIA",
618
+ "Company Voluntary Arrangements",
619
+ "Overview",
620
+ "Waste batteries",
621
+ "Overview",
622
+ "Using unpaid invoices to raise cash (invoice finance)",
623
+ "Crowdfunding and peer-to-peer lending",
624
+ "Exporting and doing business abroad",
625
+ "Police investigation",
626
+ "Help and support",
627
+ "Apply for a medical certificate review",
628
+ "Apply for or renew your bus pass",
629
+ "Victims' Code for Scotland",
630
+ "The law on forced marriage",
631
+ "Step parents",
632
+ "Travelling with a companion",
633
+ "After the verdict",
634
+ "Overview",
635
+ "Overview",
636
+ "Identifying cashflow problems",
637
+ "Building Scotland Fund",
638
+ "Checking your suitability for funding (due diligence)",
639
+ "Crisis Grants",
640
+ "Selling shares in your business (equity finance)",
641
+ "Funding to export products and services (export or trade finance)",
642
+ "Drink-drive limit in Scotland",
643
+ "The day of the court case",
644
+ "Football Banning Orders",
645
+ "Compensation",
646
+ "Community Care Grants",
647
+ "Smacking and children",
648
+ "Get a missing person declared dead",
649
+ "Overview",
650
+ "Make a separation agreement",
651
+ "If a sample fails",
652
+ "Time off work for public duties",
653
+ "How incubators or accelerators can help develop ideas or businesses",
654
+ "Overview",
655
+ "Grounds for eviction - assured and short assured tenancies - if your landlord starts the eviction process on or after 7 April 2020 and before 3 October 2020",
656
+ "Help and support",
657
+ "Holidays, time off, sick leave, maternity and paternity pay",
658
+ "Property factors",
659
+ "Deciding on types of treatment",
660
+ "Antisocial Behaviour Orders (ASBO)",
661
+ "Introduction",
662
+ "Grounds for eviction - assured and short assured tenancies - if your landlord starts the eviction process before 7 April 2020",
663
+ "Overview",
664
+ "Guarantors",
665
+ "Apply for an exhumation licence",
666
+ "If you need to move for another reason",
667
+ "Your options",
668
+ "Support if a child or baby dies",
669
+ "Starting a business",
670
+ "Employing a rating agent",
671
+ "Contact Companies House",
672
+ "Buying a business",
673
+ "Further support",
674
+ "Further information",
675
+ "Setting up a bank account",
676
+ "Other coronavirus finance, funding and grants",
677
+ "Complicated appeals",
678
+ "Licences",
679
+ "Working from home",
680
+ "Apply to the Co-innovate Programme",
681
+ "Apply to the Innovate Your Business programme",
682
+ "Tell Us Once",
683
+ "Child maintenance if one parent lives outside Scotland",
684
+ "Applying for confirmation when someone dies",
685
+ "Help with non-domestic rates",
686
+ "Getting free vitamins when you're pregnant",
687
+ "Tax on property, money and shares you inherit",
688
+ "Historical items",
689
+ "Get a divorce or dissolve a civil partnership",
690
+ "If a death is reported to the procurator fiscal",
691
+ "Get advice on developing new products and services",
692
+ "Finding a will",
693
+ "Members' responsibilities",
694
+ "Scottish Landfill Tax",
695
+ "Report incidents involving radioactive materials or waste",
696
+ "Waste reduction and management",
697
+ "Resource Efficiency Pledge",
698
+ "Electrical waste",
699
+ "Waste regulations",
700
+ "Business",
701
+ "Who can be a donor",
702
+ "Update your details",
703
+ "More information on organ and tissue donation",
704
+ "Check if you're on the organ donation register",
705
+ "Who the law applies to",
706
+ "If you do not record a decision",
707
+ "Register to be donor",
708
+ "Opt out - say no to donation",
709
+ "Ferries",
710
+ "Planes",
711
+ "Renewable Energy Generation Relief",
712
+ "Cash flow statements",
713
+ "Avoiding overtrading",
714
+ "Profit and loss accounts",
715
+ "Transporting abnormal loads",
716
+ "Overview",
717
+ "Online and distance selling",
718
+ "Balance sheets",
719
+ "Apply for a moratorium",
720
+ "Education and training",
721
+ "Improve your cashflow",
722
+ "Preparing for funding",
723
+ "How corporate governance can help you get funding",
724
+ "Find new business opportunities",
725
+ "Overview",
726
+ "Energy efficiency",
727
+ "Business debt and bankruptcy",
728
+ "Non-domestic rates (business rates)",
729
+ "Selling or closing a business",
730
+ "Ways of funding your business or idea",
731
+ "Funding your business or idea",
732
+ "Pitching your business, products or ideas",
733
+ "Planning your finances (financial projections)",
734
+ "Hiring a letting agent",
735
+ "How to apply",
736
+ "Can I appeal?",
737
+ "Your responsibilities",
738
+ "Reasons for being evicted",
739
+ "Help with title deeds",
740
+ "Giving a statement after a crime",
741
+ "Overview",
742
+ "Ending a tenancy",
743
+ "Sharing rented accommodation",
744
+ "If your landlord increases the rent",
745
+ "Why having your private water supply tested is important",
746
+ "Paying rent and deposit",
747
+ "Claiming after a criminal injury in the UK",
748
+ "Staying safe",
749
+ "Grounds for eviction - private residential tenancies - if your landlord starts the eviction process before 7 April 2020",
750
+ "Check if you're already registered",
751
+ "What your landlord needs to give you",
752
+ "Moving in day",
753
+ "Read Inspectorate of Prosecution reports",
754
+ "Read Scottish Fiscal Commission forecast reports",
755
+ "Get help from the government",
756
+ "If you owe your landlord rent and they want to evict you",
757
+ "Asking for repairs as a tenant",
758
+ "Supporting you with energy costs or supply",
759
+ "Grounds for eviction - private residential tenancies - if your landlord starts the eviction process on or after 7 April 2020 and before 3 October 2020",
760
+ "Update your registration",
761
+ "Read reports on police investigations",
762
+ "Read police inspection reports",
763
+ "Open Market Shared Equity",
764
+ "If you live abroad or are a foreign national",
765
+ "Get help registering",
766
+ "Getting paperwork ready",
767
+ "Read review reports on school closures",
768
+ "Read prison inspection reports",
769
+ "Sign up to the Maximising Community Assets programme",
770
+ "Find holiday accommodation in Scotland",
771
+ "Find community group webinars",
772
+ "Apply for a veterans badge",
773
+ "Become a charity",
774
+ "Who can register to vote",
775
+ "Help for community groups",
776
+ "Search for a registered Scottish charity",
777
+ "Complain about the press or media",
778
+ "Volunteer to be a custody visitor",
779
+ "Before you apply",
780
+ "Private Residential Tenancies",
781
+ "Raise a concern about a charity",
782
+ "Overview",
783
+ "Overview",
784
+ "Storms and strong winds",
785
+ "Carer's Allowance and Carer's Allowance Supplement",
786
+ "Overview",
787
+ "How to apply",
788
+ "Housing and Property Chamber",
789
+ "Overview",
790
+ "Works that can be carried out through permitted development",
791
+ "Overview",
792
+ "What to do if you're unhappy with your treatment",
793
+ "Get legal advice",
794
+ "Home emergency kit",
795
+ "Travel emergency kit",
796
+ "Overview",
797
+ "New Supply Shared Equity scheme",
798
+ "Overview",
799
+ "After buying",
800
+ "Options if you're not eligible",
801
+ "Changing GP",
802
+ "Community emergency planning",
803
+ "Types of work covered by PVG",
804
+ "After you apply",
805
+ "Parental responsibilities and rights",
806
+ "Crofting",
807
+ "Your rights at work",
808
+ "Further help with funding",
809
+ "Finding a job and starting work",
810
+ "Growing a business",
811
+ "Redundancies, dismissals and disciplinaries",
812
+ "Apprenticeships and training for work",
813
+ "Water and sewerage charges",
814
+ "Further help with ideas",
815
+ "Payments, funding and grants",
816
+ "Cashflow",
817
+ "Having a baby",
818
+ "Safety at sea",
819
+ "Further help to grow a business",
820
+ "Primary school",
821
+ "Develop ideas for businesses, products or services",
822
+ "Secondary school",
823
+ "Volunteer for the Children's Panel",
824
+ "Signatories",
825
+ "How the review process works",
826
+ "Organisations and personal employers",
827
+ "Existing members of the PVG scheme",
828
+ "How and when to apply",
829
+ "Apply to join the PVG scheme",
830
+ "Why register with Disclosure Scotland?",
831
+ "If you're not called as a witness",
832
+ "Creating a budget",
833
+ "Student bursaries, grants, scholarships and loans",
834
+ "Types of tickets",
835
+ "Cashflow management",
836
+ "Returning the deposit",
837
+ "Financial assessments for care",
838
+ "How to claim",
839
+ "Where can I get my dog microchipped?",
840
+ "Overview",
841
+ "Overview",
842
+ "Background checks on new tenants",
843
+ "Complain about a social work department",
844
+ "Local carer centres",
845
+ "What you need to do as a patient",
846
+ "What you can expect from your dentist",
847
+ "Overview",
848
+ "Apply for funding to train as a sports coach",
849
+ "Emergencies",
850
+ "Apply for a self-supply water licence",
851
+ "How to find an NHS dentist",
852
+ "Advice for dog owners",
853
+ "Home Report",
854
+ "Your rights if you have a mental illness",
855
+ "What you need to do as a patient",
856
+ "Overview",
857
+ "Overview",
858
+ "Financial guardianship",
859
+ "Food safety at home and eating out",
860
+ "Overview",
861
+ "The cost of setting up guardianship",
862
+ "How to find a GP",
863
+ "Web browsers",
864
+ "Carry out work on a traditional property",
865
+ "Before you register",
866
+ "Eviction for rent arrears",
867
+ "Furnished, part furnished and unfurnished homes",
868
+ "Apply to make changes to a historic building",
869
+ "Overview",
870
+ "Grants and funding for listed buildings",
871
+ "Energy Performance Certificates",
872
+ "How to apply",
873
+ "Apply for development plan approval",
874
+ "Dealing with a tenant's antisocial behaviour",
875
+ "Protect your intellectual property",
876
+ "Registered address",
877
+ "Register",
878
+ "How your local council can help your business",
879
+ "Non-domestic rates relief and appeals",
880
+ "Register your LLP",
881
+ "Media filters",
882
+ "Reporting online crime to the police",
883
+ "Claiming after a criminal injury abroad",
884
+ "Cartridge filters",
885
+ "Getting the results",
886
+ "What your results mean",
887
+ "Justice and the law",
888
+ "UV disinfection",
889
+ "Contacting the police and victim support",
890
+ "pH correction",
891
+ "What your water will be tested for",
892
+ "Specialist help after a crime",
893
+ "Dog Control Notice",
894
+ "Exemptions",
895
+ "Dog breeders",
896
+ "Overview",
897
+ "The law on controlling your dog",
898
+ "When a dog is out of control",
899
+ "Dealing with the media: victims and witnesses",
900
+ "Report your lost property",
901
+ "Report a missing person",
902
+ "Report a wanted person",
903
+ "Fraud, phishing and removing unwanted images",
904
+ "Apply to reduce your driving disqualification period",
905
+ "Get advice about business crime",
906
+ "Court orders, sentences and convictions",
907
+ "Forced marriage abroad",
908
+ "How sentences are worked out",
909
+ "Courts, tribunals, sentencing and witnesses",
910
+ "Claiming after terrorism abroad",
911
+ "Improve your business skills",
912
+ "Selling goods or services in an ethical way",
913
+ "Make improvements to your business",
914
+ "Apply to offer SQA qualifications at your organisation",
915
+ "Using digital technology in business",
916
+ "Data protection and your business",
917
+ "Save money on running your business",
918
+ "Outsourcing your work",
919
+ "Managing risks to your business",
920
+ "How to do stock control",
921
+ "Filing company documents",
922
+ "Sign up to the Scottish Business Pledge",
923
+ "Dismissing staff and redundancies",
924
+ "Equality and diversity in your workforce",
925
+ "Employment contracts and working hours",
926
+ "Employing people",
927
+ "Create an SQA qualification for your organisation",
928
+ "Managing a business",
929
+ "Working with suppliers",
930
+ "Measuring how your business performs",
931
+ "SME Loan fund",
932
+ "Export licences and special rules",
933
+ "Scottish Enterprise and Highlands and Islands Enterprise",
934
+ "Commodity codes and reporting",
935
+ "Export market research",
936
+ "Children's Panel volunteers: employers",
937
+ "Get help to employ staff",
938
+ "Apply for Creative Scotland funding",
939
+ "Licences and regulations",
940
+ "Find templates for recruiting staff",
941
+ "Employment contracts",
942
+ "GlobalScot mentoring",
943
+ "Accounting and bookkeeping",
944
+ "Renewing your registration",
945
+ "Training and qualifications",
946
+ "Get help to visit an overseas market, attend trade shows and exhibitions",
947
+ "Application fee",
948
+ "Moving out day",
949
+ "Changing dentists",
950
+ "Change a name on the public register",
951
+ "Working Tax Credit",
952
+ "Child Tax Credit",
953
+ "Child Benefit",
954
+ "Make a claim for food, accommodation and travel",
955
+ "What you can claim for",
956
+ "NHS Board contact details",
957
+ "IT for customer management",
958
+ "Firewalls, security software and limiting online threats",
959
+ "E-commerce and selling online",
960
+ "Wi-Fi, remote working and cloud storage",
961
+ "Insuring your business and its assets",
962
+ "Password security and user accounts",
963
+ "Insuring your employees",
964
+ "Choosing an insurance adviser",
965
+ "Reporting fraud and what to do if you've been hacked",
966
+ "Choosing your IT",
967
+ "Further help",
968
+ "Overview",
969
+ "Overview",
970
+ "The PVG scheme",
971
+ "Business incubators and accelerators in Scotland",
972
+ "Female Genital Mutilation (FGM): support",
973
+ "Get support",
974
+ "Changing a civil partnership to a marriage",
975
+ "Before the court date",
976
+ "Licensing your idea",
977
+ "Patents",
978
+ "Trade marks",
979
+ "Non-disclosure agreements",
980
+ "Design rights",
981
+ "Copyright",
982
+ "Describing your idea",
983
+ "Appeal a sentence or conviction",
984
+ "Eligibility",
985
+ "How to apply",
986
+ "NHS 24",
987
+ "Your citation",
988
+ "Overview",
989
+ "Help with living costs",
990
+ "Information for customers",
991
+ "Discounts and offers",
992
+ "Help for registered bodies",
993
+ "After you apply",
994
+ "After you apply",
995
+ "Support when reporting a crime",
996
+ "Overview",
997
+ "Small, non-commercial water supplies",
998
+ "Animal disqualification orders",
999
+ "Building your own home",
1000
+ "Overview",
1001
+ "Crofting Commission elections",
1002
+ "Consumer rights",
1003
+ "EU citizens",
1004
+ "Employers",
1005
+ "Overview",
1006
+ "Where cases take place",
1007
+ "After you've given evidence",
1008
+ "Referendums",
1009
+ "Verdicts",
1010
+ "Apply to register",
1011
+ "Software updates, firewalls and security software",
1012
+ "Overview",
1013
+ "After court",
1014
+ "How to apply",
1015
+ "Booklets for witnesses at court",
1016
+ "Criminal cases",
1017
+ "Young people and vulnerable adults",
1018
+ "Pleading",
1019
+ "Overview",
1020
+ "Smartphones, tablets and disposing of devices",
1021
+ "When you're arrested",
1022
+ "People in the courtroom",
1023
+ "On the day",
1024
+ "Voluntary organisations",
1025
+ "Children's Hearings",
1026
+ "Legal advice at a police station",
1027
+ "Get help",
1028
+ "Sentencing",
1029
+ "Support after the verdict",
1030
+ "Register to vote by post",
1031
+ "Income Tax rates and Personal Allowances",
1032
+ "Register to vote online",
1033
+ "Registering anonymously",
1034
+ "Scottish Parliament elections",
1035
+ "Overview",
1036
+ "Get help",
1037
+ "What you can do",
1038
+ "Parental responsibilities and rights",
1039
+ "Register a birth",
1040
+ "How the decision is made",
1041
+ "How to appeal",
1042
+ "Search the register of fair rents",
1043
+ "Healthcare for UK nationals living in the EU, Switzerland, Norway, Iceland or Liechtenstein",
1044
+ "Make an application to the Lands Tribunal",
1045
+ "Appeals",
1046
+ "Healthy eating",
1047
+ "See recent Lands Tribunal decisions",
1048
+ "Rubbish, recycling, streets and roads",
1049
+ "Register land",
1050
+ "Help to buy your home",
1051
+ "Benefits, money and your home after bereavement",
1052
+ "Mental health",
1053
+ "Listed buildings and conservation areas",
1054
+ "Building regulations and standards",
1055
+ "Self-building a home",
1056
+ "Living in Scotland, government and democracy",
1057
+ "Renting a property",
1058
+ "Inheritance Tax",
1059
+ "Divorce, separation and living apart",
1060
+ "Chemicals regulation in Scotland",
1061
+ "Road safety: parking tickets, fines and bans",
1062
+ "Emergency planning",
1063
+ "Noise, neighbours, pets and pests",
1064
+ "Trading waste",
1065
+ "Public transport, bus passes and discounts",
1066
+ "Health, social care and wellbeing",
1067
+ "Quality Meat Scotland assurance and licensing schemes",
1068
+ "Certifications and registrations",
1069
+ "Planning for death",
1070
+ "Apply for a Gender Recognition Certificate",
1071
+ "Children and parenting",
1072
+ "Marriage and civil partnerships",
1073
+ "Births, deaths and family",
1074
+ "South of Scotland Enterprise",
1075
+ "Social service work",
1076
+ "Volunteer to help with sport in Scotland",
1077
+ "Buying and owning a property",
1078
+ "Find or offer mentoring for exporting",
1079
+ "Complain about a social service worker",
1080
+ "Housing and local services",
1081
+ "Find out if a social service worker is registered",
1082
+ "Choosing a self-build home type",
1083
+ "Testing your private water supply",
1084
+ "Elections and referendums",
1085
+ "Legal aid",
1086
+ "Parking tickets",
1087
+ "Being arrested: your rights",
1088
+ "Apply for or renew a Blue Badge",
1089
+ "Minimum unit pricing for alcohol in Scotland",
1090
+ "The Castle Conservation Register",
1091
+ "Register a title in the Land Register",
1092
+ "Registers of Scotland plan assistance service",
1093
+ "Repossessions, emergency housing and evictions",
1094
+ "Planning permissions, appeals and building regulations",
1095
+ "Unregistered plot application checking service",
1096
+ "Find out who owns certain land or properties in Scotland",
1097
+ "South Ayrshire Council",
1098
+ "Scottish Human Rights Commission",
1099
+ "Scottish Fire and Rescue Service",
1100
+ "National Library of Scotland",
1101
+ "Children's Hearings Scotland",
1102
+ "Perth and Kinross Council",
1103
+ "Scottish Advisory Committee on Distinction Awards",
1104
+ "Scottish Futures Trust",
1105
+ "The First-tier Tribunal for Scotland General Regulatory Chamber",
1106
+ "Registers of Scotland",
1107
+ "Risk Management Authority",
1108
+ "NHS Health Scotland",
1109
+ "Skills Development Scotland",
1110
+ "Caledonian Maritime Assets Ltd",
1111
+ "sportscotland",
1112
+ "NHS Grampian",
1113
+ "Scottish Social Services Council",
1114
+ "Scottish Public Pensions Agency",
1115
+ "Drinking Water Quality Regulator",
1116
+ "East Lothian Council",
1117
+ "Historic Environment Scotland",
1118
+ "City of Edinburgh Council",
1119
+ "Bòrd na Gàidhlig",
1120
+ "NHS Fife",
1121
+ "Crown Office and Procurator Fiscal Service",
1122
+ "Dumfries and Galloway Council",
1123
+ "Judicial Appointments Board for Scotland",
1124
+ "Crown Estate Scotland",
1125
+ "Revenue Scotland",
1126
+ "Dundee City Council",
1127
+ "Audit Scotland",
1128
+ "The First-tier Tribunal for Scotland Health and Education Chamber",
1129
+ "National Museums Scotland",
1130
+ "Scottish Funding Council",
1131
+ "Scottish Law Commission",
1132
+ "Mental Health Tribunal for Scotland",
1133
+ "Police Scotland",
1134
+ "Justices of the Peace Advisory Committee",
1135
+ "Scottish Criminal Cases Review Commission",
1136
+ "Community Justice Scotland",
1137
+ "NHS Ayrshire and Arran",
1138
+ "Her Majesty's Inspectorate of Prisons for Scotland",
1139
+ "Aberdeenshire Council",
1140
+ "The First-tier Tribunal for Scotland Tax Chamber",
1141
+ "Scottish Charity Regulator (OSCR)",
1142
+ "Scottish Canals",
1143
+ "Crofting Commission",
1144
+ "Accountant in Bankruptcy",
1145
+ "Highlands and Islands Enterprise",
1146
+ "East Renfrewshire Council",
1147
+ "Parking and Bus Lane Tribunal for Scotland",
1148
+ "Mental Welfare Commission for Scotland",
1149
+ "Scottish Qualification Authority",
1150
+ "VisitScotland",
1151
+ "NHS Highland",
1152
+ "Scottish Land Commission",
1153
+ "Parole Board for Scotland",
1154
+ "North Ayrshire Council",
1155
+ "NHS Lanarkshire",
1156
+ "Accounts Commission for Scotland",
1157
+ "David MacBrayne Ltd",
1158
+ "Scottish Borders Council",
1159
+ "Scottish Ambulance Service",
1160
+ "Water Industry Commission for Scotland",
1161
+ "Scottish Prison Service",
1162
+ "Food Standards Scotland",
1163
+ "NHS Western Isles",
1164
+ "Children and Young People's Commissioner Scotland",
1165
+ "Commissioner for Ethical Standards in Public Life in Scotland",
1166
+ "Stirling Council",
1167
+ "NHS Greater Glasgow and Clyde",
1168
+ "Scottish Children's Reporter Administration",
1169
+ "Quality Meat Scotland",
1170
+ "Scottish Housing Regulator",
1171
+ "The State Hospitals Board for Scotland",
1172
+ "Court of Lord Lyon",
1173
+ "Scottish Courts and Tribunals Service",
1174
+ "Office of the Queen's Printer",
1175
+ "Education Scotland",
1176
+ "Orkney Islands Council",
1177
+ "Cairngorms National Park Authority",
1178
+ "NHS inform",
1179
+ "The Highland Council",
1180
+ "Angus Council",
1181
+ "Aberdeen City Council",
1182
+ "Architecture and Design Scotland",
1183
+ "Comhairle nan Eilean Siar",
1184
+ "Scottish Public Services Ombudsman",
1185
+ "NHS Orkney",
1186
+ "Scottish Fiscal Commission",
1187
+ "Standards Commission for Scotland",
1188
+ "National Records of Scotland",
1189
+ "East Dunbartonshire Council",
1190
+ "NHS Lothian",
1191
+ "Police Investigations and Review Commissioner",
1192
+ "Falkirk Council",
1193
+ "Business Gateway",
1194
+ "Fife Council",
1195
+ "Renfrewshire Council",
1196
+ "Scottish Legal Complaints Commission",
1197
+ "The First-tier Tribunal for Scotland Housing and Property Chamber",
1198
+ "Highlands and Islands Airports",
1199
+ "NHS Forth Valley",
1200
+ "Royal Botanic Garden Edinburgh",
1201
+ "South Lanarkshire Council",
1202
+ "The Moray Council",
1203
+ "Healthcare Improvement Scotland",
1204
+ "Lands Tribunal for Scotland",
1205
+ "Scottish Enterprise",
1206
+ "Inverclyde Council",
1207
+ "Her Majesty's Inspectorate of Constabulary in Scotland",
1208
+ "Loch Lomond and The Trossachs National Park Authority",
1209
+ "NHS Shetland",
1210
+ "East Ayrshire Council",
1211
+ "Care Inspectorate",
1212
+ "Clackmannanshire Council",
1213
+ "West Dunbartonshire Council",
1214
+ "NHS National Services Scotland",
1215
+ "NHS Borders",
1216
+ "Transport Scotland",
1217
+ "Glasgow City Council",
1218
+ "West Lothian Council",
1219
+ "NHS Tayside",
1220
+ "Independent Living Fund Scotland",
1221
+ "Creative Scotland",
1222
+ "NHS Education for Scotland",
1223
+ "Student Awards Agency Scotland (SAAS)",
1224
+ "Scottish Environment Protection Agency",
1225
+ "Inspectorate of Prosecution in Scotland",
1226
+ "Scottish Police Authority",
1227
+ "Scottish Information Commissioner",
1228
+ "Scottish Legal Aid Board",
1229
+ "Her Majesty's Fire Service Inspectorate",
1230
+ "National Galleries of Scotland",
1231
+ "Shetland Islands Council",
1232
+ "Scottish Natural Heritage",
1233
+ "Midlothian Council",
1234
+ "School Closure Review Panels",
1235
+ "Scottish Water",
1236
+ "NHS Dumfries and Galloway",
1237
+ "Mobility and Access Committee Scotland",
1238
+ "Scottish Sentencing Council",
1239
+ "Scottish Agricultural Wages Board",
1240
+ "Argyll and Bute Council",
1241
+ "Accessibility",
1242
+ "North Lanarkshire Council",
1243
+ "Scottish Road Works Commissioner",
1244
+ "Death and bereavement",
1245
+ "Boundaries Scotland",
1246
+ "Nuisance calls",
1247
+ "Controlling your dog in public",
1248
+ "Disclosure (Scotland) Act 2020",
1249
+ "Help for non-domestic rate payers in Scotland during coronavirus (COVID-19)",
1250
+ "EU Settlement Scheme",
1251
+ "Paying the costs of your case",
1252
+ "Help with legal costs",
1253
+ "If you're called as a witness",
1254
+ "If a builder is doing the work for you",
1255
+ "Shopping and selling online",
1256
+ "Apply for a Royal Anniversary Message",
1257
+ "How a case is prepared",
1258
+ "What is forced marriage?",
1259
+ "Building Warrants",
1260
+ "What the law says",
1261
+ "Online and mobile banking",
1262
+ "Mother and Baby Unit Family Fund",
1263
+ "Landlords, letting agents and property factors",
1264
+ "Renting from a private landlord",
1265
+ "Renting from a housing association or local council",
1266
+ "Living abroad",
1267
+ "Private water supplies",
1268
+ "Help to keep your home",
1269
+ "Buying and selling",
1270
+ "Tourism and things to do",
1271
+ "Parking and Blue Badges",
1272
+ "How to vote",
1273
+ "Water supplies and sewerage",
1274
+ "Bid for public contracts",
1275
+ "Apply for a public appointment",
1276
+ "myaccount",
1277
+ "Feedback",
1278
+ "Affording and accessing food",
1279
+ "Apply for a coat of arms",
1280
+ "Renting property from a private landlord",
1281
+ "Register to vote in Scotland",
1282
+ "Setting up guardianship",
1283
+ "Council tax",
1284
+ "Apply for or renew an older person's bus pass",
1285
+ "Flooding support",
1286
+ "Managing your cashflow",
1287
+ "Gypsy Travellers",
1288
+ "Register with a doctor",
1289
+ "Emergency kits",
1290
+ "Rural Housing Fund and Islands Housing Fund",
1291
+ "Organ and tissue donation",
1292
+ "Setting up power of attorney",
1293
+ "Environmental Impact Assessment (EIA)",
1294
+ "Rape and sexual assault: support",
1295
+ "Shared Ownership",
1296
+ "Reclaiming VAT on a self-build project",
1297
+ "Private water supplies: rights and responsibilities",
1298
+ "Personal and nursing care",
1299
+ "Staying safe online",
1300
+ "Non-domestic rates guidance",
1301
+ "Intellectual property",
1302
+ "Claim compensation after a criminal injury",
1303
+ "Keeping your business safe online",
1304
+ "After your police interview: victims and witnesses",
1305
+ "Your home after separation: renting",
1306
+ "Get the right business insurance",
1307
+ "Protecting your computer and devices online",
1308
+ "If you're the carer of a witness",
1309
+ "What happens at a criminal court case",
1310
+ "After the verdict: victims and witnesses",
1311
+ "Complain or feedback about care",
1312
+ "If someone dies outside Scotland",
1313
+ "Starting a business from your home",
1314
+ "Treating your private water supply",
1315
+ "Getting support during an emergency or incident",
1316
+ "Domestic abuse: support",
1317
+ "Protecting your money online",
1318
+ "Budgeting",
1319
+ "After a crime: your rights",
1320
+ "Declaring bankruptcy or being made bankrupt",
1321
+ "Non-domestic rates appeals",
1322
+ "Forced marriage: support",
1323
+ "Hiring a builder",
1324
+ "Death registrations and certificates",
1325
+ "Children and living apart",
1326
+ "Letting agents",
1327
+ "Community safety and crime prevention",
1328
+ "Householder permitted development",
1329
+ "Bereavement support and advice",
1330
+ "Children and bereavement",
1331
+ "Being a landlord in Scotland",
1332
+ "Energy efficiency at home",
1333
+ "Mobile homes",
1334
+ "Home safety and repairs",
1335
+ "Government reports and reviews",
1336
+ "Sport",
1337
+ "Complaints",
1338
+ "Passports, travel and living abroad",
1339
+ "Funerals, burials and cremations",
1340
+ "Travel abroad",
1341
+ "Self Assessment",
1342
+ "Money and tax",
1343
+ "Visit Scotland's national museums",
1344
+ "Private residential tenancies",
1345
+ "Court claims, legal action and bankruptcy",
1346
+ "Support for parents, carers and families",
1347
+ "VAT",
1348
+ "Read Audit Scotland's reports on matters of public interest",
1349
+ "Complain about a public service",
1350
+ "Search for Coats of Arms in Scotland",
1351
+ "Read audits on public sector bodies",
1352
+ "See upcoming events in Scotland",
1353
+ "Get information from a Scottish public authority (FOI request)",
1354
+ "Money and debt",
1355
+ "About",
1356
+ "Living in and visiting Scotland",
1357
+ "Visit Scotland's national galleries",
1358
+ "Charities, volunteering and honours",
1359
+ "Running a charity or community group",
1360
+ "Check In Scotland",
1361
+ "Getting planning permission",
1362
+ "Types of PVG disclosure record",
1363
+ "Protecting Vulnerable Groups (PVG) scheme",
1364
+ "Learning at home, home education and flexi schooling guide",
1365
+ "Learning at home, home education and flexi schooling guide",
1366
+ "Appeal a Notice of Rejection",
1367
+ "Information for transgender disclosure applicants",
1368
+ "Victims' Code for Scotland (Farsi)",
1369
+ "Being a Witness - Young People in Criminal Proceedings (Cantonese)",
1370
+ "Victims' Code for Scotland",
1371
+ "Being a Witness - Children in Criminal Proceedings (Gaelic)",
1372
+ "Being a Witness - Going to Court",
1373
+ "Being a Witness - Young People in Criminal Proceedings (Hindi)",
1374
+ "Check In Scotland Children's Rights and Wellbeing Impact Assessment",
1375
+ "Being a Witness - Young People in Children's Hearing court proceedings (Arabic)",
1376
+ "Victims' Code for Scotland (Polish)",
1377
+ "Being a Witness - Going to Court (Kurdish-Sorani)",
1378
+ "Being a Witness - Going to Court (Gaelic)",
1379
+ "Create a QR poster for your venue",
1380
+ "Check In Scotland Data Protection Impact Assessment",
1381
+ "Check In Scotland Equality Impact Assessment",
1382
+ "Child Winter Heating Assistance: Ask us to look at our decision again paper form",
1383
+ "Appealing a decision paper form",
1384
+ "Ask us to look at our decision again paper form",
1385
+ "Disclosure Scotland race equality pledge",
1386
+ "Scottish Government",
1387
+ "Being a Witness - Young People in Children's Hearing court proceedings (Hindi)",
1388
+ "The Check In Scotland Toolkit",
1389
+ "Being a Witness - Children in Criminal Proceedings (Bengali)",
1390
+ "Check In Scotland Privacy Policy",
1391
+ "How to use the Check In Scotland service",
1392
+ "Being a Witness - The Use of Special Measures (Polish)",
1393
+ "Being a Witness - The Use of Special Measures (Russian)",
1394
+ "Your Child is a Witness - Parents and Carers",
1395
+ "Being a Witness - The Use of Special Measures (Urdu)",
1396
+ "Victims' Code for Scotland (Mandarin)",
1397
+ "Being a Witness - The Use of Special Measures (Arabic)",
1398
+ "Being a Witness - Children in Children's Hearing court proceedings (Arabic)",
1399
+ "Your Child is a Witness - Parents and Carers (Bengali)",
1400
+ "Being a Witness - Children in Criminal Proceedings (Hindi)",
1401
+ "Being a Witness - Children in Criminal Proceedings",
1402
+ "Your Child is a Witness - Parents and Carers (Urdu)",
1403
+ "Being a Witness - The Use of Special Measures (Gaelic)",
1404
+ "Being a Witness - The Use of Special Measures (Kurdish-Sorani)",
1405
+ "Being a Witness - Young People in Criminal Proceedings (Urdu)",
1406
+ "Being a Witness - Young People in Children's Hearing court proceedings",
1407
+ "Your Child is a Witness - Parents and Carers (Cantonese)",
1408
+ "Being a Witness - Children in Criminal Proceedings (Cantonese)",
1409
+ "Being a Witness - Young People in Children's Hearing court proceedings (Cantonese)",
1410
+ "Your Child is a Witness - Parents and Carers (Gaelic)",
1411
+ "Being a Witness - Young People in Children's Hearing court proceedings (Gaelic)",
1412
+ "Being a Witness - Young People in Criminal Proceedings (Gaelic)",
1413
+ "Being a Witness - Children in Criminal Proceedings (Punjabi)",
1414
+ "Victims' Code for Scotland (Romanian)",
1415
+ "Being a Witness - Children in Criminal Proceedings (Urdu)",
1416
+ "Being a Witness - People with Learning Disabilities (English)",
1417
+ "Being a Witness - Going to Court (Urdu)",
1418
+ "Victims' Code for Scotland (Sorani)",
1419
+ "Being a Witness - Young People in Criminal Proceedings (Polish)",
1420
+ "Your Child is a Witness - Parents and Carers (Hindi)",
1421
+ "Being a Witness - Children in Children's Hearing court proceedings (Gaelic)",
1422
+ "Being a Witness - Going to Court (Hindi)",
1423
+ "Being a Witness - Children in Children's Hearing court proceedings",
1424
+ "Being a Witness - Going to Court (Cantonese)",
1425
+ "Being a Witness - Young People in Children's Hearing court proceedings (Punjabi)",
1426
+ "Being a Witness - The Use of Special Measures (Punjabi)",
1427
+ "Using the Check In Scotland app",
1428
+ "Being a Witness - Young People in Criminal Proceedings (Bengali)",
1429
+ "Victims' Code for Scotland (Punjabi)",
1430
+ "Being a Witness - Young People in Children's Hearing court proceedings (Bengali)",
1431
+ "Being a Witness - Young People in Criminal Proceedings (Punjabi)",
1432
+ "Victims' Code for Scotland (Urdu)",
1433
+ "Being a Witness - The Use of Special Measures (Cantonese)",
1434
+ "Funding Adaptations - A guide for housing association tenants",
1435
+ "Being a Witness - Children in Children's Hearing court proceedings (Punjabi)",
1436
+ "Being a Witness - Going to Court (Arabic)",
1437
+ "Your Child is a Witness - Parents and Carers (Punjabi)",
1438
+ "Being a Witness - The Use of Special Measures (Bengali)",
1439
+ "Being a Witness - Young People in Criminal Proceedings (Arabic)",
1440
+ "Being a Witness - Children in Children's Hearing court proceedings (Hindi)",
1441
+ "Victims' Code for Scotland (Slovak)",
1442
+ "Being a Witness - Going to Court (Bengali)",
1443
+ "Being a Witness - Young People in Children's Hearing court proceedings (Urdu)",
1444
+ "Being a Witness - Young People in Criminal Proceedings",
1445
+ "The benefits of Check In Scotland",
1446
+ "Being a Witness - Children in Criminal Proceedings (Arabic)",
1447
+ "Being a Witness - The Use of Special Measures",
1448
+ "Being a Witness - The Use of Special Measures (Hindi)",
1449
+ "Being a Witness - Going to Court (Polish)",
1450
+ "Victims' Code for Scotland (Arabic)",
1451
+ "Being a Witness - Children in Children's Hearing court proceedings (Bengali)",
1452
+ "Being a Witness - Children in Children's Hearing court proceedings (Urdu)",
1453
+ "Victims' Code for Scotland (Lithuanian)",
1454
+ "Victims' Code for Scotland (Bahdini)",
1455
+ "Being a Witness - Going to Court (Punjabi)",
1456
+ "Can I get a Blue Badge?",
1457
+ "Being a Witness - Children in Children's Hearings court proceedings (Cantonese)",
1458
+ "Self-employed or work for a personal employer",
1459
+ "Get support as a victim or witness of crime",
1460
+ "Travelling to the EU, Switzerland, Norway, Iceland or Liechtenstein",
1461
+ "Create a Check In Scotland QR code poster",
1462
+ "Children and young witnesses at court",
1463
+ "no title available, migration still running",
1464
+ "Check whether your products or services are ready to export",
1465
+ "Government fees to pay for importing",
1466
+ "Importing",
1467
+ "Taxes",
1468
+ "Pay your VAT bill",
1469
+ "Exporting",
1470
+ "Create a new common grazing",
1471
+ "Duty relief for imports",
1472
+ "Giving staff time off for jury service",
1473
+ "Agriculture in Scotland (farming and food production)",
1474
+ "Complain about a tenant farming issue",
1475
+ "Environment and agriculture",
1476
+ "Going to university",
1477
+ "Get your exam results and past qualifications online",
1478
+ "Register a croft",
1479
+ "Documents you need for importing",
1480
+ "Farming and rural issues",
1481
+ "Get advice on communicating with clients and customers abroad",
1482
+ "Farm payments and support",
1483
+ "CMAL harbour dues and charges",
1484
+ "What about Clearing?",
1485
+ "Student loan",
1486
+ "Extra financial support for students: discretionary funding",
1487
+ "Who decides if land is contaminated",
1488
+ "Marine and fisheries",
1489
+ "Environmental responsibilities",
1490
+ "Apply to carry out activities that may affect the environment",
1491
+ "Get environmental advice on your planning project",
1492
+ "Buying contaminated land",
1493
+ "Aggregates Levy",
1494
+ "Working with Scottish businesses from abroad",
1495
+ "Help for the creative industries",
1496
+ "Expenses and benefits",
1497
+ "Update or cancel a card",
1498
+ "Business sectors",
1499
+ "Get advice on trading with Scottish businesses",
1500
+ "Lost, stolen or damaged cards",
1501
+ "Setting up a business in Scotland if you live abroad",
1502
+ "Air Discount Scheme for Highlands and Islands residents",
1503
+ "Find out how to do an energy audit",
1504
+ "Eligibility - can you get one?",
1505
+ "Get advice on manufacturing",
1506
+ "Update or cancel a card",
1507
+ "Further information",
1508
+ "Ferry concessions for National Entitlement Card owners",
1509
+ "Find ferry timetables",
1510
+ "Further information",
1511
+ "Find research and information on businesses in Scotland",
1512
+ "Driving licences, tests, car tax and registration",
1513
+ "Driving, transport and travel",
1514
+ "Using your card",
1515
+ "Get further help with a Blue Badge",
1516
+ "Financial and management accounts",
1517
+ "Apply for an explosives certificate or licence",
1518
+ "CalMac and Argyll ferry service status",
1519
+ "Overview",
1520
+ "Finance and accounts",
1521
+ "Complain about a bus service",
1522
+ "Overview",
1523
+ "Trains and the subway",
1524
+ "Staff pensions",
1525
+ "Overview",
1526
+ "Statutory leave and time off",
1527
+ "Exemptions",
1528
+ "How to get a certificate",
1529
+ "Accounts and tax returns for companies",
1530
+ "Fire safety legislation at your business",
1531
+ "Writing job descriptions and advertising vacancies",
1532
+ "Animal health and welfare",
1533
+ "Find the air quality in your area",
1534
+ "Overview",
1535
+ "Waste and energy",
1536
+ "Rural Payments and Services",
1537
+ "Find out about saving energy and reducing waste",
1538
+ "Apply for a muirburn licence",
1539
+ "Report a wildlife crime",
1540
+ "Find the water quality in your area",
1541
+ "Licence to release non-native wildlife and plants",
1542
+ "Apply for a snare identification number",
1543
+ "Paddling on Scottish canals",
1544
+ "The Scottish Outdoor Access Code",
1545
+ "The Scottish Marine Wildlife Watching Code",
1546
+ "Boating on Scottish canals",
1547
+ "Find out how to measure waste",
1548
+ "Find out how to measure your water use",
1549
+ "Staff pay",
1550
+ "Get help to apply for an environmental licence or permit",
1551
+ "Working out what your business should spend money on",
1552
+ "Report air pollution",
1553
+ "Using your budget to measure performance",
1554
+ "Green Network for Businesses",
1555
+ "What your budget should include",
1556
+ "Coronavirus Banner",
1557
+ "Apply for a Private Water Supply Grant",
1558
+ "Scottish Growth Scheme",
1559
+ "Information for retailers",
1560
+ "Other benefits you might be able to get",
1561
+ "Carer's Allowance Supplement paper form",
1562
+ "Funerals during coronavirus",
1563
+ "Job scams and disclosure checks",
1564
+ "Who should apply",
1565
+ "Child Disability Payment - If your circumstances change",
1566
+ "Types of change",
1567
+ "Jury duty",
1568
+ "Changes to personal details",
1569
+ "Changes to the child's care needs, conditions or mobility needs",
1570
+ "What you need to know",
1571
+ "Changes you need to report",
1572
+ "What happens after the review",
1573
+ "Sending documents",
1574
+ "If you need help with a review",
1575
+ "If you need any help",
1576
+ "Who you can get supporting information from",
1577
+ "Moving to the Republic of Ireland",
1578
+ "Leaving Scotland temporarily",
1579
+ "HM Forces and Civil Servants",
1580
+ "If you have transferred from the Department for Work and Pensions",
1581
+ "Moving to England, Wales or Northern Ireland",
1582
+ "Who to contact if you're moving or travelling outside of Scotland",
1583
+ "Help with money if you're disabled",
1584
+ "Mobility awards at ages 3 and 5",
1585
+ "How you can send supporting information",
1586
+ "If something changes after a review",
1587
+ "Supporting information for Child Disability Payment",
1588
+ "Disability Living Allowance for children in Scotland",
1589
+ "Covid - support if you're on the highest risk list (previously 'the shielding list')",
1590
+ "Help with supporting information",
1591
+ "What is supporting information",
1592
+ "If you do not agree with the decision",
1593
+ "If you get Best Start Foods and your circumstances change",
1594
+ "Your change in circumstances",
1595
+ "After you apply",
1596
+ "Who should apply",
1597
+ "Other benefits you might be able to get",
1598
+ "Social Security Scotland",
1599
+ "Get help with money if you're pregnant",
1600
+ "Support organisations for the Armed Forces community",
1601
+ "Hiring a main contractor",
1602
+ "What funding you can get",
1603
+ "Self-build site insurance",
1604
+ "Tuition fees for university",
1605
+ "Repay your student loan",
1606
+ "Refund on your student loan",
1607
+ "Student finance if you change or leave your course",
1608
+ "What to do first",
1609
+ "Funerals during Covid",
1610
+ "Arranging a funeral",
1611
+ "Tell your tenant they need to leave",
1612
+ "Tell your subtenant they need to leave",
1613
+ "Grounds for eviction - assured and short assured tenancies - if your landlord starts the eviction process on or after 3 October 2020 and on or before 31 March 2022",
1614
+ "Grounds for eviction - private residential tenancies - if your landlord starts the eviction process on or after 3 October 2020 and on or before 31 March 2022",
1615
+ "Overview",
1616
+ "Who can apply",
1617
+ "How to apply",
1618
+ "After you apply",
1619
+ "Short-term assistance",
1620
+ "Child Disability Payment",
1621
+ "Reduce the amount of junk mail you get",
1622
+ "Child Disability Payment",
1623
+ "NHS Board contact details",
1624
+ "Registering if you do not have a settled address",
1625
+ "Legal documents you'll need to review if you get funding",
1626
+ "Giving evidence",
1627
+ "Make a victim statement",
1628
+ "Corporate Plan",
1629
+ "Building Standards for homeowners",
1630
+ "Getting a building warrant",
1631
+ "Being a witness at court",
1632
+ "Scottish Building Standards",
1633
+ "Find your council and constituency boundaries",
1634
+ "Letting agent registration updates",
1635
+ "Search for business funding or advice",
1636
+ "About the grant",
1637
+ "Learning at home, home education and flexi schooling",
1638
+ "Grant funding for businesses in Scotland",
1639
+ "If your landlord wants to evict you",
1640
+ "Prescription drugs and driving in Scotland",
1641
+ "Rent or buy a Crown Estate owned property",
1642
+ "Tenants with a private residential tenancy",
1643
+ "Short assured tenants",
1644
+ "Employment support for the Armed Forces community",
1645
+ "Heath and Wellbeing support for the Armed Forces community",
1646
+ "Education and training funding for the Armed Forces community",
1647
+ "Armed Forces and Veterans Champions",
1648
+ "Armed forces community information",
1649
+ "Support for the Armed Forces Community",
1650
+ "Armed forces and veterans pensions",
1651
+ "Marriage and civil partnership during Covid",
1652
+ "How to use the Check In Scotland QR code",
1653
+ "Using your Blue Badge",
1654
+ "Help with school clothing costs",
1655
+ "Scottish Child Payment forms",
1656
+ "What the liquidator does",
1657
+ "What happens to directors",
1658
+ "Members' voluntary liquidation",
1659
+ "Liquidate your limited company",
1660
+ "Young Carer Grant",
1661
+ "Compulsory liquidation",
1662
+ "Creditors' voluntary liquidation",
1663
+ "Burial and cremation costs",
1664
+ "Overview",
1665
+ "Complain about early learning and childcare",
1666
+ "Help paying for childcare",
1667
+ "Dental Student Support Grant (DSSG)",
1668
+ "Fire safety for older people",
1669
+ "Find where your child can learn Gaelic",
1670
+ "What EMA is",
1671
+ "Access to public services in Scotland",
1672
+ "Apply for or renew an Education Maintenance Allowance (EMA)",
1673
+ "Speaking to a child welfare reporter",
1674
+ "Using your Best Start Foods card",
1675
+ "Best Start Grant and Best Start Foods forms",
1676
+ "Funeral Support Payment",
1677
+ "After you've applied for Funeral Support Payment",
1678
+ "Update your PVG Scheme member details",
1679
+ "Disclosure Scotland Subject Access Request form",
1680
+ "Sample policy for the recruitment of ex-offenders",
1681
+ "Make a referral to Disclosure Scotland",
1682
+ "If something's wrong with your disclosure certificate",
1683
+ "Disclosure Scotland Corporate Parenting Plan 2018-21",
1684
+ "Minimum wage for agricultural workers",
1685
+ "Disclosure Scotland Framework",
1686
+ "Sample information handling policy",
1687
+ "Disclosure Scotland PVG Scheme membership maintenance by organisation",
1688
+ "Disclosure Scotland's legal frameworks",
1689
+ "Applicant's guide to completing a Police Act Disclosure application",
1690
+ "Guide for applicants completing an application to join the PVG Scheme",
1691
+ "Guidance Notes for completion of the Disclosure Registration Application",
1692
+ "Guidance Notes for completion of the Disclosure Registration Modification form",
1693
+ "Responsible body enrolment application guidance",
1694
+ "Sub account application guidance",
1695
+ "Freedom of Information (FOI) report data",
1696
+ "Sample policy on making referrals to Disclosure Scotland",
1697
+ "Scotland Works for You",
1698
+ "Refunds for disclosures",
1699
+ "Disclosure Scotland Code of Practice",
1700
+ "Manage your PVG membership",
1701
+ "If you don't receive your disclosure certificate",
1702
+ "Register your organisation with Disclosure Scotland",
1703
+ "Disclosure Scotland Annual Report and Accounts",
1704
+ "Ownerless property",
1705
+ "Ownerless goods",
1706
+ "Social media, online dating, apps and digital footprints",
1707
+ "Health and safety at work",
1708
+ "Visit someone in prison",
1709
+ "Complain about the Parole Board",
1710
+ "Staying in touch with someone in prison",
1711
+ "Help with money",
1712
+ "Tenancy deposits (tenants)",
1713
+ "Scotland's Baby Boxes",
1714
+ "Funding Adaptations - A guide for homeowners",
1715
+ "Funding adaptations - A guide for private tenants",
1716
+ "Funding Adaptations - A guide for local authority tenants",
1717
+ "Overview",
1718
+ "Miscarriage of justice: apply for compensation",
1719
+ "Apply for a pedlar's certificate",
1720
+ "Contaminated land",
1721
+ "Water and sewerage charges for businesses",
1722
+ "Register as a property factor",
1723
+ "Agreeing the terms and conditions of funding raised from shares",
1724
+ "Understanding civil justice",
1725
+ "Complain about a prison",
1726
+ "Find a prison",
1727
+ "Miscarriage of justice: claim compensation",
1728
+ "Types of prison sentences",
1729
+ "Offences that must be disclosed according to rules",
1730
+ "Offences that must be disclosed",
1731
+ "Find an umbrella body",
1732
+ "How to apply",
1733
+ "Tenancy deposits (landlords)",
1734
+ "Create a tenancy agreement",
1735
+ "Hazardous substances consent appeal",
1736
+ "Hazardous substances contravention notice appeals",
1737
+ "Public water and sewerage services",
1738
+ "Approved certification",
1739
+ "Getting help",
1740
+ "How much will it cost?",
1741
+ "Buying a home: the legal process",
1742
+ "Maintenance and repairs in common areas",
1743
+ "When does bankruptcy end?",
1744
+ "Drinking alcohol in public places",
1745
+ "Appeal a refused school place",
1746
+ "Non-domestic rates calculator",
1747
+ "Importing and exporting forestry goods",
1748
+ "Moving to Gibraltar",
1749
+ "Moving to a European Economic Area (EEA) country or Switzerland",
1750
+ "Benefits if you leave Scotland",
1751
+ "Benefits if you leave Scotland or travel abroad",
1752
+ "Currently living in an EEA country or Switzerland or Gibraltar",
1753
+ "Staying safe in winter weather",
1754
+ "Find social work and social care services",
1755
+ "How to apply",
1756
+ "Young carers: support",
1757
+ "How to report a possible abuse of your human rights",
1758
+ "Resolve a dispute with your neighbour",
1759
+ "ILF Scotland Transition Fund",
1760
+ "License a firearm",
1761
+ "Help for management teams looking to buy their business",
1762
+ "Get a self-build loan in Scotland",
1763
+ "Breastfeeding and your business",
1764
+ "Manage waste and save energy, water and raw materials",
1765
+ "Reduce business waste",
1766
+ "Apply for basic disclosure",
1767
+ "Adopting a child from fostering",
1768
+ "Open Market Shared Equity scheme",
1769
+ "Funded early learning and childcare",
1770
+ "Young Scot card",
1771
+ "Childhood abuse: support",
1772
+ "Order a copy of a birth, death or marriage certificate",
1773
+ "Getting help to buy your home",
1774
+ "Scotland's Redress Scheme",
1775
+ "Spent convictions",
1776
+ "Applying to have spent convictions removed",
1777
+ "Duties after registering",
1778
+ "Convictions and higher level disclosures",
1779
+ "Behaviour before the age of 12",
1780
+ "Convictions and higher level disclosures",
1781
+ "Standard disclosure",
1782
+ "Apply for a Discretionary Housing Payment",
1783
+ "Job Start Payment",
1784
+ "How it works",
1785
+ "Who can apply",
1786
+ "Do you claim a disability benefit?",
1787
+ "Professor Jason Leitch answers your questions",
1788
+ "Apply for basic disclosure",
1789
+ "Overview",
1790
+ "Criminal record checks for coronavirus (COVID-19) response workers",
1791
+ "Apply through your local council",
1792
+ "Text messages, letters and communications",
1793
+ "Register as a creditor in an insolvency case",
1794
+ "Overview",
1795
+ "Presenting a winding-up petition to court",
1796
+ "How to apply",
1797
+ "Applying outside of Scotland",
1798
+ "How to search for disqualified company directors",
1799
+ "How it works",
1800
+ "What happens after the winding-up order is made?",
1801
+ "Applying outside of Scotland",
1802
+ "West Dunbartonshire Council",
1803
+ "When were they told to self-isolate?",
1804
+ "West Lothian Council",
1805
+ "Are they fully vaccinated?",
1806
+ "If you need to contact Social Security Scotland",
1807
+ "South Lanarkshire Council",
1808
+ "Stirling Council",
1809
+ "Returning from abroad",
1810
+ "Do you work?",
1811
+ "When were you told to self-isolate?",
1812
+ "Are you single or in a couple?",
1813
+ "When you were told to self-isolate by Test and Protect, did you agree they could share your details with your local council?",
1814
+ "Which council area do you live in?",
1815
+ "Are you fully vaccinated?",
1816
+ "Same sex couples",
1817
+ "Help with living costs - Scottish Welfare Fund",
1818
+ "Childhood abuse: survivor support in East Lothian",
1819
+ "Childhood abuse: survivor support in West Lothian",
1820
+ "Childhood abuse: survivor support in West Dunbartonshire",
1821
+ "Childhood abuse: survivor support in Stirling",
1822
+ "Childhood abuse: survivor support in Shetland Islands",
1823
+ "Childhood abuse: survivor support in South Ayrshire",
1824
+ "Childhood abuse: survivor support in Scottish Borders",
1825
+ "Childhood abuse: survivor support in Renfrewshire",
1826
+ "Childhood abuse: survivor support in Perth and Kinross",
1827
+ "Childhood abuse: survivor support in Orkney Islands",
1828
+ "Childhood abuse: survivor support in North Lanarkshire",
1829
+ "Childhood abuse: survivor support in North Ayrshire",
1830
+ "Childhood abuse: survivor support in Moray",
1831
+ "Childhood abuse: survivor support in Midlothian",
1832
+ "Childhood abuse: survivor support in Inverclyde",
1833
+ "Childhood abuse: survivor support in Highlands",
1834
+ "Childhood abuse: survivor support in Glasgow",
1835
+ "Childhood abuse: survivor support in Fife",
1836
+ "Childhood abuse: survivor support in Falkirk",
1837
+ "Childhood abuse: survivor support in Edinburgh",
1838
+ "Childhood abuse: survivor support in East Renfrewshire",
1839
+ "Childhood abuse: survivor support in East Dunbartonshire",
1840
+ "Childhood abuse: survivor support in East Ayrshire",
1841
+ "Before you petition the court",
1842
+ "Child Winter Heating Assistance for children who no longer live in Scotland",
1843
+ "Is there a reason for applying late?",
1844
+ "What happens after you apply for the grant",
1845
+ "Living outside of Scotland",
1846
+ "Do you get any of these benefits or payments?",
1847
+ "Comhairle nan Eilean Siar (Western Isles Council)",
1848
+ "Aberdeen City Council",
1849
+ "Clackmannanshire Council",
1850
+ "You do not qualify for the grant",
1851
+ "Angus Council",
1852
+ "City of Edinburgh Council",
1853
+ "You do not qualify for the grant",
1854
+ "Aberdeenshire Council",
1855
+ "Argyll and Bute Council",
1856
+ "Dumfries and Galloway Council",
1857
+ "Falkirk Council",
1858
+ "Inverclyde Council",
1859
+ "Glasgow City Council",
1860
+ "East Renfrewshire Council",
1861
+ "East Dunbartonshire Council",
1862
+ "Midlothian Council",
1863
+ "Fife Council",
1864
+ "Highland Council",
1865
+ "East Ayrshire Council",
1866
+ "East Lothian Council",
1867
+ "Renfrewshire Council",
1868
+ "North Ayrshire Council",
1869
+ "Orkney Islands Council",
1870
+ "Moray Council",
1871
+ "Dundee City Council",
1872
+ "North Lanarkshire Council",
1873
+ "Scottish Borders Council",
1874
+ "South Ayrshire Council",
1875
+ "Perth and Kinross Council",
1876
+ "Shetland Islands Council",
1877
+ "Do you earn less than £1608.75 per month?",
1878
+ "Contact your local council for further help",
1879
+ "VAT and overseas goods sold directly to customers in the UK",
1880
+ "First steps",
1881
+ "Corporation Tax",
1882
+ "VAT registration",
1883
+ "Apply for university",
1884
+ "Overview",
1885
+ "Scottish Landfill Tax",
1886
+ "Childhood abuse: survivor support in South Lanarkshire",
1887
+ "Childhood abuse: survivor support in Angus",
1888
+ "Childhood abuse: survivor support in Aberdeenshire",
1889
+ "Childhood abuse: survivor support in Aberdeen",
1890
+ "Selling a home: the legal process",
1891
+ "Childhood abuse: survivor support in Dundee",
1892
+ "Childhood abuse: survivor support in Dumfries and Galloway",
1893
+ "Childhood abuse: survivor support in Clackmannanshire",
1894
+ "Childhood abuse: survivor support in Comhairle nan Eilean Siar (Western Isles)",
1895
+ "Childhood abuse: survivor support in Argyll and Bute",
1896
+ "Lateral flow and PCR tests",
1897
+ "Eligibility",
1898
+ "Population data",
1899
+ "Covid vaccinations for people on the Highest Risk List",
1900
+ "Low Income Pandemic Payment",
1901
+ "Rent Pressure Zone: Improvements Guidance",
1902
+ "Next of kin application form and \"Help to apply\"",
1903
+ "Cookies",
1904
+ "Health advice and support",
1905
+ "Education and EU citizens in Scotland",
1906
+ "Landlord right of entry",
1907
+ "New Supply Shared Equity scheme",
1908
+ "Find a project in your area",
1909
+ "Renting and your rights during coronavirus if you have a private landlord",
1910
+ "Disclosure Scotland's privacy policy",
1911
+ "Fisheries after Brexit (commercial fishing, landing and exporting)",
1912
+ "Sport in Scotland after Brexit (employment and funding)",
1913
+ "Funding from EU programmes",
1914
+ "Further information and support",
1915
+ "Erasmus Plus programme",
1916
+ "Coming to Scotland for short-term work or business",
1917
+ "Visiting Scotland after Brexit (tourism and short-term work)",
1918
+ "Travelling to EU, Switzerland, Norway, Iceland and Liechtenstein from Scotland.",
1919
+ "Copyright and intellectual property",
1920
+ "Customs and trade – movement of goods and vehicles",
1921
+ "Culture and creative sectors after Brexit",
1922
+ "Scottish businesses and the EU",
1923
+ "Broadcasting",
1924
+ "Brexit",
1925
+ "Data",
1926
+ "Family, civil and commercial disputes involving EU countries after Brexit",
1927
+ "EU Funding – Creative Europe",
1928
+ "Financial services and the EU (banking and regulation)",
1929
+ "Justice and security after Brexit (rights and crime)",
1930
+ "Overview",
1931
+ "Housing after Brexit (social and private housing)",
1932
+ "EU citizens living in Scotland",
1933
+ "Visas: coming to Scotland for employment and freelance work",
1934
+ "Welfare and finances after Brexit (benefits, pensions and money)",
1935
+ "Registered Body tracking document",
1936
+ "Disclosure Scotland's privacy statement",
1937
+ "PVG: lists of those unsuitable to do regulated work",
1938
+ "Enhanced disclosure",
1939
+ "Your payment",
1940
+ "After you apply",
1941
+ "Job Start Payment offer confirmation examples",
1942
+ "How to apply",
1943
+ "Letting Social Security Scotland know",
1944
+ "Tell Social Security Scotland about a change",
1945
+ "Child Disability Payment reviews",
1946
+ "Questions asked when applying for Child Disability Payment",
1947
+ "Contact Social Security Scotland",
1948
+ "Sending documents",
1949
+ "Job Start Payment care leaver evidence form",
1950
+ "Help to apply for Child Disability Payment",
1951
+ "Child Disability Payment",
1952
+ "Sending documents",
1953
+ "Apply to lease accessible vehicles",
1954
+ "Child Disability Payment Change of Circumstances Form",
1955
+ "Hiring separate contractors",
1956
+ "Get help to find a job",
1957
+ "Object to a limited company being struck off",
1958
+ "Corporate insolvency",
1959
+ "Contact the Accountant in Bankruptcy (AiB)",
1960
+ "Business debt advice",
1961
+ "You do not qualify for the grant if your child has a negative PCR test result",
1962
+ "How old is the person you are a carer for?",
1963
+ "About review decisions",
1964
+ "What happens next",
1965
+ "Disability Living Allowance for children is moving",
1966
+ "Changes to Personal Independence Payment in Scotland",
1967
+ "Your benefit is moving to Social Security Scotland",
1968
+ "Overview",
1969
+ "What you can claim for",
1970
+ "The Blue Badge scheme: rights and responsibilities",
1971
+ "Other benefits related to Child Disability Payment",
1972
+ "Scottish Child Payment Bridging Payments",
1973
+ "Letting Agents who have been removed from the Register",
1974
+ "Overview",
1975
+ "Who should apply",
1976
+ "After you apply",
1977
+ "Decision about your application",
1978
+ "Payments",
1979
+ "The transfer process",
1980
+ "Rights and responsibilities as an appointee",
1981
+ "What Social Security Scotland can answer",
1982
+ "What to do if you think our benefit decision is wrong",
1983
+ "Make a Parenting Plan",
1984
+ "Young Patients Family Fund - terms and conditions",
1985
+ "Young Patients Family Fund leaflet",
1986
+ "Young Patients Family Fund form - YPFF",
1987
+ "Volunteer to check standards in prison",
1988
+ "What to do when someone dies",
1989
+ "Find your local procurator fiscal office",
1990
+ "Getting parole",
1991
+ "Client Panels",
1992
+ "Get your basic disclosure certificate verified",
1993
+ "Tenancy deposits and moving in",
1994
+ "Renting your property out",
1995
+ "Trust Deeds",
1996
+ "Free period products",
1997
+ "If you're still waiting for a decision (pending applications)",
1998
+ "Registered builders",
1999
+ "Help to Buy (Scotland) Affordable New Build scheme",
2000
+ "Check if a person or company is insolvent",
2001
+ "Carrying out repairs as a landlord",
2002
+ "If you have an upcoming renewal of your Disability Allowance for Children",
2003
+ "What to do if circumstances change during the transfer",
2004
+ "Overview",
2005
+ "Report child abuse",
2006
+ "If you live together",
2007
+ "Ending the relationship",
2008
+ "Report a crime",
2009
+ "How your rateable value and rates are calculated",
2010
+ "If you're married or civil partners",
2011
+ "After the decision",
2012
+ "Making sure your private water supply is safe to drink",
2013
+ "Overview",
2014
+ "Cost of PVG",
2015
+ "Updating your PVG details",
2016
+ "What is domestic abuse",
2017
+ "Understanding criminal justice",
2018
+ "Contact the police",
2019
+ "Benefits and help with money after someone dies",
2020
+ "Help with the basic disclosure online application",
2021
+ "Your duties after receiving someone's disclosure certificate",
2022
+ "Water and Sewerage Charges Exemption Scheme",
2023
+ "Letting agent regulation (information for tenants)",
2024
+ "Letting agent regulation (information for landlords)",
2025
+ "Repairing Standard",
2026
+ "Tolerable Standard",
2027
+ "Rent Pressure Zone checker",
2028
+ "Getting the property ready",
2029
+ "If you need help from Social Security Scotland",
2030
+ "How it works",
2031
+ "Scotland's Redress Scheme",
2032
+ "Child Disability Payment Appeals form",
2033
+ "British Sign Language (BSL)",
2034
+ "Who to contact",
2035
+ "Moving from the Department for Work and Pensions",
2036
+ "Child Disability Payment Appeals form with short-term assistance",
2037
+ "Child Disability Payment Re-determinations form with short-term assistance",
2038
+ "If you get Short-term Assistance",
2039
+ "Does your child have a positive PCR test result?",
2040
+ "Child Disability Payment Re-determinations form",
2041
+ "You may not qualify if they're fully vaccinated",
2042
+ "Child Disability Payment",
2043
+ "Renting and your rights during coronavirus if you have a social landlord",
2044
+ "Summary of options",
2045
+ "Expenses form",
2046
+ "Help and support",
2047
+ "Make a claim",
2048
+ "Help and support",
2049
+ "How to complete the review",
2050
+ "Terrorism and national emergencies",
2051
+ "Household income",
2052
+ "How to apply",
2053
+ "Overview",
2054
+ "When to apply",
2055
+ "After you've applied",
2056
+ "Documents to support your application",
2057
+ "Apply for student finance",
2058
+ "Learning at home",
2059
+ "Report noise or antisocial behaviour",
2060
+ "Apply to bury or cremate in Scotland",
2061
+ "Small Business Support Grant",
2062
+ "Retail, Hospitality, Leisure Support Grant",
2063
+ "Grant closures and application deadlines",
2064
+ "Further enquiries about non-domestic rates reliefs and grants",
2065
+ "State aid",
2066
+ "Non-domestic rates relief to help during coronavirus",
2067
+ "2022/23 Non-domestic tax rates",
2068
+ "Help if you're leaving hospital",
2069
+ "Disclosure Scotland Board meeting minutes",
2070
+ "Business Plan",
2071
+ "EU citizens working in health and social care",
2072
+ "The rights of EU citizens living in Scotland",
2073
+ "EU citizens living in Scotland",
2074
+ "Health and social care for EU citizens in Scotland",
2075
+ "Brexit – what you need to know",
2076
+ "Help and advice for EU citizens in Scotland",
2077
+ "Keeping your child safe",
2078
+ "Your payments",
2079
+ "Apply for or renew a bus pass",
2080
+ "Check In Scotland Privacy Policy",
2081
+ "Best Start Foods research",
2082
+ "Benefit overpayments",
2083
+ "Apply for Scotland's Redress Scheme",
2084
+ "Child Winter Heating Assistance",
2085
+ "Who can get Child Winter Heating Assistance",
2086
+ "Job Start Payment paper form",
2087
+ "Overview",
2088
+ "Shopping, food and essentials",
2089
+ "Research about people at highest risk",
2090
+ "Disclosure Scotland",
2091
+ "Financial help if you have a disabled child",
2092
+ "Get help with money if you have a child",
2093
+ "Overview",
2094
+ "Best Start Grant and Best Start Foods",
2095
+ "About Disclosure Scotland",
2096
+ "Disclosure Scotland Procurement Annual Report",
2097
+ "Disclosure Scotland Procurement Strategy",
2098
+ "Changes to Disability Living Allowance (DLA) for adults",
2099
+ "After you apply",
2100
+ "Make sure your home is fire safe",
2101
+ "Keith Rosser",
2102
+ "Douglas Hutchens",
2103
+ "Support for people affected by Covid",
2104
+ "Privacy",
2105
+ "Choosing a school for your child",
2106
+ "Privacy notice and data protection - Social Security Scotland",
2107
+ "Overview",
2108
+ "Payments",
2109
+ "Who can get Carer's Allowance Supplement",
2110
+ "Behaviour under the age of 12 and disclosure",
2111
+ "Coronavirus Carer's Allowance Supplement",
2112
+ "Contact Social Security Scotland",
2113
+ "Adult Disability Payment",
2114
+ "After you've applied for Young Carer Grant",
2115
+ "Unacceptable actions policy of Social Security Scotland",
2116
+ "Apply for disclosures by email",
2117
+ "Apply for PVG",
2118
+ "Complain about an NHS service",
2119
+ "Help with a legal problem",
2120
+ "Social Security Scotland satisfaction survey",
2121
+ "Giving Test and Protect permission to share details",
2122
+ "PVG Scheme - Regulatory Bodies referral form",
2123
+ "Get a paper PVG form or guidance documents",
2124
+ "Disclosure Scotland PVG Scheme membership maintenance guidance for members",
2125
+ "Guide for existing PVG Scheme members making an application",
2126
+ "Disclosure Scotland Register of Interests",
2127
+ "Stuart Smith",
2128
+ "Sex Offenders Register",
2129
+ "Change of PVG member details form",
2130
+ "Carer's Allowance Supplement",
2131
+ "PVG for employers",
2132
+ "Kavita Chetty",
2133
+ "PVG Scheme - Employer referral form",
2134
+ "Get free PVG disclosure checks for volunteers",
2135
+ "Adopting a child in Scotland",
2136
+ "License an air weapon",
2137
+ "Types of disclosure",
2138
+ "Disclosure Scotland Audit and Risk Committee minutes",
2139
+ "A Countersignatory's Guide to Checking and Completing an Application to join the PVG Scheme",
2140
+ "A Countersignatory's guide to checking and completing an existing scheme member's application",
2141
+ "A Countersignatory's guide to checking and completing a Police Act Disclosure application",
2142
+ "Coronavirus PVG joiner form",
2143
+ "Christopher Wroath",
2144
+ "Coronavirus disclosure application form",
2145
+ "Coronavirus PVG existing member form",
2146
+ "Protecting Vulnerable Groups (PVG) existing member application form",
2147
+ "Protecting Vulnerable Groups (PVG) scheme joiner application form",
2148
+ "Get a paper disclosure application form",
2149
+ "Basic, standard or enhanced disclosure application form",
2150
+ "Energy Performance Certificates for your business premises",
2151
+ "Continuous employment",
2152
+ "Help taking time off work",
2153
+ "Anti-bribery policy",
2154
+ "Report VAT fraud",
2155
+ "Guardian's Allowance",
2156
+ "Emergency housing if you're homeless",
2157
+ "Dismissing staff",
2158
+ "Help after the death of a partner",
2159
+ "School closures in an emergency",
2160
+ "Get your air conditioning system inspected",
2161
+ "Becoming a carer",
2162
+ "Business Relief for Inheritance Tax",
2163
+ "Set up and run a limited partnership",
2164
+ "Whistleblowing",
2165
+ "Solve a workplace dispute",
2166
+ "Time off for family and dependants (compassionate leave)",
2167
+ "Apply for housing",
2168
+ "Register agricultural land",
2169
+ "Video transcript: What sort of information can I give?",
2170
+ "Benefits and help with money after splitting up",
2171
+ "Help with mental health",
2172
+ "Bus lane penalty fines",
2173
+ "Strike off your limited company from the Companies Register",
2174
+ "Apply for or renew a disabled person's bus pass",
2175
+ "Handling staff resignations",
2176
+ "Pay a court fine",
2177
+ "Employee training",
2178
+ "Video transcript: being a witness",
2179
+ "Businesses and charging VAT",
2180
+ "Find business events",
2181
+ "Land and Buildings Transaction Tax (LBTT)",
2182
+ "Accepting returns and giving refunds",
2183
+ "Closing a business",
2184
+ "Report a pothole",
2185
+ "Taking disciplinary action against an employee",
2186
+ "Asbestos regulations for your commercial property",
2187
+ "Help with tax credits",
2188
+ "Avoid unfair terms in sales contracts",
2189
+ "Starting to import",
2190
+ "Find protected areas of countryside",
2191
+ "Career breaks",
2192
+ "Business records if you're self-employed",
2193
+ "Water efficiency support",
2194
+ "Growing your business",
2195
+ "Employing people who are carers: advice and training",
2196
+ "Rubbish, bins and recycling",
2197
+ "Help with disability benefits",
2198
+ "Resource efficiency: employee engagement",
2199
+ "If you're being evicted – private tenant",
2200
+ "Apply for a disabled person's parking space",
2201
+ "Get a licence for your business",
2202
+ "Electrical waste: retailer and distributor responsibilities",
2203
+ "Battery waste: producer and supplier responsibilities",
2204
+ "If you're facing homelessness",
2205
+ "Invoicing and taking payment from customers",
2206
+ "Foreign travel advice",
2207
+ "Keeping your pay and tax records",
2208
+ "Get a wheelchair from the Shopmobility scheme",
2209
+ "Help after a break-up",
2210
+ "Support at university",
2211
+ "IT and running a business online",
2212
+ "Making staff redundant",
2213
+ "When you need a licence to copy a creative work",
2214
+ "Starting a business: first steps",
2215
+ "Avoid and report anti-competitive business practices",
2216
+ "Carrier bag charge",
2217
+ "Pay your Self Assessment tax bill",
2218
+ "Dealing with Inheritance Tax",
2219
+ "Put your company into administration",
2220
+ "Scaffolding rules",
2221
+ "Register a farm vehicle",
2222
+ "Ending a tenancy as a landlord",
2223
+ "Apply to settle in the UK if your partner dies",
2224
+ "Child Benefit",
2225
+ "Register for and file your Self Assessment tax return",
2226
+ "Hiring staff in other countries",
2227
+ "Food safety – your responsibilities",
2228
+ "Business and commercial waste",
2229
+ "Emergency and life-saving equipment on ships",
2230
+ "If you don't pay your tax bill",
2231
+ "Child maintenance",
2232
+ "Understand your Self Assessment tax bill",
2233
+ "Ask your employer to set up a European Works Council",
2234
+ "Food labelling and packaging",
2235
+ "Get advice on environmental issues",
2236
+ "Transport help for older or disabled people",
2237
+ "Complain about the Crown Office and Procurator Fiscal Service (COPFS)",
2238
+ "Register with an NHS dentist",
2239
+ "Report an environmental incident",
2240
+ "Running a landfill site",
2241
+ "Handling an employee's grievance",
2242
+ "Register as an overseas company",
2243
+ "Support and training for carers",
2244
+ "Getting information about your adoption",
2245
+ "Get exporting help and support",
2246
+ "School term and holiday dates",
2247
+ "Maritime safety: weather and navigation",
2248
+ "Develop your business skills",
2249
+ "Claim Housing Benefit",
2250
+ "Seafarer working and living rights",
2251
+ "Implement an Environmental Management System",
2252
+ "Stop being self-employed",
2253
+ "Marketing and advertising",
2254
+ "Report a loan shark",
2255
+ "Closing a limited company",
2256
+ "Environmental taxes, reliefs and schemes for businesses",
2257
+ "Events, training and support for exporters",
2258
+ "Help with money if you're affected by imprisonment",
2259
+ "Report a problem with an animal medicine or microchip",
2260
+ "Set up and run a limited liability partnership (LLP)",
2261
+ "Your limited company's first accounts and Company Tax Return",
2262
+ "Create a sustainable travel plan",
2263
+ "Selling your business: your responsibilities",
2264
+ "Self-employed National Insurance rates",
2265
+ "If you're being evicted – council or housing association tenant",
2266
+ "Visas when you separate or divorce",
2267
+ "Offering credit to consumers",
2268
+ "Help with passports",
2269
+ "Repossession",
2270
+ "Managing wildlife on your land",
2271
+ "Set up a business in the UK",
2272
+ "Help if you're made redundant",
2273
+ "Hiring crew for ships and yachts",
2274
+ "Seafarer medical certificates",
2275
+ "Home Owners' Support Fund",
2276
+ "Scottish Rural Development Programme",
2277
+ "Employee pay",
2278
+ "Accounts management and bookkeeping",
2279
+ "Set up as a sole trader",
2280
+ "Advocacy – someone to speak on your behalf",
2281
+ "Help with benefits",
2282
+ "Marketing your business",
2283
+ "Self Assessment forms and helpsheets",
2284
+ "Help for home owners with mortgage difficulties",
2285
+ "Survivor application forms and \"Help to apply\"",
2286
+ "Fire safety for home owners",
2287
+ "Tenants - public sector and council",
2288
+ "Tenants - private",
2289
+ "Fire safety in new build homes",
2290
+ "EU citizens working in Scotland (visas)",
2291
+ "EU citizens living in Scotland",
2292
+ "Protect your limited company from compulsory liquidation",
2293
+ "Other benefits related to Child Disability Payment",
2294
+ "Get help with applications",
2295
+ "Extra support with costs",
2296
+ "Overview",
2297
+ "School meals",
2298
+ "If the Child Disability Payment changes",
2299
+ "Your benefit is transferring to Social Security Scotland",
2300
+ "You may qualify for the Self-Isolation Support Grant",
2301
+ "Do they have a positive Covid PCR test result?",
2302
+ "You may not qualify for the grant if fully vaccinated",
2303
+ "EU Settlement Scheme (EUSS)",
2304
+ "You may qualify for the grant",
2305
+ "Travel abroad for EU citizens",
2306
+ "Have you tested positive for Covid?",
2307
+ "If you're experiencing financial difficulties as a result of coronavirus",
2308
+ "When they were told to self-isolate by Test and Protect, did you agree they could share details with your local council?",
2309
+ "Income levels for single people",
2310
+ "Take part in survey about Child Disability Payment",
2311
+ "Sign up for Child Disability Payment research interview",
2312
+ "View and prove your immigration status",
2313
+ "Income levels for a couple",
2314
+ "Who can apply",
2315
+ "Child Disability Payment research",
2316
+ "How to apply",
2317
+ "Who has tested positive for Covid?",
2318
+ "You need to book a PCR test to apply",
2319
+ "How it works",
2320
+ "Your application cannot be processed yet",
2321
+ "Will you lose earnings because you need to self-isolate?",
2322
+ "How to apply",
2323
+ "You do not qualify for the grant if they have a negative PCR test result",
2324
+ "If you can't pay your rent",
2325
+ "You may not qualify for the grant",
2326
+ "Has someone you care for tested positive for Covid?",
2327
+ "You do not qualify for the grant yet",
2328
+ "Has Test and Protect told you to self-isolate?",
2329
+ "Consideration for listing",
2330
+ "How to apply",
2331
+ "Get further help with EU citizens rights",
2332
+ "Consideration assessment",
2333
+ "Young Carer Grant paper form",
2334
+ "Apply to be removed from a list",
2335
+ "Children and adults lists",
2336
+ "Overview",
2337
+ "EU citizens who started living in Scotland from 1 January 2021",
2338
+ "Best Start Foods if you have no access to public funds",
2339
+ "Appeal against a listing decision",
2340
+ "Rights of EU citizens living in Scotland",
2341
+ "Check if you're able to get Self-Isolation Support Grant",
2342
+ "Has someone else at home been told to self-isolate?",
2343
+ "Child Winter Heating Allowance research",
2344
+ "Lost, stolen, or damaged under 22's bus passes",
2345
+ "Help with money",
2346
+ "What is the under 22's bus pass",
2347
+ "Young Patients Family Fund",
2348
+ "Update your information",
2349
+ "After you apply for your under 22's bus pass",
2350
+ "Using your under 22's bus pass",
2351
+ "Apply for an under 22's bus pass",
2352
+ "Who does not qualify for the grant",
2353
+ "Covid - support if you're on the Highest Risk List (previously 'the shielding list')",
2354
+ "What you need to apply for an under 22's bus pass",
2355
+ "Get extra support applying for benefits in Scotland",
2356
+ "Work, education and childcare",
2357
+ "Latest Scottish Government advice to people on the Highest Risk List",
2358
+ "How to apply for an under 22's bus pass",
2359
+ "Self-Isolation Support Grant (£500)",
2360
+ "Check if you qualify and how to apply",
2361
+ "What the grant is"]