wagn 1.12.13 → 1.13.0.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (545) hide show
  1. checksums.yaml +5 -13
  2. data/.gitignore +7 -8
  3. data/.rspec +1 -1
  4. data/.simplecov +23 -0
  5. data/.tm_properties +1 -0
  6. data/Gemfile +15 -13
  7. data/Guardfile +34 -0
  8. data/README.rdoc +4 -10
  9. data/VERSION +1 -1
  10. data/app/assets/images/smoothness/animated-overlay.gif +0 -0
  11. data/app/assets/images/smoothness/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  12. data/app/assets/images/smoothness/ui-bg_flat_75_ffffff_40x100.png +0 -0
  13. data/app/assets/images/smoothness/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  14. data/app/assets/images/smoothness/ui-bg_glass_65_ffffff_1x400.png +0 -0
  15. data/app/assets/images/smoothness/ui-bg_glass_75_dadada_1x400.png +0 -0
  16. data/app/assets/images/smoothness/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  17. data/app/assets/images/smoothness/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  18. data/app/assets/images/smoothness/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  19. data/app/assets/images/smoothness/ui-icons_222222_256x240.png +0 -0
  20. data/app/assets/images/smoothness/ui-icons_2e83ff_256x240.png +0 -0
  21. data/app/assets/images/smoothness/ui-icons_454545_256x240.png +0 -0
  22. data/app/assets/images/smoothness/ui-icons_888888_256x240.png +0 -0
  23. data/app/assets/images/smoothness/ui-icons_cd0a0a_256x240.png +0 -0
  24. data/app/assets/javascripts/application.js +9 -8
  25. data/app/assets/javascripts/jquery.ui.autocomplete.html.js +1 -1
  26. data/app/controllers/card_controller.rb +190 -23
  27. data/config/environments/development.rb +17 -12
  28. data/config/initializers/01_init_ruby_extensions.rb +1 -70
  29. data/config/routes.rb +21 -8
  30. data/config/version_cards.txt +1 -1
  31. data/db/bootstrap/card_references.yml +520 -352
  32. data/db/bootstrap/card_revisions.yml +1818 -1887
  33. data/db/bootstrap/cards.yml +2279 -1310
  34. data/db/migrate_cards/20130411191151_renaming_for_menu.rb +0 -5
  35. data/db/migrate_cards/20130411211600_delete_old_related_tab_cards.rb +0 -6
  36. data/db/migrate_cards/20130419215612_import_help_text.rb +0 -7
  37. data/db/migrate_cards/20130823192433_add_style_cards.rb +2 -6
  38. data/db/migrate_cards/20130910183318_move_styles_to_content.rb +0 -5
  39. data/db/migrate_cards/20130920214038_jsonize_tinymce.rb +0 -6
  40. data/db/migrate_cards/20130920291703_update_stylesheets.rb +0 -5
  41. data/db/migrate_cards/20130927191728_account_events.rb +1 -6
  42. data/db/migrate_cards/20131016172445_common_css_patch.rb +0 -6
  43. data/db/migrate_cards/20140110193325_reset_account_request_type.rb +1 -6
  44. data/db/migrate_cards/20140307231621_user_data_to_cards.rb +78 -0
  45. data/db/migrate_cards/20140317035504_account_requests_to_signups.rb +45 -0
  46. data/db/migrate_cards/20140512155840_add_script_cards.rb +85 -0
  47. data/db/migrate_cards/data/1.12_stylesheets/common.scss +1 -1
  48. data/features/autonaming.feature +3 -3
  49. data/features/flexmail.feature +2 -2
  50. data/features/layouts.feature +1 -1
  51. data/features/navbox.feature +17 -0
  52. data/features/notifications.feature +4 -4
  53. data/features/pointer_inputs.feature +2 -2
  54. data/features/presetting_content.feature +1 -1
  55. data/features/reset_password.feature +34 -0
  56. data/features/{pattern_settings.feature → rules.feature} +7 -7
  57. data/features/setup.feature +32 -0
  58. data/features/signup.feature +47 -0
  59. data/features/step_definitions/email_steps.rb +24 -1
  60. data/features/step_definitions/wagn_steps.rb +66 -31
  61. data/features/step_definitions/web_steps.rb +1 -0
  62. data/features/{content_settings.feature → structure.feature} +3 -6
  63. data/features/support/env.rb +3 -0
  64. data/features/support/paths.rb +2 -2
  65. data/features/support/{wag_env.rb → wagn_env.rb} +1 -1
  66. data/features/table_of_contents.feature +1 -1
  67. data/features/update_includers.feature +3 -3
  68. data/features/watch.feature +2 -2
  69. data/lib/card.rb +12 -10
  70. data/lib/{active_record/quoting_and_matching.rb → card/active_record_ext.rb} +25 -20
  71. data/lib/card/auth.rb +205 -0
  72. data/lib/card/chunk.rb +70 -69
  73. data/lib/card/content.rb +1 -1
  74. data/lib/card/core_ext.rb +74 -0
  75. data/lib/card/env.rb +66 -0
  76. data/lib/card/flexmail.rb +43 -37
  77. data/lib/card/format.rb +42 -29
  78. data/lib/{generators → card/generators}/card_migration/USAGE +0 -0
  79. data/lib/{generators → card/generators}/card_migration/card_migration_generator.rb +0 -0
  80. data/lib/{generators → card/generators}/card_migration/templates/card_migration.erb +0 -6
  81. data/lib/{generators → card/generators}/format/USAGE +0 -0
  82. data/lib/{generators → card/generators}/format/format_generator.rb +0 -0
  83. data/lib/{generators → card/generators}/format/templates/format_spec_template.erb +1 -2
  84. data/lib/{generators → card/generators}/format/templates/format_template.erb +0 -0
  85. data/lib/{generators → card/generators}/set/USAGE +0 -0
  86. data/lib/{generators → card/generators}/set/set_generator.rb +0 -0
  87. data/lib/{generators → card/generators}/set/templates/set_spec_template.erb +1 -2
  88. data/lib/card/generators/set/templates/set_template.erb +1 -0
  89. data/lib/card/loader.rb +145 -0
  90. data/lib/card/mailer.rb +117 -0
  91. data/{app/views → lib/card}/mailer/change_notice.html.erb +2 -2
  92. data/lib/card/mailer/confirmation_email.html.erb +8 -0
  93. data/{app/views → lib/card}/mailer/flexmail.html.erb +0 -0
  94. data/lib/card/mailer/password_reset.html.erb +9 -0
  95. data/{app/views → lib/card}/mailer/signup_alert.html.erb +0 -0
  96. data/lib/card/name.rb +2 -3
  97. data/lib/card/query.rb +0 -3
  98. data/lib/card/query/card_spec.rb +4 -4
  99. data/lib/card/revision.rb +34 -32
  100. data/lib/card/set.rb +204 -180
  101. data/lib/card/set_pattern.rb +126 -101
  102. data/lib/wagn/all.rb +1 -8
  103. data/lib/wagn/application.rb +14 -7
  104. data/lib/wagn/commands/application.rb +1 -1
  105. data/lib/{generators → wagn/generators}/wagn/USAGE +0 -0
  106. data/lib/{generators → wagn/generators}/wagn/templates/Gemfile +0 -0
  107. data/lib/{generators → wagn/generators}/wagn/templates/Rakefile +0 -0
  108. data/lib/{generators → wagn/generators}/wagn/templates/config.ru +0 -0
  109. data/lib/{generators → wagn/generators}/wagn/templates/config/application.rb +0 -0
  110. data/lib/{generators → wagn/generators}/wagn/templates/config/boot.rb +0 -0
  111. data/lib/{generators → wagn/generators}/wagn/templates/config/database.yml +0 -0
  112. data/lib/{generators → wagn/generators}/wagn/templates/config/databases/frontbase.yml +0 -0
  113. data/lib/{generators → wagn/generators}/wagn/templates/config/databases/ibm_db.yml +0 -0
  114. data/lib/{generators → wagn/generators}/wagn/templates/config/databases/jdbc.yml +0 -0
  115. data/lib/{generators → wagn/generators}/wagn/templates/config/databases/jdbcmysql.yml +0 -0
  116. data/lib/{generators → wagn/generators}/wagn/templates/config/databases/jdbcpostgresql.yml +0 -0
  117. data/lib/{generators → wagn/generators}/wagn/templates/config/databases/jdbcsqlite3.yml +0 -0
  118. data/lib/{generators → wagn/generators}/wagn/templates/config/databases/mysql.yml +0 -0
  119. data/lib/{generators → wagn/generators}/wagn/templates/config/databases/oracle.yml +0 -0
  120. data/lib/{generators → wagn/generators}/wagn/templates/config/databases/postgresql.yml +0 -0
  121. data/lib/{generators → wagn/generators}/wagn/templates/config/databases/sqlite3.yml +0 -0
  122. data/lib/{generators → wagn/generators}/wagn/templates/config/environment.rb +0 -0
  123. data/lib/{generators → wagn/generators}/wagn/templates/gitignore +0 -0
  124. data/lib/wagn/generators/wagn/templates/public/files/htaccess +9 -0
  125. data/{public → lib/wagn/generators/wagn/templates/public}/robots.txt +0 -0
  126. data/lib/{generators → wagn/generators}/wagn/templates/script/wagn +0 -0
  127. data/lib/{generators → wagn/generators}/wagn/wagn_generator.rb +12 -0
  128. data/lib/wagn/location.rb +7 -11
  129. data/lib/wagn/migration_helper.rb +4 -1
  130. data/{app/mailers → lib/wagn/tasks}/.gitkeep +0 -0
  131. data/lib/{tasks → wagn/tasks}/cucumber.rake +0 -0
  132. data/lib/{tasks → wagn/tasks}/db.rake +0 -0
  133. data/lib/{tasks → wagn/tasks}/test.rake +5 -2
  134. data/lib/{tasks → wagn/tasks}/wagn.rake +29 -12
  135. data/mods/{standard → core}/chunks/include.rb +2 -0
  136. data/mods/{standard → core}/chunks/link.rb +3 -0
  137. data/mods/core/formats/html_format.rb +27 -35
  138. data/mods/core/sets/all/active_card.rb +15 -3
  139. data/mods/core/sets/all/attribute_tracking.rb +1 -1
  140. data/mods/core/sets/all/collection.rb +4 -5
  141. data/mods/core/sets/all/fetch.rb +98 -80
  142. data/mods/core/sets/all/initialize.rb +2 -0
  143. data/mods/core/sets/all/name.rb +13 -12
  144. data/mods/core/sets/all/pattern.rb +0 -9
  145. data/mods/core/sets/all/permissions.rb +56 -31
  146. data/mods/core/sets/all/phases.rb +63 -84
  147. data/mods/core/sets/all/references.rb +0 -1
  148. data/mods/core/sets/all/rules.rb +3 -4
  149. data/mods/core/sets/all/templating.rb +2 -3
  150. data/mods/core/sets/all/tracked_attributes.rb +26 -9
  151. data/mods/core/sets/all/trash.rb +1 -2
  152. data/mods/core/sets/all/type.rb +6 -1
  153. data/mods/core/sets/all/utils.rb +2 -3
  154. data/mods/standard/files/103/icon-6566.ico +0 -0
  155. data/mods/standard/files/103/large-6566.ico +0 -0
  156. data/mods/standard/files/103/medium-6566.ico +0 -0
  157. data/{public/favicon.ico → mods/standard/files/103/original-6566.ico} +0 -0
  158. data/mods/standard/files/103/small-6566.ico +0 -0
  159. data/mods/standard/files/79/icon-6556.png +0 -0
  160. data/mods/standard/files/79/large-6556.png +0 -0
  161. data/mods/standard/files/79/medium-6556.png +0 -0
  162. data/mods/standard/files/79/original-6556.png +0 -0
  163. data/mods/standard/files/79/small-6556.png +0 -0
  164. data/mods/standard/files/790/icon-6419.png +0 -0
  165. data/mods/standard/files/790/large-6419.png +0 -0
  166. data/mods/standard/files/790/medium-6419.png +0 -0
  167. data/mods/standard/files/790/original-6419.png +0 -0
  168. data/mods/standard/files/790/small-6419.png +0 -0
  169. data/mods/standard/lib/card/machine.rb +152 -0
  170. data/mods/standard/lib/card/machine_input.rb +40 -0
  171. data/{public/assets → mods/standard/lib/javascript}/html5shiv-printshiv.js +0 -0
  172. data/mods/standard/lib/javascript/jquery-ui.js +14913 -0
  173. data/mods/standard/lib/javascript/jquery.autosize.js +255 -0
  174. data/mods/standard/lib/javascript/jquery.fileupload.js +1112 -0
  175. data/mods/standard/lib/javascript/jquery.iframe-transport.js +157 -0
  176. data/mods/standard/lib/javascript/jquery.js +9473 -0
  177. data/mods/standard/lib/javascript/jquery.ui.autocomplete.html.js +41 -0
  178. data/mods/standard/lib/javascript/jquery_ujs.js +429 -0
  179. data/mods/standard/lib/javascript/jquerymobile.js +8800 -0
  180. data/mods/standard/lib/javascript/tinymce.js +13 -0
  181. data/{app/assets/javascripts → mods/standard/lib/javascript}/wagn.js.coffee +10 -0
  182. data/{app/assets/javascripts → mods/standard/lib/javascript}/wagn_menu.js +3 -12
  183. data/{app/assets/javascripts → mods/standard/lib/javascript}/wagn_mod.js.coffee +18 -11
  184. data/mods/standard/lib/stylesheets/functional.scss +13 -9
  185. data/mods/standard/lib/stylesheets/jquery-ui-smoothness.css +922 -218
  186. data/mods/standard/lib/stylesheets/standard.scss +2 -2
  187. data/mods/standard/sets/all/account.rb +18 -205
  188. data/mods/standard/sets/all/all_css.rb +2 -3
  189. data/mods/standard/sets/all/all_csv.rb +0 -1
  190. data/mods/standard/sets/all/attach.rb +0 -1
  191. data/mods/standard/sets/all/base.rb +9 -7
  192. data/mods/standard/sets/all/comment.rb +5 -5
  193. data/mods/standard/sets/all/email_html.rb +0 -2
  194. data/mods/standard/sets/all/event_viz.rb +62 -0
  195. data/mods/standard/sets/all/file.rb +0 -1
  196. data/mods/standard/sets/all/follow.rb +13 -11
  197. data/mods/standard/sets/all/history.rb +2 -7
  198. data/mods/standard/sets/all/json.rb +6 -11
  199. data/mods/standard/sets/all/rich_html.rb +68 -52
  200. data/mods/standard/sets/all/rss.rb +4 -5
  201. data/mods/standard/sets/all/text.rb +0 -1
  202. data/mods/standard/sets/right/account.rb +100 -1
  203. data/mods/standard/sets/right/create.rb +8 -2
  204. data/mods/standard/sets/right/delete.rb +2 -0
  205. data/mods/standard/sets/right/email.rb +50 -2
  206. data/mods/standard/sets/right/machine_output.rb +12 -0
  207. data/mods/standard/sets/right/password.rb +39 -0
  208. data/mods/standard/sets/right/read.rb +2 -0
  209. data/mods/standard/sets/right/salt.rb +2 -1
  210. data/mods/standard/sets/right/script.rb +10 -0
  211. data/mods/standard/sets/right/stats.rb +35 -0
  212. data/mods/standard/sets/right/status.rb +9 -0
  213. data/mods/standard/sets/right/style.rb +7 -53
  214. data/mods/standard/sets/right/{crypted_password.rb → token.rb} +2 -1
  215. data/mods/standard/sets/right/update.rb +2 -0
  216. data/mods/standard/sets/rstar/rules.rb +7 -3
  217. data/mods/standard/sets/self/account_links.rb +16 -23
  218. data/mods/standard/sets/self/alerts.rb +0 -1
  219. data/mods/standard/sets/self/all.rb +21 -0
  220. data/mods/standard/sets/self/foot.rb +0 -1
  221. data/mods/standard/sets/self/head.rb +21 -24
  222. data/mods/standard/sets/self/navbox.rb +0 -1
  223. data/mods/standard/sets/self/now.rb +0 -1
  224. data/mods/standard/sets/self/recent.rb +38 -35
  225. data/mods/standard/sets/self/script_card_menu.rb +8 -0
  226. data/mods/standard/sets/self/script_html5shiv_printshiv.rb +7 -0
  227. data/mods/standard/sets/self/script_jquery.rb +8 -0
  228. data/mods/standard/sets/self/script_jquery_helper.rb +13 -0
  229. data/mods/standard/sets/self/script_slot.rb +9 -0
  230. data/mods/standard/sets/self/script_tinymce.rb +8 -0
  231. data/mods/standard/sets/self/search.rb +0 -1
  232. data/mods/standard/sets/self/signin.rb +111 -0
  233. data/mods/standard/sets/self/stats.rb +91 -0
  234. data/mods/standard/sets/self/style_functional.rb +1 -1
  235. data/mods/standard/sets/self/style_jquery_ui_smoothness.rb +1 -1
  236. data/mods/standard/sets/self/style_standard.rb +1 -1
  237. data/mods/standard/sets/type/basic.rb +15 -14
  238. data/mods/standard/sets/type/cardtype.rb +2 -3
  239. data/mods/standard/sets/type/coffee_script.rb +46 -0
  240. data/mods/standard/sets/type/css.rb +16 -5
  241. data/mods/standard/sets/type/date.rb +0 -1
  242. data/mods/standard/sets/type/file.rb +0 -2
  243. data/mods/standard/sets/type/html.rb +0 -1
  244. data/mods/standard/sets/type/image.rb +1 -2
  245. data/mods/standard/sets/type/java_script.rb +32 -0
  246. data/mods/standard/sets/type/layout_type.rb +1 -1
  247. data/mods/standard/sets/type/number.rb +0 -1
  248. data/mods/standard/sets/type/pointer.rb +13 -8
  249. data/mods/standard/sets/type/scss.rb +17 -3
  250. data/mods/standard/sets/type/search_type.rb +36 -34
  251. data/mods/standard/sets/type/set.rb +1 -5
  252. data/mods/standard/sets/type/setting.rb +1 -2
  253. data/mods/standard/sets/type/signup.rb +92 -0
  254. data/mods/standard/sets/type/skin.rb +4 -5
  255. data/mods/standard/sets/type/toggle.rb +1 -1
  256. data/mods/standard/sets/type/user.rb +51 -4
  257. data/public/{404.html → assets/jasmine/404.html} +0 -0
  258. data/public/{500.html → assets/jasmine/500.html} +0 -0
  259. data/public/{jasmine → assets/jasmine}/card_form.html +0 -0
  260. data/public/assets/jquery-ui/animated-overlay-602eee4c79a4796b02bb6442948c9e28.gif +0 -0
  261. data/public/assets/jquery-ui/animated-overlay.gif +0 -0
  262. data/public/assets/{images → jquery-ui}/ui-bg_flat_0_aaaaaa_40x100-7d1197a52442bc56fcad60d0390f4b32.png +0 -0
  263. data/{app/assets/images/images → public/assets/jquery-ui}/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  264. data/public/assets/{images → jquery-ui}/ui-bg_flat_75_ffffff_40x100-3c4b974defa5e8bdaf8a603034c4435e.png +0 -0
  265. data/{app/assets/images/images → public/assets/jquery-ui}/ui-bg_flat_75_ffffff_40x100.png +0 -0
  266. data/public/assets/{images → jquery-ui}/ui-bg_glass_55_fbf9ee_1x400-38c2dea4d046fd3f56cc3996e2e6018b.png +0 -0
  267. data/{app/assets/images/images → public/assets/jquery-ui}/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  268. data/public/assets/{images → jquery-ui}/ui-bg_glass_65_ffffff_1x400-ddb7ee7527bff283054406c50e597e1e.png +0 -0
  269. data/{app/assets/images/images → public/assets/jquery-ui}/ui-bg_glass_65_ffffff_1x400.png +0 -0
  270. data/public/assets/{images → jquery-ui}/ui-bg_glass_75_dadada_1x400-d618461418b1ebc6b7996979f4c3dc92.png +0 -0
  271. data/{app/assets/images/images → public/assets/jquery-ui}/ui-bg_glass_75_dadada_1x400.png +0 -0
  272. data/public/assets/{images → jquery-ui}/ui-bg_glass_75_e6e6e6_1x400-48d8d545f708e5870a965ce9df8b0e38.png +0 -0
  273. data/{app/assets/images/images → public/assets/jquery-ui}/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  274. data/public/assets/{images → jquery-ui}/ui-bg_glass_95_fef1ec_1x400-f3526b8f82249928f0a6baf044204b15.png +0 -0
  275. data/{app/assets/images/images → public/assets/jquery-ui}/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  276. data/public/assets/{images → jquery-ui}/ui-bg_highlight-soft_75_cccccc_1x100-cec5c56503b8480f834c3fce35dae8df.png +0 -0
  277. data/{app/assets/images/images → public/assets/jquery-ui}/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  278. data/{app/assets/images/images/ui-icons_2e83ff_256x240.png → public/assets/jquery-ui/ui-icons_222222_256x240-b1eb177a51ea7925448318a26d988842.png} +0 -0
  279. data/{app/assets/images/images → public/assets/jquery-ui}/ui-icons_222222_256x240.png +0 -0
  280. data/{app/assets/images/images/ui-icons_454545_256x240.png → public/assets/jquery-ui/ui-icons_2e83ff_256x240-49c2da9cac2dc565265586f716491298.png} +0 -0
  281. data/public/assets/{images → jquery-ui}/ui-icons_2e83ff_256x240.png +0 -0
  282. data/{app/assets/images/images/ui-icons_888888_256x240.png → public/assets/jquery-ui/ui-icons_454545_256x240-68b2fe3268f7604fb0767a0372e2db85.png} +0 -0
  283. data/public/assets/{images → jquery-ui}/ui-icons_454545_256x240.png +0 -0
  284. data/public/assets/jquery-ui/ui-icons_888888_256x240-8040cfcc88792375b7788feb59189eef.png +0 -0
  285. data/public/assets/{images → jquery-ui}/ui-icons_888888_256x240.png +0 -0
  286. data/public/assets/jquery-ui/ui-icons_cd0a0a_256x240-d4a62216bf6f0cd0071149890763a5ff.png +0 -0
  287. data/{app/assets/images/images → public/assets/jquery-ui}/ui-icons_cd0a0a_256x240.png +0 -0
  288. data/public/assets/jquery.min-388372ef65cc311f6a3df4a6ceac8d22.map +1 -0
  289. data/public/assets/jquery.min.map +1 -1
  290. data/public/assets/manifest.yml +61 -31
  291. data/public/assets/smoothness/animated-overlay-602eee4c79a4796b02bb6442948c9e28.gif +0 -0
  292. data/public/assets/smoothness/animated-overlay.gif +0 -0
  293. data/public/assets/smoothness/ui-bg_flat_0_aaaaaa_40x100-31613497e63975a54520b7065b125dea.png +0 -0
  294. data/public/assets/smoothness/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  295. data/public/assets/smoothness/ui-bg_flat_75_ffffff_40x100-f4b0e20e6f4c83b9f52cf062ed0f5284.png +0 -0
  296. data/public/assets/smoothness/ui-bg_flat_75_ffffff_40x100.png +0 -0
  297. data/public/assets/smoothness/ui-bg_glass_55_fbf9ee_1x400-e3606d6e7ad67486ffdc83edca64d4c5.png +0 -0
  298. data/public/assets/smoothness/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  299. data/public/assets/smoothness/ui-bg_glass_65_ffffff_1x400-dcec96932b90ff4cd4fea91284a6e9a3.png +0 -0
  300. data/public/assets/smoothness/ui-bg_glass_65_ffffff_1x400.png +0 -0
  301. data/public/assets/smoothness/ui-bg_glass_75_dadada_1x400-a2310f533684ede4f1216d7299b5cd58.png +0 -0
  302. data/public/assets/smoothness/ui-bg_glass_75_dadada_1x400.png +0 -0
  303. data/public/assets/smoothness/ui-bg_glass_75_e6e6e6_1x400-d872f3a0a02dea609e4b0321520236d9.png +0 -0
  304. data/public/assets/smoothness/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  305. data/public/assets/smoothness/ui-bg_glass_95_fef1ec_1x400-9ccaed8a65a3c285c16a73bdf03a69b3.png +0 -0
  306. data/public/assets/smoothness/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  307. data/public/assets/smoothness/ui-bg_highlight-soft_75_cccccc_1x100-2ef1d227b5c0f33ce3c5e45afa953991.png +0 -0
  308. data/public/assets/smoothness/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  309. data/public/assets/smoothness/ui-icons_222222_256x240-0675a996f0bdc78890f7b312c543b06a.png +0 -0
  310. data/public/assets/smoothness/ui-icons_222222_256x240.png +0 -0
  311. data/public/assets/smoothness/ui-icons_2e83ff_256x240-6aea736f81a417977efd77f183519a54.png +0 -0
  312. data/public/assets/smoothness/ui-icons_2e83ff_256x240.png +0 -0
  313. data/public/assets/smoothness/ui-icons_454545_256x240-6f4361f45745fb0cd7b0cc2851dc1cc3.png +0 -0
  314. data/public/assets/smoothness/ui-icons_454545_256x240.png +0 -0
  315. data/public/assets/smoothness/ui-icons_888888_256x240-8f6818bd8631ba3489de718e26c7e6cf.png +0 -0
  316. data/public/assets/smoothness/ui-icons_888888_256x240.png +0 -0
  317. data/public/assets/smoothness/ui-icons_cd0a0a_256x240-2969ddba6d0a9c62603a4aa85a363cda.png +0 -0
  318. data/public/assets/smoothness/ui-icons_cd0a0a_256x240.png +0 -0
  319. data/spec/controllers/card_controller_spec.rb +77 -61
  320. data/spec/controllers/location_spec.rb +3 -2
  321. data/spec/lib/card/auth_spec.rb +17 -0
  322. data/spec/lib/card/chunk_spec.rb +0 -1
  323. data/spec/lib/card/codename_spec.rb +12 -18
  324. data/spec/lib/card/content_spec.rb +0 -1
  325. data/spec/lib/card/diff_spec.rb +0 -1
  326. data/spec/lib/card/flexmail_spec.rb +19 -20
  327. data/spec/lib/card/format_spec.rb +0 -169
  328. data/spec/lib/{wagn → card}/loader_spec.rb +1 -2
  329. data/spec/lib/card/name_spec.rb +3 -5
  330. data/spec/lib/card/query_spec.rb +5 -8
  331. data/spec/{models → lib}/card/reference_spec.rb +6 -7
  332. data/spec/lib/card/revision_spec.rb +30 -0
  333. data/spec/lib/card/set_pattern_spec.rb +0 -1
  334. data/spec/lib/card/set_spec.rb +9 -9
  335. data/spec/lib/wagn/cache_spec.rb +0 -1
  336. data/spec/mailers/mailer_spec.rb +4 -9
  337. data/spec/models/card/cardtype_spec.rb +12 -14
  338. data/spec/models/card/create_spec.rb +3 -4
  339. data/spec/models/card/trash_spec.rb +24 -23
  340. data/spec/models/card/type_transition_spec.rb +3 -4
  341. data/spec/models/card/validation_spec.rb +0 -1
  342. data/spec/models/card_spec.rb +10 -11
  343. data/spec/mods/core/chunks/literal_spec.rb +0 -1
  344. data/spec/mods/core/chunks/uri_spec.rb +0 -1
  345. data/spec/mods/core/formats/data_format_spec.rb +0 -1
  346. data/spec/mods/core/formats/html_format_spec.rb +17 -18
  347. data/spec/mods/core/formats/text_format_spec.rb +0 -1
  348. data/spec/mods/core/sets/all/active_card_spec.rb +1 -2
  349. data/spec/mods/core/sets/all/attribute_tracking_spec.rb +1 -2
  350. data/spec/mods/core/sets/all/collection_spec.rb +1 -5
  351. data/spec/mods/core/sets/all/content_spec.rb +0 -1
  352. data/spec/mods/core/sets/all/fetch_spec.rb +7 -10
  353. data/spec/mods/core/sets/all/initialize_spec.rb +0 -1
  354. data/spec/mods/core/sets/all/name_spec.rb +34 -3
  355. data/spec/mods/core/sets/all/pattern_spec.rb +6 -9
  356. data/spec/mods/core/sets/all/permissions_spec.rb +61 -62
  357. data/spec/mods/core/sets/all/phases_spec.rb +1 -2
  358. data/spec/mods/core/sets/all/references_spec.rb +0 -1
  359. data/spec/mods/core/sets/all/rules2_spec.rb +31 -31
  360. data/spec/mods/core/sets/all/rules_spec.rb +3 -4
  361. data/spec/mods/core/sets/all/states_spec.rb +1 -2
  362. data/spec/mods/core/sets/all/templating_spec.rb +11 -12
  363. data/spec/mods/core/sets/all/tracked_attributes_spec.rb +18 -8
  364. data/spec/mods/core/sets/all/trash_spec.rb +1 -2
  365. data/spec/mods/core/sets/all/type_spec.rb +6 -5
  366. data/spec/mods/core/sets/all/utils_spec.rb +1 -2
  367. data/spec/mods/standard/chunks/include_spec.rb +14 -15
  368. data/spec/mods/standard/chunks/link_spec.rb +0 -1
  369. data/spec/mods/standard/formats/css_format_spec.rb +1 -2
  370. data/spec/mods/standard/formats/csv_format_spec.rb +0 -1
  371. data/spec/mods/standard/formats/email_html_format_spec.rb +1 -2
  372. data/spec/mods/standard/formats/file_format_spec.rb +0 -1
  373. data/spec/mods/standard/formats/js_format_spec.rb +3 -0
  374. data/spec/mods/standard/formats/json_format_spec.rb +0 -1
  375. data/spec/mods/standard/formats/rss_format_spec.rb +1 -2
  376. data/spec/mods/standard/formats/xml_format_spec.rb +0 -1
  377. data/spec/mods/standard/lib/machine_input_spec.rb +48 -0
  378. data/spec/mods/standard/lib/machine_spec.rb +110 -0
  379. data/spec/mods/standard/sets/all/account_spec.rb +50 -30
  380. data/spec/mods/standard/sets/all/all_css_spec.rb +0 -1
  381. data/spec/mods/standard/sets/all/all_csv_spec.rb +0 -1
  382. data/spec/mods/standard/sets/all/attach_spec.rb +0 -1
  383. data/spec/mods/standard/sets/all/base_spec.rb +5 -6
  384. data/spec/mods/standard/sets/all/comment_spec.rb +5 -0
  385. data/spec/mods/standard/sets/all/email_html_spec.rb +2 -3
  386. data/spec/mods/standard/sets/all/event_viz_spec.rb +7 -0
  387. data/spec/mods/standard/sets/all/file_spec.rb +0 -1
  388. data/spec/mods/standard/sets/all/flexmail_spec.rb +0 -1
  389. data/spec/mods/standard/sets/all/follow_spec.rb +10 -11
  390. data/spec/mods/standard/sets/all/history_spec.rb +10 -0
  391. data/spec/mods/standard/sets/all/json_spec.rb +5 -6
  392. data/spec/mods/standard/sets/all/rich_html_spec.rb +16 -13
  393. data/spec/mods/standard/sets/all/rss_spec.rb +4 -2
  394. data/spec/mods/standard/sets/all/text_spec.rb +1 -2
  395. data/spec/mods/standard/sets/right/account_spec.rb +86 -2
  396. data/spec/mods/standard/sets/right/add_help_spec.rb +0 -1
  397. data/spec/mods/standard/sets/right/comment_spec.rb +37 -2
  398. data/spec/mods/standard/sets/right/create_spec.rb +6 -2
  399. data/spec/mods/standard/sets/right/default_spec.rb +0 -1
  400. data/spec/mods/standard/sets/right/delete_spec.rb +0 -1
  401. data/spec/mods/standard/sets/right/email_spec.rb +43 -15
  402. data/spec/mods/standard/sets/right/help_spec.rb +0 -1
  403. data/spec/mods/standard/sets/right/machine_output_spec.rb +20 -0
  404. data/spec/mods/standard/sets/right/password_spec.rb +45 -0
  405. data/spec/mods/standard/sets/right/read_spec.rb +0 -1
  406. data/spec/mods/standard/sets/right/salt_spec.rb +0 -1
  407. data/spec/mods/standard/sets/right/script_spec.rb +20 -0
  408. data/spec/mods/standard/sets/right/stats_spec.rb +13 -0
  409. data/spec/mods/standard/sets/right/status_spec.rb +5 -0
  410. data/spec/mods/standard/sets/right/structure_spec.rb +2 -3
  411. data/spec/mods/standard/sets/right/style_spec.rb +19 -2
  412. data/spec/mods/standard/sets/right/token_spec.rb +5 -0
  413. data/spec/mods/standard/sets/right/update_spec.rb +0 -1
  414. data/spec/mods/standard/sets/right/when_created_spec.rb +0 -1
  415. data/spec/mods/standard/sets/right/when_last_edited_spec.rb +0 -1
  416. data/spec/mods/standard/sets/rstar/rules_spec.rb +3 -4
  417. data/spec/mods/standard/sets/self/account_links_spec.rb +0 -1
  418. data/spec/mods/standard/sets/self/alerts_spec.rb +0 -1
  419. data/spec/mods/standard/sets/self/all_spec.rb +47 -0
  420. data/spec/mods/standard/sets/self/foot_spec.rb +0 -1
  421. data/spec/mods/standard/sets/self/head_spec.rb +0 -1
  422. data/spec/mods/standard/sets/self/navbox_spec.rb +0 -1
  423. data/spec/mods/standard/sets/self/now_spec.rb +0 -1
  424. data/spec/mods/standard/sets/self/recent_spec.rb +1 -2
  425. data/spec/mods/standard/sets/self/search_spec.rb +1 -2
  426. data/spec/mods/standard/sets/self/signin_spec.rb +73 -0
  427. data/spec/mods/standard/sets/self/stats_spec.rb +12 -0
  428. data/spec/mods/standard/sets/self/style_functional_spec.rb +1 -2
  429. data/spec/mods/standard/sets/self/style_jquery_ui_smoothness_spec.rb +1 -2
  430. data/spec/mods/standard/sets/self/style_standard_spec.rb +1 -2
  431. data/spec/mods/standard/sets/self/version_spec.rb +0 -1
  432. data/spec/mods/standard/sets/type/basic_spec.rb +1 -2
  433. data/spec/mods/standard/sets/type/cardtype_spec.rb +1 -2
  434. data/spec/mods/standard/sets/type/coffeescript_spec.rb +28 -0
  435. data/spec/mods/standard/sets/type/css_spec.rb +31 -4
  436. data/spec/mods/standard/sets/type/date_spec.rb +0 -1
  437. data/spec/mods/standard/sets/type/file_spec.rb +1 -2
  438. data/spec/mods/standard/sets/type/html_spec.rb +3 -4
  439. data/spec/mods/standard/sets/type/image_spec.rb +1 -2
  440. data/spec/mods/standard/sets/type/javascript_spec.rb +28 -0
  441. data/spec/mods/standard/sets/type/layout_type_spec.rb +0 -1
  442. data/spec/mods/standard/sets/type/number_spec.rb +0 -1
  443. data/spec/mods/standard/sets/type/phrase_spec.rb +0 -1
  444. data/spec/mods/standard/sets/type/plain_text_spec.rb +0 -1
  445. data/spec/mods/standard/sets/type/pointer_spec.rb +1 -2
  446. data/spec/mods/standard/sets/type/scss_spec.rb +47 -2
  447. data/spec/mods/standard/sets/type/search_type_spec.rb +14 -3
  448. data/spec/mods/standard/sets/type/set_spec.rb +0 -1
  449. data/spec/mods/standard/sets/type/setting_spec.rb +6 -2
  450. data/spec/mods/standard/sets/type/signup_spec.rb +93 -0
  451. data/spec/mods/standard/sets/type/skin_spec.rb +23 -2
  452. data/spec/mods/standard/sets/type/toggle_spec.rb +0 -1
  453. data/spec/mods/standard/sets/type/user_spec.rb +1 -2
  454. data/{lib/wagn → spec}/spec_helper.rb +59 -14
  455. data/test/1.10.0-data-dump.sql +327 -0
  456. data/test/fixtures/card_references.yml +777 -581
  457. data/test/fixtures/card_revisions.yml +2737 -2488
  458. data/test/fixtures/cards.yml +4037 -2184
  459. data/test/performance/card_create_test.rb +1 -1
  460. data/test/performance/render_test.rb +1 -1
  461. data/test/seed.rb +36 -63
  462. data/test/test_helper.rb +1 -1
  463. data/wagn.gemspec +9 -9
  464. metadata +257 -237
  465. data/app/assets/javascripts/html5shiv-printshiv.js +0 -499
  466. data/app/controllers/account_controller.rb +0 -61
  467. data/app/controllers/admin_controller.rb +0 -124
  468. data/app/controllers/stub_card_controller.rb +0 -9
  469. data/app/controllers/wagn_controller.rb +0 -165
  470. data/app/mailers/mailer.rb +0 -109
  471. data/app/models/.gitkeep +0 -0
  472. data/app/models/account.rb +0 -198
  473. data/app/models/user.rb +0 -123
  474. data/app/views/mailer/account_info.text.erb +0 -17
  475. data/config/initializers/backtrace_silencers.rb +0 -8
  476. data/config/initializers/schema_views.rb +0 -59
  477. data/config/initializers/wrap_parameters.rb +0 -15
  478. data/config/samples/database.yml.erb +0 -34
  479. data/db/bootstrap/users.yml +0 -29
  480. data/features/account_requests.feature +0 -22
  481. data/features/google_maps.feature +0 -31
  482. data/features/hello_wagn.feature +0 -31
  483. data/features/step_definitions/notification_steps.rb +0 -23
  484. data/features/templates.feature +0 -30
  485. data/features/virtual_cards.feature +0 -11
  486. data/lib/active_record/foreign_keys.rb +0 -80
  487. data/lib/card/constant.rb +0 -20
  488. data/lib/generators/set/templates/set_template.erb +0 -1
  489. data/lib/tasks/.gitkeep +0 -0
  490. data/lib/wagn/authenticated_system.rb +0 -38
  491. data/lib/wagn/env.rb +0 -42
  492. data/lib/wagn/loader.rb +0 -135
  493. data/mods/standard/formats/kml_format.rb +0 -6
  494. data/mods/standard/lib/google_maps_addon.rb +0 -30
  495. data/mods/standard/sets/all/admin.rb +0 -53
  496. data/mods/standard/sets/all/geocode.rb +0 -16
  497. data/mods/standard/sets/all/kml.rb +0 -49
  498. data/mods/standard/sets/type/account_request.rb +0 -74
  499. data/mods/standard/sets/type/ruby_and_script.rb +0 -31
  500. data/public/assets/application-058913c45d4f3262667bad443a03eb45.js +0 -144
  501. data/public/assets/application-058913c45d4f3262667bad443a03eb45.js.gz +0 -0
  502. data/public/assets/application.js +0 -144
  503. data/public/assets/application.js.gz +0 -0
  504. data/public/assets/html5shiv-printshiv-ad36fc7219f4aeaa275f9a7fe2383413.js +0 -1
  505. data/public/assets/html5shiv-printshiv-ad36fc7219f4aeaa275f9a7fe2383413.js.gz +0 -0
  506. data/public/assets/html5shiv-printshiv.js.gz +0 -0
  507. data/public/assets/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  508. data/public/assets/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  509. data/public/assets/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  510. data/public/assets/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  511. data/public/assets/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  512. data/public/assets/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  513. data/public/assets/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  514. data/public/assets/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  515. data/public/assets/images/ui-icons_222222_256x240-66e635a2f90b9f90675d402617630b24.png +0 -0
  516. data/public/assets/images/ui-icons_222222_256x240.png +0 -0
  517. data/public/assets/images/ui-icons_2e83ff_256x240-2ea4c160a75c1992daa2eeac86255b99.png +0 -0
  518. data/public/assets/images/ui-icons_454545_256x240-5c7f12676bcead9cb2d4cb8f23f16e95.png +0 -0
  519. data/public/assets/images/ui-icons_888888_256x240-95fd3047e1f7325d995a21c729b04125.png +0 -0
  520. data/public/assets/images/ui-icons_cd0a0a_256x240-c0c1ec6a8bcf48fec40303e975a4dfa6.png +0 -0
  521. data/public/assets/images/ui-icons_cd0a0a_256x240.png +0 -0
  522. data/public/assets/jquery.min-8b58c0fbf303b938d8e749262f7e50dd.map +0 -1
  523. data/public/assets/tinymce-22b5a139d9ff7df7643afae9ce205508.js +0 -13
  524. data/public/assets/tinymce-22b5a139d9ff7df7643afae9ce205508.js.gz +0 -0
  525. data/public/assets/tinymce.js +0 -13
  526. data/public/assets/tinymce.js.gz +0 -0
  527. data/spec/controllers/account_controller_spec.rb +0 -42
  528. data/spec/controllers/admin_controller_spec.rb +0 -23
  529. data/spec/controllers/captcha_spec.rb +0 -103
  530. data/spec/controllers/sets_spec.rb +0 -97
  531. data/spec/controllers/wagn_controller_spec.rb +0 -5
  532. data/spec/mailers/account_spec.rb +0 -66
  533. data/spec/models/account_spec.rb +0 -19
  534. data/spec/models/card/comment_spec.rb +0 -38
  535. data/spec/models/card/revision_spec.rb +0 -58
  536. data/spec/models/user_spec.rb +0 -95
  537. data/spec/mods/standard/formats/kml_format_spec.rb +0 -6
  538. data/spec/mods/standard/sets/all/admin_spec.rb +0 -6
  539. data/spec/mods/standard/sets/all/geocode_spec.rb +0 -37
  540. data/spec/mods/standard/sets/all/kml_spec.rb +0 -6
  541. data/spec/mods/standard/sets/right/crypted_password_spec.rb +0 -6
  542. data/spec/mods/standard/sets/type/account_request_spec.rb +0 -160
  543. data/spec/mods/standard/sets/type/ruby_and_script_spec.rb +0 -6
  544. data/spec/spec.opts +0 -6
  545. data/test/fixtures/users.yml +0 -169
@@ -0,0 +1,327 @@
1
+ -- MySQL dump 10.13 Distrib 5.6.17, for osx10.7 (x86_64)
2
+ --
3
+ -- Host: localhost Database: wagngem_development
4
+ -- ------------------------------------------------------
5
+ -- Server version 5.6.17
6
+
7
+ /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
8
+ /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
9
+ /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
10
+ /*!40101 SET NAMES utf8 */;
11
+ /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
12
+ /*!40103 SET TIME_ZONE='+00:00' */;
13
+ /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
14
+ /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
15
+ /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
16
+ /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
17
+
18
+ --
19
+ -- Table structure for table `card_references`
20
+ --
21
+
22
+ DROP TABLE IF EXISTS `card_references`;
23
+ /*!40101 SET @saved_cs_client = @@character_set_client */;
24
+ /*!40101 SET character_set_client = utf8 */;
25
+ CREATE TABLE `card_references` (
26
+ `id` int(11) NOT NULL AUTO_INCREMENT,
27
+ `created_at` datetime NOT NULL,
28
+ `updated_at` datetime NOT NULL,
29
+ `card_id` int(11) NOT NULL DEFAULT '0',
30
+ `referenced_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
31
+ `referenced_card_id` int(11) DEFAULT NULL,
32
+ `link_type` varchar(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
33
+ PRIMARY KEY (`id`),
34
+ KEY `wiki_references_card_id` (`card_id`),
35
+ KEY `wiki_references_referenced_card_id` (`referenced_card_id`),
36
+ KEY `wiki_references_referenced_name` (`referenced_name`)
37
+ ) ENGINE=InnoDB AUTO_INCREMENT=16718 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
38
+ /*!40101 SET character_set_client = @saved_cs_client */;
39
+
40
+ --
41
+ -- Dumping data for table `card_references`
42
+ --
43
+
44
+ LOCK TABLES `card_references` WRITE;
45
+ /*!40000 ALTER TABLE `card_references` DISABLE KEYS */;
46
+ INSERT INTO `card_references` VALUES (5808,'2012-12-05 11:16:24','2009-04-09 16:11:44',118,'*account',100,'L'),(6028,'2012-12-05 11:16:24','2009-04-09 16:41:38',10,'administrator+description',147,'T'),(6029,'2012-12-05 11:16:24','2009-04-09 16:41:38',10,'administrator',10,'T'),(6030,'2012-12-05 11:16:24','2009-04-09 16:41:38',10,'administrator+*member',NULL,'T'),(6031,'2012-12-05 11:16:24','2009-04-09 16:41:38',8,'anyone+description',210,'T'),(6032,'2012-12-05 11:16:24','2009-04-09 16:41:38',8,'anyone',8,'T'),(6033,'2012-12-05 11:16:24','2009-04-09 16:41:38',8,'anyone+*member',NULL,'T'),(6034,'2012-12-05 11:16:24','2009-04-09 16:41:38',9,'anyone_signed_in+description',211,'T'),(6035,'2012-12-05 11:16:24','2009-04-09 16:41:38',9,'anyone_signed_in',9,'T'),(6036,'2012-12-05 11:16:24','2009-04-09 16:41:38',9,'anyone_signed_in+*member',NULL,'T'),(6650,'2012-12-05 11:16:24','2009-04-24 15:34:53',112,'*incoming',170,'L'),(6651,'2012-12-05 11:16:24','2009-04-24 15:34:53',112,'*outgoing',168,'L'),(6652,'2012-12-05 11:16:24','2009-04-24 15:34:53',112,'*pluss',110,'L'),(6653,'2012-12-05 11:16:24','2009-04-24 15:34:53',112,'*community',115,'L'),(7911,'2012-12-05 11:16:24','2009-06-01 12:55:14',68,'account_request',12,'L'),(8077,'2012-12-05 11:16:24','2009-06-09 18:25:35',15,'http_wagn_org_wagn_account',NULL,'W'),(9174,'2012-12-05 11:16:24','2009-12-02 16:28:23',109,'*title',55,'T'),(9450,'2012-12-05 11:16:24','2009-12-23 11:51:05',275,'default_layout',314,'L'),(9520,'2012-12-05 11:16:24','2010-04-15 18:42:37',322,'role+*type+*content+description',NULL,'M'),(9521,'2012-12-05 11:16:24','2010-04-15 18:42:37',322,'role+*type+*content',322,'T'),(9522,'2012-12-05 11:16:24','2010-04-15 18:42:37',322,'role+*type+*content+*member',NULL,'M'),(9742,'2012-12-05 11:16:24','2010-04-15 18:43:05',171,'*incoming+*right',334,'T'),(9743,'2012-12-05 11:16:24','2010-04-15 18:43:05',171,'*incoming+*right+*linker',NULL,'M'),(9744,'2012-12-05 11:16:24','2010-04-15 18:43:05',171,'*incoming+*right',334,'T'),(9745,'2012-12-05 11:16:24','2010-04-15 18:43:05',171,'*incoming+*right+*includer',NULL,'M'),(9746,'2012-12-05 11:16:24','2010-04-15 18:43:05',171,'*incoming+*right',334,'T'),(9747,'2012-12-05 11:16:24','2010-04-15 18:43:05',171,'*incoming+*right+*tagged',NULL,'M'),(9748,'2012-12-05 11:16:24','2010-04-15 18:43:05',171,'*incoming+*right+*linker',NULL,'W'),(9749,'2012-12-05 11:16:24','2010-04-15 18:43:05',171,'*incoming+*right+*includer',NULL,'W'),(9750,'2012-12-05 11:16:24','2010-04-15 18:43:05',171,'*incoming+*right+*tagged',NULL,'W'),(9751,'2012-12-05 11:16:24','2010-04-15 18:43:07',111,'*pluss+*right',337,'T'),(9752,'2012-12-05 11:16:24','2010-04-15 18:43:07',111,'*pluss+*right+*plu_card',NULL,'M'),(9753,'2012-12-05 11:16:24','2010-04-15 18:43:07',111,'*pluss+*right+*plu_part',NULL,'M'),(9754,'2012-12-05 11:16:24','2010-04-15 18:43:08',111,'*pluss+*right+*plu_card',NULL,'W'),(9755,'2012-12-05 11:16:24','2010-04-15 18:43:08',111,'*pluss+*right+*plu_part',NULL,'W'),(9773,'2012-12-05 11:16:24','2010-04-15 18:43:10',169,'*outgoing+*right',339,'T'),(9774,'2012-12-05 11:16:24','2010-04-15 18:43:10',169,'*outgoing+*right+*link',NULL,'M'),(9775,'2012-12-05 11:16:24','2010-04-15 18:43:10',169,'*outgoing+*right',339,'T'),(9776,'2012-12-05 11:16:24','2010-04-15 18:43:10',169,'*outgoing+*right+*inclusion',NULL,'M'),(9777,'2012-12-05 11:16:24','2010-04-15 18:43:10',169,'*outgoing+*right',339,'T'),(9778,'2012-12-05 11:16:24','2010-04-15 18:43:10',169,'*outgoing+*right+tag',NULL,'M'),(9779,'2012-12-05 11:16:24','2010-04-15 18:43:10',169,'*outgoing+*right+*link',NULL,'W'),(9780,'2012-12-05 11:16:24','2010-04-15 18:43:10',169,'*outgoing+*right+*inclusion',NULL,'W'),(9781,'2012-12-05 11:16:24','2010-04-15 18:43:10',169,'*outgoing+*right+tag',NULL,'W'),(10046,'2012-12-05 11:16:24','2010-04-19 12:14:00',69,'*title',55,'T'),(10953,'2012-12-05 11:16:24','2010-04-21 16:26:52',250,'set',259,'L'),(10954,'2012-12-05 11:16:24','2010-04-21 16:26:52',250,'http_www_wagn_org_wagn_custom_thank_you_message_for_form',NULL,'W'),(10955,'2012-12-05 11:16:24','2010-04-21 16:26:52',90,'http_www_wagn_org_wagn_table_of_content',NULL,'W'),(10956,'2012-12-05 11:16:24','2010-04-21 16:26:52',90,'set',259,'L'),(10961,'2012-12-05 11:16:24','2010-04-21 16:26:54',306,'http_www_wagn_org_wagn_custom_help_text',NULL,'W'),(10962,'2012-12-05 11:16:24','2010-04-21 16:26:54',306,'set',259,'L'),(10963,'2012-12-05 11:16:24','2010-04-21 16:26:54',311,'http_www_wagn_org_wagn_custom_help_text',NULL,'W'),(10964,'2012-12-05 11:16:24','2010-04-21 16:26:55',311,'set',259,'L'),(10976,'2012-12-05 11:16:24','2010-04-21 16:26:58',359,'set',259,'L'),(10977,'2012-12-05 11:16:24','2010-04-21 16:26:58',359,'http_www_wagn_org_wagn_formatting',NULL,'W'),(10992,'2012-12-05 11:16:24','2010-04-21 16:27:02',216,'http_wagn_org_wagn_account',NULL,'W'),(10993,'2012-12-05 11:16:24','2010-04-21 16:27:03',214,'http_wagn_org_wagn_image',NULL,'W'),(10995,'2012-12-05 11:16:24','2010-04-21 16:27:04',212,'http_wagn_org_wagn_toggle',NULL,'W'),(10996,'2012-12-05 11:16:24','2010-04-21 16:27:04',210,'anonymous',15,'L'),(10997,'2012-12-05 11:16:24','2010-04-21 16:27:04',210,'http_wagn_org_wagn_account',NULL,'W'),(10998,'2012-12-05 11:16:24','2010-04-21 16:27:05',211,'http_wagn_org_wagn_account',NULL,'W'),(11001,'2012-12-05 11:16:24','2010-04-21 16:27:06',202,'http_wagn_org_wagn_html',NULL,'W'),(11002,'2012-12-05 11:16:24','2010-04-21 16:27:07',181,'http_wagn_org_wagn_user',NULL,'W'),(11003,'2012-12-05 11:16:24','2010-04-21 16:27:07',180,'http_wagn_org_wagn_card_type',NULL,'W'),(11362,'2012-12-05 11:16:24','2010-05-02 03:11:11',368,'*send+*right+email_config',NULL,'L'),(11363,'2012-12-05 11:16:24','2010-05-02 03:12:57',373,'email_config+*right+*content+*from',NULL,'M'),(11364,'2012-12-05 11:16:24','2010-05-02 03:12:57',373,'email_config+*right+*content+*to',NULL,'M'),(11365,'2012-12-05 11:16:24','2010-05-02 03:12:57',373,'email_config+*right+*content+*cc',NULL,'M'),(11366,'2012-12-05 11:16:24','2010-05-02 03:12:57',373,'email_config+*right+*content+*bcc',NULL,'M'),(11367,'2012-12-05 11:16:24','2010-05-02 03:12:57',373,'email_config+*right+*content+*subject',NULL,'M'),(11368,'2012-12-05 11:16:24','2010-05-02 03:12:57',373,'email_config+*right+*content+*message',NULL,'M'),(11369,'2012-12-05 11:16:24','2010-05-02 03:12:57',373,'email_config+*right+*content+*attach',NULL,'M'),(11457,'2012-12-05 11:16:24','2010-11-01 17:46:26',219,'*watcher+*right+by_name',NULL,'T'),(11458,'2012-12-05 11:16:24','2010-11-01 17:46:26',219,'http_www_wagn_org_wagn_notification',NULL,'W'),(11526,'2012-12-05 11:16:24','2011-01-09 14:09:53',365,'set',259,'L'),(11527,'2012-12-05 11:16:24','2011-01-09 14:09:53',365,'http_wagn_org_flexible_email',NULL,'W'),(11845,'2012-12-05 11:16:24','2011-01-31 10:44:37',397,'watcher_instruction_for_related_tab+*right+*content',402,'T'),(11846,'2012-12-05 11:16:24','2011-01-31 10:44:37',397,'cardtype+watcher_instruction_for_related_tab+*type_plu_right+*content',400,'T'),(11847,'2012-12-05 11:16:24','2011-01-31 10:44:37',397,'*community+*right+*content',116,'L'),(11914,'2012-12-05 11:16:24','2011-02-09 14:29:16',400,'cardtype+watcher_instruction_for_related_tab+*type_plu_right',399,'L'),(11915,'2012-12-05 11:16:24','2011-02-09 14:29:16',402,'watcher_instruction_for_related_tab+*right',401,'T'),(12553,'2012-12-05 11:16:24','2011-02-15 22:54:16',215,'http_wagn_org_wagn_file',NULL,'W'),(13623,'2012-12-05 11:16:24','2011-02-19 08:32:20',182,'http_wagn_org_wagn_wql',NULL,'W'),(13624,'2012-12-05 11:16:24','2011-02-19 08:32:20',182,'http_wagn_org_wagn_wql_syntax',NULL,'W'),(13707,'2012-12-05 11:16:24','2011-02-25 16:59:33',398,'cardtype',5,'L'),(13822,'2012-12-05 11:16:24','2011-02-25 22:44:53',116,'*community+*right+*creator',NULL,'T'),(13823,'2012-12-05 11:16:24','2011-02-25 22:44:53',116,'*community+*right+*last_editor',NULL,'T'),(13824,'2012-12-05 11:16:24','2011-02-25 22:44:53',116,'*community+*right+*editor',NULL,'T'),(13825,'2012-12-05 11:16:24','2011-02-25 22:44:53',116,'*community+*right+watcher_instruction_for_related_tab',NULL,'T'),(13826,'2012-12-05 11:16:24','2011-02-25 22:44:53',116,'*community+*right+*watcher',NULL,'M'),(13827,'2012-12-05 11:16:24','2011-02-25 22:44:53',116,'*community+*right+discussion',NULL,'M'),(13828,'2012-12-05 11:16:24','2011-02-25 22:44:53',116,'*community+*right',340,'T'),(13829,'2012-12-05 11:16:24','2011-02-25 22:44:53',116,'*community+*right+tag',NULL,'M'),(13830,'2012-12-05 11:16:24','2011-02-25 22:44:53',116,'*community+*right+*editor',NULL,'L'),(13831,'2012-12-05 11:16:24','2011-02-25 22:44:53',116,'*community+*right+*watcher',NULL,'W'),(13832,'2012-12-05 11:16:24','2011-02-25 22:44:53',116,'http_wagn_org_wagn_notification',NULL,'W'),(13833,'2012-12-05 11:16:24','2011-02-25 22:44:53',116,'*community+*right+discussion',NULL,'W'),(13834,'2012-12-05 11:16:24','2011-02-25 22:44:53',116,'*community+*right+tag',NULL,'W'),(14042,'2012-12-05 11:16:24','2011-03-08 14:31:49',392,'http_wagn_org_flexible_email',NULL,'W'),(14043,'2012-12-05 11:16:24','2011-03-08 14:31:49',392,'http_www_wagn_org_wagn_contextual_name',NULL,'W'),(14819,'2012-12-05 11:16:24','2011-03-19 22:03:39',453,'account_request+*self+*content+description',NULL,'M'),(14820,'2012-12-05 11:16:24','2011-03-19 22:03:39',453,'account_request+*self+*content',NULL,'M'),(14821,'2012-12-05 11:16:24','2011-03-19 22:03:39',453,'account_request+*self+*content+*type+by_name',NULL,'T'),(14933,'2012-12-05 11:16:24','2011-03-19 22:06:30',88,'cardtype+*type+*content+description',NULL,'M'),(14934,'2012-12-05 11:16:24','2011-03-19 22:06:30',88,'cardtype+*type+*content',88,'T'),(14935,'2012-12-05 11:16:24','2011-03-19 22:06:30',88,'cardtype+*type+*content',88,'T'),(14936,'2012-12-05 11:16:24','2011-03-19 22:06:30',88,'cardtype+*type+*content',88,'T'),(14937,'2012-12-05 11:16:24','2011-03-19 22:06:30',88,'cardtype+*type+*content+*type+by_name',NULL,'T'),(14938,'2012-12-05 11:16:24','2011-03-19 22:06:30',88,'new_chunk69917097796680chunktranscludechunk',NULL,'W'),(14953,'2012-12-05 11:16:24','2011-03-19 22:09:27',456,'set+*self+*content+description',NULL,'M'),(14954,'2012-12-05 11:16:24','2011-03-19 22:09:27',456,'set+*self+*content',NULL,'M'),(14955,'2012-12-05 11:16:24','2011-03-19 22:09:27',456,'set+*self+*content+*type+by_name',NULL,'T'),(14956,'2012-12-05 11:16:24','2011-03-19 22:09:52',259,'set+description',297,'T'),(14957,'2012-12-05 11:16:24','2011-03-19 22:09:52',259,'set',259,'T'),(14958,'2012-12-05 11:16:24','2011-03-19 22:09:52',259,'set+*type+by_name',NULL,'T'),(15286,'2012-12-05 11:16:24','2011-03-19 22:12:03',47,'pointer+description',213,'T'),(15287,'2012-12-05 11:16:24','2011-03-19 22:12:03',47,'pointer',47,'T'),(15288,'2012-12-05 11:16:24','2011-03-19 22:12:03',47,'pointer',47,'T'),(15289,'2012-12-05 11:16:24','2011-03-19 22:12:03',47,'pointer',47,'T'),(15290,'2012-12-05 11:16:24','2011-03-19 22:12:03',47,'pointer+*type+by_name',NULL,'T'),(15291,'2012-12-05 11:16:24','2011-03-19 22:12:03',47,'new_chunk69917084845940chunktranscludechunk',NULL,'W'),(15319,'2012-12-05 11:16:24','2011-03-19 22:15:26',213,'http_wagn_org_wagn_pointer',NULL,'W'),(15410,'2012-12-05 11:16:24','2011-03-20 04:49:49',12,'account_request+description',216,'T'),(15411,'2012-12-05 11:16:24','2011-03-20 04:49:49',12,'account_request',12,'T'),(15412,'2012-12-05 11:16:24','2011-03-20 04:49:49',12,'account_request+*type+by_name',NULL,'T'),(15419,'2012-12-05 11:16:24','2011-03-20 04:49:49',5,'cardtype+description',180,'T'),(15420,'2012-12-05 11:16:24','2011-03-20 04:49:49',5,'cardtype',5,'T'),(15421,'2012-12-05 11:16:24','2011-03-20 04:49:49',5,'cardtype',5,'T'),(15422,'2012-12-05 11:16:24','2011-03-20 04:49:49',5,'cardtype',5,'T'),(15423,'2012-12-05 11:16:24','2011-03-20 04:49:49',5,'cardtype+*type+by_name',NULL,'T'),(15424,'2012-12-05 11:16:24','2011-03-20 04:49:50',5,'new_chunk69917085884460chunktranscludechunk',NULL,'W'),(15425,'2012-12-05 11:16:24','2011-03-20 04:49:50',17,'date+description',409,'T'),(15426,'2012-12-05 11:16:24','2011-03-20 04:49:50',17,'date',17,'T'),(15427,'2012-12-05 11:16:24','2011-03-20 04:49:50',17,'date',17,'T'),(15428,'2012-12-05 11:16:24','2011-03-20 04:49:50',17,'date',17,'T'),(15429,'2012-12-05 11:16:24','2011-03-20 04:49:50',17,'date+*type+by_name',NULL,'T'),(15430,'2012-12-05 11:16:24','2011-03-20 04:49:50',17,'new_chunk69917085689200chunktranscludechunk',NULL,'W'),(15431,'2012-12-05 11:16:24','2011-03-20 04:49:50',18,'file+description',215,'T'),(15432,'2012-12-05 11:16:24','2011-03-20 04:49:50',18,'file',18,'T'),(15433,'2012-12-05 11:16:24','2011-03-20 04:49:50',18,'file',18,'T'),(15434,'2012-12-05 11:16:24','2011-03-20 04:49:50',18,'file',18,'T'),(15435,'2012-12-05 11:16:24','2011-03-20 04:49:50',18,'file+*type+by_name',NULL,'T'),(15436,'2012-12-05 11:16:24','2011-03-20 04:49:50',18,'new_chunk69917085443200chunktranscludechunk',NULL,'W'),(15437,'2012-12-05 11:16:24','2011-03-20 04:49:50',50,'html+description',202,'T'),(15438,'2012-12-05 11:16:24','2011-03-20 04:49:50',50,'html',50,'T'),(15439,'2012-12-05 11:16:24','2011-03-20 04:49:50',50,'html',50,'T'),(15440,'2012-12-05 11:16:24','2011-03-20 04:49:50',50,'html',50,'T'),(15441,'2012-12-05 11:16:24','2011-03-20 04:49:50',50,'html+*type+by_name',NULL,'T'),(15442,'2012-12-05 11:16:24','2011-03-20 04:49:50',50,'new_chunk69917085207900chunktranscludechunk',NULL,'W'),(15443,'2012-12-05 11:16:24','2011-03-20 04:49:50',19,'image+description',214,'T'),(15444,'2012-12-05 11:16:24','2011-03-20 04:49:50',19,'image',19,'T'),(15445,'2012-12-05 11:16:24','2011-03-20 04:49:50',19,'image',19,'T'),(15446,'2012-12-05 11:16:24','2011-03-20 04:49:50',19,'image',19,'T'),(15447,'2012-12-05 11:16:24','2011-03-20 04:49:50',19,'image+*type+by_name',NULL,'T'),(15448,'2012-12-05 11:16:24','2011-03-20 04:49:50',19,'new_chunk69917085918580chunktranscludechunk',NULL,'W'),(15449,'2012-12-05 11:16:24','2011-03-20 04:49:50',20,'number+description',406,'T'),(15450,'2012-12-05 11:16:24','2011-03-20 04:49:50',20,'number',20,'T'),(15451,'2012-12-05 11:16:24','2011-03-20 04:49:50',20,'number',20,'T'),(15452,'2012-12-05 11:16:24','2011-03-20 04:49:50',20,'number',20,'T'),(15453,'2012-12-05 11:16:24','2011-03-20 04:49:50',20,'number+*type+by_name',NULL,'T'),(15454,'2012-12-05 11:16:24','2011-03-20 04:49:50',20,'new_chunk69917085699200chunktranscludechunk',NULL,'W'),(15455,'2012-12-05 11:16:24','2011-03-20 04:49:50',52,'phrase+description',408,'T'),(15456,'2012-12-05 11:16:24','2011-03-20 04:49:50',52,'phrase',52,'T'),(15457,'2012-12-05 11:16:24','2011-03-20 04:49:50',52,'phrase',52,'T'),(15458,'2012-12-05 11:16:24','2011-03-20 04:49:50',52,'phrase',52,'T'),(15459,'2012-12-05 11:16:24','2011-03-20 04:49:50',52,'phrase+*type+by_name',NULL,'T'),(15460,'2012-12-05 11:16:24','2011-03-20 04:49:50',52,'new_chunk69917085443260chunktranscludechunk',NULL,'W'),(15461,'2012-12-05 11:16:24','2011-03-20 04:49:50',22,'plain_text+description',407,'T'),(15462,'2012-12-05 11:16:24','2011-03-20 04:49:50',22,'plain_text',22,'T'),(15463,'2012-12-05 11:16:24','2011-03-20 04:49:50',22,'plain_text',22,'T'),(15464,'2012-12-05 11:16:24','2011-03-20 04:49:50',22,'plain_text',22,'T'),(15465,'2012-12-05 11:16:24','2011-03-20 04:49:50',22,'plain_text+*type+by_name',NULL,'T'),(15466,'2012-12-05 11:16:24','2011-03-20 04:49:50',22,'new_chunk69917085179800chunktranscludechunk',NULL,'W'),(15467,'2012-12-05 11:16:24','2011-03-20 04:49:51',7,'role+description',225,'T'),(15468,'2012-12-05 11:16:24','2011-03-20 04:49:51',7,'role',7,'T'),(15469,'2012-12-05 11:16:24','2011-03-20 04:49:51',7,'role',7,'T'),(15470,'2012-12-05 11:16:24','2011-03-20 04:49:51',7,'role',7,'T'),(15471,'2012-12-05 11:16:24','2011-03-20 04:49:51',7,'role+*type+by_name',NULL,'T'),(15472,'2012-12-05 11:16:24','2011-03-20 04:49:51',7,'new_chunk69917085818200chunktranscludechunk',NULL,'W'),(15473,'2012-12-05 11:16:24','2011-03-20 04:49:51',30,'search+description',182,'T'),(15474,'2012-12-05 11:16:24','2011-03-20 04:49:51',30,'search',30,'T'),(15475,'2012-12-05 11:16:24','2011-03-20 04:49:51',30,'search',30,'T'),(15476,'2012-12-05 11:16:24','2011-03-20 04:49:51',30,'search',30,'T'),(15477,'2012-12-05 11:16:24','2011-03-20 04:49:51',30,'search+*type+by_name',NULL,'T'),(15478,'2012-12-05 11:16:24','2011-03-20 04:49:51',30,'new_chunk69917085558220chunktranscludechunk',NULL,'W'),(15482,'2012-12-05 11:16:24','2011-03-20 04:49:51',51,'toggle+description',212,'T'),(15483,'2012-12-05 11:16:24','2011-03-20 04:49:51',51,'toggle',51,'T'),(15484,'2012-12-05 11:16:24','2011-03-20 04:49:51',51,'toggle',51,'T'),(15485,'2012-12-05 11:16:24','2011-03-20 04:49:51',51,'toggle',51,'T'),(15486,'2012-12-05 11:16:24','2011-03-20 04:49:51',51,'toggle+*type+by_name',NULL,'T'),(15487,'2012-12-05 11:16:24','2011-03-20 04:49:51',51,'new_chunk69917085033240chunktranscludechunk',NULL,'W'),(15488,'2012-12-05 11:16:24','2011-03-20 04:49:51',4,'user+description',181,'T'),(15489,'2012-12-05 11:16:24','2011-03-20 04:49:51',4,'user',4,'T'),(15490,'2012-12-05 11:16:24','2011-03-20 04:49:51',4,'user',4,'T'),(15491,'2012-12-05 11:16:24','2011-03-20 04:49:51',4,'user',4,'T'),(15492,'2012-12-05 11:16:24','2011-03-20 04:49:51',4,'user+*type+by_name',NULL,'T'),(15493,'2012-12-05 11:16:24','2011-03-20 04:49:51',4,'new_chunk69917084764880chunktranscludechunk',NULL,'W'),(15494,'2012-12-05 11:16:24','2011-03-20 04:49:59',3,'basic+description',405,'T'),(15495,'2012-12-05 11:16:24','2011-03-20 04:49:59',3,'basic',3,'T'),(15496,'2012-12-05 11:16:24','2011-03-20 04:49:59',3,'basic',3,'T'),(15497,'2012-12-05 11:16:24','2011-03-20 04:49:59',3,'basic',3,'T'),(15498,'2012-12-05 11:16:24','2011-03-20 04:49:59',3,'basic+*type+by_name',NULL,'T'),(15499,'2012-12-05 11:16:24','2011-03-20 04:49:59',3,'new_chunk69917085343960chunktranscludechunk',NULL,'W'),(15654,'2012-12-05 11:16:24','2011-03-20 22:38:48',301,'pointer',47,'L'),(15655,'2012-12-05 11:16:24','2011-03-20 22:38:48',301,'search',30,'L'),(15656,'2012-12-05 11:16:24','2011-03-20 22:38:48',301,'http_wagn_org_pointer',NULL,'W'),(15677,'2012-12-05 11:16:24','2011-03-21 08:42:54',63,'*request+*to',NULL,'M'),(15678,'2012-12-05 11:16:24','2011-03-21 08:42:54',63,'*request+*thank',108,'T'),(15679,'2012-12-05 11:16:24','2011-03-21 08:42:54',63,'card_option_account_request',NULL,'W'),(15680,'2012-12-05 11:16:24','2011-03-21 08:42:54',63,'*signup',66,'L'),(15681,'2012-12-05 11:16:24','2011-03-21 08:42:54',63,'account_request',12,'L'),(15725,'2012-12-05 11:16:24','2011-03-23 13:49:23',297,'http_www_wagn_org_wagn_setting',NULL,'W'),(15990,'2012-12-05 11:16:24','2011-04-04 16:54:22',299,'pointer',47,'L'),(16074,'2012-12-05 11:16:24','2011-07-08 21:22:21',483,'administrator',10,'L'),(16075,'2012-12-05 11:16:24','2011-07-08 21:22:21',484,'administrator',10,'L'),(16076,'2012-12-05 11:16:24','2011-07-08 21:22:21',485,'administrator',10,'L'),(16077,'2012-12-05 11:16:24','2011-07-08 21:22:22',487,'administrator',10,'L'),(16078,'2012-12-05 11:16:24','2011-07-08 21:22:22',488,'administrator',10,'L'),(16079,'2012-12-05 11:16:24','2011-07-08 21:22:22',489,'administrator',10,'L'),(16080,'2012-12-05 11:16:24','2011-07-08 21:22:22',490,'administrator',10,'L'),(16081,'2012-12-05 11:16:24','2011-07-08 21:22:22',491,'administrator',10,'L'),(16082,'2012-12-05 11:16:24','2011-07-08 21:22:22',492,'administrator',10,'L'),(16083,'2012-12-05 11:16:24','2011-07-08 21:22:22',493,'administrator',10,'L'),(16084,'2012-12-05 11:16:24','2011-07-08 21:22:22',494,'administrator',10,'L'),(16085,'2012-12-05 11:16:24','2011-07-08 21:22:22',495,'administrator',10,'L'),(16086,'2012-12-05 11:16:24','2011-07-08 21:22:22',496,'anyone_signed_in',9,'L'),(16087,'2012-12-05 11:16:24','2011-07-08 21:22:23',497,'anyone_signed_in',9,'L'),(16088,'2012-12-05 11:16:24','2011-07-08 21:22:23',498,'anyone_signed_in',9,'L'),(16089,'2012-12-05 11:16:24','2011-07-08 21:22:23',500,'anyone',8,'L'),(16090,'2012-12-05 11:16:24','2011-07-08 21:22:23',502,'anyone_signed_in',9,'L'),(16091,'2012-12-05 11:16:24','2011-07-08 21:22:23',504,'anyone_signed_in',9,'L'),(16092,'2012-12-05 11:16:24','2011-07-08 21:22:25',508,'anyone',8,'L'),(16094,'2012-12-05 11:16:24','2011-07-08 21:22:27',511,'administrator',10,'L'),(16095,'2012-12-05 11:16:24','2011-07-08 21:22:28',512,'administrator',10,'L'),(16097,'2012-12-05 11:16:24','2011-07-08 21:22:28',515,'administrator',10,'L'),(16098,'2012-12-05 11:16:24','2011-07-08 21:22:28',516,'administrator',10,'L'),(16099,'2012-12-05 11:16:24','2011-07-08 21:22:28',518,'administrator',10,'L'),(16100,'2012-12-05 11:16:24','2011-07-08 21:22:28',519,'administrator',10,'L'),(16123,'2012-12-05 11:16:24','2011-07-15 15:40:20',523,'anyone',8,'L'),(16245,'2012-12-05 11:16:24','2011-07-20 10:08:39',527,'set',259,'L'),(16246,'2012-12-05 11:16:24','2011-07-20 10:08:40',531,'set',259,'L'),(16247,'2012-12-05 11:16:24','2011-07-20 10:08:40',533,'set',259,'L'),(16248,'2012-12-05 11:16:24','2011-07-20 10:08:41',529,'set',259,'L'),(16249,'2012-12-05 11:16:24','2011-07-20 10:08:41',525,'set',259,'L'),(16366,'2012-12-05 11:16:24','2011-07-22 10:01:36',547,'basic',3,'L'),(16367,'2012-12-05 11:16:24','2011-07-22 10:01:36',547,'http_wagn_org_wagn_tiny_mce',NULL,'W'),(16368,'2012-12-05 11:16:24','2011-07-22 10:03:07',73,'*title',55,'T'),(16369,'2012-12-05 11:16:24','2011-07-22 10:03:07',73,'*home',77,'T'),(16370,'2012-12-05 11:16:24','2011-07-22 10:03:07',73,'*logo',79,'T'),(16371,'2012-12-05 11:16:24','2011-07-22 10:03:07',73,'setting',278,'T'),(16372,'2012-12-05 11:16:24','2011-07-22 10:03:07',73,'set',259,'T'),(16373,'2012-12-05 11:16:24','2011-07-22 10:03:07',73,'*all',274,'T'),(16374,'2012-12-05 11:16:24','2011-07-22 10:03:07',73,'*request',63,'T'),(16375,'2012-12-05 11:16:24','2011-07-22 10:03:07',73,'*signup',66,'T'),(16376,'2012-12-05 11:16:24','2011-07-22 10:03:08',73,'*invite',56,'T'),(16377,'2012-12-05 11:16:24','2011-07-22 10:03:08',73,'wagn_bot',1,'T'),(16378,'2012-12-05 11:16:24','2011-07-22 10:03:08',73,'*css',198,'T'),(16379,'2012-12-05 11:16:24','2011-07-22 10:03:08',73,'*sidebar',81,'T'),(16380,'2012-12-05 11:16:24','2011-07-22 10:03:08',73,'*tiny_mce',53,'T'),(16381,'2012-12-05 11:16:24','2011-07-22 10:03:08',73,'*google_analytic_key',NULL,'M'),(16382,'2012-12-05 11:16:24','2011-07-22 10:03:08',73,'*favicon',NULL,'M'),(16383,'2012-12-05 11:16:24','2011-07-22 10:03:08',73,'setting',278,'L'),(16384,'2012-12-05 11:16:24','2011-07-22 10:03:08',73,'set',259,'L'),(16385,'2012-12-05 11:16:24','2011-07-22 10:03:08',73,'*all',274,'L'),(16386,'2012-12-05 11:16:24','2011-07-22 10:03:08',73,'card_option_wagn_bot',NULL,'W'),(16387,'2012-12-05 11:16:24','2011-07-22 10:03:08',73,'http_www_wagn_org_wagn_custom_sign_up_information',NULL,'W'),(16388,'2012-12-05 11:16:24','2011-07-22 10:03:08',73,'http_www_wagn_org_wagn_formatting',NULL,'W'),(16389,'2012-12-05 11:16:24','2011-07-22 10:03:08',73,'account_request',12,'L'),(16390,'2012-12-05 11:16:24','2011-07-22 10:03:08',73,'user',4,'L'),(16391,'2012-12-05 11:16:24','2011-07-22 10:03:08',73,'http_www_wagn_org_wagn_account_administering_20account',NULL,'W'),(16392,'2012-12-05 11:16:24','2011-07-22 10:03:08',73,'http_wagn_org_wagn_google_analytic',NULL,'W'),(16393,'2012-12-05 11:16:24','2011-07-22 10:03:08',73,'http_www_wagn_org_wagn_favicon',NULL,'W'),(16394,'2012-12-05 11:16:24','2011-07-22 10:03:08',278,'setting+description',298,'T'),(16395,'2012-12-05 11:16:24','2011-07-22 10:03:08',278,'setting',278,'T'),(16396,'2012-12-05 11:16:24','2011-07-22 10:03:08',278,'setting',278,'T'),(16397,'2012-12-05 11:16:24','2011-07-22 10:03:08',278,'setting',278,'T'),(16398,'2012-12-05 11:16:24','2011-07-22 10:03:08',278,'setting+*type+by_name',NULL,'T'),(16399,'2012-12-05 11:16:24','2011-07-22 10:03:08',278,'new_chunk69973274709860chunktranscludechunk',NULL,'W'),(16400,'2012-12-05 11:16:24','2011-08-03 02:29:08',298,'http_www_wagn_org_wagn_setting',NULL,'W'),(16532,'2012-12-05 11:16:24','2011-08-25 09:22:58',549,'anyone',8,'L'),(16536,'2012-12-05 11:16:24','2011-08-25 09:23:07',551,'anyone',8,'L'),(16547,'2012-12-05 11:16:24','2011-08-25 09:24:37',554,'anyone',8,'L'),(16555,'2012-12-05 11:16:24','2011-08-25 09:25:11',558,'anyone',8,'L'),(16557,'2012-12-05 11:16:24','2011-08-25 09:25:30',81,'menu',85,'T'),(16558,'2012-12-05 11:16:24','2011-08-25 09:25:30',81,'administrator_link',151,'T'),(16563,'2012-12-05 11:16:24','2011-08-25 09:25:30',559,'anyone',8,'L'),(16564,'2012-12-05 11:16:24','2011-08-25 09:25:31',83,'http_www_wagn_org_wagn_sidebar',NULL,'W'),(16568,'2012-12-05 11:16:24','2011-08-25 09:25:40',561,'anyone',8,'L'),(16573,'2012-12-05 11:16:24','2012-01-02 13:49:04',100,'account_request+*type+by_create',NULL,'T'),(16574,'2012-12-05 11:16:24','2012-01-02 13:49:04',100,'card_with_account',101,'T'),(16575,'2012-12-05 11:16:24','2012-01-02 13:49:04',100,'account_invite',NULL,'W'),(16576,'2012-12-05 11:16:24','2012-01-02 13:49:04',100,'user',4,'L'),(16577,'2012-12-05 11:16:24','2012-01-02 13:49:04',100,'http_wagn_org_wagn_account',NULL,'W'),(16592,'2012-12-05 11:16:24','2012-01-08 22:30:07',556,'anyone',8,'L'),(16611,'2012-12-05 11:16:24','2012-01-08 22:33:46',85,'card_new',NULL,'W'),(16625,'2012-12-05 11:16:24','2012-01-08 23:12:38',80,'config',73,'L'),(16626,'2012-12-05 11:16:24','2012-01-08 23:12:38',80,'http_wagn_org_wagn_configuration',NULL,'W'),(16627,'2012-12-05 11:16:24','2012-01-08 23:12:38',80,'http_wagn_org_wagn_documentation',NULL,'W'),(16628,'2012-12-05 11:16:24','2012-01-08 23:12:38',80,'http_wagn_org_wagn_support',NULL,'W'),(16629,'2012-12-05 11:16:24','2012-01-14 01:47:25',568,'administrator',10,'L'),(16630,'2012-12-05 11:16:24','2012-01-14 01:47:26',569,'layout+description',NULL,'M'),(16631,'2012-12-05 11:16:24','2012-01-14 01:47:26',569,'layout',569,'T'),(16632,'2012-12-05 11:16:24','2012-01-14 01:47:26',569,'layout',569,'T'),(16633,'2012-12-05 11:16:24','2012-01-14 01:47:26',569,'layout',569,'T'),(16634,'2012-12-05 11:16:24','2012-01-14 01:47:26',569,'layout+*type+by_name',NULL,'T'),(16635,'2012-12-05 11:16:24','2012-01-14 01:47:26',569,'/new/chunk2172340060chunktranscludechunk',NULL,'W'),(16636,'2012-12-05 11:16:24','2012-01-14 01:47:26',571,'administrator',10,'L'),(16637,'2012-12-05 11:16:24','2012-01-14 01:47:26',572,'administrator',10,'L'),(16638,'2012-12-05 11:16:24','2012-01-14 01:47:26',573,'administrator',10,'L'),(16652,'2012-12-05 11:16:24','2012-01-27 04:24:42',294,'*head',470,'T'),(16653,'2012-12-05 11:16:24','2012-01-27 04:24:42',294,'*navbox',471,'T'),(16654,'2012-12-05 11:16:24','2012-01-27 04:24:42',294,'*account_link',474,'T'),(16655,'2012-12-05 11:16:24','2012-01-27 04:24:42',294,'user+*type',294,'T'),(16656,'2012-12-05 11:16:24','2012-01-27 04:24:42',294,'*logo',79,'T'),(16657,'2012-12-05 11:16:24','2012-01-27 04:24:42',294,'*sidebar',81,'T'),(16658,'2012-12-05 11:16:24','2012-01-27 04:24:42',294,'*version',473,'T'),(16659,'2012-12-05 11:16:24','2012-01-27 04:24:42',294,'*alert',468,'T'),(16660,'2012-12-05 11:16:24','2012-01-27 04:24:42',294,'*foot',469,'T'),(16661,'2012-12-05 11:16:24','2012-01-27 04:24:42',294,'/',NULL,'W'),(16662,'2012-12-05 11:16:24','2012-01-27 04:24:42',294,'/recent',NULL,'W'),(16663,'2012-12-05 11:16:24','2012-01-27 04:24:42',294,'/',NULL,'W'),(16664,'2012-12-05 11:16:24','2012-01-27 04:24:42',294,'http_//www_wagn_org',NULL,'W'),(16665,'2012-12-05 11:16:24','2012-03-02 19:05:52',357,'set',259,'L'),(16666,'2012-12-05 11:16:24','2012-03-02 19:05:52',357,'http_//www_wagn_org/wagn/formatting',NULL,'W'),(16667,'2012-12-05 11:16:24','2012-03-02 19:08:40',304,'http_//www_wagn_org/wagn/captcha',NULL,'W'),(16668,'2012-12-05 11:16:24','2012-03-02 19:08:40',304,'set',259,'L'),(16669,'2012-12-05 11:16:24','2012-03-02 19:09:40',281,'set',259,'L'),(16670,'2012-12-05 11:16:24','2012-03-02 19:09:40',281,'http_//wagn_org/custom_layout',NULL,'W'),(16671,'2012-12-05 11:16:24','2012-03-02 19:11:17',249,'set',259,'L'),(16672,'2012-12-05 11:16:24','2012-03-02 19:11:17',249,'http_//wagn_org/wagn/autonaming',NULL,'W'),(16673,'2012-12-05 11:16:24','2012-03-02 19:14:15',254,'pointer',47,'L'),(16674,'2012-12-05 11:16:24','2012-03-02 19:14:15',254,'http_//www_wagn_org/wagn/pointer',NULL,'W'),(16675,'2012-12-05 11:16:24','2012-07-27 20:52:40',552,'anyone',8,'L'),(16676,'2012-12-05 11:16:24','2012-07-27 20:52:40',545,'http_//wagn_org/wagn/skin',NULL,'W'),(16678,'2012-12-05 11:16:24','2012-09-20 16:42:34',588,'anyone_signed_in',9,'L'),(16679,'2012-12-05 11:16:24','2012-09-20 16:42:34',589,'administrator',10,'L'),(16683,'2012-12-05 11:16:24','2012-10-01 16:35:39',151,'config',73,'L'),(16684,'2012-12-05 11:16:24','2012-10-01 16:35:39',151,'*account',100,'L'),(16685,'2012-12-05 11:16:24','2012-10-01 16:35:39',151,'/admin/clear_cache',NULL,'W'),(16690,'2012-12-05 11:16:24','2012-10-09 23:20:10',56,'*invite+*subject',NULL,'M'),(16691,'2012-12-05 11:16:24','2012-10-09 23:20:10',56,'*invite+*message',NULL,'M'),(16692,'2012-12-05 11:16:24','2012-10-09 23:20:10',56,'*invite+*from',NULL,'M'),(16693,'2012-12-05 11:16:24','2012-10-09 23:20:10',56,'*invite+*thank',62,'T'),(16694,'2012-12-05 11:16:24','2012-10-09 23:20:10',56,'*account+*right',330,'L'),(16695,'2012-12-05 11:16:24','2012-10-09 23:22:14',147,'http_//wagn_org/wagn/permission',NULL,'W'),(16696,'2012-12-05 11:16:24','2012-10-09 23:23:16',225,'user',4,'L'),(16697,'2012-12-05 11:16:24','2012-10-09 23:23:16',225,'http_//wagn_org/wagn/role',NULL,'W'),(16698,'2012-12-05 11:16:24','2012-10-09 23:25:00',66,'*signup+*subject',NULL,'M'),(16699,'2012-12-05 11:16:24','2012-10-09 23:25:00',66,'*signup+*message',NULL,'M'),(16700,'2012-12-05 11:16:24','2012-10-09 23:25:00',66,'*signup+*thank',67,'T'),(16701,'2012-12-05 11:16:24','2012-10-09 23:25:00',66,'/card/option/account_request',NULL,'W'),(16702,'2012-12-05 11:16:24','2012-10-09 23:25:00',66,'*account+*right',330,'L'),(16703,'2012-12-05 11:16:24','2012-10-09 23:37:22',308,'*account+*right',330,'L'),(16704,'2012-12-05 11:16:24','2012-10-09 23:37:22',308,'http_//www_wagn_org/wagn/account',NULL,'W'),(16705,'2012-12-05 11:16:24','2012-10-09 23:37:22',308,'set',259,'L'),(16707,'2012-12-05 11:16:24','2012-11-30 05:23:45',314,'*head',470,'T'),(16708,'2012-12-05 11:16:24','2012-11-30 05:23:45',314,'*navbox',471,'T'),(16709,'2012-12-05 11:16:24','2012-11-30 05:23:45',314,'*account_link',474,'T'),(16710,'2012-12-05 11:16:24','2012-11-30 05:23:45',314,'default_layout',314,'T'),(16711,'2012-12-05 11:16:24','2012-11-30 05:23:45',314,'*logo',79,'T'),(16712,'2012-12-05 11:16:24','2012-11-30 05:23:45',314,'*sidebar',81,'T'),(16713,'2012-12-05 11:16:24','2012-11-30 05:23:45',314,'*version',473,'T'),(16714,'2012-12-05 11:16:24','2012-11-30 05:23:45',314,'',NULL,'W'),(16715,'2012-12-05 11:16:24','2012-11-30 05:23:45',314,'recent',NULL,'W'),(16716,'2012-12-05 11:16:24','2012-11-30 05:23:45',314,'',NULL,'W'),(16717,'2012-12-05 11:16:24','2012-11-30 05:23:45',314,'http_www_wagn_org',NULL,'W');
47
+ /*!40000 ALTER TABLE `card_references` ENABLE KEYS */;
48
+ UNLOCK TABLES;
49
+
50
+ --
51
+ -- Table structure for table `card_revisions`
52
+ --
53
+
54
+ DROP TABLE IF EXISTS `card_revisions`;
55
+ /*!40101 SET @saved_cs_client = @@character_set_client */;
56
+ /*!40101 SET character_set_client = utf8 */;
57
+ CREATE TABLE `card_revisions` (
58
+ `id` int(11) NOT NULL AUTO_INCREMENT,
59
+ `created_at` datetime NOT NULL,
60
+ `card_id` int(11) NOT NULL,
61
+ `creator_id` int(11) NOT NULL,
62
+ `content` text COLLATE utf8_unicode_ci NOT NULL,
63
+ `created_by` int(11) DEFAULT NULL,
64
+ PRIMARY KEY (`id`),
65
+ KEY `revisions_card_id_index` (`card_id`),
66
+ KEY `revisions_created_by_index` (`creator_id`)
67
+ ) ENGINE=InnoDB AUTO_INCREMENT=6264 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
68
+ /*!40101 SET character_set_client = @saved_cs_client */;
69
+
70
+ --
71
+ -- Dumping data for table `card_revisions`
72
+ --
73
+
74
+ LOCK TABLES `card_revisions` WRITE;
75
+ /*!40000 ALTER TABLE `card_revisions` DISABLE KEYS */;
76
+ INSERT INTO `card_revisions` VALUES (8,'2012-12-05 11:16:24',8,1,'',1),(9,'2012-12-05 11:16:24',9,1,'',1),(10,'2012-12-05 11:16:24',10,1,'',1),(28,'2012-12-05 11:16:24',28,1,'',1),(33,'2012-12-05 11:16:24',33,1,'',1),(35,'2012-12-05 11:16:24',35,1,'',1),(37,'2012-12-05 11:16:24',37,1,'',1),(39,'2012-12-05 11:16:24',39,1,'',1),(41,'2012-12-05 11:16:24',41,1,'',1),(43,'2012-12-05 11:16:24',43,1,'',1),(62,'2012-12-05 11:16:24',61,1,'',1),(66,'2012-12-05 11:16:24',64,1,'',1),(237,'2012-12-05 11:16:24',82,1,'',1),(266,'2012-12-05 11:16:24',86,1,'',1),(311,'2012-12-05 11:16:24',89,1,'',1),(349,'2012-12-05 11:16:24',92,1,'',1),(353,'2012-12-05 11:16:24',96,1,'',1),(355,'2012-12-05 11:16:24',98,1,'',1),(486,'2012-12-05 11:16:24',101,1,'{\"extension_type\": \"User\"}',1),(1225,'2012-12-05 11:16:24',110,1,'',1),(1253,'2012-12-05 11:16:24',115,1,'',1),(1270,'2012-12-05 11:16:24',117,1,'',1),(1407,'2012-12-05 11:16:24',128,1,'',1),(1408,'2012-12-05 11:16:24',129,1,'',1),(1409,'2012-12-05 11:16:24',130,1,'',1),(1410,'2012-12-05 11:16:24',131,1,'',1),(1521,'2012-12-05 11:16:24',137,1,'',1),(1541,'2012-12-05 11:16:24',1,1,'<p>This is the account that makes any automated updates &mdash; cards created when someone signs up, link updates when renaming cards, etc.</p>',1),(1550,'2012-12-05 11:16:24',138,1,'',1),(1696,'2012-12-05 11:16:24',146,1,'',1),(1755,'2012-12-05 11:16:24',55,1,'My Wagn',3),(1871,'2012-12-05 11:16:24',118,1,'[[*account]]',3),(1881,'2012-12-05 11:16:24',99,1,'{\"member_of\": \"_self\", \"sort\":\"name\"}',3),(1988,'2012-12-05 11:16:24',168,1,'',4),(1993,'2012-12-05 11:16:24',170,1,'',4),(2008,'2012-12-05 11:16:24',112,1,'[[*incoming]]\n[[*outgoing]]\n[[*plusses]]\n[[*community]]',3),(2013,'2012-12-05 11:16:24',172,1,'',3),(2022,'2012-12-05 11:16:24',173,1,'{\"right_plus\":[\"tags\", {\"refer_to\":\"_self\"}]}',4),(2054,'2012-12-05 11:16:24',169,1,'<h1>[[_left+*links|\"{{_left|name}}\" links to]]</h1>\n<blockquote>\n<p>{{_left+*links}}</p>\n</blockquote>\n<p>&nbsp;</p>\n<h1>[[_left+*inclusions|\"{{_left|name}}\" includes]]</h1>\n<blockquote>\n<p>{{_left+*inclusions}}</p>\n</blockquote>\n<p>&nbsp;</p>\n<h1>[[_left+tags|\"{{_left|name}}\" is tagged with]]</h1>\n<blockquote>\n<p>{{_left+tags}}</p>\n</blockquote>',4),(2087,'2012-12-05 11:16:24',178,1,'',4),(2089,'2012-12-05 11:16:24',179,1,'{\"found_by\": \"_self\", \"sort\": \"update\"}',4),(2093,'2012-12-05 11:16:24',180,1,'<p><span><span>Every card has a type, which shapes what kind of information goes into it. You can also add your own cardtypes. To learn more, read the [[http://wagn.org/wagn/card_types|documentation about card types]].<br></span></span></p>',4),(2094,'2012-12-05 11:16:24',181,1,'<p>People with accounts generally have a User card. To learn more, read the [[http://wagn.org/wagn/User|documentation about User cards]].</p>',4),(2210,'2012-12-05 11:16:24',111,1,'<p><em>Plus cards have a plus (+) in their name </em><em>(e.g., \"Menu+description\"). They are formed by plussing two cards together to make a third.</em></p>\n<p>&nbsp;</p>\n<h1>[[_left+*plus cards|Plus cards \"{{_left|name}}\" is part of]]</h1>\n<blockquote>\n<p>{{_left+*plus cards}}</p>\n</blockquote>\n<p>&nbsp;</p>\n<h1>[[_left+*plus parts|The other parts]]</h1>\n<blockquote>\n<p>{{_left+*plus parts}}</p>\n</blockquote>',4),(2264,'2012-12-05 11:16:24',184,1,'',4),(2266,'2012-12-05 11:16:24',185,1,'{\"found_by\": \"_self\", \"sort\": \"name\"}\n',4),(2290,'2012-12-05 11:16:24',190,1,'',4),(2291,'2012-12-05 11:16:24',191,1,'{\"found_by\": \"_self\", \"sort\": \"create\"}',4),(2331,'2012-12-05 11:16:24',81,1,'<p>&nbsp;</p>\n<p>{{Menu|open}}</p>\n<p>&nbsp;</p>\n<p>{{Administrator links|open}}</p>',3),(2336,'2012-12-05 11:16:24',171,1,'<h1>[[_left+*linkers|What links to \"{{_left|name}}\"?]]<br></h1>\n<blockquote>\n<p>{{_left+*linkers}}</p>\n</blockquote>\n<p>&nbsp;</p>\n<h1>[[_left+*includers|What includes \"{{_left|name}}\"?]]</h1>\n<blockquote>\n<p>{{_left+*includers}}</p>\n</blockquote>\n<p>&nbsp;</p>\n<h1>[[_left+*tagged|What\'s tagged \"{{_left|name}}\"?]]</h1>\n<blockquote>\n<p>{{_left+*tagged}}</p>\n</blockquote>',3),(2402,'2012-12-05 11:16:24',200,1,'<p>Thanks for submitting this form!</p>',4),(2403,'2012-12-05 11:16:24',201,1,'',4),(2408,'2012-12-05 11:16:24',202,1,'<p>These cards allow unrestricted use of HTML. See the [[http://wagn.org/wagn/HTML|documentation on HTML cards]].</p>',4),(2430,'2012-12-05 11:16:24',205,1,'',4),(2472,'2012-12-05 11:16:24',67,1,'/wagn/Signup_Success',1),(2473,'2012-12-05 11:16:24',108,1,'/wagn/Request_Sent',1),(2474,'2012-12-05 11:16:24',62,1,'/wagn/Invite_Success',1),(2494,'2012-12-05 11:16:24',68,1,'<p>Thanks!&nbsp; Your invitation is on its way.</p>\n<p>&nbsp;</p>\n<p>See [[Account Requests]].</p>',4),(2570,'2012-12-05 11:16:24',211,1,'<p>Anyone who is signed in has this role. [[http://wagn.org/wagn/account|Learn more about accounts]].</p>',4),(2571,'2012-12-05 11:16:24',210,1,'<p>Anyone who is not signed in has this role. Edits they make will be credited to [[Anonymous]]. [[http://wagn.org/wagn/account|Learn more about accounts]].</p>',4),(2573,'2012-12-05 11:16:24',15,1,'<p>Edits made by people who are not signed in are credited to Anonymous. [[http://wagn.org/wagn/account|Learn more about accounts]].</p>',4),(2574,'2012-12-05 11:16:24',212,1,'<p>Toggles simply indicate yes or no. [[http://wagn.org/wagn/Toggle|Learn more about Toggles]].</p>',4),(2576,'2012-12-05 11:16:24',214,1,'<p>On Wagn you upload images to Image cards, then include them wherever you want the image to appear. [[http://wagn.org/wagn/Image|Learn more about Image cards]].</p>',4),(2581,'2012-12-05 11:16:24',216,1,'<p>People who have requested accounts but not yet been approved ([[http://wagn.org/wagn/account|learn more about accounts]]):</p>',4),(2604,'2012-12-05 11:16:24',217,1,'',4),(2609,'2012-12-05 11:16:24',220,1,'',5),(2622,'2012-12-05 11:16:24',103,1,'<img src=\"http://s3.amazonaws.com/en.dwagn.org/card_images/42/red_wagon_wheel_medium.png\">',4),(2624,'2012-12-05 11:16:24',222,1,'',4),(2878,'2012-12-05 11:16:24',241,1,'',4),(2879,'2012-12-05 11:16:24',242,1,'',4),(2889,'2012-12-05 11:16:24',247,1,'',4),(2890,'2012-12-05 11:16:24',248,1,'',4),(2901,'2012-12-05 11:16:24',253,1,'',4),(2930,'2012-12-05 11:16:24',257,1,'1',4),(3001,'2012-12-05 11:16:24',260,1,'',1),(3002,'2012-12-05 11:16:24',261,1,'{\"right\":\"_self\"}',1),(3003,'2012-12-05 11:16:24',262,1,'',1),(3004,'2012-12-05 11:16:24',263,1,'{\"left\":{\"type\":\"_left\"}, \"right\":\"_right\"}',1),(3005,'2012-12-05 11:16:24',264,1,'',1),(3006,'2012-12-05 11:16:24',265,1,'{\"name\":\"_self\"}',1),(3007,'2012-12-05 11:16:24',266,1,'',1),(3008,'2012-12-05 11:16:24',267,1,'{\"type\":\"_self\"}',1),(3009,'2012-12-05 11:16:24',268,1,'{\"right\":\"_self\"}',1),(3010,'2012-12-05 11:16:24',269,1,'{\"right\":\"_self\"}',1),(3019,'2012-12-05 11:16:24',255,1,'',1),(3021,'2012-12-05 11:16:24',256,1,'',1),(3022,'2012-12-05 11:16:24',277,1,'description',1),(3023,'2012-12-05 11:16:24',252,1,'',1),(3031,'2012-12-05 11:16:24',109,1,'<div>Thank you for signing up with {{*title}}. Someone will receive your request for an account and approve it as soon as possible.</div>',4),(3033,'2012-12-05 11:16:24',91,1,'4',4),(3040,'2012-12-05 11:16:24',280,1,'',4),(3060,'2012-12-05 11:16:24',284,1,'',1),(3061,'2012-12-05 11:16:24',285,1,'',1),(3063,'2012-12-05 11:16:24',286,1,'',1),(3065,'2012-12-05 11:16:24',288,1,'',1),(3066,'2012-12-05 11:16:24',289,1,'',1),(3078,'2012-12-05 11:16:24',291,1,'',4),(3079,'2012-12-05 11:16:24',292,1,'0',4),(3081,'2012-12-05 11:16:24',293,1,'0',4),(3082,'2012-12-05 11:16:24',294,1,'{\"type\":\"_self\"}',4),(3083,'2012-12-05 11:16:24',295,1,'1',4),(3088,'2012-12-05 11:16:24',274,1,'{}',1),(3101,'2012-12-05 11:16:24',300,1,'{\"right\":\"_self\"}',3),(3123,'2012-12-05 11:16:24',302,1,'{\"right\":\"_self\"}',3),(3126,'2012-12-05 11:16:24',305,1,'{\"right\":\"_self\"}',3),(3133,'2012-12-05 11:16:24',307,1,'{\"right\":\"_self\"}',3),(3137,'2012-12-05 11:16:24',309,1,'',1),(3140,'2012-12-05 11:16:24',310,1,'{\"right\":\"_self\"}',4),(3171,'2012-12-05 11:16:24',275,1,'[[Default Layout]]',4),(3177,'2012-12-05 11:16:24',315,1,'{\"name\":\"_self\"}',4),(3178,'2012-12-05 11:16:24',316,1,'{\"type\": \"HTML\"}',4),(3196,'2012-12-05 11:16:24',317,1,'',1),(3197,'2012-12-05 11:16:24',318,1,'',1),(3198,'2012-12-05 11:16:24',319,1,'',1),(3199,'2012-12-05 11:16:24',320,1,'',1),(3201,'2012-12-05 11:16:24',321,1,'',1),(3203,'2012-12-05 11:16:24',322,1,'<p>{{+description}}</p>\n<p>&nbsp;</p>\n<h1>Accounts with the {{_self|name}} role<br></h1>\n<blockquote>\n<p>{{+*members}}</p>\n</blockquote>',1),(3206,'2012-12-05 11:16:24',324,1,'',1),(3207,'2012-12-05 11:16:24',325,1,'',1),(3208,'2012-12-05 11:16:24',326,1,'',1),(3209,'2012-12-05 11:16:24',327,1,'',1),(3213,'2012-12-05 11:16:24',329,1,'',1),(3214,'2012-12-05 11:16:24',330,1,'',1),(3218,'2012-12-05 11:16:24',331,1,'',1),(3223,'2012-12-05 11:16:24',334,1,'',1),(3224,'2012-12-05 11:16:24',335,1,'',1),(3225,'2012-12-05 11:16:24',336,1,'',1),(3226,'2012-12-05 11:16:24',337,1,'',1),(3228,'2012-12-05 11:16:24',338,1,'',1),(3229,'2012-12-05 11:16:24',339,1,'',1),(3230,'2012-12-05 11:16:24',340,1,'',1),(3232,'2012-12-05 11:16:24',341,1,'',1),(3233,'2012-12-05 11:16:24',342,1,'',1),(3235,'2012-12-05 11:16:24',343,1,'',1),(3238,'2012-12-05 11:16:24',345,1,'',1),(3239,'2012-12-05 11:16:24',346,1,'',1),(3240,'2012-12-05 11:16:24',347,1,'',1),(3241,'2012-12-05 11:16:24',348,1,'',1),(3242,'2012-12-05 11:16:24',349,1,'',1),(3243,'2012-12-05 11:16:24',350,1,'',1),(3244,'2012-12-05 11:16:24',351,1,'',1),(3246,'2012-12-05 11:16:24',352,1,'',1),(3248,'2012-12-05 11:16:24',353,1,'',1),(3250,'2012-12-05 11:16:24',354,1,'',1),(3251,'2012-12-05 11:16:24',355,1,'',1),(3253,'2012-12-05 11:16:24',356,1,'',4),(3260,'2012-12-05 11:16:24',358,1,'',4),(3264,'2012-12-05 11:16:24',311,1,'<p><span> </span></p>\n<div>\n<p><span> </span></p>\n<div>\n<p>[[http://www.wagn.org/wagn/custom_help_text|Help text]] people will see when adding cards in the [[set]].</p>\n</div>\n</div>',4),(3266,'2012-12-05 11:16:24',306,1,'<p>[[http://www.wagn.org/wagn/custom_help_text|Help text]] people will see when editing cards in the [[set]].</p>',4),(3318,'2012-12-05 11:16:24',69,1,'<div>Thank you for signing up with {{*title}}. Your new account information is on it\'s way to your emailbox now and should be there soon.</div>',3),(3478,'2012-12-05 11:16:24',363,1,'',3),(3482,'2012-12-05 11:16:24',359,1,'<p>Controls content of cards in the [[set]]. [[http://www.wagn.org/wagn/formatting|More about formatting]].</p>',3),(3494,'2012-12-05 11:16:24',90,1,'<p>Autogenerate [[http://www.wagn.org/wagn/table_of_contents|table of contents]] when cards in the [[set]] have at least this many headers (\"0\" means never).</p>',3),(3495,'2012-12-05 11:16:24',250,1,'<p>Where to take people after they create a card in the [[set]]. [[http://www.wagn.org/wagn/Custom_thank_you_messages_for_forms|Learn more about thank you messages.]]</p>',3),(3513,'2012-12-05 11:16:24',364,1,'',3),(3574,'2012-12-05 11:16:24',366,1,'',4),(3575,'2012-12-05 11:16:24',367,1,'0',4),(3606,'2012-12-05 11:16:24',368,1,'[[_left+email config]]',3),(3608,'2012-12-05 11:16:24',371,1,'',3),(3609,'2012-12-05 11:16:24',372,1,'',3),(3610,'2012-12-05 11:16:24',373,1,'<p>{{+*from}}</p>\n<p>{{+*to}}</p>\n<p>{{+*cc}}</p>\n<p>{{+*bcc}}</p>\n<p>{{+*subject}}</p>\n<p>{{+*message}}</p>\n<p>{{+*attach}}</p>',3),(3612,'2012-12-05 11:16:24',375,1,'',3),(3614,'2012-12-05 11:16:24',377,1,'',3),(3615,'2012-12-05 11:16:24',378,1,'',3),(3617,'2012-12-05 11:16:24',380,1,'',3),(3618,'2012-12-05 11:16:24',381,1,'',3),(3620,'2012-12-05 11:16:24',383,1,'',3),(3621,'2012-12-05 11:16:24',384,1,'',3),(3624,'2012-12-05 11:16:24',387,1,'',3),(3626,'2012-12-05 11:16:24',389,1,'',3),(3628,'2012-12-05 11:16:24',390,1,'',3),(3629,'2012-12-05 11:16:24',391,1,'',3),(3754,'2012-12-05 11:16:24',219,1,'<p>These cards show who is getting email about changes to these cards or card types. ([[http://www.wagn.org/wagn/Notification|Learn more about notification.]]):</p>\n<p>&nbsp;</p>\n<p>{{+*right+by name}}</p>',4),(3794,'2012-12-05 11:16:24',365,1,'<p>Configures email to be sent when card in [[set]] is added. Learn more about [[http://wagn.org/flexible_email|flexible email]].</p>',4),(3810,'2012-12-05 11:16:24',398,1,'',4),(3811,'2012-12-05 11:16:24',399,1,'',4),(3814,'2012-12-05 11:16:24',401,1,'',4),(3859,'2012-12-05 11:16:24',397,1,'<p>For the [[*community+*right+*content|community subtab]] of the Related tab:</p>\n<p>&nbsp;</p>\n<p>{{+*right+*content|open}}</p>\n<p>&nbsp;</p>\n<p>{{Cardtype+_+*type plus right+*content|open}}</p>',3),(3867,'2012-12-05 11:16:24',402,1,'People receiving email when \"{{_left|name}}\" is changed.',3),(3868,'2012-12-05 11:16:24',400,1,'People receiving email when [[_left]] cards are changed.',3),(3871,'2012-12-05 11:16:24',279,1,'0',4),(4841,'2012-12-05 11:16:24',406,1,'<p>Number cards can contain only numerical values.</p>',4),(4846,'2012-12-05 11:16:24',409,1,'<p>Date cards contain a date.</p>',4),(4869,'2012-12-05 11:16:24',407,1,'<p>PlainText cards are for unstyled text.</p>',3),(4871,'2012-12-05 11:16:24',215,1,'<p>File cards are for uploading and downloading files. [[http://wagn.org/wagn/File|Learn more about File cards]].</p>',3),(4872,'2012-12-05 11:16:24',408,1,'<p>Phrase cards are for short unstyled text.</p>',3),(4888,'2012-12-05 11:16:24',388,1,'',4),(4892,'2012-12-05 11:16:24',382,1,'',4),(4894,'2012-12-05 11:16:24',379,1,'',4),(4913,'2012-12-05 11:16:24',376,1,'',4),(4915,'2012-12-05 11:16:24',374,1,'',4),(5196,'2012-12-05 11:16:24',182,1,'<p>Searches return a list of cards using [[http://wagn.org/wagn/WQL|WQL, the Wagn Query Language]]. See the [[http://wagn.org/wagn/WQL syntax|syntax documentation]].</p>',3),(5199,'2012-12-05 11:16:24',419,1,'',4),(5200,'2012-12-05 11:16:24',420,1,'',4),(5214,'2012-12-05 11:16:24',77,1,'Home',4),(5245,'2012-12-05 11:16:24',425,1,'',4),(5246,'2012-12-05 11:16:24',426,1,'',4),(5249,'2012-12-05 11:16:24',428,1,'',4),(5250,'2012-12-05 11:16:24',429,1,'',4),(5252,'2012-12-05 11:16:24',431,1,'',4),(5253,'2012-12-05 11:16:24',432,1,'',4),(5290,'2012-12-05 11:16:24',430,1,'{\"creator_of\": \"_self\"}',4),(5291,'2012-12-05 11:16:24',427,1,'{\"last_edited_by\": \"_self\",\n \"sort\": \"update\",\n \"view\": \"change\"\n}',4),(5292,'2012-12-05 11:16:24',433,1,'{\"created_by\": \"_self\",\n \"sort\": \"create\", \"dir\": \"desc\"\n}',4),(5296,'2012-12-05 11:16:24',435,1,'',4),(5297,'2012-12-05 11:16:24',436,1,'',4),(5306,'2012-12-05 11:16:24',116,1,'<div><strong>Added by:</strong> {{_left+*creator|item:link}}</div>\n<div><strong>Most recent editor:</strong> {{_left+*last editor|item:link}}</div>\n<p>&nbsp;</p>\n<h1>[[_left+*editors|All editors]]</h1>\n<blockquote>\n<p>{{_left+*editors|item:link}}</p>\n</blockquote>\n<p>&nbsp;</p>\n<h1>[[_left+*watchers|Watchers]]</h1>\n<div><strong>{{_left+watcher instructions for related tab|naked}}</strong>&nbsp;&nbsp;[[http://wagn.org/wagn/Notification|Learn more about notifications.]]</div>\n<blockquote>\n<p>{{_left+*watchers|item:link}}</p>\n</blockquote>\n<p>&nbsp;</p>\n<h1>[[_left+discussion|Discussion]]</h1>\n<blockquote>\n<p>{{_left+discussion|open}}</p>\n</blockquote>\n<p>&nbsp;</p>\n<h1>[[_left+tags|\"{{_left|name}}\" is tagged with]]</h1>\n<blockquote>\n<p>{{_left+tags}}</p>\n</blockquote>\n<p>&nbsp;</p>',4),(5333,'2012-12-05 11:16:24',441,1,'',4),(5334,'2012-12-05 11:16:24',442,1,'4',4),(5392,'2012-12-05 11:16:24',445,1,'',4),(5393,'2012-12-05 11:16:24',446,1,'',4),(5395,'2012-12-05 11:16:24',448,1,'',4),(5396,'2012-12-05 11:16:24',449,1,'',4),(5403,'2012-12-05 11:16:24',439,1,'',4),(5404,'2012-12-05 11:16:24',438,1,'',4),(5411,'2012-12-05 11:16:24',392,1,'<p>Configures an email to be sent using [[http://wagn.org/flexible_email|flexible email]]. Note that [[http://www.wagn.org/wagn/contextual_names|contextual names]] here such as \"_self\" will refer to the card triggering the email.</p>',4),(5469,'2012-12-05 11:16:24',259,1,'<p>{{+description}}</p>\n<p>&nbsp;</p>\n<h2>{{_self|name}} Cards</h2>\n<blockquote>\n<p>{{+*type+by name}}</p>\n</blockquote>',3),(5470,'2012-12-05 11:16:24',5,1,'<p>{{+description}}</p>\n<p>&nbsp;</p>\n<p>[[/new/{{_self|name}}|add a {{_self|name}} card]]</p>\n<p>&nbsp;</p>\n<h1>{{_self|name}} Cards</h1>\n<blockquote>\n<p>{{+*type+by name}}</p>\n</blockquote>',3),(5471,'2012-12-05 11:16:24',12,1,'<p>{{+description}}</p>\n<blockquote>\n<p>{{+*type+by update}}</p>\n</blockquote>',3),(5472,'2012-12-05 11:16:24',3,1,'<p>{{+description}}</p>\n<p>&nbsp;</p>\n<p>[[/new/{{_self|name}}|add a {{_self|name}} card]]</p>\n<p>&nbsp;</p>\n<h2>{{_self|name}} Cards</h2>\n<blockquote>\n<p>{{+*type+by name}}</p>\n</blockquote>',3),(5478,'2012-12-05 11:16:24',405,1,'<p>Basic cards are for rich text. &nbsp;As the default type for new cards, \"Basic\" does not appear beside cardnames like other types.</p>',3),(5479,'2012-12-05 11:16:24',17,1,'<p>{{+description}}</p>\n<p>&nbsp;</p>\n<p>[[/new/{{_self|name}}|add a {{_self|name}} card]]</p>\n<p>&nbsp;</p>\n<h2>{{_self|name}} Cards</h2>\n<blockquote>\n<p>{{+*type+by name}}</p>\n</blockquote>',3),(5480,'2012-12-05 11:16:24',18,1,'<p>{{+description}}</p>\n<p>&nbsp;</p>\n<p>[[/new/{{_self|name}}|add a {{_self|name}} card]]</p>\n<p>&nbsp;</p>\n<h2>{{_self|name}} Cards</h2>\n<blockquote>\n<p>{{+*type+by name}}</p>\n</blockquote>',3),(5481,'2012-12-05 11:16:24',50,1,'<p>{{+description}}</p>\n<p>&nbsp;</p>\n<p>[[/new/{{_self|name}}|add a {{_self|name}} card]]</p>\n<p>&nbsp;</p>\n<h2>{{_self|name}} Cards</h2>\n<blockquote>\n<p>{{+*type+by name}}</p>\n</blockquote>',3),(5482,'2012-12-05 11:16:24',19,1,'<p>{{+description}}</p>\n<p>&nbsp;</p>\n<p>[[/new/{{_self|name}}|add an {{_self|name}} card]]</p>\n<p>&nbsp;</p>\n<h2>{{_self|name}} Cards</h2>\n<blockquote>\n<p>{{+*type+by name}}</p>\n</blockquote>',3),(5483,'2012-12-05 11:16:24',20,1,'<p>{{+description}}</p>\n<p>&nbsp;</p>\n<p>[[/new/{{_self|name}}|add a {{_self|name}} card]]</p>\n<p>&nbsp;</p>\n<h2>{{_self|name}} Cards</h2>\n<blockquote>\n<p>{{+*type+by name}}</p>\n</blockquote>',3),(5484,'2012-12-05 11:16:24',52,1,'<p>{{+description}}</p>\n<p>&nbsp;</p>\n<p>[[/new/{{_self|name}}|add a {{_self|name}} card]]</p>\n<p>&nbsp;</p>\n<h2>{{_self|name}} Cards</h2>\n<blockquote>\n<p>{{+*type+by name}}</p>\n</blockquote>',3),(5485,'2012-12-05 11:16:24',22,1,'<p>{{+description}}</p>\n<p>&nbsp;</p>\n<p>[[/new/{{_self|name}}|add a {{_self|name}} card]]</p>\n<p>&nbsp;</p>\n<h2>{{_self|name}} Cards</h2>\n<blockquote>\n<p>{{+*type+by name}}</p>\n</blockquote>',3),(5486,'2012-12-05 11:16:24',47,1,'<p>{{+description}}</p>\n<p>&nbsp;</p>\n<p>[[/new/{{_self|name}}|add a {{_self|name}} card]]</p>\n<p>&nbsp;</p>\n<h2>{{_self|name}} Cards</h2>\n<blockquote>\n<p>{{+*type+by name}}</p>\n</blockquote>',3),(5487,'2012-12-05 11:16:24',7,1,'<p>{{+description}}</p>\n<p>&nbsp;</p>\n<p>[[/new/Role|Add a new role]]</p>\n<p>&nbsp;</p>\n<h1>Roles</h1>\n<p>{{+*type+by name}}</p>',3),(5488,'2012-12-05 11:16:24',30,1,'<p>{{+description}}</p>\n<p>&nbsp;</p>\n<p>[[/new/{{_self|name}}|add a {{_self|name}} card]]</p>\n<p>&nbsp;</p>\n<h2>{{_self|name}} Cards</h2>\n<blockquote>\n<p>{{+*type+by name}}</p>\n</blockquote>',3),(5489,'2012-12-05 11:16:24',51,1,'<p>{{+description}}</p>\n<p>&nbsp;</p>\n<p>[[/new/{{_self|name}}|add a {{_self|name}} card]]</p>\n<p>&nbsp;</p>\n<h2>{{_self|name}} Cards</h2>\n<blockquote>\n<p>{{+*type+by name}}</p>\n</blockquote>',3),(5490,'2012-12-05 11:16:24',4,1,'<p>{{+description}}</p>\n<p>&nbsp;</p>\n<p>[[/new/{{_self|name}}|add a {{_self|name}} card]]</p>\n<p>&nbsp;</p>\n<h2>{{_self|name}} Cards</h2>\n<blockquote>\n<p>{{+*type+by name}}</p>\n</blockquote>',3),(5497,'2012-12-05 11:16:24',87,1,'',4),(5510,'2012-12-05 11:16:24',452,1,'',4),(5511,'2012-12-05 11:16:24',453,1,'<p>{{+description}}</p>\n<p>&nbsp;</p>\n<h2>{{_self|name}} Cards</h2>\n<blockquote>\n<p>{{+*type+by name}}</p>\n</blockquote>',4),(5516,'2012-12-05 11:16:24',88,1,'<p>{{+description}}</p>\n<p>&nbsp;</p>\n<p>[[/new/{{_self|linkname}}|add {{_self|name}} card]]</p>\n<p>&nbsp;</p>\n<h1>{{_self|name}} Cards</h1>\n<blockquote>\n<p>{{+*type+by name}}</p>\n</blockquote>',4),(5520,'2012-12-05 11:16:24',455,1,'',4),(5521,'2012-12-05 11:16:24',456,1,'<p>{{+description}}</p>\n<p>&nbsp;</p>\n<h1>{{_self|name}} Cards</h1>\n<blockquote>\n<p>{{+*type+by name}}</p>\n</blockquote>',4),(5524,'2012-12-05 11:16:24',213,1,'<p><span><span>Pointers list (or \"point\" to) one or more other cards. [[http://wagn.org/wagn/Pointer|Learn more about Pointers]].<br></span></span></p>',4),(5538,'2012-12-05 11:16:24',278,1,'<p>&nbsp;</p>\n<blockquote></blockquote>',3),(5549,'2012-12-05 11:16:24',301,1,'<p>Value options for a set of [[Pointer]] cards. Can itself be a Pointer or a [[Search]]. [[http://wagn.org/Pointer|Learn about setting options on Pointers.]]</p>',4),(5566,'2012-12-05 11:16:24',63,1,'<p>People can <strong>request an account</strong> via a \"Sign Up\" link if you allow \"Anyone\" to [[/card/options/Account_Request|create account requests]].</p>\n<p>&nbsp;</p>\n<p>Unless [[*signup|approved automatically]], the <strong>request will be emailed to</strong>:</p>\n<blockquote>\n<p>{{+*to|closed;type:Phrase}}</p>\n</blockquote>\n<p>and the<strong> requester will be redirected here:</strong></p>\n<blockquote>\n<div>HTTP:// <em>(YOUR WAGN\'S DOMAIN) </em>{{+*thanks}}</div>\n</blockquote>\n<div>You can <strong>approve/deny account requests [[Account Request|here]]</strong>.</div>',3),(5573,'2012-12-05 11:16:24',297,1,'<div>Sets define a group of cards to which settings can apply. [[http://www.wagn.org/wagn/Setting|Learn more about settings.]]</div>',3),(5581,'2012-12-05 11:16:24',458,1,'2',4),(5592,'2012-12-05 11:16:24',461,1,'[[radio]]\n[[checkbox]]\n[[select]]\n[[multiselect]]\n[[list]]',4),(5593,'2012-12-05 11:16:24',462,1,'radio',4),(5598,'2012-12-05 11:16:24',95,1,'{\"edited_by\": \"_self\",\n \"sort\": \"update\"}',4),(5603,'2012-12-05 11:16:24',38,1,'{\"include\":\"_self\",\n \"sort\": \"name\"\n}',4),(5604,'2012-12-05 11:16:24',42,1,'{\"included_by\":\"_self\",\n \"sort\": \"name\"\n}',4),(5605,'2012-12-05 11:16:24',44,1,'{\"linked_to_by\":\"_self\",\n \"sort\": \"name\"\n}',4),(5606,'2012-12-05 11:16:24',40,1,'{\"link_to\":\"_self\",\n \"sort\": \"name\"\n}',4),(5607,'2012-12-05 11:16:24',34,1,'{\"part\":\"_self\",\n \"sort\": \"name\"\n}',4),(5608,'2012-12-05 11:16:24',36,1,'{\"plus\":\"_self\",\n \"sort\": \"name\"\n}',4),(5611,'2012-12-05 11:16:24',447,1,'{\"referred_to_by\":\"_self\",\n \"sort\": \"name\"\n}',4),(5612,'2012-12-05 11:16:24',450,1,'{\"refer_to\":\"_self\",\n \"sort\": \"name\"\n}',4),(5619,'2012-12-05 11:16:24',395,1,'{\"type\": \"File\",\n \"sort\": \"update\"\n}',4),(5621,'2012-12-05 11:16:24',223,1,'/* fixit - once \"type\" accepts card defs:\n{\"or\": \n {\"and\": {\"plus\": [\"*watcher\", {\"refer_to\": \"_self\"} ], \"not\": {\"type\": \"Cardtype\"} } },\n {\"type\": {\"plus\": [\"*watcher\", {\"refer_to\": \"_self\"} ], \"type\": \"Cardtype\"} }\n}\n*/\n\n{\"plus\": [\"*watcher\", {\"refer_to\": \"_self\"} ],\n \"sort\": \"name\"\n}',4),(5627,'2012-12-05 11:16:24',299,1,'<p>The type of editor for a set of [[Pointer]] cards.</p>',4),(5640,'2012-12-05 11:16:24',465,1,'{\"sort\":\"update\", \"dir\":\"desc\", \"view\":\"change\"}',1),(5642,'2012-12-05 11:16:24',467,1,'{\"link_to\":\"_none\"}',1),(5643,'2012-12-05 11:16:24',468,1,'',1),(5644,'2012-12-05 11:16:24',469,1,'',1),(5645,'2012-12-05 11:16:24',470,1,'',1),(5646,'2012-12-05 11:16:24',471,1,'',1),(5647,'2012-12-05 11:16:24',472,1,'',1),(5648,'2012-12-05 11:16:24',473,1,'',1),(5649,'2012-12-05 11:16:24',474,1,'',1),(5713,'2012-12-05 11:16:24',221,1,'{\"extension_type\": \"User\"}\n/* note -- this syntax is not yet deprecated but will be before Wagn 2.0 */',3),(5717,'2012-12-05 11:16:24',478,1,'',1),(5718,'2012-12-05 11:16:24',479,1,'',1),(5719,'2012-12-05 11:16:24',480,1,'',1),(5720,'2012-12-05 11:16:24',481,1,'',1),(5721,'2012-12-05 11:16:24',482,1,'',1),(5722,'2012-12-05 11:16:24',483,1,'[[Administrator]]',1),(5723,'2012-12-05 11:16:24',484,1,'[[Administrator]]',1),(5724,'2012-12-05 11:16:24',485,1,'[[Administrator]]',1),(5725,'2012-12-05 11:16:24',486,1,'{\"left\":{\"type\":\"_left\"}, \"right\":\"_right\"}',1),(5726,'2012-12-05 11:16:24',487,1,'[[Administrator]]',1),(5727,'2012-12-05 11:16:24',488,1,'[[Administrator]]',1),(5728,'2012-12-05 11:16:24',489,1,'[[Administrator]]',1),(5729,'2012-12-05 11:16:24',490,1,'[[Administrator]]',1),(5730,'2012-12-05 11:16:24',491,1,'[[Administrator]]',1),(5731,'2012-12-05 11:16:24',492,1,'[[Administrator]]',1),(5732,'2012-12-05 11:16:24',493,1,'[[Administrator]]',1),(5733,'2012-12-05 11:16:24',494,1,'[[Administrator]]',1),(5734,'2012-12-05 11:16:24',495,1,'[[Administrator]]',1),(5735,'2012-12-05 11:16:24',496,1,'[[Anyone Signed In]]',1),(5736,'2012-12-05 11:16:24',497,1,'[[Anyone Signed In]]',1),(5737,'2012-12-05 11:16:24',498,1,'[[Anyone Signed In]]',1),(5738,'2012-12-05 11:16:24',499,1,'_left',1),(5739,'2012-12-05 11:16:24',500,1,'[[Anyone]]',1),(5740,'2012-12-05 11:16:24',501,1,'_left',1),(5741,'2012-12-05 11:16:24',502,1,'[[Anyone Signed In]]',1),(5742,'2012-12-05 11:16:24',503,1,'_left',1),(5743,'2012-12-05 11:16:24',504,1,'[[Anyone Signed In]]',1),(5744,'2012-12-05 11:16:24',505,1,'_left',1),(5745,'2012-12-05 11:16:24',506,1,'',1),(5747,'2012-12-05 11:16:24',508,1,'[[Anyone]]',1),(5748,'2012-12-05 11:16:24',509,1,'{\"name\":\"_self\"}',1),(5750,'2012-12-05 11:16:24',511,1,'[[Administrator]]',1),(5751,'2012-12-05 11:16:24',512,1,'[[Administrator]]',1),(5754,'2012-12-05 11:16:24',515,1,'[[Administrator]]',1),(5755,'2012-12-05 11:16:24',516,1,'[[Administrator]]',1),(5756,'2012-12-05 11:16:24',517,1,'{\"name\":\"_self\"}',1),(5757,'2012-12-05 11:16:24',518,1,'[[Administrator]]',1),(5758,'2012-12-05 11:16:24',519,1,'[[Administrator]]',1),(5764,'2012-12-05 11:16:24',323,1,'{\"type\":\"_self\"}',3),(5765,'2012-12-05 11:16:24',523,1,'[[Anyone]]',3),(5768,'2012-12-05 11:16:24',524,1,'{\"right\":\"_self\"}',3),(5770,'2012-12-05 11:16:24',526,1,'{\"right\":\"_self\"}',3),(5772,'2012-12-05 11:16:24',528,1,'{\"right\":\"_self\"}',3),(5775,'2012-12-05 11:16:24',530,1,'{\"right\":\"_self\"}',3),(5777,'2012-12-05 11:16:24',532,1,'{\"right\":\"_self\"}',3),(5779,'2012-12-05 11:16:24',534,1,'',3),(5780,'2012-12-05 11:16:24',535,1,'{\"extension_type\":\"User\"}',3),(5781,'2012-12-05 11:16:24',536,1,'',3),(5782,'2012-12-05 11:16:24',537,1,'{\"extension_type\":\"User\"}',3),(5785,'2012-12-05 11:16:24',538,1,'',3),(5786,'2012-12-05 11:16:24',539,1,'{\"extension_type\":\"User\"}',3),(5787,'2012-12-05 11:16:24',540,1,'',3),(5788,'2012-12-05 11:16:24',541,1,'{\"extension_type\":\"User\"}',3),(5789,'2012-12-05 11:16:24',542,1,'',3),(5790,'2012-12-05 11:16:24',543,1,'{\"extension_type\":\"User\"}',3),(5793,'2012-12-05 11:16:24',527,1,'Who can add cards in the [[set]].',1),(5794,'2012-12-05 11:16:24',531,1,'Who can view cards in the [[set]].',1),(5795,'2012-12-05 11:16:24',533,1,'Who can edit cards in the [[set]].',1),(5796,'2012-12-05 11:16:24',529,1,'Who can remove cards in the [[set]].',1),(5797,'2012-12-05 11:16:24',525,1,'Who can add comments to cards in the [[set]].',1),(5929,'2012-12-05 11:16:24',544,1,'{\"name\":\"_self\"}',3),(5935,'2012-12-05 11:16:24',545,1,'<p>Add custom CSS. &nbsp;[[http://wagn.org/wagn/Skin|Learn how to \"skin\" your Wagn]]</p>',3),(5936,'2012-12-05 11:16:24',83,1,'<p>Contents will appear in the sidebar. [[http://www.wagn.org/wagn/sidebar|Learn more about customizing your sidebar.]]</p>',3),(5938,'2012-12-05 11:16:24',546,1,'{\"name\":\"_self\"}',3),(5939,'2012-12-05 11:16:24',547,1,'<p>Configure tinyMCE, the default editor for [[Basic]] cards.&nbsp;<em>[[http://wagn.org/wagn/TinyMCE|Learn how to customize your edit toolbar]]</em></p>\n<p>&nbsp;</p>',3),(5941,'2012-12-05 11:16:24',73,1,'<h1>Basics</h1>\n<div>&nbsp;</div>\n<div>Set your site name, home card, and logo image:</div>\n<blockquote>\n<div><em></em>{{*title|closed;type:Phrase}}</div>\n<div>{{*home|closed;type:Phrase}}<em></em></div>\n<div>{{*logo|closed;type:Image}}</div>\n</blockquote>\n<div>&nbsp;</div>\n<div>&nbsp;</div>\n<h1>Sets / Settings / Rules</h1>\n<div>&nbsp;</div>\n<div>You can create \"rules\" by applying&nbsp;<em>[[settings]]</em>&nbsp;(configurations) to&nbsp;<em>[[sets]]&nbsp;</em>(groups) of cards.</div>\n<blockquote>\n<div>{{setting|closed}}</div>\n<div>{{set|closed}}</div>\n</blockquote>\n<p>&nbsp;</p>\n<div>All the rules impacting a given card can be accessed through its \"Options\" tab. &nbsp;The [[*all]] set is for site-wide defaults:</div>\n<blockquote>\n<div>{{*all|open}}</div>\n</blockquote>\n<div>&nbsp;</div>\n<h1>Email / Account Configuration</h1>\n<div>&nbsp;</div>\n<div>Configure account-related emails here:</div>\n<blockquote>\n<div>{{*request|closed}}</div>\n<div>{{*signup|closed}}</div>\n{{*invite|closed}}</blockquote>\n<div>By default, system emails come from [[/card/options/Wagn_Bot| Wagn Bot\'s email address]] (set via the Options tab).</div>\n<blockquote>\n<div>{{Wagn Bot|closed}}</div>\n</blockquote>\n<div>You can [[http://www.wagn.org/wagn/custom_sign-up_information|further configure signups]] by&nbsp;[[http://www.wagn.org/wagn/formatting|formatting]]&nbsp;[[Account Request]] and [[User]] cards.</div>\n<div>&nbsp;</div>\n<div><em>[[http://www.wagn.org/wagn/account#Administering%20accounts | Learn more about configuring accounts.]]</em></div>\n<div>&nbsp;</div>\n<div>&nbsp;</div>\n<h1>Miscellaneous options<br></h1>\n<div>&nbsp;</div>\n<blockquote>{{*css|closed;type:HTML}}\n<div>{{*sidebar|closed}}</div>\n<div>{{*tinyMCE|closed}}&nbsp;</div>\n<div>&nbsp;</div>\n<div>{{*google analytics key|closed; type:Phrase}} <em>[[http://wagn.org/wagn/Google_Analytics|How to set up Google Analytics]]</em></div>\n<div>&nbsp;</div>\n<div>{{*favicon|closed;type:Image}} <em>[[http://www.wagn.org/wagn/favicon|How to customize your favicon]]</em></div>\n</blockquote>',3),(5945,'2012-12-05 11:16:24',298,1,'<div>Settings affect how cards look and behave. Settings are available under each card\'s Options tab.</div>\n<p>&nbsp;</p>\n<div><em>[[http://www.wagn.org/wagn/Setting|Learn more about settings.]]</em></div>',4),(5948,'2012-12-05 11:16:24',475,1,'{\"left\":{}}',1),(5949,'2012-12-05 11:16:24',477,1,'{\"right\":{\"complete\":\"*\"}}',1),(5950,'2012-12-05 11:16:24',476,1,'{\"complete\":\"*\"}',1),(5951,'2012-12-05 11:16:24',548,1,'{\"name\":\"_self\"}',4),(5952,'2012-12-05 11:16:24',549,1,'[[Anyone]]\n',4),(5953,'2012-12-05 11:16:24',550,1,'{\"name\":\"_self\"}',4),(5954,'2012-12-05 11:16:24',551,1,'[[Anyone]]\n',4),(5955,'2012-12-05 11:16:24',552,1,'[[Anyone]]\n',4),(5956,'2012-12-05 11:16:24',553,1,'{\"name\":\"_self\"}',4),(5957,'2012-12-05 11:16:24',554,1,'[[Anyone]]\n',4),(5958,'2012-12-05 11:16:24',555,1,'{\"name\":\"_self\"}',4),(5959,'2012-12-05 11:16:24',556,1,'[[Anyone]]\n',4),(5960,'2012-12-05 11:16:24',557,1,'{\"name\":\"_self\"}',4),(5961,'2012-12-05 11:16:24',558,1,'[[Anyone]]\n',4),(5962,'2012-12-05 11:16:24',559,1,'[[Anyone]]\n',4),(5963,'2012-12-05 11:16:24',560,1,'{\"name\":\"_self\"}',4),(5964,'2012-12-05 11:16:24',561,1,'[[Anyone]]\n',4),(5966,'2012-12-05 11:16:24',93,1,'{\"editor_of\": \"_self\",\n \"sort\": \"name\"\n}',3),(5972,'2012-12-05 11:16:24',437,1,'',3),(5973,'2012-12-05 11:16:24',440,1,'',3),(5976,'2012-12-05 11:16:24',100,1,'<p>[[/account/invite|Invite a new user]]</p>\n<p>&nbsp;</p>\n<p>By default, new accounts are associated with [[User]] cards. [[http://wagn.org/wagn/account|&nbsp;Learn more&nbsp;about accounts.]]</p>\n<p>&nbsp;</p>\n<h1>Account Requests<br></h1>\n<p>{{Account Request+*type+by create}}</p>\n<p>&nbsp;</p>\n<p>{{Cards with accounts|titled}}</p>',3),(5984,'2012-12-05 11:16:24',421,1,'{\"found_by\":\"_self\",\n \"return\":\"count\"\n}',4),(5985,'2012-12-05 11:16:24',79,1,'',3),(5996,'2012-12-05 11:16:24',85,1,'<p>[[/card/new|Add a card]]</p>',3),(6019,'2012-12-05 11:16:24',80,1,'<h1>Welcome to Wagn!</h1>\n<p>&nbsp;</p>\n<p>[[Config| Start configuring]] or learn more:</p>\n<ul>\n<li>[[http://wagn.org/wagn/configuration| Configuration]]</li>\n<li>[[http://wagn.org/wagn/Documentation| Other Documentation]]</li>\n<li>[[http://wagn.org/wagn/Support| Support]]</li>\n</ul>\n<div><em>Double-click content to edit.</em></div>\n<p>&nbsp;</p>',4),(6021,'2012-12-05 11:16:24',565,1,'',1),(6022,'2012-12-05 11:16:24',566,1,'{\"right\":\"_self\"}',1),(6023,'2012-12-05 11:16:24',567,1,'',1),(6024,'2012-12-05 11:16:24',568,1,'[[Administrator]]',1),(6025,'2012-12-05 11:16:24',53,1,'width: \'100%\',\nauto_resize : true,\nrelative_urls: false,\ntheme : \"advanced\",\ntheme_advanced_buttons1 : \"formatselect,bold,italic,separator,\"\n+ \"blockquote,bullist,numlist,hr,separator,\"\n+ \"code\", \ntheme_advanced_buttons2 : \"\", \ntheme_advanced_buttons3 : \"\", \ntheme_advanced_path : false, \ntheme_advanced_toolbar_location : \"top\", \ntheme_advanced_toolbar_align : \"left\", \ntheme_advanced_resizing : true,\ntheme_advanced_resize_horizontal : false, \ntheme_advanced_statusbar_location : \"bottom\",\ntheme_advanced_blockformats : \"p,h1,h2\",\n\nextended_valid_elements : \"a[name|href|target|title|onclick],\"\n+ \"img[class|src|border=0|alt|title|hspace|vspace|width|height|\"\n+ \"align|onmouseover|onmouseout|name],hr[class|width|size|noshade],\"\n+ \"font[face|size|color|style],span[class|align|style]\" \n',1),(6027,'2012-12-05 11:16:24',569,1,'<p>{{+description}}</p>\n<p>&nbsp;</p>\n<p>[[/new/{{_self|linkname}}|add {{_self|name}} card]]</p>\n<p>&nbsp;</p>\n<h1>{{_self|name}} Cards</h1>\n<blockquote>\n<p>{{+*type+by name}}</p>\n</blockquote>',1),(6028,'2012-12-05 11:16:24',570,1,'{\"type\":\"_self\"}',1),(6029,'2012-12-05 11:16:24',571,1,'[[Administrator]]',1),(6030,'2012-12-05 11:16:24',572,1,'[[Administrator]]',1),(6031,'2012-12-05 11:16:24',573,1,'[[Administrator]]',1),(6033,'2012-12-05 11:16:24',466,1,'{\"match\":\"$keyword\", \"sort\":\"relevance\"}',3),(6036,'2012-12-05 11:16:24',357,1,'<p>Determines initial type and content of new cards in the [[set]]. [[http://www.wagn.org/wagn/formatting|More about formatting]].</p>',3),(6037,'2012-12-05 11:16:24',304,1,'<p>Anti-spam setting. &nbsp;Requires non-signed-in users to complete a [[http://www.wagn.org/wagn/captcha|captcha]] before adding or editing cards in the [[set]].</p>',3),(6038,'2012-12-05 11:16:24',281,1,'<p>Default layout for any card in the [[set]].&nbsp; [[http://wagn.org/custom_layouts | Learn more about layouts]]</p>',3),(6039,'2012-12-05 11:16:24',249,1,'<p>Autogenerate name for new cards in the [[set]] by incrementing this value. [[http://wagn.org/wagn/Autonaming|Learn more.]]</p>',3),(6040,'2012-12-05 11:16:24',254,1,'<p>Labels for [[Pointer]] radio button and checkbox items. &nbsp;E.g., value&nbsp;<em>description</em>&nbsp;will use as labels <em>option 1+description</em>, <em>option 2+description</em>, etc. [[http://www.wagn.org/wagn/Pointer|Learn more.]]</p>',3),(6044,'2012-12-05 11:16:24',578,1,'',4),(6052,'2012-12-05 11:16:24',586,1,'1',NULL),(6053,'2012-12-05 11:16:24',587,1,'',NULL),(6054,'2012-12-05 11:16:24',588,1,'[[Anyone Signed In]]',NULL),(6055,'2012-12-05 11:16:24',589,1,'[[Administrator]]',NULL),(6063,'2012-12-05 11:16:24',151,1,'<p>[[Config|Configuration]]</p>\n<p>&nbsp;</p>\n<p>[[*account|Accounts]]</p>\n<p>&nbsp;</p>\n<p>[[/admin/clear_cache|Clear the cache]]</p>',NULL),(6072,'2012-12-05 11:16:24',56,1,'<p>People can <strong>invite new users via email</strong> if they have [[*account+*right|permission to create +*account]] cards.</p>\n<p>&nbsp;</p>\n<p>Newy invited users will be sent an email with a password and the following details:</p>\n<p>&nbsp;</p>\n<h2>Email subject</h2>\n<blockquote>\n<p>{{+*subject|type:Phrase}}</p>\n</blockquote>\n<p>&nbsp;</p>\n<h2>Email message</h2>\n<blockquote>\n<p>{{+*message|type:PlainText}}</p>\n</blockquote>\n<p>&nbsp;</p>\n<h2>Email from</h2>\n<blockquote>\n<p>{{+*from|type:Phrase}}</p>\n</blockquote>\n<p>&nbsp;</p>\n<p><strong>After sending an invitation, you\'re taken here:</strong><span></span></p>\n<blockquote>\n<div>HTTP:// <em>(YOUR WAGN\'S DOMAIN) </em>{{+*thanks}}</div>\n</blockquote>',NULL),(6078,'2012-12-05 11:16:24',147,1,'<p>Administrators can create, read, update and delete any card in the system regardless of its permissions rules. [[http://wagn.org/wagn/permissions|Learn more]].</p>',NULL),(6081,'2012-12-05 11:16:24',225,1,'<p>Each [[user]] can be given roles to organize site permissions. [[http://wagn.org/wagn/Role|Learn more about roles]].</p>',NULL),(6086,'2012-12-05 11:16:24',66,1,'<p>People can&nbsp;<strong>sign up with no approval process</strong>&nbsp;if you allow \"Anyone\" to create both [[/card/option/Account_Request|account requests]] and &nbsp;[[*account+*right| +*account cards]].</p>\n<p>&nbsp;</p>\n<p>Newly registered users will be sent an email with a password and the following details:</p>\n<p>&nbsp;</p>\n<h2>Email Subject</h2>\n<blockquote>\n<p>{{*signup+*subject|type:Phrase}}</p>\n</blockquote>\n<p>&nbsp;</p>\n<h2>Email Message</h2>\n<blockquote>\n<p>{{*signup+*message|closed;type:PlainText}}</p>\n</blockquote>\n<p>&nbsp;</p>\n<p>As the email is sent, the<strong> person signing up will be sent here</strong>:</p>\n<blockquote>\n<div>HTTP://<em>(YOUR WAGN\'S DOMAIN)</em>{{+*thanks}}</div>\n</blockquote>\n<p>&nbsp;</p>\n<p>&nbsp;</p>',NULL),(6089,'2012-12-05 11:16:24',308,1,'<p>When \"yes\", users permitted to create [[*account+*right|+*account cards]] can add [[http://www.wagn.org/wagn/account|accounts]] to cards in the [[set]].</p>',NULL),(6257,'2012-12-05 11:16:24',276,1,'1',NULL),(6260,'2012-12-05 11:16:24',314,1,'<!DOCTYPE HTML>\n<html>\n <head>\n {{*head}}\n </head>\n \n <body id=\"wagn\">\n <div id=\"menu\">\n [[/ | Home]] [[/recent | Recent]] {{*navbox}} {{*account links}}\n </div>\n \n <div id=\"primary\">\n {{_main}}\n </div>\n \n <div id=\"secondary\">\n <div id=\"logo\">[[/ | {{*logo}}]]</div>\n {{*sidebar}}\n <div id=\"credit\">Wheeled by [[http://www.wagn.org|Wagn]] v. {{*version}}</div>\n </div>\n </body>\n</html>',NULL),(6261,'2012-12-05 11:16:24',198,1,'',NULL),(6262,'2012-12-05 11:16:24',766,1,'',NULL),(6263,'2012-12-05 11:16:24',767,1,'',NULL);
77
+ /*!40000 ALTER TABLE `card_revisions` ENABLE KEYS */;
78
+ UNLOCK TABLES;
79
+
80
+ --
81
+ -- Table structure for table `cards`
82
+ --
83
+
84
+ DROP TABLE IF EXISTS `cards`;
85
+ /*!40101 SET @saved_cs_client = @@character_set_client */;
86
+ /*!40101 SET character_set_client = utf8 */;
87
+ CREATE TABLE `cards` (
88
+ `id` int(11) NOT NULL AUTO_INCREMENT,
89
+ `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
90
+ `key` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
91
+ `codename` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
92
+ `typecode` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
93
+ `trunk_id` int(11) DEFAULT NULL,
94
+ `tag_id` int(11) DEFAULT NULL,
95
+ `current_revision_id` int(11) DEFAULT NULL,
96
+ `created_at` datetime NOT NULL,
97
+ `updated_at` datetime NOT NULL,
98
+ `creator_id` int(11) NOT NULL,
99
+ `updater_id` int(11) NOT NULL,
100
+ `extension_id` int(11) DEFAULT NULL,
101
+ `extension_type` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
102
+ `indexed_name` text COLLATE utf8_unicode_ci,
103
+ `indexed_content` text COLLATE utf8_unicode_ci,
104
+ `read_rule_class` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
105
+ `read_rule_id` int(11) DEFAULT NULL,
106
+ `references_expired` int(11) DEFAULT NULL,
107
+ `trash` tinyint(1) NOT NULL,
108
+ `type_id` int(11) NOT NULL,
109
+ `created_by` int(11) DEFAULT NULL,
110
+ `updated_by` int(11) DEFAULT NULL,
111
+ PRIMARY KEY (`id`),
112
+ UNIQUE KEY `cards_key_uniq` (`key`),
113
+ KEY `cards_extension_index` (`extension_id`,`extension_type`),
114
+ KEY `cards_name_index` (`name`),
115
+ KEY `index_cards_on_read_rule_id` (`read_rule_id`),
116
+ KEY `index_cards_on_tag_id` (`tag_id`),
117
+ KEY `index_cards_on_trunk_id` (`trunk_id`),
118
+ KEY `card_type_index` (`type_id`)
119
+ ) ENGINE=InnoDB AUTO_INCREMENT=768 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
120
+ /*!40101 SET character_set_client = @saved_cs_client */;
121
+
122
+ --
123
+ -- Dumping data for table `cards`
124
+ --
125
+
126
+ LOCK TABLES `cards` WRITE;
127
+ /*!40000 ALTER TABLE `cards` DISABLE KEYS */;
128
+ INSERT INTO `cards` VALUES (1,'Wagn Bot','wagn_bot','wagn_bot','Basic',NULL,NULL,1541,'2012-12-05 11:16:24','2010-04-19 14:17:59',1,1,1,'User','\'bot\':2 \'wagn\':1','\'account\':6 \'autom\':10 \'bot\':2A \'card\':12,22 \'creat\':13 \'etc\':23 \'link\':18 \'make\':8 \'renam\':21 \'sign\':16 \'someon\':15 \'updat\':11,19 \'wagn\':1A','*all',500,NULL,0,3,1,3),(3,'Basic','basic','basic','Cardtype',NULL,NULL,5472,'2012-12-05 11:16:24','2011-03-19 16:33:11',1,1,1,'Cardtype','\'basic\':1','\'/new\':3 \'add\':6 \'basic\':1A \'card\':10,13 \'descript\':2 \'name\':5,9,12,16 \'self\':4,8,11 \'type\':14','*all',500,NULL,0,5,1,3),(4,'User','user','user','Cardtype',NULL,NULL,5490,'2012-12-05 11:16:24','2011-03-19 16:39:19',1,1,2,'Cardtype','\'user\':1','\'/new\':3 \'add\':6 \'card\':10,13 \'descript\':2 \'name\':5,9,12,16 \'self\':4,8,11 \'type\':14 \'user\':1A','*all',500,NULL,0,5,1,3),(5,'Cardtype','cardtype','cardtype','Cardtype',NULL,NULL,5470,'2012-12-05 11:16:24','2011-03-19 16:30:28',1,1,3,'Cardtype','\'cardtyp\':1','\'/new\':3 \'add\':6 \'card\':10,13 \'cardtyp\':1A \'descript\':2 \'name\':5,9,12,16 \'self\':4,8,11 \'type\':14','*all',500,NULL,0,5,1,3),(7,'Role','role','role','Cardtype',NULL,NULL,5487,'2012-12-05 11:16:24','2011-03-19 16:38:23',1,1,5,'Cardtype','\'role\':1','\'/new/role\':3 \'add\':4 \'descript\':2 \'name\':11 \'new\':6 \'role\':1A,7,8 \'type\':9','*all',500,NULL,0,5,1,3),(8,'Anyone','anyone','anyone','Role',NULL,NULL,8,'2012-12-05 11:16:24','2009-04-06 14:11:12',1,1,3,'Role','\'anyon\':1','\'anyon\':1A','*all',500,NULL,0,7,1,1),(9,'Anyone Signed In','anyone_signed_in','anyone_signed_in','Role',NULL,NULL,9,'2012-12-05 11:16:24','2009-04-06 14:11:12',1,1,2,'Role','\'anyon\':1 \'sign\':2','\'anyon\':1A \'sign\':2A','*all',500,NULL,0,7,1,1),(10,'Administrator','administrator','administrator','Role',NULL,NULL,10,'2012-12-05 11:16:24','2009-04-06 14:11:12',1,1,1,'Role','\'administr\':1','\'administr\':1A','*all',500,NULL,0,7,1,1),(12,'Account Request','account_request','account_request','Cardtype',NULL,NULL,5471,'2012-12-05 11:16:24','2011-03-19 16:30:46',1,1,6,'Cardtype','\'account\':1 \'request\':2','\'account\':1A \'descript\':3 \'request\':2A \'type\':4 \'updat\':6','*all',500,NULL,0,5,1,3),(15,'Anonymous','anonymous','anonymous','Basic',NULL,NULL,2573,'2012-12-05 11:16:24','2009-06-09 18:25:35',1,1,2,'User','\'anonym\':1','\'/wagn/account|learn\':17 \'account\':20 \'anonym\':1A,14 \'credit\':12 \'edit\':2 \'made\':3 \'peopl\':5 \'sign\':9 \'wagn.org\':16 \'wagn.org/wagn/account\':15','*all',500,NULL,0,3,1,4),(17,'Date','date','date','Cardtype',NULL,NULL,5479,'2012-12-05 11:16:24','2011-03-19 16:36:07',1,1,9,'Cardtype','\'date\':1','\'/new\':3 \'add\':6 \'card\':10,13 \'date\':1A \'descript\':2 \'name\':5,9,12,16 \'self\':4,8,11 \'type\':14','*all',500,NULL,0,5,1,3),(18,'File','file','file','Cardtype',NULL,NULL,5480,'2012-12-05 11:16:24','2011-03-19 16:36:21',1,1,10,'Cardtype','\'file\':1','\'/new\':3 \'add\':6 \'card\':10,13 \'descript\':2 \'file\':1A \'name\':5,9,12,16 \'self\':4,8,11 \'type\':14','*all',500,NULL,0,5,1,3),(19,'Image','image','image','Cardtype',NULL,NULL,5482,'2012-12-05 11:16:24','2011-03-19 16:37:02',1,1,11,'Cardtype','\'imag\':1','\'/new\':3 \'add\':6 \'card\':10,13 \'descript\':2 \'imag\':1A \'name\':5,9,12,16 \'self\':4,8,11 \'type\':14','*all',500,NULL,0,5,1,3),(20,'Number','number','number','Cardtype',NULL,NULL,5483,'2012-12-05 11:16:24','2011-03-19 16:37:17',1,1,12,'Cardtype','\'number\':1','\'/new\':3 \'add\':6 \'card\':10,13 \'descript\':2 \'name\':5,9,12,16 \'number\':1A \'self\':4,8,11 \'type\':14','*all',500,NULL,0,5,1,3),(22,'PlainText','plain_text','plain_text','Cardtype',NULL,NULL,5485,'2012-12-05 11:16:24','2011-03-19 16:37:52',1,1,14,'Cardtype','\'plaintext\':1','\'/new\':3 \'add\':6 \'card\':10,13 \'descript\':2 \'name\':5,9,12,16 \'plaintext\':1A \'self\':4,8,11 \'type\':14','*all',500,NULL,0,5,1,3),(28,'*all+*default','*all+*default',NULL,'Basic',274,318,28,'2012-12-05 11:16:24','2010-04-17 12:09:07',1,1,NULL,NULL,'\'default\':2','\'default\':2A','*all plus',500,NULL,0,3,1,1),(30,'Search','search','search_type','Cardtype',NULL,NULL,5488,'2012-12-05 11:16:24','2011-03-19 16:38:37',1,1,19,'Cardtype','\'search\':1','\'/new\':3 \'add\':6 \'card\':10,13 \'descript\':2 \'name\':5,9,12,16 \'search\':1A \'self\':4,8,11 \'type\':14','*all',500,NULL,0,5,1,3),(33,'*plus cards','*plu_card',NULL,'Basic',NULL,NULL,33,'2012-12-05 11:16:24','2009-04-06 14:11:12',1,1,NULL,NULL,'\'card\':2 \'plus\':1','\'card\':2A \'plus\':1A','*all',500,NULL,0,3,1,1),(34,'*plus cards+*right+*content','*plu_card+*right+*content',NULL,'Search',350,317,5607,'2012-12-05 11:16:24','2011-04-03 17:00:20',1,1,NULL,NULL,'\'card\':2 \'content\':4 \'plus\':1 \'right\':3','\'card\':2A \'content\':4A \'name\':8 \'part\':5 \'plus\':1A \'right\':3A \'self\':6 \'sort\':7','*all plus',500,NULL,0,30,1,4),(35,'*plus parts','*plu_part',NULL,'Basic',NULL,NULL,35,'2012-12-05 11:16:24','2009-04-06 14:11:12',1,1,NULL,NULL,'\'part\':2 \'plus\':1','\'part\':2A \'plus\':1A','*all',500,NULL,0,3,1,1),(36,'*plus parts+*right+*content','*plu_part+*right+*content',NULL,'Search',349,317,5608,'2012-12-05 11:16:24','2011-04-03 17:00:28',1,1,NULL,NULL,'\'content\':4 \'part\':2 \'plus\':1 \'right\':3','\'content\':4A \'name\':8 \'part\':2A \'plus\':1A,5 \'right\':3A \'self\':6 \'sort\':7','*all plus',500,NULL,0,30,1,4),(37,'*includers','*includer',NULL,'Basic',NULL,NULL,37,'2012-12-05 11:16:24','2009-04-09 15:46:04',1,1,NULL,NULL,'\'includ\':1','\'includ\':1A','*all',500,NULL,0,3,1,3),(38,'*includers+*right+*content','*includer+*right+*content',NULL,'Search',348,317,5603,'2012-12-05 11:16:24','2011-04-03 16:57:53',1,1,NULL,NULL,'\'content\':3 \'includ\':1 \'right\':2','\'content\':3A \'includ\':1A,4 \'name\':7 \'right\':2A \'self\':5 \'sort\':6','*all plus',500,NULL,0,30,1,4),(39,'*linkers','*linker',NULL,'Basic',NULL,NULL,39,'2012-12-05 11:16:24','2009-04-09 15:47:27',1,1,NULL,NULL,'\'linker\':1','\'linker\':1A','*all',500,NULL,0,3,1,3),(40,'*linkers+*right+*content','*linker+*right+*content',NULL,'Search',345,317,5606,'2012-12-05 11:16:24','2011-04-03 16:58:57',1,1,NULL,NULL,'\'content\':3 \'linker\':1 \'right\':2','\'content\':3A \'link\':4 \'linker\':1A \'name\':8 \'right\':2A \'self\':6 \'sort\':7','*all plus',500,NULL,0,30,1,4),(41,'*inclusions','*inclusion',NULL,'Basic',NULL,NULL,41,'2012-12-05 11:16:24','2009-04-09 15:46:30',1,1,NULL,NULL,'\'inclus\':1','\'inclus\':1A','*all',500,NULL,0,3,1,3),(42,'*inclusions+*right+*content','*inclusion+*right+*content',NULL,'Search',347,317,5604,'2012-12-05 11:16:24','2011-04-03 16:58:03',1,1,NULL,NULL,'\'content\':3 \'inclus\':1 \'right\':2','\'content\':3A \'includ\':4 \'inclus\':1A \'name\':8 \'right\':2A \'self\':6 \'sort\':7','*all plus',500,NULL,0,30,1,4),(43,'*links','*link',NULL,'Basic',NULL,NULL,43,'2012-12-05 11:16:24','2009-04-09 15:47:08',1,1,NULL,NULL,'\'link\':1','\'link\':1A','*all',500,NULL,0,3,1,3),(44,'*links+*right+*content','*link+*right+*content',NULL,'Search',346,317,5605,'2012-12-05 11:16:24','2011-04-03 16:58:54',1,1,NULL,NULL,'\'content\':3 \'link\':1 \'right\':2','\'content\':3A \'link\':1A,4 \'name\':9 \'right\':2A \'self\':7 \'sort\':8','*all plus',500,NULL,0,30,1,4),(47,'Pointer','pointer','pointer','Cardtype',NULL,NULL,5486,'2012-12-05 11:16:24','2011-03-19 16:38:10',1,1,20,'Cardtype','\'pointer\':1','\'/new\':3 \'add\':6 \'card\':10,13 \'descript\':2 \'name\':5,9,12,16 \'pointer\':1A \'self\':4,8,11 \'type\':14','*all',500,NULL,0,5,1,3),(50,'HTML','html','html','Cardtype',NULL,NULL,5481,'2012-12-05 11:16:24','2011-03-19 16:36:34',1,1,21,'Cardtype','\'html\':1','\'/new\':3 \'add\':6 \'card\':10,13 \'descript\':2 \'html\':1A \'name\':5,9,12,16 \'self\':4,8,11 \'type\':14','*all',500,NULL,0,5,1,3),(51,'Toggle','toggle','toggle','Cardtype',NULL,NULL,5489,'2012-12-05 11:16:24','2011-03-19 16:39:05',1,1,22,'Cardtype','\'toggl\':1','\'/new\':3 \'add\':6 \'card\':10,13 \'descript\':2 \'name\':5,9,12,16 \'self\':4,8,11 \'toggl\':1A \'type\':14','*all',500,NULL,0,5,1,3),(52,'Phrase','phrase','phrase','Cardtype',NULL,NULL,5484,'2012-12-05 11:16:24','2011-03-19 16:37:32',1,1,23,'Cardtype','\'phrase\':1','\'/new\':3 \'add\':6 \'card\':10,13 \'descript\':2 \'name\':5,9,12,16 \'phrase\':1A \'self\':4,8,11 \'type\':14','*all',500,NULL,0,5,1,3),(53,'*tinyMCE','*tiny_mce','tiny_mce','PlainText',NULL,NULL,6025,'2012-12-05 11:16:24','2012-01-14 01:47:25',1,1,NULL,NULL,'\'tinymc\':1','\'/stylesheets/defaults.css\':67 \'0\':82 \'100\':3 \'advanc\':11,13,26,29,32,36,41,46,50,55,60 \'align\':43,89,105 \'alt\':83 \'auto\':4 \'blockformat\':61 \'blockquot\':19 \'bold\':16 \'border\':81 \'bottom\':58 \'bullist\':20 \'buttons1\':14 \'buttons2\':27 \'buttons3\':30 \'class\':79,94,104 \'code\':24 \'color\':101 \'content\':65 \'css\':66 \'css.css\':68 \'element\':71 \'extend\':69 \'face\':99 \'fals\':9,34,53 \'font\':98 \'formatselect\':15 \'h1\':63 \'h2\':64 \'height\':88 \'horizont\':52 \'hr\':22,93 \'href\':74 \'hspace\':85 \'img\':78 \'ital\':17 \'left\':44 \'locat\':38,57 \'name\':73,92 \'noshad\':97 \'numlist\':21 \'onclick\':77 \'onmouseout\':91 \'onmouseov\':90 \'p\':62 \'path\':33 \'relat\':7 \'resiz\':5,47,51 \'separ\':18,23 \'size\':96,100 \'span\':103 \'src\':80 \'statusbar\':56 \'style\':102,106 \'target\':75 \'theme\':10,12,25,28,31,35,40,45,49,54,59 \'tinymc\':1A \'titl\':76,84 \'toolbar\':37,42 \'top\':39 \'true\':6,48 \'url\':8 \'valid\':70 \'vspace\':86 \'width\':2,87,95','*all',500,NULL,0,22,1,1),(55,'*title','*title','title','Phrase',NULL,NULL,1755,'2012-12-05 11:16:24','2009-04-08 10:23:29',1,1,NULL,NULL,'\'titl\':1','\'titl\':1A \'wagn\':3','*all',500,NULL,0,52,1,3),(56,'*invite','*invite','invite','Basic',NULL,NULL,6072,'2012-12-05 11:16:24','2012-10-09 23:20:10',1,1,NULL,NULL,'\'invit\':1','\'/admin/tasks\':13 \'account\':18 \'creat\':17 \'detail\':33 \'domain\':60 \'email\':8,26,34,39,44 \'follow\':32 \'global\':14 \'invit\':1A,4,20,52 \'messag\':40,41 \'new\':5 \'newi\':19 \'password\':29 \'peopl\':2 \'permiss\':15 \'phrase\':38,48 \'plaintext\':43 \'re\':54 \'send\':50 \'sent\':24 \'subject\':35,36 \'taken\':55 \'thank\':61 \'type\':37,42,47 \'user\':6,21 \'via\':7 \'wagn\':58','*all',500,NULL,0,3,1,3),(61,'*thanks','*thank','thanks','Setting',NULL,NULL,62,'2012-12-05 11:16:24','2009-12-18 15:24:33',1,1,NULL,NULL,'\'thank\':1','\'thank\':1A','*all',500,NULL,0,278,1,3),(62,'*invite+*thanks','*invite+*thank',NULL,'Phrase',56,61,2474,'2012-12-05 11:16:24','2009-12-17 09:21:52',1,1,NULL,NULL,'\'invit\':1 \'thank\':2','\'/wagn/invite_success\':3 \'invit\':1A \'thank\':2A','*all plus',500,NULL,0,52,1,1),(63,'*request','*request','request','Basic',NULL,NULL,5566,'2012-12-05 11:16:24','2011-03-21 08:42:54',1,1,NULL,NULL,'\'request\':1','\'/card/options/account_request\':17 \'account\':6,19,50,52 \'allow\':14 \'anyon\':15 \'approv\':23 \'approve/deny\':49 \'automat\':24 \'close\':32 \'creat\':18 \'domain\':45 \'email\':29 \'link\':11 \'peopl\':2 \'phrase\':34 \'redirect\':40 \'request\':1A,4,20,26,37,51,53 \'sign\':9 \'signup\':22 \'thank\':46 \'type\':33 \'unless\':21 \'via\':7 \'wagn\':43','*all',500,NULL,0,3,1,3),(64,'*to','*to','to','Basic',NULL,NULL,66,'2012-12-05 11:16:24','2010-04-20 18:00:53',1,1,NULL,NULL,'','','*all',500,NULL,0,3,1,3),(66,'*signup','*signup','signup','Basic',NULL,NULL,6086,'2012-12-05 11:16:24','2012-10-09 23:25:00',1,1,NULL,NULL,'\'signup\':1','\'/admin/tasks\':23 \'/card/options/account_request\':15 \'account\':17,28 \'allow\':12 \'anyon\':13,21 \'approv\':8 \'close\':54 \'creat\':16,27 \'detail\':43 \'domain\':73 \'email\':36,44,50,59 \'follow\':42 \'give\':20 \'global\':24 \'messag\':51,53 \'newli\':29 \'password\':39 \'peopl\':2 \'permiss\':25 \'person\':63 \'phrase\':49 \'plaintext\':56 \'process\':9 \'regist\':30 \'request\':18 \'sent\':34,61,68 \'sign\':4,64 \'signup\':1A,46,52 \'subject\':45,47 \'thank\':74 \'type\':48,55 \'user\':31 \'wagn\':71','*all',500,NULL,0,3,1,3),(67,'*signup+*thanks','*signup+*thank',NULL,'Phrase',66,61,2472,'2012-12-05 11:16:24','2009-12-17 09:21:50',1,1,NULL,NULL,'\'signup\':1 \'thank\':2','\'/wagn/signup_success\':3 \'signup\':1A \'thank\':2A','*all plus',500,NULL,0,52,1,1),(68,'Invite Success','invite_success',NULL,'Basic',NULL,NULL,2494,'2012-12-05 11:16:24','2009-06-01 12:55:14',1,1,NULL,NULL,'\'invit\':1 \'success\':2','\'account\':11 \'invit\':1A,5 \'request\':12 \'see\':10 \'success\':2A \'thank\':3 \'way\':9','*all',500,NULL,0,3,1,4),(69,'Signup Success','signup_success',NULL,'Basic',NULL,NULL,3318,'2012-12-05 11:16:24','2010-04-19 12:14:00',1,1,NULL,NULL,'\'signup\':1 \'success\':2','\'account\':12 \'emailbox\':21 \'inform\':13 \'new\':11 \'sign\':6 \'signup\':1A \'soon\':27 \'success\':2A \'thank\':3 \'titl\':9 \'way\':18','*all',500,NULL,0,3,1,3),(73,'Config','config',NULL,'Basic',NULL,NULL,5941,'2012-12-05 11:16:24','2011-07-22 10:03:07',1,1,NULL,NULL,'\'config\':1','\'/card/options/wagn_bot\':90 \'/wagn/account#administering%20accounts\':121 \'/wagn/custom_sign-up_information|further\':108 \'/wagn/favicon|how\':157 \'/wagn/formatting|formatting]]&nbsp;[[account\':114 \'/wagn/google_analytics|how\':145 \'access\':53 \'account\':70,74,126 \'account-rel\':73 \'address\':95 \'analyt\':138,150 \'appli\':32 \'basic\':2 \'bot\':92,102 \'card\':8,39,50,118 \'close\':13,17,21,41,43,79,81,83,103,130,134,136,140,152 \'come\':88 \'config\':1A \'configur\':34,71,72,109,125 \'creat\':29 \'css\':129 \'custom\':159 \'default\':66,85 \'email\':69,76,87,94 \'favicon\':151,161 \'given\':49 \'googl\':137,149 \'group\':37 \'home\':7,16 \'html\':132 \'imag\':11,23,154 \'impact\':47 \'invit\':82 \'key\':139 \'learn\':122 \'logo\':10,20 \'miscellan\':127 \'name\':6 \'open\':68 \'option\':56,99,128 \'phrase\':15,19,142 \'relat\':75 \'request\':78,115 \'rule\':26,30,46 \'set\':3,24,25,33,36,40,42,60,96,147 \'sidebar\':133 \'signup\':80,110 \'site\':5,64 \'site-wid\':63 \'system\':86 \'tab\':57,100 \'tinymc\':135 \'titl\':12 \'type\':14,18,22,131,141,153 \'user\':117 \'via\':97 \'wagn\':91,101 \'wagn.org\':144 \'wagn.org/wagn/google_analytics\':143 \'wide\':65 \'www.wagn.org\':107,113,120,156 \'www.wagn.org/wagn/account\':119 \'www.wagn.org/wagn/custom_sign-up_information\':106 \'www.wagn.org/wagn/favicon\':155 \'www.wagn.org/wagn/formatting\':112','*all',500,NULL,0,3,1,3),(77,'*home','*home','home','Phrase',NULL,NULL,5214,'2012-12-05 11:16:24','2011-02-21 10:23:17',1,1,NULL,NULL,'\'home\':1','\'home\':1A,2','*all',500,NULL,0,52,1,4),(79,'*logo','*logo','logo','Image',NULL,NULL,5985,'2012-12-05 11:16:24','2012-01-08 22:30:07',1,1,NULL,NULL,'\'logo\':1','\'logo\':1A','*self',556,NULL,0,19,1,3),(80,'Home','home',NULL,'Basic',NULL,NULL,6019,'2012-12-05 11:16:24','2012-01-08 23:12:38',1,1,NULL,NULL,'\'home\':1','\'/wagn/configuration|\':13 \'/wagn/documentation|\':17 \'/wagn/support|\':22 \'click\':26 \'config\':5 \'configur\':7,14 \'content\':27 \'document\':19 \'doubl\':25 \'double-click\':24 \'edit\':29 \'home\':1A \'learn\':9 \'start\':6 \'support\':23 \'wagn\':4 \'wagn.org\':12,16,21 \'wagn.org/wagn/configuration\':11 \'wagn.org/wagn/documentation\':15 \'wagn.org/wagn/support\':20 \'welcom\':2','*all',500,NULL,0,3,1,4),(81,'*sidebar','*sidebar',NULL,'Basic',NULL,NULL,2331,'2012-12-05 11:16:24','2009-12-12 14:05:19',1,1,NULL,NULL,'\'sidebar\':1','\'administr\':4 \'link\':5 \'menu\':2 \'open\':3,6 \'sidebar\':1A','*self',559,NULL,0,3,1,1),(82,'*edit help','*edit_help','edit_help','Setting',NULL,NULL,237,'2012-12-05 11:16:24','2009-12-22 08:05:08',1,1,NULL,NULL,'\'edit\':1 \'help\':2','\'edit\':1A \'help\':2A','*all',500,NULL,0,278,1,4),(83,'*sidebar+*self+*edit help','*sidebar+*self+*edit_help',NULL,'Basic',315,82,5936,'2012-12-05 11:16:24','2011-07-22 09:59:39',1,1,NULL,NULL,'\'edit\':3 \'help\':4 \'self\':2 \'sidebar\':1','\'/wagn/sidebar|learn\':13 \'appear\':7 \'content\':5 \'custom\':16 \'edit\':3A \'help\':4A \'self\':2A \'sidebar\':1A,10,18 \'www.wagn.org\':12 \'www.wagn.org/wagn/sidebar\':11','*all plus',559,NULL,0,3,1,3),(85,'Menu','menu',NULL,'Basic',NULL,NULL,5996,'2012-12-05 11:16:24','2012-01-08 22:33:46',1,1,NULL,NULL,'\'menu\':1','\'/card/new\':2 \'add\':3 \'card\':5 \'menu\':1A','*all',500,NULL,0,3,1,3),(86,'*options','*option','options','Setting',NULL,NULL,266,'2012-12-05 11:16:24','2009-12-02 16:02:58',1,1,NULL,NULL,'\'option\':1','\'option\':1A','*all',500,NULL,0,278,1,1),(87,'*options+*right+*default','*option+*right+*default',NULL,'Pointer',300,318,5497,'2012-12-05 11:16:24','2011-03-19 21:34:07',1,1,NULL,NULL,'\'default\':3 \'option\':1 \'right\':2','\'default\':3A \'option\':1A \'right\':2A','*all plus',500,NULL,0,47,1,4),(88,'Cardtype+*type+*content','cardtype+*type+*content',NULL,'Basic',320,317,5516,'2012-12-05 11:16:24','2011-03-19 22:06:30',1,1,NULL,NULL,'\'cardtyp\':1 \'content\':3 \'type\':2','\'/new\':5 \'add\':8 \'card\':11,14 \'cardtyp\':1A \'content\':3A \'descript\':4 \'linknam\':7 \'name\':10,13,17 \'self\':6,9,12 \'type\':2A,15','*all plus',500,NULL,0,3,1,4),(89,'*table of contents','*table_of_content','table_of_contents','Setting',NULL,NULL,311,'2012-12-05 11:16:24','2009-12-17 09:22:46',1,1,NULL,NULL,'\'content\':3 \'tabl\':1','\'content\':3A \'tabl\':1A','*all',500,NULL,0,278,1,3),(90,'*table of contents+*right+*edit help','*table_of_content+*right+*edit_help',NULL,'Basic',285,82,3494,'2012-12-05 11:16:24','2010-04-21 16:26:52',1,1,NULL,NULL,'\'content\':3 \'edit\':5 \'help\':6 \'right\':4 \'tabl\':1','\'/wagn/table_of_contents|table\':10 \'0\':24 \'autogener\':7 \'card\':14 \'content\':3A,12 \'edit\':5A \'header\':23 \'help\':6A \'least\':20 \'mani\':22 \'mean\':25 \'never\':26 \'right\':4A \'set\':17 \'tabl\':1A \'www.wagn.org\':9 \'www.wagn.org/wagn/table_of_contents\':8','*all plus',500,NULL,0,3,1,1),(91,'*table of contents+*right+*default','*table_of_content+*right+*default',NULL,'Number',285,318,3033,'2012-12-05 11:16:24','2010-04-15 18:42:47',1,1,NULL,NULL,'\'content\':3 \'default\':5 \'right\':4 \'tabl\':1','\'4\':6 \'content\':3A \'default\':5A \'right\':4A \'tabl\':1A','*all plus',500,NULL,0,20,1,1),(92,'*editors','*editor',NULL,'Basic',NULL,NULL,349,'2012-12-05 11:16:24','2009-04-06 14:11:12',1,1,NULL,NULL,'\'editor\':1','\'editor\':1A','*all',500,NULL,0,3,1,1),(93,'*editors+*right+*content','*editor+*right+*content',NULL,'Search',352,317,5966,'2012-12-05 11:16:24','2011-09-01 12:21:06',1,1,NULL,NULL,'\'content\':3 \'editor\':1 \'right\':2','\'content\':3A \'editor\':1A,4 \'name\':8 \'right\':2A \'self\':6 \'sort\':7','*all plus',500,NULL,0,30,1,3),(95,'*editing+*right+*content','*editing+*right+*content',NULL,'Search',351,317,5598,'2012-12-05 11:16:24','2011-04-03 16:49:16',1,1,NULL,NULL,'\'content\':3 \'edit\':1 \'right\':2','\'content\':3A \'edit\':1A,4 \'right\':2A \'self\':6 \'sort\':7 \'updat\':8','*all plus',500,NULL,0,30,1,4),(96,'*roles','*role','roles','Basic',NULL,NULL,353,'2012-12-05 11:16:24','2009-04-06 14:11:12',1,1,NULL,NULL,'\'role\':1','\'role\':1A','*all',500,NULL,0,3,1,1),(98,'*members','*member',NULL,'Basic',NULL,NULL,355,'2012-12-05 11:16:24','2009-04-09 16:34:46',1,1,NULL,NULL,'\'member\':1','\'member\':1A','*all',500,NULL,0,3,1,3),(99,'*members+*right+*content','*member+*right+*content',NULL,'Search',342,317,1881,'2012-12-05 11:16:24','2010-04-15 18:43:15',1,1,NULL,NULL,'\'content\':3 \'member\':1 \'right\':2','\'content\':3A \'member\':1A,4 \'name\':8 \'right\':2A \'self\':6 \'sort\':7','*all plus',500,NULL,0,30,1,1),(100,'*account','*account','account','Basic',NULL,NULL,5976,'2012-12-05 11:16:24','2012-01-02 13:49:04',1,1,NULL,NULL,'\'account\':1','\'/account/invite\':2 \'/wagn/account|&nbsp;learn\':18 \'account\':1A,10,21,22,24,31 \'associ\':12 \'card\':15,29 \'creat\':28 \'default\':8 \'invit\':3 \'new\':5,9 \'request\':23,25 \'titl\':32 \'type\':26 \'user\':6,14 \'wagn.org\':17 \'wagn.org/wagn/account\':16','*all',500,NULL,0,3,1,3),(101,'Cards with accounts','card_with_account',NULL,'Search',NULL,NULL,486,'2012-12-05 11:16:24','2011-03-24 08:47:48',1,1,NULL,NULL,'\'account\':3 \'card\':1','\'account\':3A \'card\':1A \'extens\':4 \'type\':5 \'user\':6','*all',500,NULL,0,30,1,4),(103,'*favicon','*favicon','favicon','Image',NULL,NULL,2622,'2012-12-05 11:16:24','2012-09-20 16:42:33',1,1,NULL,NULL,'\'favicon\':1','\'favicon\':1A','*all',500,NULL,0,3,1,3),(108,'*request+*thanks','*request+*thank',NULL,'Phrase',63,61,2473,'2012-12-05 11:16:24','2009-12-17 09:21:54',1,1,NULL,NULL,'\'request\':1 \'thank\':2','\'/wagn/request_sent\':3 \'request\':1A \'thank\':2A','*all plus',500,NULL,0,52,1,1),(109,'Request Sent','request_sent',NULL,'Basic',NULL,NULL,3031,'2012-12-05 11:16:24','2009-12-02 16:28:23',1,1,NULL,NULL,'\'request\':1 \'sent\':2','\'account\':17 \'approv\':19 \'possibl\':24 \'receiv\':12 \'request\':1A,14 \'sent\':2A \'sign\':6 \'someon\':10 \'soon\':22 \'thank\':3 \'titl\':9','*all',500,NULL,0,3,1,4),(110,'*plusses','*pluss',NULL,'Basic',NULL,NULL,1225,'2012-12-05 11:16:24','2009-04-09 15:41:06',1,1,NULL,NULL,'\'pluss\':1','\'pluss\':1A','*all',500,NULL,0,3,1,3),(111,'*plusses+*right+*content','*pluss+*right+*content',NULL,'Basic',337,317,2210,'2012-12-05 11:16:24','2010-04-15 18:43:07',1,1,NULL,NULL,'\'content\':3 \'pluss\':1 \'right\':2','\'card\':5,21,29,31,39 \'content\':3A \'descript\':14 \'e.g\':12 \'form\':17 \'left\':27,32,37,40,46 \'make\':24 \'menu\':13 \'name\':11,33 \'part\':35,42,45,48 \'plus\':4,8,28,30,38,41,47 \'pluss\':1A,19 \'right\':2A \'third\':26 \'togeth\':22 \'two\':20','*all plus',500,NULL,0,3,1,1),(112,'*related','*related','related','Pointer',NULL,NULL,2008,'2012-12-05 11:16:24','2009-04-24 15:34:53',1,1,NULL,NULL,'\'relat\':1','\'communiti\':5 \'incom\':2 \'outgo\':3 \'pluss\':4 \'relat\':1A','*all',500,NULL,0,47,1,1),(115,'*community','*community',NULL,'Basic',NULL,NULL,1253,'2012-12-05 11:16:24','2009-04-09 15:43:28',1,1,NULL,NULL,'\'communiti\':1','\'communiti\':1A','*all',500,NULL,0,3,1,3),(116,'*community+*right+*content','*community+*right+*content',NULL,'Basic',340,317,5306,'2012-12-05 11:16:24','2011-02-25 22:44:53',1,1,NULL,NULL,'\'communiti\':1 \'content\':3 \'right\':2','\'/wagn/notification|learn\':38 \'ad\':4 \'communiti\':1A \'content\':3A \'creator\':7 \'discuss\':47,48,50 \'editor\':12,15,19,21,23 \'instruct\':31 \'item\':8,16,24,44 \'last\':14 \'left\':6,13,18,22,26,29,42,46,49,52,54,59 \'link\':9,17,25,45 \'nake\':35 \'name\':55 \'notif\':41 \'open\':51 \'recent\':11 \'relat\':33 \'right\':2A \'tab\':34 \'tag\':53,57,60 \'wagn.org\':37 \'wagn.org/wagn/notification\':36 \'watcher\':27,28,30,43','*all plus',500,NULL,0,3,1,4),(117,'*related+*right+*default','*related+*right+*default',NULL,'Pointer',343,318,1270,'2012-12-05 11:16:24','2010-04-15 18:43:16',1,1,NULL,NULL,'\'default\':3 \'relat\':1 \'right\':2','\'default\':3A \'relat\':1A \'right\':2A','*all plus',500,NULL,0,47,1,1),(118,'*account+*related','*account+*related',NULL,'Pointer',100,112,1871,'2012-12-05 11:16:24','2009-04-09 16:11:44',1,1,NULL,NULL,'\'account\':1 \'relat\':2','\'account\':1A,3 \'relat\':2A','*all plus',500,NULL,0,47,1,3),(128,'tags','tag',NULL,'Basic',NULL,NULL,1407,'2012-12-05 11:16:24','2009-04-06 14:11:12',1,1,NULL,NULL,'\'tag\':1','\'tag\':1A','*all',500,NULL,0,3,1,1),(129,'tags+*right+*default','tag+*right+*default',NULL,'Pointer',355,318,1408,'2012-12-05 11:16:24','2010-04-15 18:43:31',1,1,NULL,NULL,'\'default\':3 \'right\':2 \'tag\':1','\'default\':3A \'right\':2A \'tag\':1A','*all plus',500,NULL,0,47,1,1),(130,'discussion','discussion',NULL,'Basic',NULL,NULL,1409,'2012-12-05 11:16:24','2009-04-06 14:11:12',1,1,NULL,NULL,'\'discuss\':1','\'discuss\':1A','*all',500,NULL,0,3,1,1),(131,'discussion+*right+*default','discussion+*right+*default',NULL,'Basic',354,318,1410,'2012-12-05 11:16:24','2010-04-15 18:43:30',1,1,NULL,NULL,'\'default\':3 \'discuss\':1 \'right\':2','\'default\':3A \'discuss\':1A \'right\':2A','*all plus',500,NULL,0,3,1,1),(137,'*from','*from','from','Basic',NULL,NULL,1521,'2012-12-05 11:16:24','2010-04-20 18:01:25',1,1,NULL,NULL,'','','*all',500,NULL,0,3,1,3),(138,'*editing','*editing',NULL,'Basic',NULL,NULL,1550,'2012-12-05 11:16:24','2009-04-06 14:11:12',1,1,NULL,NULL,'\'edit\':1','\'edit\':1A','*all',500,NULL,0,3,1,1),(146,'description','description',NULL,'Basic',NULL,NULL,1696,'2012-12-05 11:16:24','2009-04-06 14:11:12',1,1,NULL,NULL,'\'descript\':1','\'descript\':1A','*all',500,NULL,0,3,1,1),(147,'Administrator+description','administrator+description',NULL,'Basic',10,146,6078,'2012-12-05 11:16:24','2012-10-09 23:22:14',1,1,NULL,NULL,'\'administr\':1 \'descript\':2','\'/admin/tasks\':9 \'/wagn/permissions|documentation\':35 \'administr\':1A,3 \'automat\':4 \'card\':22 \'delet\':20 \'descript\':2A \'edit\':18 \'everi\':21 \'global\':10 \'permiss\':11,29,37 \'power\':15 \'regardless\':26 \'see\':17,31 \'set\':30 \'system\':25 \'wagn.org\':34 \'wagn.org/wagn/permissions\':33','*all plus',500,NULL,0,3,1,1),(151,'Administrator links','administrator_link',NULL,'Basic',NULL,NULL,6063,'2012-12-05 11:16:24','2012-10-01 16:35:39',1,1,NULL,NULL,'\'administr\':1 \'link\':2','\'/admin/clear_cache\':10 \'/admin/tasks\':7 \'account\':5,6 \'administr\':1A \'cach\':13 \'clear\':11 \'config\':3 \'configur\':4 \'global\':8 \'link\':2A \'permiss\':9','*self',518,NULL,0,3,3,3),(168,'*outgoing','*outgoing',NULL,'Basic',NULL,NULL,1988,'2012-12-05 11:16:24','2009-04-24 09:57:11',1,1,NULL,NULL,'\'outgo\':1','\'outgo\':1A','*all',500,NULL,0,3,4,4),(169,'*outgoing+*right+*content','*outgoing+*right+*content',NULL,'Basic',339,317,2054,'2012-12-05 11:16:24','2010-04-15 18:43:10',1,1,NULL,NULL,'\'content\':3 \'outgo\':1 \'right\':2','\'content\':3A \'includ\':16 \'inclus\':13,18 \'left\':4,6,10,12,14,17,19,21,26 \'link\':5,8,11 \'name\':7,15,22 \'outgo\':1A \'right\':2A \'tag\':20,24,27','*all plus',500,NULL,0,3,4,1),(170,'*incoming','*incoming',NULL,'Basic',NULL,NULL,1993,'2012-12-05 11:16:24','2009-04-24 10:07:12',1,1,NULL,NULL,'\'incom\':1','\'incom\':1A','*all',500,NULL,0,3,4,4),(171,'*incoming+*right+*content','*incoming+*right+*content',NULL,'Basic',334,317,2336,'2012-12-05 11:16:24','2010-04-15 18:43:04',1,1,NULL,NULL,'\'content\':3 \'incom\':1 \'right\':2','\'content\':3A \'includ\':14,16,20 \'incom\':1A \'left\':4,9,11,13,17,19,21,26,28 \'link\':7 \'linker\':5,12 \'name\':10,18,27 \'right\':2A \'tag\':22,25,29','*all plus',500,NULL,0,3,4,1),(172,'*tagged','*tagged',NULL,'Basic',NULL,NULL,2013,'2012-12-05 11:16:24','2009-04-24 10:30:47',1,1,NULL,NULL,'\'tag\':1','\'tag\':1A','*all',500,NULL,0,3,3,3),(173,'*tagged+*right+*content','*tagged+*right+*content',NULL,'Search',338,317,2022,'2012-12-05 11:16:24','2010-04-15 18:43:09',1,1,NULL,NULL,'\'content\':3 \'right\':2 \'tag\':1','\'content\':3A \'plus\':5 \'refer\':7 \'right\':2A,4 \'self\':9 \'tag\':1A,6','*all plus',500,NULL,0,30,3,1),(178,'by update','by_update',NULL,'Basic',NULL,NULL,2087,'2012-12-05 11:16:24','2009-04-24 12:46:20',1,1,NULL,NULL,'\'updat\':2','\'updat\':2A','*all',500,NULL,0,3,4,3),(179,'by update+*right+*content','by_update+*right+*content',NULL,'Search',341,317,2089,'2012-12-05 11:16:24','2010-04-15 18:43:14',1,1,NULL,NULL,'\'content\':4 \'right\':3 \'updat\':2','\'content\':4A \'found\':5 \'right\':3A \'self\':7 \'sort\':8 \'updat\':2A,9','*all plus',500,NULL,0,30,4,1),(180,'Cardtype+description','cardtype+description',NULL,'Basic',5,146,2093,'2012-12-05 11:16:24','2010-04-21 16:27:07',1,1,NULL,NULL,'\'cardtyp\':1 \'descript\':2','\'/wagn/card_types|documentation\':31 \'add\':20 \'also\':19 \'card\':4,33 \'cardtyp\':1A,23 \'descript\':2A \'everi\':3 \'goe\':14 \'inform\':13 \'kind\':11 \'learn\':25 \'read\':27 \'shape\':9 \'type\':7,34 \'wagn.org\':30 \'wagn.org/wagn/card_types\':29','*all plus',500,NULL,0,3,4,1),(181,'User+description','user+description',NULL,'Basic',4,146,2094,'2012-12-05 11:16:24','2010-04-21 16:27:07',1,1,NULL,NULL,'\'descript\':2 \'user\':1','\'/wagn/user|documentation\':18 \'account\':5 \'card\':10,21 \'descript\':2A \'general\':6 \'learn\':12 \'peopl\':3 \'read\':14 \'user\':1A,9,20 \'wagn.org\':17 \'wagn.org/wagn/user\':16','*all plus',500,NULL,0,3,4,1),(182,'Search+description','search+description',NULL,'Basic',30,146,5196,'2012-12-05 11:16:24','2011-02-19 08:32:20',1,1,NULL,NULL,'\'descript\':2 \'search\':1','\'/wagn/wql\':21 \'/wagn/wql|wql,\':12 \'card\':8 \'descript\':2A \'document\':24 \'languag\':16 \'list\':6 \'queri\':15 \'return\':4 \'search\':1A,3 \'see\':17 \'syntax\':22,23 \'use\':9 \'wagn\':14 \'wagn.org\':11,20 \'wagn.org/wagn/wql\':10,19','*all plus',500,NULL,0,3,3,3),(184,'by name','by_name',NULL,'Basic',NULL,NULL,2264,'2012-12-05 11:16:24','2009-04-25 12:29:02',1,1,NULL,NULL,'\'name\':2','\'name\':2A','*all',500,NULL,0,3,4,4),(185,'by name+*right+*content','by_name+*right+*content',NULL,'Search',336,317,2266,'2012-12-05 11:16:24','2010-04-15 18:43:06',1,1,NULL,NULL,'\'content\':4 \'name\':2 \'right\':3','\'content\':4A \'found\':5 \'name\':2A,9 \'right\':3A \'self\':7 \'sort\':8','*all plus',500,NULL,0,30,4,1),(190,'by create','by_create',NULL,'Basic',NULL,NULL,2290,'2012-12-05 11:16:24','2009-04-27 23:08:41',1,1,NULL,NULL,'\'creat\':2','\'creat\':2A','*all',500,NULL,0,3,4,4),(191,'by create+*right+*content','by_create+*right+*content',NULL,'Search',335,317,2291,'2012-12-05 11:16:24','2010-04-15 18:43:06',1,1,NULL,NULL,'\'content\':4 \'creat\':2 \'right\':3','\'content\':4A \'creat\':2A,9 \'found\':5 \'right\':3A \'self\':7 \'sort\':8','*all plus',500,NULL,0,30,4,1),(198,'*css','*css','css','PlainText',NULL,NULL,6261,'2012-12-05 11:16:24','2012-12-02 03:19:38',1,1,NULL,NULL,'\'css\':1','\'/images/body-bg.png\':16 \'222299\':56 \'28\':31 \'333333\':77 \'335533\':40 \'444444\':6 \'664444\':50 \'67\':28 \'background\':8,14,34,39,63,87 \'bar\':33 \'bodi\':2,4,12 \'c0d9c0\':64 \'card\':22,57,61,66,69,80 \'card-foot\':79 \'card-head\':60,65,68 \'cccccc\':20 \'color\':5,11,35,37,43,49,55,76 \'credit\':86 \'css\':1A \'current\':85 \'dddddd\':88 \'eeeeee\':44 \'etc\':59 \'font\':73 \'font-weight\':72 \'footer\':81 \'h1\':47 \'h1.page\':51 \'h2\':48 \'h2.page\':53 \'header\':45,52,54,58,62,67,70 \'imag\':9 \'main\':21 \'menu\':38,41 \'misc\':78 \'navig\':84 \'normal\':75 \'page\':7 \'primari\':26 \'repeat\':18 \'repeat-x\':17 \'revis\':83 \'revision-navig\':82 \'secondari\':29 \'sidebar\':24 \'text\':3,36,46 \'top\':32 \'url\':15 \'wagn\':13 \'weight\':74 \'width\':25,27,30 \'x\':19','*self',552,NULL,0,22,4,3),(200,'Form submission thanks','form_submission_thank',NULL,'Basic',NULL,NULL,2402,'2012-12-05 11:16:24','2009-05-21 10:35:27',1,1,NULL,NULL,'\'form\':1 \'submiss\':2 \'thank\':3','\'form\':1A,8 \'submiss\':2A \'submit\':6 \'thank\':3A,4','*all',500,NULL,0,3,4,4),(201,'HTML+*type+*default','html+*type+*default',NULL,'Basic',319,318,2403,'2012-12-05 11:16:24','2010-04-15 18:42:30',1,1,NULL,NULL,'\'default\':3 \'html\':1 \'type\':2','\'default\':3A \'html\':1A \'type\':2A','*all plus',500,NULL,0,3,4,1),(202,'HTML+description','html+description',NULL,'Basic',50,146,2408,'2012-12-05 11:16:24','2010-04-21 16:27:06',1,1,NULL,NULL,'\'descript\':2 \'html\':1','\'/wagn/html|documentation\':14 \'allow\':5 \'card\':4,17 \'descript\':2A \'html\':1A,9,16 \'see\':10 \'unrestrict\':6 \'use\':7 \'wagn.org\':13 \'wagn.org/wagn/html\':12','*all plus',500,NULL,0,3,4,1),(205,'*thanks+*right+*default','*thank+*right+*default',NULL,'Phrase',288,318,2430,'2012-12-05 11:16:24','2010-04-15 18:42:52',1,1,NULL,NULL,'\'default\':3 \'right\':2 \'thank\':1','\'default\':3A \'right\':2A \'thank\':1A','*all plus',500,NULL,0,52,4,1),(210,'Anyone+description','anyone+description',NULL,'Basic',8,146,2571,'2012-12-05 11:16:24','2010-04-21 16:27:04',1,1,NULL,NULL,'\'anyon\':1 \'descript\':2','\'/wagn/account|learn\':22 \'account\':25 \'anonym\':19 \'anyon\':1A,3 \'credit\':17 \'descript\':2A \'edit\':12 \'make\':14 \'role\':11 \'sign\':7 \'wagn.org\':21 \'wagn.org/wagn/account\':20','*all plus',500,NULL,0,3,4,1),(211,'Anyone Signed In+description','anyone_signed_in+description',NULL,'Basic',9,146,2570,'2012-12-05 11:16:24','2010-04-21 16:27:05',1,1,NULL,NULL,'\'anyon\':1 \'descript\':4 \'sign\':2','\'/wagn/account|learn\':15 \'account\':18 \'anyon\':1A,5 \'descript\':4A \'role\':12 \'sign\':2A,8 \'wagn.org\':14 \'wagn.org/wagn/account\':13','*all plus',500,NULL,0,3,4,1),(212,'Toggle+description','toggle+description',NULL,'Basic',51,146,2574,'2012-12-05 11:16:24','2010-04-21 16:27:04',1,1,NULL,NULL,'\'descript\':2 \'toggl\':1','\'/wagn/toggle|learn\':11 \'descript\':2A \'indic\':5 \'simpli\':4 \'toggl\':1A,3,14 \'wagn.org\':10 \'wagn.org/wagn/toggle\':9 \'yes\':6','*all plus',500,NULL,0,3,4,1),(213,'Pointer+description','pointer+description',NULL,'Basic',47,146,5524,'2012-12-05 11:16:24','2011-03-19 22:15:26',1,1,NULL,NULL,'\'descript\':2 \'pointer\':1','\'/wagn/pointer|learn\':15 \'card\':12 \'descript\':2A \'list\':4 \'one\':8 \'point\':6 \'pointer\':1A,3,18 \'wagn.org\':14 \'wagn.org/wagn/pointer\':13','*all plus',500,NULL,0,3,4,4),(214,'Image+description','image+description',NULL,'Basic',19,146,2576,'2012-12-05 11:16:24','2010-04-21 16:27:03',1,1,NULL,NULL,'\'descript\':2 \'imag\':1','\'/wagn/image|learn\':23 \'appear\':20 \'card\':10,27 \'descript\':2A \'imag\':1A,7,9,18,26 \'includ\':12 \'upload\':6 \'wagn\':4 \'wagn.org\':22 \'wagn.org/wagn/image\':21 \'want\':16 \'wherev\':14','*all plus',500,NULL,0,3,4,1),(215,'File+description','file+description',NULL,'Basic',18,146,4871,'2012-12-05 11:16:24','2011-02-15 22:54:16',1,1,NULL,NULL,'\'descript\':2 \'file\':1','\'/wagn/file|learn\':13 \'card\':4,17 \'descript\':2A \'download\':9 \'file\':1A,3,10,16 \'upload\':7 \'wagn.org\':12 \'wagn.org/wagn/file\':11','*all plus',500,NULL,0,3,4,3),(216,'Account Request+description','account_request+description',NULL,'Basic',12,146,2581,'2012-12-05 11:16:24','2010-04-21 16:27:02',1,1,NULL,NULL,'\'account\':1 \'descript\':3 \'request\':2','\'/wagn/account|learn\':16 \'account\':1A,8,19 \'approv\':13 \'descript\':3A \'peopl\':4 \'request\':2A,7 \'wagn.org\':15 \'wagn.org/wagn/account\':14 \'yet\':11','*all plus',500,NULL,0,3,4,1),(217,'Image+*right+*default','image+*right+*default',NULL,'Image',331,318,2604,'2012-12-05 11:16:24','2010-04-15 18:43:00',1,1,NULL,NULL,'\'default\':3 \'imag\':1 \'right\':2','\'default\':3A \'imag\':1A \'right\':2A','*all plus',500,NULL,0,19,4,1),(219,'*watchers','*watcher','watchers','Basic',NULL,NULL,3754,'2012-12-05 11:16:24','2010-11-01 17:46:26',1,1,NULL,NULL,'\'watcher\':1','\'/wagn/notification|learn\':19 \'card\':3,13,15 \'chang\':10 \'email\':8 \'get\':7 \'name\':25 \'notif\':22 \'right\':23 \'show\':4 \'type\':16 \'watcher\':1A \'www.wagn.org\':18 \'www.wagn.org/wagn/notification\':17','*all',500,NULL,0,3,5,1),(220,'*watchers+*right+*default','*watcher+*right+*default',NULL,'Pointer',269,318,2609,'2012-12-05 11:16:24','2010-04-15 18:42:59',1,1,NULL,NULL,'\'default\':3 \'right\':2 \'watcher\':1','\'default\':3A \'right\':2A \'watcher\':1A','*all plus',500,NULL,0,47,5,1),(221,'*watchers+*right+*options','*watcher+*right+*option',NULL,'Search',269,86,5713,'2012-12-05 11:16:24','2011-06-06 13:11:10',1,1,NULL,NULL,'\'option\':3 \'right\':2 \'watcher\':1','\'2.0\':19 \'deprec\':13 \'extens\':4 \'note\':7 \'option\':3A \'right\':2A \'syntax\':9 \'type\':5 \'user\':6 \'wagn\':18 \'watcher\':1A \'yet\':12','*all plus',500,NULL,0,30,4,3),(222,'*watching','*watching',NULL,'Basic',NULL,NULL,2624,'2012-12-05 11:16:24','2009-07-03 11:43:20',1,1,NULL,NULL,'\'watch\':1','\'watch\':1A','*all',500,NULL,0,3,4,4),(223,'*watching+*right+*content','*watching+*right+*content',NULL,'Search',329,317,5621,'2012-12-05 11:16:24','2011-04-03 17:07:11',1,1,NULL,NULL,'\'content\':3 \'right\':2 \'watch\':1','\'accept\':7 \'card\':8 \'cardtyp\':19,27 \'content\':3A \'def\':9 \'fixit\':4 \'name\':34 \'plus\':12,21,28 \'refer\':14,23,30 \'right\':2A \'self\':16,25,32 \'sort\':33 \'type\':6,18,20,26 \'watch\':1A \'watcher\':13,22,29','*all plus',500,NULL,0,30,4,4),(225,'Role+description','role+description',NULL,'Basic',7,146,6081,'2012-12-05 11:16:24','2012-10-09 23:23:16',1,1,NULL,NULL,'\'descript\':2 \'role\':1','\'/admin/tasks\':18 \'/wagn/role|learn\':32 \'administr\':24 \'capabl\':14 \'defin\':16 \'descript\':2A \'except\':21 \'global\':19 \'one\':6 \'permiss\':20,29 \'role\':1A,9,12,25,35 \'user\':4 \'wagn.org\':31 \'wagn.org/wagn/role\':30','*all plus',500,NULL,0,3,4,1),(241,'*input','*input','input','Setting',NULL,NULL,2878,'2012-12-05 11:16:24','2009-12-02 16:02:58',1,1,NULL,NULL,'\'input\':1','\'input\':1A','*all',500,NULL,0,278,4,1),(242,'*input+*right+*default','*input+*right+*default',NULL,'Pointer',268,318,2879,'2012-12-05 11:16:24','2011-04-04 16:52:55',1,1,NULL,NULL,'\'default\':3 \'input\':1 \'right\':2','\'default\':3A \'input\':1A \'right\':2A','*all plus',500,NULL,0,47,4,4),(247,'*autoname','*autoname','autoname','Setting',NULL,NULL,2889,'2012-12-05 11:16:24','2009-12-02 16:02:57',1,1,NULL,NULL,'\'autonam\':1','\'autonam\':1A','*all',500,NULL,0,278,4,1),(248,'*autoname+*right+*default','*autoname+*right+*default',NULL,'Phrase',289,318,2890,'2012-12-05 11:16:24','2010-04-15 18:42:58',1,1,NULL,NULL,'\'autonam\':1 \'default\':3 \'right\':2','\'autonam\':1A \'default\':3A \'right\':2A','*all plus',500,NULL,0,52,4,1),(249,'*autoname+*right+*edit help','*autoname+*right+*edit_help',NULL,'Basic',289,82,6039,'2012-12-05 11:16:24','2012-03-02 19:11:17',1,1,NULL,NULL,'\'autonam\':1 \'edit\':3 \'help\':4 \'right\':2','\'/wagn/autonaming|learn\':27 \'autonam\':1A,7 \'card\':9,24 \'edit\':3A \'give\':17 \'help\':4A \'increment\':20 \'name\':15 \'new\':8,23 \'right\':2A \'set\':12 \'wagn\':5 \'wagn.org\':26 \'wagn.org/wagn/autonaming\':25','*all plus',500,NULL,0,3,4,3),(250,'*thanks+*right+*edit help','*thank+*right+*edit_help',NULL,'Basic',288,82,3495,'2012-12-05 11:16:24','2010-04-21 16:26:52',1,1,NULL,NULL,'\'edit\':3 \'help\':4 \'right\':2 \'thank\':1','\'/wagn/custom_thank_you_messages_for_forms|learn\':19 \'card\':13 \'creat\':11 \'edit\':3A \'help\':4A \'messag\':24 \'peopl\':8 \'right\':2A \'set\':16 \'take\':7 \'thank\':1A,22 \'www.wagn.org\':18 \'www.wagn.org/wagn/custom_thank_you_messages_for_forms\':17','*all plus',500,NULL,0,3,4,1),(252,'*option label','*option_label','options_label','Setting',NULL,NULL,3023,'2012-12-05 11:16:24','2009-12-02 16:02:58',1,1,NULL,NULL,'\'label\':2 \'option\':1','\'label\':2A \'option\':1A','*all',500,NULL,0,278,4,1),(253,'*option label+*right+*default','*option_label+*right+*default',NULL,'Phrase',286,318,2901,'2012-12-05 11:16:24','2010-04-15 18:42:51',1,1,NULL,NULL,'\'default\':4 \'label\':2 \'option\':1 \'right\':3','\'default\':4A \'label\':2A \'option\':1A \'right\':3A','*all plus',500,NULL,0,52,4,1),(254,'*option label+*right+*edit help','*option_label+*right+*edit_help',NULL,'Basic',286,82,6040,'2012-12-05 11:16:24','2012-03-02 19:14:15',1,1,NULL,NULL,'\'edit\':4 \'help\':5 \'label\':2 \'option\':1 \'right\':3','\'/wagn/pointer|learn\':52 \'1\':44 \'2\':47 \'button\':32 \'card\':13,25,29 \'checkbox\':34 \'descript\':37,45,48 \'e.g\':36 \'edit\':4A \'etc\':49 \'form\':27 \'help\':5A \'item\':35 \'label\':2A,6,28 \'look\':41 \'make\':39 \'name\':14 \'option\':1A,9,24,43,46 \'pluss\':17 \'pointer\':8,22 \'radio\':31 \'right\':3A \'valu\':10 \'wagn\':40 \'www.wagn.org\':51 \'www.wagn.org/wagn/pointer\':50','*all plus',500,NULL,0,3,4,3),(255,'*layout','*layout','layout','Setting',NULL,NULL,3019,'2012-12-05 11:16:24','2009-12-02 16:02:57',1,1,NULL,NULL,'\'layout\':1','\'layout\':1A','*all',500,NULL,0,278,1,1),(256,'*captcha','*captcha','captcha','Setting',NULL,NULL,3021,'2012-12-05 11:16:24','2009-12-02 16:02:57',1,1,NULL,NULL,'\'captcha\':1','\'captcha\':1A','*all',500,NULL,0,278,5,1),(257,'*captcha+*right+*default','*captcha+*right+*default',NULL,'Toggle',302,318,2930,'2012-12-05 11:16:24','2010-04-15 18:42:45',1,1,NULL,NULL,'\'captcha\':1 \'default\':3 \'right\':2','\'1\':4 \'captcha\':1A \'default\':3A \'right\':2A','*all plus',500,NULL,0,51,4,1),(259,'Set','set','set','Cardtype',NULL,NULL,5469,'2012-12-05 11:16:24','2011-03-19 16:28:08',1,1,24,'Cardtype','\'set\':1','\'card\':5 \'descript\':2 \'name\':4,8 \'self\':3 \'set\':1A \'type\':6','*all',500,NULL,0,5,1,3),(260,'*right','*right','right','Basic',NULL,NULL,3001,'2012-12-05 11:16:24','2010-04-20 18:00:53',1,1,NULL,NULL,'\'right\':1','\'right\':1A','*all',500,NULL,0,3,1,3),(261,'*right+*right+*content','*right+*right+*content',NULL,'Set',324,317,3002,'2012-12-05 11:16:24','2010-04-15 18:42:43',1,1,NULL,NULL,'\'content\':3 \'right\':1,2','\'content\':3A \'right\':1A,2A,4 \'self\':5','*all plus',500,NULL,0,259,1,1),(262,'*type plus right','*type_plu_right','type_plus_right','Basic',NULL,NULL,3003,'2012-12-05 11:16:24','2009-12-02 16:03:03',1,1,NULL,NULL,'\'plus\':2 \'right\':3 \'type\':1','\'plus\':2A \'right\':3A \'type\':1A','*all',500,NULL,0,3,1,1),(263,'*type plus right+*right+*content','*type_plu_right+*right+*content',NULL,'Set',325,317,3004,'2012-12-05 11:16:24','2010-04-15 18:42:43',1,1,NULL,NULL,'\'content\':5 \'plus\':2 \'right\':3,4 \'type\':1','\'content\':5A \'left\':6,8 \'plus\':2A \'right\':3A,4A,9,10 \'type\':1A,7','*all plus',500,NULL,0,259,1,1),(264,'*self','*self','self','Basic',NULL,NULL,3005,'2012-12-05 11:16:24','2009-12-02 16:03:00',1,1,NULL,NULL,'\'self\':1','\'self\':1A','*all',500,NULL,0,3,1,1),(265,'*self+*right+*content','*self+*right+*content',NULL,'Set',326,317,3006,'2012-12-05 11:16:24','2010-04-15 18:42:44',1,1,NULL,NULL,'\'content\':3 \'right\':2 \'self\':1','\'content\':3A \'name\':4 \'right\':2A \'self\':1A,5','*all plus',500,NULL,0,259,1,1),(266,'*type','*type','type','Basic',NULL,NULL,3007,'2012-12-05 11:16:24','2009-12-02 16:03:00',1,1,NULL,NULL,'\'type\':1','\'type\':1A','*all',500,NULL,0,3,1,1),(267,'*type+*right+*content','*type+*right+*content',NULL,'Set',327,317,3008,'2012-12-05 11:16:24','2010-04-15 18:42:45',1,1,NULL,NULL,'\'content\':3 \'right\':2 \'type\':1','\'content\':3A \'right\':2A \'self\':5 \'type\':1A,4','*all plus',500,NULL,0,259,1,1),(268,'*input+*right','*input+*right',NULL,'Set',241,260,3009,'2012-12-05 11:16:24','2009-12-08 12:25:14',1,1,NULL,NULL,'\'input\':1 \'right\':3','\'input\':1A \'right\':3A,4 \'self\':5','*all plus',500,NULL,0,259,1,1),(269,'*watchers+*right','*watcher+*right',NULL,'Set',219,260,3010,'2012-12-05 11:16:24','2009-12-08 12:25:14',1,1,NULL,NULL,'\'right\':3 \'watcher\':1','\'right\':3A,4 \'self\':5 \'watcher\':1A','*all plus',500,NULL,0,259,1,1),(274,'*all','*all','all','Set',NULL,NULL,3088,'2012-12-05 11:16:24','2009-12-17 11:52:04',1,1,NULL,NULL,'','','*all',500,NULL,0,259,1,1),(275,'*all+*layout','*all+*layout',NULL,'Pointer',274,255,3171,'2012-12-05 11:16:24','2009-12-23 11:51:05',1,1,NULL,NULL,'\'layout\':2','\'default\':3 \'layout\':2A,4','*all plus',500,NULL,0,47,1,1),(276,'*all+*captcha','*all+*captcha',NULL,'Toggle',274,256,6257,'2012-12-05 11:16:24','2012-11-21 16:30:55',1,1,NULL,NULL,'\'captcha\':2','\'0\':3 \'captcha\':2A','*all plus',500,NULL,0,51,1,3),(277,'*all+*option label','*all+*option_label',NULL,'Phrase',274,252,3022,'2012-12-05 11:16:24','2009-12-02 16:02:56',1,1,NULL,NULL,'\'label\':3 \'option\':2','\'descript\':4 \'label\':3A \'option\':2A','*all plus',500,NULL,0,52,1,1),(278,'Setting','setting','setting','Cardtype',NULL,NULL,5538,'2012-12-05 11:16:24','2011-03-20 11:51:09',1,1,25,'Cardtype','\'set\':1','\'set\':1A','*all',500,NULL,0,5,1,3),(279,'*all+*table of contents','*all+*table_of_content',NULL,'Number',274,89,3871,'2012-12-05 11:16:24','2011-02-02 19:49:22',1,1,NULL,NULL,'\'content\':4 \'tabl\':2','\'0\':5 \'content\':4A \'tabl\':2A','*all plus',500,NULL,0,20,4,4),(280,'*layout+*right+*default','*layout+*right+*default',NULL,'Pointer',284,318,3040,'2012-12-05 11:16:24','2010-04-15 18:42:46',1,1,NULL,NULL,'\'default\':3 \'layout\':1 \'right\':2','\'default\':3A \'layout\':1A \'right\':2A','*all plus',500,NULL,0,47,4,1),(281,'*layout+*right+*edit help','*layout+*right+*edit_help',NULL,'Basic',284,82,6038,'2012-12-05 11:16:24','2012-03-02 19:09:40',1,1,NULL,NULL,'\'edit\':3 \'help\':4 \'layout\':1 \'right\':2','\'/custom_layouts\':20 \'card\':7,14 \'determin\':5 \'edit\':3A \'help\':4A \'layout\':1A,6,24 \'learn\':21 \'page\':11 \'right\':2A \'set\':17 \'use\':8 \'view\':10 \'wagn.org\':19 \'wagn.org/custom_layouts\':18','*all plus',500,NULL,0,3,4,3),(284,'*layout+*right','*layout+*right',NULL,'Set',255,260,3060,'2012-12-05 11:16:24','2009-12-12 14:05:33',1,1,NULL,NULL,'\'layout\':1 \'right\':2','\'layout\':1A \'right\':2A','*all plus',500,NULL,0,259,1,1),(285,'*table of contents+*right','*table_of_content+*right',NULL,'Set',89,260,3061,'2012-12-05 11:16:24','2009-12-12 14:05:33',1,1,NULL,NULL,'\'content\':3 \'right\':4 \'tabl\':1','\'content\':3A \'right\':4A \'tabl\':1A','*all plus',500,NULL,0,259,1,1),(286,'*option label+*right','*option_label+*right',NULL,'Set',252,260,3063,'2012-12-05 11:16:24','2009-12-12 14:05:34',1,1,NULL,NULL,'\'label\':2 \'option\':1 \'right\':3','\'label\':2A \'option\':1A \'right\':3A','*all plus',500,NULL,0,259,1,1),(288,'*thanks+*right','*thank+*right',NULL,'Set',61,260,3065,'2012-12-05 11:16:24','2009-12-12 14:05:34',1,1,NULL,NULL,'\'right\':2 \'thank\':1','\'right\':2A \'thank\':1A','*all plus',500,NULL,0,259,1,1),(289,'*autoname+*right','*autoname+*right',NULL,'Set',247,260,3066,'2012-12-05 11:16:24','2009-12-12 14:05:34',1,1,NULL,NULL,'\'autonam\':1 \'right\':2','\'autonam\':1A \'right\':2A','*all plus',500,NULL,0,259,1,1),(291,'*accountable','*accountable','accountable','Setting',NULL,NULL,3078,'2012-12-05 11:16:24','2009-12-21 16:02:40',1,1,NULL,NULL,'\'account\':1','\'account\':1A','*all',500,NULL,0,278,4,1),(292,'*accountable+*right+*default','*accountable+*right+*default',NULL,'Toggle',307,318,3079,'2012-12-05 11:16:24','2010-04-15 18:42:42',1,1,NULL,NULL,'\'account\':1 \'default\':3 \'right\':2','\'0\':4 \'account\':1A \'default\':3A \'right\':2A','*all plus',500,NULL,0,51,4,1),(293,'*all+*accountable','*all+*accountable',NULL,'Toggle',274,291,3081,'2012-12-05 11:16:24','2009-12-10 14:35:21',1,1,NULL,NULL,'\'account\':2','\'0\':3 \'account\':2A','*all plus',500,NULL,0,51,4,4),(294,'User+*type','user+*type',NULL,'Set',4,266,3082,'2012-12-05 11:16:24','2009-12-10 14:35:53',1,1,NULL,NULL,'\'type\':2 \'user\':1','\'self\':4 \'type\':2A,3 \'user\':1A','*all plus',500,NULL,0,259,4,4),(295,'User+*type+*accountable','user+*type+*accountable',NULL,'Toggle',294,291,3083,'2012-12-05 11:16:24','2010-11-01 17:46:24',1,1,NULL,NULL,'\'account\':3 \'type\':2 \'user\':1','\'1\':4 \'account\':3A \'type\':2A \'user\':1A','*all plus',500,NULL,0,51,4,1),(297,'Set+description','set+description',NULL,'Basic',259,146,5573,'2012-12-05 11:16:24','2011-03-23 13:49:23',1,1,NULL,NULL,'\'descript\':2 \'set\':1','\'/wagn/setting|learn\':16 \'appli\':13 \'card\':8 \'defin\':4 \'descript\':2A \'group\':6 \'set\':1A,3,11,19 \'www.wagn.org\':15 \'www.wagn.org/wagn/setting\':14','*all plus',500,NULL,0,3,4,3),(298,'Setting+description','setting+description',NULL,'Basic',278,146,5945,'2012-12-05 11:16:24','2011-08-03 02:29:08',1,1,NULL,NULL,'\'descript\':2 \'set\':1','\'/wagn/setting|learn\':21 \'affect\':4 \'avail\':12 \'behav\':9 \'card\':6,15 \'descript\':2A \'look\':7 \'option\':17 \'set\':1A,3,10,24 \'tab\':18 \'www.wagn.org\':20 \'www.wagn.org/wagn/setting\':19','*all plus',500,NULL,0,3,4,4),(299,'*input+*right+*edit help','*input+*right+*edit_help',NULL,'Basic',268,82,5627,'2012-12-05 11:16:24','2011-04-04 16:54:22',1,1,NULL,NULL,'\'edit\':3 \'help\':4 \'input\':1 \'right\':2','\'card\':14 \'edit\':3A \'editor\':8 \'help\':4A \'input\':1A \'pointer\':13 \'right\':2A \'set\':11 \'type\':6','*all plus',500,NULL,0,3,3,4),(300,'*options+*right','*option+*right',NULL,'Set',86,260,3101,'2012-12-05 11:16:24','2010-04-15 18:43:28',1,1,NULL,NULL,'\'option\':1 \'right\':2','\'option\':1A \'right\':2A,3 \'self\':4','*all plus',500,NULL,0,259,3,1),(301,'*options+*right+*edit help','*option+*right+*edit_help',NULL,'Basic',300,82,5549,'2012-12-05 11:16:24','2011-03-20 22:38:48',1,1,NULL,NULL,'\'edit\':3 \'help\':4 \'option\':1 \'right\':2','\'/pointer|learn\':23 \'card\':12 \'edit\':3A \'help\':4A \'option\':1A,6,26 \'pointer\':11,17,28 \'right\':2A \'search\':20 \'set\':9,25 \'valu\':5 \'wagn.org\':22 \'wagn.org/pointer\':21','*all plus',500,NULL,0,3,3,4),(302,'*captcha+*right','*captcha+*right',NULL,'Set',256,260,3123,'2012-12-05 11:16:24','2010-04-15 18:42:45',1,1,NULL,NULL,'\'captcha\':1 \'right\':2','\'captcha\':1A \'right\':2A,3 \'self\':4','*all plus',500,NULL,0,259,3,1),(304,'*captcha+*right+*edit help','*captcha+*right+*edit_help',NULL,'Basic',302,82,6037,'2012-12-05 11:16:24','2012-03-02 19:08:40',1,1,NULL,NULL,'\'captcha\':1 \'edit\':3 \'help\':4 \'right\':2','\'/wagn/captcha|captcha]]\':23 \'ad\':25 \'anti\':6 \'anti-spam\':5 \'captcha\':1A \'card\':28 \'check\':10 \'complet\':19 \'edit\':3A,27 \'help\':4A \'non\':14 \'non-signed-in\':13 \'requir\':12 \'right\':2A \'set\':8,31 \'sign\':15 \'spam\':7 \'user\':17 \'www.wagn.org\':22 \'www.wagn.org/wagn/captcha\':21','*all plus',500,NULL,0,3,3,3),(305,'*edit help+*right','*edit_help+*right',NULL,'Set',82,260,3126,'2012-12-05 11:16:24','2009-12-21 14:08:43',1,1,NULL,NULL,'\'edit\':1 \'help\':2 \'right\':3','\'edit\':1A \'help\':2A \'right\':3A,4 \'self\':5','*all plus',500,NULL,0,259,3,3),(306,'*edit help+*right+*edit help','*edit_help+*right+*edit_help',NULL,'Basic',305,82,3266,'2012-12-05 11:16:24','2010-04-21 16:26:54',1,1,NULL,NULL,'\'edit\':1,4 \'help\':2,5 \'right\':3','\'/wagn/custom_help_text|help\':8 \'card\':15 \'edit\':1A,4A,14 \'help\':2A,5A \'peopl\':10 \'right\':3A \'see\':12 \'set\':18 \'text\':9 \'www.wagn.org\':7 \'www.wagn.org/wagn/custom_help_text\':6','*all plus',500,NULL,0,3,3,1),(307,'*accountable+*right','*accountable+*right',NULL,'Set',291,260,3133,'2012-12-05 11:16:24','2010-04-15 18:42:41',1,1,NULL,NULL,'\'account\':1 \'right\':2','\'account\':1A \'right\':2A,3 \'self\':4','*all plus',500,NULL,0,259,3,1),(308,'*accountable+*right+*edit help','*accountable+*right+*edit_help',NULL,'Basic',307,82,6089,'2012-12-05 11:16:24','2012-10-09 23:37:22',1,1,NULL,NULL,'\'account\':1 \'edit\':3 \'help\':4 \'right\':2','\'/wagn/account|accounts]]\':18 \'account\':1A,12 \'add\':15 \'card\':20 \'creat\':11 \'edit\':3A \'global\':10 \'help\':4A \'permiss\':13 \'right\':2A \'set\':23 \'user\':7 \'www.wagn.org\':17 \'www.wagn.org/wagn/account\':16 \'yes\':6','*all plus',500,NULL,0,3,3,1),(309,'*add help','*add_help','add_help','Setting',NULL,NULL,3137,'2012-12-05 11:16:24','2009-12-21 16:02:41',1,1,NULL,NULL,'\'add\':1 \'help\':2','\'add\':1A \'help\':2A','*all',500,NULL,0,278,1,1),(310,'*add help+*right','*add_help+*right',NULL,'Set',309,260,3140,'2012-12-05 11:16:24','2009-12-22 06:45:59',1,1,NULL,NULL,'\'add\':1 \'help\':2 \'right\':3','\'add\':1A \'help\':2A \'right\':3A,4 \'self\':5','*all plus',500,NULL,0,259,4,4),(311,'*add help+*right+*edit help','*add_help+*right+*edit_help',NULL,'Basic',310,82,3264,'2012-12-05 11:16:24','2010-04-21 16:26:54',1,1,NULL,NULL,'\'add\':1 \'edit\':4 \'help\':2,5 \'right\':3','\'/wagn/custom_help_text|help\':8 \'ad\':14 \'add\':1A \'card\':15 \'edit\':4A \'help\':2A,5A \'peopl\':10 \'right\':3A \'see\':12 \'set\':18 \'text\':9 \'www.wagn.org\':7 \'www.wagn.org/wagn/custom_help_text\':6','*all plus',500,NULL,0,3,4,1),(314,'Default Layout','default_layout',NULL,'Layout',NULL,NULL,6260,'2012-12-05 11:16:24','2012-11-30 05:23:45',1,1,NULL,NULL,'\'default\':1 \'layout\':2','\'/recent\':5 \'account\':8 \'alert\':19 \'default\':1A \'foot\':20 \'head\':3 \'home\':4 \'layout\':2A \'link\':9 \'logo\':11 \'main\':10 \'navbox\':7 \'recent\':6 \'sidebar\':12 \'v\':17 \'version\':18 \'wagn\':16 \'wheel\':13 \'www.wagn.org\':15','*all',500,NULL,0,569,4,1),(315,'*sidebar+*self','*sidebar+*self',NULL,'Set',81,264,3177,'2012-12-05 11:16:24','2009-12-22 08:05:08',1,1,NULL,NULL,'\'self\':2 \'sidebar\':1','\'name\':3 \'self\':2A,4 \'sidebar\':1A','*all plus',559,NULL,0,259,4,4),(316,'*layout+*right+*options','*layout+*right+*option',NULL,'Search',284,86,3178,'2012-12-05 11:16:24','2009-12-22 08:27:16',1,1,NULL,NULL,'\'layout\':1 \'option\':3 \'right\':2','\'html\':5 \'layout\':1A \'option\':3A \'right\':2A \'type\':4','*all plus',500,NULL,0,30,4,4),(317,'*content','*content','content','Setting',NULL,NULL,3196,'2012-12-05 11:16:24','2011-02-09 14:29:14',1,1,NULL,NULL,'\'content\':1','\'content\':1A','*all',500,NULL,0,278,1,1),(318,'*default','*default','default','Setting',NULL,NULL,3197,'2012-12-05 11:16:24','2011-02-09 14:29:15',1,1,NULL,NULL,'\'default\':1','\'default\':1A','*all',500,NULL,0,278,1,1),(319,'HTML+*type','html+*type',NULL,'Set',50,266,3198,'2012-12-05 11:16:24','2010-04-20 16:39:20',1,1,NULL,NULL,'\'html\':1 \'type\':2','\'html\':1A \'type\':2A','*all plus',500,NULL,0,259,1,1),(320,'Cardtype+*type','cardtype+*type',NULL,'Set',5,266,3199,'2012-12-05 11:16:24','2010-04-20 16:39:20',1,1,NULL,NULL,'\'cardtyp\':1 \'type\':2','\'cardtyp\':1A \'type\':2A','*all plus',500,NULL,0,259,1,1),(321,'Role+*type','role+*type',NULL,'Set',7,266,3201,'2012-12-05 11:16:24','2010-04-20 16:39:20',1,1,NULL,NULL,'\'role\':1 \'type\':2','\'role\':1A \'type\':2A','*all plus',500,NULL,0,259,1,1),(322,'Role+*type+*content','role+*type+*content',NULL,'Basic',321,317,3203,'2012-12-05 11:16:24','2010-04-15 18:42:37',1,1,NULL,NULL,'\'content\':3 \'role\':1 \'type\':2','\'account\':5 \'content\':3A \'descript\':4 \'member\':11 \'name\':9 \'role\':1A,10 \'self\':8 \'type\':2A','*all plus',500,NULL,0,3,1,1),(323,'Account Request+*type','account_request+*type',NULL,'Set',12,266,5764,'2012-12-05 11:16:24','2011-07-15 15:40:20',1,1,NULL,NULL,'\'account\':1 \'request\':2 \'type\':3','\'account\':1A \'request\':2A \'self\':5 \'type\':3A,4','*all plus',500,NULL,0,259,1,3),(324,'*right+*right','*right+*right',NULL,'Set',260,260,3206,'2012-12-05 11:16:24','2010-04-20 16:39:21',1,1,NULL,NULL,'\'right\':1,2','\'right\':1A,2A','*all plus',500,NULL,0,259,1,1),(325,'*type plus right+*right','*type_plu_right+*right',NULL,'Set',262,260,3207,'2012-12-05 11:16:24','2010-04-15 18:42:43',1,1,NULL,NULL,'\'plus\':2 \'right\':3,4 \'type\':1','\'plus\':2A \'right\':3A,4A \'type\':1A','*all plus',500,NULL,0,259,1,1),(326,'*self+*right','*self+*right',NULL,'Set',264,260,3208,'2012-12-05 11:16:24','2010-04-15 18:42:44',1,1,NULL,NULL,'\'right\':2 \'self\':1','\'right\':2A \'self\':1A','*all plus',500,NULL,0,259,1,1),(327,'*type+*right','*type+*right',NULL,'Set',266,260,3209,'2012-12-05 11:16:24','2010-04-15 18:42:44',1,1,NULL,NULL,'\'right\':2 \'type\':1','\'right\':2A \'type\':1A','*all plus',500,NULL,0,259,1,1),(329,'*watching+*right','*watching+*right',NULL,'Set',222,260,3213,'2012-12-05 11:16:24','2010-04-15 18:42:52',1,1,NULL,NULL,'\'right\':2 \'watch\':1','\'right\':2A \'watch\':1A','*all plus',500,NULL,0,259,1,1),(330,'*account+*right','*account+*right',NULL,'Set',100,260,3214,'2012-12-05 11:16:24','2010-04-15 18:42:53',1,1,NULL,NULL,'\'account\':1 \'right\':2','\'account\':1A \'right\':2A','*all plus',500,NULL,0,259,1,1),(331,'Image+*right','image+*right',NULL,'Set',19,260,3218,'2012-12-05 11:16:24','2010-04-15 18:42:59',1,1,NULL,NULL,'\'imag\':1 \'right\':2','\'imag\':1A \'right\':2A','*all plus',500,NULL,0,259,1,1),(334,'*incoming+*right','*incoming+*right',NULL,'Set',170,260,3223,'2012-12-05 11:16:24','2010-04-15 18:43:04',1,1,NULL,NULL,'\'incom\':1 \'right\':2','\'incom\':1A \'right\':2A','*all plus',500,NULL,0,259,1,1),(335,'by create+*right','by_create+*right',NULL,'Set',190,260,3224,'2012-12-05 11:16:24','2010-04-15 18:43:06',1,1,NULL,NULL,'\'creat\':2 \'right\':3','\'creat\':2A \'right\':3A','*all plus',500,NULL,0,259,1,1),(336,'by name+*right','by_name+*right',NULL,'Set',184,260,3225,'2012-12-05 11:16:24','2010-04-15 18:43:06',1,1,NULL,NULL,'\'name\':2 \'right\':3','\'name\':2A \'right\':3A','*all plus',500,NULL,0,259,1,1),(337,'*plusses+*right','*pluss+*right',NULL,'Set',110,260,3226,'2012-12-05 11:16:24','2010-04-15 18:43:07',1,1,NULL,NULL,'\'pluss\':1 \'right\':2','\'pluss\':1A \'right\':2A','*all plus',500,NULL,0,259,1,1),(338,'*tagged+*right','*tagged+*right',NULL,'Set',172,260,3228,'2012-12-05 11:16:24','2010-04-15 18:43:09',1,1,NULL,NULL,'\'right\':2 \'tag\':1','\'right\':2A \'tag\':1A','*all plus',500,NULL,0,259,1,1),(339,'*outgoing+*right','*outgoing+*right',NULL,'Set',168,260,3229,'2012-12-05 11:16:24','2010-04-15 18:43:09',1,1,NULL,NULL,'\'outgo\':1 \'right\':2','\'outgo\':1A \'right\':2A','*all plus',500,NULL,0,259,1,1),(340,'*community+*right','*community+*right',NULL,'Set',115,260,3230,'2012-12-05 11:16:24','2010-04-15 18:43:11',1,1,NULL,NULL,'\'communiti\':1 \'right\':2','\'communiti\':1A \'right\':2A','*all plus',500,NULL,0,259,1,1),(341,'by update+*right','by_update+*right',NULL,'Set',178,260,3232,'2012-12-05 11:16:24','2010-04-15 18:43:13',1,1,NULL,NULL,'\'right\':3 \'updat\':2','\'right\':3A \'updat\':2A','*all plus',500,NULL,0,259,1,1),(342,'*members+*right','*member+*right',NULL,'Set',98,260,3233,'2012-12-05 11:16:24','2010-04-15 18:43:14',1,1,NULL,NULL,'\'member\':1 \'right\':2','\'member\':1A \'right\':2A','*all plus',500,NULL,0,259,1,1),(343,'*related+*right','*related+*right',NULL,'Set',112,260,3235,'2012-12-05 11:16:24','2010-04-15 18:43:16',1,1,NULL,NULL,'\'relat\':1 \'right\':2','\'relat\':1A \'right\':2A','*all plus',500,NULL,0,259,1,1),(345,'*linkers+*right','*linker+*right',NULL,'Set',39,260,3238,'2012-12-05 11:16:24','2010-04-15 18:43:18',1,1,NULL,NULL,'\'linker\':1 \'right\':2','\'linker\':1A \'right\':2A','*all plus',500,NULL,0,259,1,1),(346,'*links+*right','*link+*right',NULL,'Set',43,260,3239,'2012-12-05 11:16:24','2010-04-15 18:43:19',1,1,NULL,NULL,'\'link\':1 \'right\':2','\'link\':1A \'right\':2A','*all plus',500,NULL,0,259,1,1),(347,'*inclusions+*right','*inclusion+*right',NULL,'Set',41,260,3240,'2012-12-05 11:16:24','2010-04-15 18:43:20',1,1,NULL,NULL,'\'inclus\':1 \'right\':2','\'inclus\':1A \'right\':2A','*all plus',500,NULL,0,259,1,1),(348,'*includers+*right','*includer+*right',NULL,'Set',37,260,3241,'2012-12-05 11:16:24','2010-04-15 18:43:21',1,1,NULL,NULL,'\'includ\':1 \'right\':2','\'includ\':1A \'right\':2A','*all plus',500,NULL,0,259,1,1),(349,'*plus parts+*right','*plu_part+*right',NULL,'Set',35,260,3242,'2012-12-05 11:16:24','2010-04-15 18:43:21',1,1,NULL,NULL,'\'part\':2 \'plus\':1 \'right\':3','\'part\':2A \'plus\':1A \'right\':3A','*all plus',500,NULL,0,259,1,1),(350,'*plus cards+*right','*plu_card+*right',NULL,'Set',33,260,3243,'2012-12-05 11:16:24','2010-04-15 18:43:22',1,1,NULL,NULL,'\'card\':2 \'plus\':1 \'right\':3','\'card\':2A \'plus\':1A \'right\':3A','*all plus',500,NULL,0,259,1,1),(351,'*editing+*right','*editing+*right',NULL,'Set',138,260,3244,'2012-12-05 11:16:24','2010-04-15 18:43:23',1,1,NULL,NULL,'\'edit\':1 \'right\':2','\'edit\':1A \'right\':2A','*all plus',500,NULL,0,259,1,1),(352,'*editors+*right','*editor+*right',NULL,'Set',92,260,3246,'2012-12-05 11:16:24','2010-04-15 18:43:25',1,1,NULL,NULL,'\'editor\':1 \'right\':2','\'editor\':1A \'right\':2A','*all plus',500,NULL,0,259,1,1),(353,'*roles+*right','*role+*right',NULL,'Set',96,260,3248,'2012-12-05 11:16:24','2012-09-20 16:42:34',1,1,NULL,NULL,'\'right\':2 \'role\':1','\'right\':2A \'role\':1A','*all plus',500,NULL,0,259,1,1),(354,'discussion+*right','discussion+*right',NULL,'Set',130,260,3250,'2012-12-05 11:16:24','2010-04-15 18:43:29',1,1,NULL,NULL,'\'discuss\':1 \'right\':2','\'discuss\':1A \'right\':2A','*all plus',500,NULL,0,259,1,1),(355,'tags+*right','tag+*right',NULL,'Set',128,260,3251,'2012-12-05 11:16:24','2010-04-15 18:43:30',1,1,NULL,NULL,'\'right\':2 \'tag\':1','\'right\':2A \'tag\':1A','*all plus',500,NULL,0,259,1,1),(356,'*default+*right','*default+*right',NULL,'Set',318,260,3253,'2012-12-05 11:16:24','2010-04-16 21:08:50',1,1,NULL,NULL,'\'default\':1 \'right\':2','\'default\':1A \'right\':2A','*all plus',500,NULL,0,259,4,4),(357,'*default+*right+*edit help','*default+*right+*edit_help',NULL,'Basic',356,82,6036,'2012-12-05 11:16:24','2012-03-02 19:05:52',1,1,NULL,NULL,'\'default\':1 \'edit\':3 \'help\':4 \'right\':2','\'/wagn/formatting|more\':19 \'card\':13 \'content\':8 \'default\':1A \'determin\':5 \'edit\':3A \'format\':21 \'help\':4A \'initi\':6 \'new\':12 \'permiss\':10 \'right\':2A \'set\':16 \'type\':7 \'www.wagn.org\':18 \'www.wagn.org/wagn/formatting\':17','*all plus',500,NULL,0,3,4,3),(358,'*content+*right','*content+*right',NULL,'Set',317,260,3260,'2012-12-05 11:16:24','2010-04-16 21:15:06',1,1,NULL,NULL,'\'content\':1 \'right\':2','\'content\':1A \'right\':2A','*all plus',500,NULL,0,259,4,4),(359,'*content+*right+*edit help','*content+*right+*edit_help',NULL,'Basic',358,82,3482,'2012-12-05 11:16:24','2010-04-21 16:26:58',1,1,NULL,NULL,'\'content\':1 \'edit\':3 \'help\':4 \'right\':2','\'/wagn/formatting|more\':14 \'card\':8 \'content\':1A,6 \'control\':5 \'edit\':3A \'format\':16 \'help\':4A \'right\':2A \'set\':11 \'www.wagn.org\':13 \'www.wagn.org/wagn/formatting\':12','*all plus',500,NULL,0,3,4,1),(363,'*send','*send','send','Setting',NULL,NULL,3478,'2012-12-05 11:16:24','2010-04-20 16:39:19',1,1,NULL,NULL,'\'send\':1','\'send\':1A','*all',500,NULL,0,278,3,1),(364,'*send+*right','*send+*right',NULL,'Set',363,260,3513,'2012-12-05 11:16:24','2010-04-19 17:54:32',1,1,NULL,NULL,'\'right\':2 \'send\':1','\'right\':2A \'send\':1A','*all plus',500,NULL,0,259,3,3),(365,'*send+*right+*edit help','*send+*right+*edit_help',NULL,'Basic',364,82,3794,'2012-12-05 11:16:24','2011-01-09 14:09:53',1,1,NULL,NULL,'\'edit\':3 \'help\':4 \'right\':2 \'send\':1','\'/flexible_email|flexible\':21 \'ad\':15 \'card\':11 \'configur\':5 \'edit\':3A \'email\':6,22 \'help\':4A \'learn\':16 \'right\':2A \'send\':1A \'sent\':9 \'set\':13 \'wagn.org\':20 \'wagn.org/flexible_email\':19','*all plus',500,NULL,0,3,3,4),(366,'Setting+*self','setting+*self',NULL,'Set',278,264,3574,'2012-12-05 11:16:24','2010-04-20 08:38:31',1,1,NULL,NULL,'\'self\':2 \'set\':1','\'self\':2A \'set\':1A','*all plus',500,NULL,0,259,4,4),(367,'Setting+*self+*table of contents','setting+*self+*table_of_content',NULL,'Number',366,89,3575,'2012-12-05 11:16:24','2010-04-21 16:26:49',1,1,NULL,NULL,'\'content\':5 \'self\':2 \'set\':1 \'tabl\':3','\'0\':6 \'content\':5A \'self\':2A \'set\':1A \'tabl\':3A','*all plus',500,NULL,0,20,4,1),(368,'*send+*right+*default','*send+*right+*default',NULL,'Pointer',364,318,3606,'2012-12-05 11:16:24','2010-05-02 03:11:10',1,1,NULL,NULL,'\'default\':3 \'right\':2 \'send\':1','\'config\':6 \'default\':3A \'email\':5 \'left\':4 \'right\':2A \'send\':1A','*all plus',500,NULL,0,47,3,4),(371,'email config','email_config',NULL,'Basic',NULL,NULL,3608,'2012-12-05 11:16:24','2010-04-20 17:40:17',1,1,NULL,NULL,'\'config\':2 \'email\':1','\'config\':2A \'email\':1A','*all',500,NULL,0,3,3,3),(372,'email config+*right','email_config+*right',NULL,'Set',371,260,3609,'2012-12-05 11:16:24','2010-04-20 17:40:18',1,1,NULL,NULL,'\'config\':2 \'email\':1 \'right\':3','\'config\':2A \'email\':1A \'right\':3A','*all plus',500,NULL,0,259,3,3),(373,'email config+*right+*content','email_config+*right+*content',NULL,'Basic',372,317,3610,'2012-12-05 11:16:24','2010-05-02 03:12:56',1,1,NULL,NULL,'\'config\':2 \'content\':4 \'email\':1 \'right\':3','\'attach\':11 \'bcc\':8 \'cc\':7 \'config\':2A \'content\':4A \'email\':1A \'messag\':10 \'right\':3A \'subject\':9','*all plus',500,NULL,0,3,3,4),(374,'*to+*right','*to+*right',NULL,'Set',64,260,4915,'2012-12-05 11:16:24','2011-02-16 02:12:11',1,1,NULL,NULL,'\'right\':2','\'right\':2A','*all plus',500,NULL,0,259,3,4),(375,'*to+*right+*default','*to+*right+*default',NULL,'Phrase',374,318,3612,'2012-12-05 11:16:24','2010-05-02 03:11:20',1,1,NULL,NULL,'\'default\':3 \'send\':2','\'default\':3A \'send\':2A','*all plus',500,NULL,0,52,3,4),(376,'*from+*right','*from+*right',NULL,'Set',137,260,4913,'2012-12-05 11:16:24','2011-02-16 02:11:13',1,1,NULL,NULL,'\'right\':2','\'right\':2A','*all plus',500,NULL,0,259,3,4),(377,'*from+*right+*default','*from+*right+*default',NULL,'Phrase',376,318,3614,'2012-12-05 11:16:24','2010-05-02 03:11:29',1,1,NULL,NULL,'\'default\':3 \'send\':2','\'default\':3A \'send\':2A','*all plus',500,NULL,0,52,3,4),(378,'*cc','*cc','cc','Basic',NULL,NULL,3615,'2012-12-05 11:16:24','2010-04-20 17:58:33',1,1,NULL,NULL,'\'cc\':1','\'cc\':1A','*all',500,NULL,0,3,3,3),(379,'*cc+*right','*cc+*right',NULL,'Set',378,260,4894,'2012-12-05 11:16:24','2011-02-16 00:03:49',1,1,NULL,NULL,'\'cc\':1 \'right\':2','\'cc\':1A \'right\':2A','*all plus',500,NULL,0,259,3,4),(380,'*cc+*right+*default','*cc+*right+*default',NULL,'Phrase',379,318,3617,'2012-12-05 11:16:24','2010-05-02 03:11:41',1,1,NULL,NULL,'\'cc\':1 \'default\':3 \'send\':2','\'cc\':1A \'default\':3A \'send\':2A','*all plus',500,NULL,0,52,3,4),(381,'*bcc','*bcc','bcc','Basic',NULL,NULL,3618,'2012-12-05 11:16:24','2010-04-20 17:58:52',1,1,NULL,NULL,'\'bcc\':1','\'bcc\':1A','*all',500,NULL,0,3,3,3),(382,'*bcc+*right','*bcc+*right',NULL,'Set',381,260,4892,'2012-12-05 11:16:24','2011-02-16 00:03:03',1,1,NULL,NULL,'\'bcc\':1 \'right\':2','\'bcc\':1A \'right\':2A','*all plus',500,NULL,0,259,3,4),(383,'*bcc+*right+*default','*bcc+*right+*default',NULL,'Phrase',382,318,3620,'2012-12-05 11:16:24','2010-05-02 03:10:16',1,1,NULL,NULL,'\'bcc\':1 \'default\':3 \'send\':2','\'bcc\':1A \'default\':3A \'send\':2A','*all plus',500,NULL,0,52,3,4),(384,'*subject','*subject','subject','Basic',NULL,NULL,3621,'2012-12-05 11:16:24','2010-04-20 17:59:09',1,1,NULL,NULL,'\'subject\':1','\'subject\':1A','*all',500,NULL,0,3,3,3),(387,'*attach','*attach','attach','Basic',NULL,NULL,3624,'2012-12-05 11:16:24','2010-04-20 17:59:31',1,1,NULL,NULL,'\'attach\':1','\'attach\':1A','*all',500,NULL,0,3,3,3),(388,'*attach+*right','*attach+*right',NULL,'Set',387,260,4888,'2012-12-05 11:16:24','2011-02-15 23:59:39',1,1,NULL,NULL,'\'attach\':1 \'right\':2','\'attach\':1A \'right\':2A','*all plus',500,NULL,0,259,3,4),(389,'*attach+*right+*default','*attach+*right+*default',NULL,'Pointer',388,318,3626,'2012-12-05 11:16:24','2010-05-02 03:09:53',1,1,NULL,NULL,'\'attach\':1 \'default\':3 \'send\':2','\'attach\':1A \'default\':3A \'send\':2A','*all plus',500,NULL,0,47,3,4),(390,'*subject+*right','*subject+*right',NULL,'Set',384,260,3628,'2012-12-05 11:16:24','2010-04-20 18:05:47',1,1,NULL,NULL,'\'right\':2 \'subject\':1','\'right\':2A \'subject\':1A','*all plus',500,NULL,0,259,3,3),(391,'*subject+*right+*default','*subject+*right+*default',NULL,'Phrase',390,318,3629,'2012-12-05 11:16:24','2010-05-02 03:10:04',1,1,NULL,NULL,'\'default\':3 \'right\':2 \'subject\':1','\'default\':3A \'right\':2A \'subject\':1A','*all plus',500,NULL,0,52,3,4),(392,'email config+*right+*edit help','email_config+*right+*edit_help',NULL,'Basic',372,82,5411,'2012-12-05 11:16:24','2011-03-08 14:31:49',1,1,NULL,NULL,'\'config\':2 \'edit\':4 \'email\':1 \'help\':5 \'right\':3','\'/flexible_email|flexible\':15 \'/wagn/contextual_names|contextual\':21 \'card\':31 \'config\':2A \'configur\':6 \'edit\':4A \'email\':1A,8,16,34 \'help\':5A \'name\':22 \'note\':17 \'refer\':28 \'right\':3A \'self\':26 \'sent\':11 \'trigger\':32 \'use\':12 \'wagn.org\':14 \'wagn.org/flexible_email\':13 \'www.wagn.org\':20 \'www.wagn.org/wagn/contextual_names\':19','*all plus',500,NULL,0,3,3,4),(395,'*attach+*right+*options','*attach+*right+*option',NULL,'Search',388,86,5619,'2012-12-05 11:16:24','2011-04-03 17:05:47',1,1,NULL,NULL,'\'attach\':1 \'option\':3 \'right\':2','\'attach\':1A \'file\':5 \'option\':3A \'right\':2A \'sort\':6 \'type\':4 \'updat\':7','*all plus',500,NULL,0,30,4,4),(397,'watcher instructions for related tab','watcher_instruction_for_related_tab',NULL,'Basic',NULL,NULL,3859,'2012-12-05 11:16:24','2011-01-31 10:44:37',1,1,NULL,NULL,'\'instruct\':2 \'relat\':4 \'tab\':5 \'watcher\':1','\'cardtyp\':20 \'communiti\':8,11 \'content\':10,18,24 \'instruct\':2A \'open\':19,25 \'plus\':22 \'relat\':4A,15 \'right\':9,17,23 \'subtab\':12 \'tab\':5A,16 \'type\':21 \'watcher\':1A','*all',500,NULL,0,3,4,3),(398,'Cardtype+watcher instructions for related tab','cardtype+watcher_instruction_for_related_tab',NULL,'Phrase',5,397,3810,'2012-12-05 11:16:24','2011-01-31 10:49:38',1,1,NULL,NULL,'\'cardtyp\':1 \'instruct\':3 \'relat\':5 \'tab\':6 \'watcher\':2','\'cardtyp\':1A \'instruct\':3A \'relat\':5A \'tab\':6A \'watcher\':2A','*all plus',500,NULL,0,52,4,3),(399,'Cardtype+watcher instructions for related tab+*type plus right','cardtype+watcher_instruction_for_related_tab+*type_plu_right',NULL,'Set',398,262,3811,'2012-12-05 11:16:24','2011-01-20 01:38:17',1,1,NULL,NULL,'\'cardtyp\':1 \'instruct\':3 \'plus\':8 \'relat\':5 \'right\':9 \'tab\':6 \'type\':7 \'watcher\':2','\'cardtyp\':1A \'instruct\':3A \'plus\':8A \'relat\':5A \'right\':9A \'tab\':6A \'type\':7A \'watcher\':2A','*all plus',500,NULL,0,259,4,4),(400,'Cardtype+watcher instructions for related tab+*type plus right+*content','cardtype+watcher_instruction_for_related_tab+*type_plu_right+*content',NULL,'Phrase',399,317,3868,'2012-12-05 11:16:24','2011-02-09 14:29:16',1,1,NULL,NULL,'\'cardtyp\':1 \'content\':10 \'instruct\':3 \'plus\':8 \'relat\':5 \'right\':9 \'tab\':6 \'type\':7 \'watcher\':2','\'card\':16 \'cardtyp\':1A \'chang\':18 \'content\':10A \'email\':13 \'instruct\':3A \'left\':15 \'peopl\':11 \'plus\':8A \'receiv\':12 \'relat\':5A \'right\':9A \'tab\':6A \'type\':7A \'watcher\':2A','*all plus',500,NULL,0,52,4,1),(401,'watcher instructions for related tab+*right','watcher_instruction_for_related_tab+*right',NULL,'Set',397,260,3814,'2012-12-05 11:16:24','2011-01-20 01:38:32',1,1,NULL,NULL,'\'instruct\':2 \'relat\':4 \'right\':6 \'tab\':5 \'watcher\':1','\'instruct\':2A \'relat\':4A \'right\':6A \'tab\':5A \'watcher\':1A','*all plus',500,NULL,0,259,4,4),(402,'watcher instructions for related tab+*right+*content','watcher_instruction_for_related_tab+*right+*content',NULL,'Phrase',401,317,3867,'2012-12-05 11:16:24','2011-02-09 14:29:16',1,1,NULL,NULL,'\'content\':7 \'instruct\':2 \'relat\':4 \'right\':6 \'tab\':5 \'watcher\':1','\'chang\':15 \'content\':7A \'email\':10 \'instruct\':2A \'left\':12 \'name\':13 \'peopl\':8 \'receiv\':9 \'relat\':4A \'right\':6A \'tab\':5A \'watcher\':1A','*all plus',500,NULL,0,52,4,1),(405,'Basic+description','basic+description',NULL,'Basic',3,146,5478,'2012-12-05 11:16:24','2011-03-19 16:35:30',1,1,NULL,NULL,'\'basic\':1 \'descript\':2','\'appear\':19 \'basic\':1A,3,16 \'besid\':20 \'card\':4,15 \'cardnam\':21 \'default\':11 \'descript\':2A \'like\':22 \'new\':14 \'rich\':7 \'text\':8 \'type\':12,24','*all plus',500,NULL,0,3,4,3),(406,'Number+description','number+description',NULL,'Basic',20,146,4841,'2012-12-05 11:16:24','2011-02-15 21:39:42',1,1,NULL,NULL,'\'descript\':2 \'number\':1','\'card\':4 \'contain\':6 \'descript\':2A \'number\':1A,3 \'numer\':8 \'valu\':9','*all plus',500,NULL,0,3,4,4),(407,'PlainText+description','plain_text+description',NULL,'Basic',22,146,4869,'2012-12-05 11:16:24','2011-02-15 22:52:34',1,1,NULL,NULL,'\'descript\':2 \'plaintext\':1','\'card\':4 \'descript\':2A \'plaintext\':1A,3 \'text\':8 \'unstyl\':7','*all plus',500,NULL,0,3,4,3),(408,'Phrase+description','phrase+description',NULL,'Basic',52,146,4872,'2012-12-05 11:16:24','2011-02-15 22:54:42',1,1,NULL,NULL,'\'descript\':2 \'phrase\':1','\'card\':4 \'descript\':2A \'phrase\':1A,3 \'short\':7 \'text\':9 \'unstyl\':8','*all plus',500,NULL,0,3,4,3),(409,'Date+description','date+description',NULL,'Basic',17,146,4846,'2012-12-05 11:16:24','2011-02-15 21:44:09',1,1,NULL,NULL,'\'date\':1 \'descript\':2','\'card\':4 \'contain\':5 \'date\':1A,3,7 \'descript\':2A','*all plus',500,NULL,0,3,4,4),(419,'*count','*count',NULL,'Basic',NULL,NULL,5199,'2012-12-05 11:16:24','2011-02-19 17:10:06',1,1,NULL,NULL,'\'count\':1','\'count\':1A','*all',500,NULL,0,3,4,4),(420,'*count+*right','*count+*right',NULL,'Set',419,260,5200,'2012-12-05 11:16:24','2011-02-19 17:10:07',1,1,NULL,NULL,'\'count\':1 \'right\':2','\'count\':1A \'right\':2A','*all plus',500,NULL,0,259,4,4),(421,'*count+*right+*content','*count+*right+*content',NULL,'Search',420,317,5984,'2012-12-05 11:16:24','2012-01-06 13:08:02',1,1,NULL,NULL,'\'content\':3 \'count\':1 \'right\':2','\'content\':3A \'count\':1A,8 \'found\':4 \'return\':7 \'right\':2A \'self\':6','*all plus',500,NULL,0,30,4,4),(425,'*last edited','*last_edited',NULL,'Basic',NULL,NULL,5245,'2012-12-05 11:16:24','2011-02-25 16:47:49',1,1,NULL,NULL,'\'edit\':2 \'last\':1','\'edit\':2A \'last\':1A','*all',500,NULL,0,3,4,4),(426,'*last edited+*right','*last_edited+*right',NULL,'Set',425,260,5246,'2012-12-05 11:16:24','2011-02-25 16:47:50',1,1,NULL,NULL,'\'edit\':2 \'last\':1 \'right\':3','\'edit\':2A \'last\':1A \'right\':3A','*all plus',500,NULL,0,259,4,4),(427,'*last edited+*right+*content','*last_edited+*right+*content',NULL,'Search',426,317,5291,'2012-12-05 11:16:24','2011-02-25 22:15:41',1,1,NULL,NULL,'\'content\':4 \'edit\':2 \'last\':1 \'right\':3','\'chang\':12 \'content\':4A \'edit\':2A,6 \'last\':1A,5 \'right\':3A \'self\':8 \'sort\':9 \'updat\':10 \'view\':11','*all plus',500,NULL,0,30,4,4),(428,'*creator','*creator',NULL,'Basic',NULL,NULL,5249,'2012-12-05 11:16:24','2011-02-25 16:51:35',1,1,NULL,NULL,'\'creator\':1','\'creator\':1A','*all',500,NULL,0,3,4,4),(429,'*creator+*right','*creator+*right',NULL,'Set',428,260,5250,'2012-12-05 11:16:24','2011-02-25 16:51:35',1,1,NULL,NULL,'\'creator\':1 \'right\':2','\'creator\':1A \'right\':2A','*all plus',500,NULL,0,259,4,4),(430,'*creator+*right+*content','*creator+*right+*content',NULL,'Search',429,317,5290,'2012-12-05 11:16:24','2011-02-25 22:11:34',1,1,NULL,NULL,'\'content\':3 \'creator\':1 \'right\':2','\'content\':3A \'creator\':1A,4 \'right\':2A \'self\':6','*all plus',500,NULL,0,30,4,4),(431,'*created','*created',NULL,'Basic',NULL,NULL,5252,'2012-12-05 11:16:24','2011-02-25 16:53:25',1,1,NULL,NULL,'\'creat\':1','\'creat\':1A','*all',500,NULL,0,3,4,4),(432,'*created+*right','*created+*right',NULL,'Set',431,260,5253,'2012-12-05 11:16:24','2011-02-25 16:53:26',1,1,NULL,NULL,'\'creat\':1 \'right\':2','\'creat\':1A \'right\':2A','*all plus',500,NULL,0,259,4,4),(433,'*created+*right+*content','*created+*right+*content',NULL,'Search',432,317,5292,'2012-12-05 11:16:24','2011-02-25 22:17:35',1,1,NULL,NULL,'\'content\':3 \'creat\':1 \'right\':2','\'content\':3A \'creat\':1A,4,8 \'desc\':10 \'dir\':9 \'right\':2A \'self\':6 \'sort\':7','*all plus',500,NULL,0,30,4,4),(435,'*when created','*when_created','when_created','Basic',NULL,NULL,5296,'2012-12-05 11:16:24','2011-02-25 22:21:24',1,1,NULL,NULL,'\'creat\':2','\'creat\':2A','*all',500,NULL,0,3,4,4),(436,'*when created+*right','*when_created+*right',NULL,'Set',435,260,5297,'2012-12-05 11:16:24','2011-02-25 22:21:24',1,1,NULL,NULL,'\'creat\':2 \'right\':3','\'creat\':2A \'right\':3A','*all plus',500,NULL,0,259,4,4),(437,'*when created+*right+*content','*when_created+*right+*content',NULL,'Phrase',436,317,5972,'2012-12-05 11:16:24','2011-12-31 13:02:46',1,1,NULL,NULL,'\'content\':4 \'creat\':2 \'right\':3','\'content\':4A \'creat\':2A \'right\':3A','*all plus',500,NULL,0,52,4,3),(438,'*when last edited','*when_last_edited','when_last_edited','Basic',NULL,NULL,5404,'2012-12-05 11:16:24','2011-03-08 00:14:22',1,1,NULL,NULL,'\'edit\':3 \'last\':2','\'edit\':3A \'last\':2A','*all',500,NULL,0,3,4,4),(439,'*when last edited+*right','*when_last_edited+*right',NULL,'Set',438,260,5403,'2012-12-05 11:16:24','2011-03-08 00:14:23',1,1,NULL,NULL,'\'edit\':3 \'last\':2 \'right\':4','\'edit\':3A \'last\':2A \'right\':4A','*all plus',500,NULL,0,259,4,4),(440,'*when last edited+*right+*content','*when_last_edited+*right+*content',NULL,'Phrase',439,317,5973,'2012-12-05 11:16:24','2011-12-31 13:03:09',1,1,NULL,NULL,'\'content\':5 \'edit\':3 \'last\':2 \'right\':4','\'content\':5A \'edit\':3A \'last\':2A \'right\':4A','*all plus',500,NULL,0,52,4,3),(441,'Config+*self','config+*self',NULL,'Set',73,264,5333,'2012-12-05 11:16:24','2011-02-27 18:28:27',1,1,NULL,NULL,'\'config\':1 \'self\':2','\'config\':1A \'self\':2A','*all plus',500,NULL,0,259,4,4),(442,'Config+*self+*table of contents','config+*self+*table_of_content',NULL,'Number',441,89,5334,'2012-12-05 11:16:24','2011-02-27 18:28:27',1,1,NULL,NULL,'\'config\':1 \'content\':5 \'self\':2 \'tabl\':3','\'4\':6 \'config\':1A \'content\':5A \'self\':2A \'tabl\':3A','*all plus',500,NULL,0,20,4,4),(445,'*refers to','*refer_to',NULL,'Basic',NULL,NULL,5392,'2012-12-05 11:16:24','2011-02-28 10:51:53',1,1,NULL,NULL,'\'refer\':1','\'refer\':1A','*all',500,NULL,0,3,4,4),(446,'*refers to+*right','*refer_to+*right',NULL,'Set',445,260,5393,'2012-12-05 11:16:24','2011-02-28 10:51:54',1,1,NULL,NULL,'\'refer\':1 \'right\':3','\'refer\':1A \'right\':3A','*all plus',500,NULL,0,259,4,4),(447,'*refers to+*right+*content','*refer_to+*right+*content',NULL,'Search',446,317,5611,'2012-12-05 11:16:24','2011-04-03 17:01:16',1,1,NULL,NULL,'\'content\':4 \'refer\':1 \'right\':3','\'content\':4A \'name\':10 \'refer\':1A,5 \'right\':3A \'self\':8 \'sort\':9','*all plus',500,NULL,0,30,4,4),(448,'*referred to by','*referred_to_by',NULL,'Basic',NULL,NULL,5395,'2012-12-05 11:16:24','2011-02-28 10:52:48',1,1,NULL,NULL,'\'refer\':1','\'refer\':1A','*all',500,NULL,0,3,4,4),(449,'*referred to by+*right','*referred_to_by+*right',NULL,'Set',448,260,5396,'2012-12-05 11:16:24','2011-02-28 10:52:49',1,1,NULL,NULL,'\'refer\':1 \'right\':4','\'refer\':1A \'right\':4A','*all plus',500,NULL,0,259,4,4),(450,'*referred to by+*right+*content','*referred_to_by+*right+*content',NULL,'Search',449,317,5612,'2012-12-05 11:16:24','2011-04-03 17:01:21',1,1,NULL,NULL,'\'content\':5 \'refer\':1 \'right\':4','\'content\':5A \'name\':10 \'refer\':1A,6 \'right\':4A \'self\':8 \'sort\':9','*all plus',500,NULL,0,30,4,4),(452,'Account Request+*self','account_request+*self',NULL,'Set',12,264,5510,'2012-12-05 11:16:24','2011-03-19 22:03:39',1,1,NULL,NULL,'\'account\':1 \'request\':2 \'self\':3','\'account\':1A \'request\':2A \'self\':3A','*all plus',500,NULL,0,259,4,4),(453,'Account Request+*self+*content','account_request+*self+*content',NULL,'Basic',452,317,5511,'2012-12-05 11:16:24','2011-03-19 22:03:39',1,1,NULL,NULL,'\'account\':1 \'content\':4 \'request\':2 \'self\':3','\'account\':1A \'card\':8 \'content\':4A \'descript\':5 \'name\':7,11 \'request\':2A \'self\':3A,6 \'type\':9','*all plus',500,NULL,0,3,4,4),(455,'Set+*self','set+*self',NULL,'Set',259,264,5520,'2012-12-05 11:16:24','2011-03-19 22:09:27',1,1,NULL,NULL,'\'self\':2 \'set\':1','\'self\':2A \'set\':1A','*all plus',500,NULL,0,259,4,4),(456,'Set+*self+*content','set+*self+*content',NULL,'Basic',455,317,5521,'2012-12-05 11:16:24','2011-03-19 22:09:27',1,1,NULL,NULL,'\'content\':3 \'self\':2 \'set\':1','\'card\':7 \'content\':3A \'descript\':4 \'name\':6,10 \'self\':2A,5 \'set\':1A \'type\':8','*all plus',500,NULL,0,3,4,4),(458,'*account+*right+*table of contents','*account+*right+*table_of_content',NULL,'Number',330,89,5581,'2012-12-05 11:16:24','2011-03-23 20:24:48',1,1,NULL,NULL,'\'account\':1 \'content\':5 \'right\':2 \'tabl\':3','\'2\':6 \'account\':1A \'content\':5A \'right\':2A \'tabl\':3A','*all plus',500,NULL,0,20,4,4),(461,'*input+*right+*options','*input+*right+*option',NULL,'Pointer',268,86,5592,'2012-12-05 11:16:24','2011-04-04 16:52:21',1,1,NULL,NULL,'\'input\':1 \'option\':3 \'right\':2','\'checkbox\':5 \'input\':1A \'list\':8 \'multiselect\':7 \'option\':3A \'radio\':4 \'right\':2A \'select\':6','*all plus',500,NULL,0,47,4,4),(462,'*input+*right+*input','*input+*right+*input',NULL,'Phrase',268,241,5593,'2012-12-05 11:16:24','2011-04-04 16:53:27',1,1,NULL,NULL,'\'input\':1,3 \'right\':2','\'input\':1A,3A \'radio\':4 \'right\':2A','*all plus',500,NULL,0,52,4,4),(465,'*recent','*recent','recent','Search',NULL,NULL,5640,'2012-12-05 11:16:24','2011-04-27 10:28:05',1,1,NULL,NULL,'\'recent\':1','\'chang\':7 \'desc\':5 \'dir\':4 \'recent\':1A \'sort\':2 \'updat\':3 \'view\':6','*self',561,NULL,0,30,1,1),(466,'*search','*search','search','Search',NULL,NULL,6033,'2012-12-05 11:16:24','2012-01-26 23:36:28',1,1,NULL,NULL,'\'search\':1','\'keyword\':3 \'match\':2 \'relev\':5 \'search\':1A \'sort\':4','*all',500,NULL,0,30,1,3),(467,'*missing link','*missing_link',NULL,'Search',NULL,NULL,5642,'2012-12-05 11:16:24','2011-04-27 10:28:06',1,1,NULL,NULL,'\'link\':2 \'miss\':1','\'link\':2A,3 \'miss\':1A \'none\':5','*all',500,NULL,0,30,1,1),(468,'*alerts','*alert','alerts','Basic',NULL,NULL,5643,'2012-12-05 11:16:24','2011-04-27 10:28:07',1,1,NULL,NULL,'\'alert\':1','\'alert\':1A','*all',500,NULL,0,3,1,1),(469,'*foot','*foot','foot','Basic',NULL,NULL,5644,'2012-12-05 11:16:24','2011-04-27 10:28:08',1,1,NULL,NULL,'\'foot\':1','\'foot\':1A','*self',551,NULL,0,3,1,1),(470,'*head','*head','head','Basic',NULL,NULL,5645,'2012-12-05 11:16:24','2011-04-27 10:28:08',1,1,NULL,NULL,'\'head\':1','\'head\':1A','*self',549,NULL,0,3,1,1),(471,'*navbox','*navbox','navbox','Basic',NULL,NULL,5646,'2012-12-05 11:16:24','2011-04-27 10:28:08',1,1,NULL,NULL,'\'navbox\':1','\'navbox\':1A','*all',500,NULL,0,3,1,1),(472,'*now','*now','now','Basic',NULL,NULL,5647,'2012-12-05 11:16:24','2011-04-27 10:28:09',1,1,NULL,NULL,'','','*all',500,NULL,0,3,1,1),(473,'*version','*version','version','Basic',NULL,NULL,5648,'2012-12-05 11:16:24','2011-04-27 10:28:09',1,1,NULL,NULL,'\'version\':1','\'version\':1A','*self',554,NULL,0,3,1,1),(474,'*account links','*account_link','account_links','Basic',NULL,NULL,5649,'2012-12-05 11:16:24','2011-04-27 10:28:09',1,1,NULL,NULL,'\'account\':1 \'link\':2','\'account\':1A \'link\':2A','*self',558,NULL,0,3,1,1),(475,'*all plus','*all_plu','all_plus','Set',NULL,NULL,5948,'2012-12-05 11:16:24','2011-08-16 13:30:35',1,1,NULL,NULL,'\'plus\':2','\'left\':3 \'plus\':2A','*all',500,NULL,0,259,1,1),(476,'*star','*star','star','Set',NULL,NULL,5950,'2012-12-05 11:16:24','2011-08-16 13:30:35',1,1,NULL,NULL,'\'star\':1','\'complet\':2 \'star\':1A','*all',500,NULL,0,259,1,1),(477,'*rstar','*rstar','rstar','Set',NULL,NULL,5949,'2012-12-05 11:16:24','2011-08-16 13:30:35',1,1,NULL,NULL,'\'rstar\':1','\'complet\':3 \'right\':2 \'rstar\':1A','*all',500,NULL,0,259,1,1),(478,'*create','*create','create','Setting',NULL,NULL,5717,'2012-12-05 11:16:24','2011-07-08 21:22:21',1,1,NULL,NULL,'\'creat\':1','\'creat\':1A','*all',500,NULL,0,278,1,1),(479,'*read','*read','read','Setting',NULL,NULL,5718,'2012-12-05 11:16:24','2011-07-08 21:22:21',1,1,NULL,NULL,'\'read\':1','\'read\':1A','*all',500,NULL,0,278,1,1),(480,'*update','*update','update','Setting',NULL,NULL,5719,'2012-12-05 11:16:24','2011-07-08 21:22:21',1,1,NULL,NULL,'\'updat\':1','\'updat\':1A','*all',500,NULL,0,278,1,1),(481,'*delete','*delete','delete','Setting',NULL,NULL,5720,'2012-12-05 11:16:24','2011-07-08 21:22:21',1,1,NULL,NULL,'\'delet\':1','\'delet\':1A','*all',500,NULL,0,278,1,1),(482,'*comment','*comment','comment','Setting',NULL,NULL,5721,'2012-12-05 11:16:24','2011-07-08 21:22:21',1,1,NULL,NULL,'\'comment\':1','\'comment\':1A','*all',500,NULL,0,278,1,1),(483,'*star+*create','*star+*create',NULL,'Pointer',476,478,5722,'2012-12-05 11:16:24','2011-07-08 21:22:21',1,1,NULL,NULL,'\'creat\':2 \'star\':1','\'administr\':3 \'creat\':2A \'star\':1A','*all plus',500,NULL,0,47,1,1),(484,'*rstar+*create','*rstar+*create',NULL,'Pointer',477,478,5723,'2012-12-05 11:16:24','2011-07-08 21:22:21',1,1,NULL,NULL,'\'creat\':2 \'rstar\':1','\'administr\':3 \'creat\':2A \'rstar\':1A','*all plus',500,NULL,0,47,1,1),(485,'HTML+*type+*create','html+*type+*create',NULL,'Pointer',319,478,5724,'2012-12-05 11:16:24','2011-07-08 21:22:21',1,1,NULL,NULL,'\'creat\':3 \'html\':1 \'type\':2','\'administr\':4 \'creat\':3A \'html\':1A \'type\':2A','*all plus',500,NULL,0,47,1,1),(486,'Cardtype+description+*type plus right','cardtype+description+*type_plu_right',NULL,'Set',180,262,5725,'2012-12-05 11:16:24','2011-07-08 21:22:22',1,1,NULL,NULL,'\'cardtyp\':1 \'descript\':2 \'plus\':4 \'right\':5 \'type\':3','\'cardtyp\':1A \'descript\':2A \'left\':6,8 \'plus\':4A \'right\':5A,9,10 \'type\':3A,7','*all plus',500,NULL,0,259,1,1),(487,'Cardtype+description+*type plus right+*create','cardtype+description+*type_plu_right+*create',NULL,'Pointer',486,478,5726,'2012-12-05 11:16:24','2011-07-08 21:22:22',1,1,NULL,NULL,'\'cardtyp\':1 \'creat\':6 \'descript\':2 \'plus\':4 \'right\':5 \'type\':3','\'administr\':7 \'cardtyp\':1A \'creat\':6A \'descript\':2A \'plus\':4A \'right\':5A \'type\':3A','*all plus',500,NULL,0,47,1,1),(488,'*star+*update','*star+*update',NULL,'Pointer',476,480,5727,'2012-12-05 11:16:24','2011-07-08 21:22:22',1,1,NULL,NULL,'\'star\':1 \'updat\':2','\'administr\':3 \'star\':1A \'updat\':2A','*all plus',500,NULL,0,47,1,1),(489,'*rstar+*update','*rstar+*update',NULL,'Pointer',477,480,5728,'2012-12-05 11:16:24','2011-07-08 21:22:22',1,1,NULL,NULL,'\'rstar\':1 \'updat\':2','\'administr\':3 \'rstar\':1A \'updat\':2A','*all plus',500,NULL,0,47,1,1),(490,'HTML+*type+*update','html+*type+*update',NULL,'Pointer',319,480,5729,'2012-12-05 11:16:24','2011-07-08 21:22:22',1,1,NULL,NULL,'\'html\':1 \'type\':2 \'updat\':3','\'administr\':4 \'html\':1A \'type\':2A \'updat\':3A','*all plus',500,NULL,0,47,1,1),(491,'Cardtype+description+*type plus right+*update','cardtype+description+*type_plu_right+*update',NULL,'Pointer',486,480,5730,'2012-12-05 11:16:24','2011-07-08 21:22:22',1,1,NULL,NULL,'\'cardtyp\':1 \'descript\':2 \'plus\':4 \'right\':5 \'type\':3 \'updat\':6','\'administr\':7 \'cardtyp\':1A \'descript\':2A \'plus\':4A \'right\':5A \'type\':3A \'updat\':6A','*all plus',500,NULL,0,47,1,1),(492,'*star+*delete','*star+*delete',NULL,'Pointer',476,481,5731,'2012-12-05 11:16:24','2011-07-08 21:22:22',1,1,NULL,NULL,'\'delet\':2 \'star\':1','\'administr\':3 \'delet\':2A \'star\':1A','*all plus',500,NULL,0,47,1,1),(493,'*rstar+*delete','*rstar+*delete',NULL,'Pointer',477,481,5732,'2012-12-05 11:16:24','2011-07-08 21:22:22',1,1,NULL,NULL,'\'delet\':2 \'rstar\':1','\'administr\':3 \'delet\':2A \'rstar\':1A','*all plus',500,NULL,0,47,1,1),(494,'HTML+*type+*delete','html+*type+*delete',NULL,'Pointer',319,481,5733,'2012-12-05 11:16:24','2011-07-08 21:22:22',1,1,NULL,NULL,'\'delet\':3 \'html\':1 \'type\':2','\'administr\':4 \'delet\':3A \'html\':1A \'type\':2A','*all plus',500,NULL,0,47,1,1),(495,'Cardtype+description+*type plus right+*delete','cardtype+description+*type_plu_right+*delete',NULL,'Pointer',486,481,5734,'2012-12-05 11:16:24','2011-07-08 21:22:22',1,1,NULL,NULL,'\'cardtyp\':1 \'delet\':6 \'descript\':2 \'plus\':4 \'right\':5 \'type\':3','\'administr\':7 \'cardtyp\':1A \'delet\':6A \'descript\':2A \'plus\':4A \'right\':5A \'type\':3A','*all plus',500,NULL,0,47,1,1),(496,'*watcher+*right+*create','*watcher+*right+*create',NULL,'Pointer',269,478,5735,'2012-12-05 11:16:24','2011-07-08 21:22:22',1,1,NULL,NULL,'\'creat\':3 \'right\':2 \'watcher\':1','\'anyon\':4 \'creat\':3A \'right\':2A \'sign\':5 \'watcher\':1A','*all plus',500,NULL,0,47,1,1),(497,'*watcher+*right+*update','*watcher+*right+*update',NULL,'Pointer',269,480,5736,'2012-12-05 11:16:24','2011-07-08 21:22:23',1,1,NULL,NULL,'\'right\':2 \'updat\':3 \'watcher\':1','\'anyon\':4 \'right\':2A \'sign\':5 \'updat\':3A \'watcher\':1A','*all plus',500,NULL,0,47,1,1),(498,'*all+*create','*all+*create',NULL,'Pointer',274,478,5737,'2012-12-05 11:16:24','2011-07-08 21:22:23',1,1,NULL,NULL,'\'creat\':2','\'anyon\':3 \'creat\':2A \'sign\':4','*all plus',500,NULL,0,47,1,1),(499,'*all plus+*create','*all_plu+*create',NULL,'Pointer',475,478,5738,'2012-12-05 11:16:24','2011-07-08 21:22:23',1,1,NULL,NULL,'\'creat\':3 \'plus\':2','\'creat\':3A \'left\':4 \'plus\':2A','*all plus',500,NULL,0,47,1,1),(500,'*all+*read','*all+*read',NULL,'Pointer',274,479,5739,'2012-12-05 11:16:24','2011-07-08 21:22:23',1,1,NULL,NULL,'\'read\':2','\'anyon\':3 \'read\':2A','*all plus',500,NULL,0,47,1,1),(501,'*all plus+*read','*all_plu+*read',NULL,'Pointer',475,479,5740,'2012-12-05 11:16:24','2011-07-08 21:22:23',1,1,NULL,NULL,'\'plus\':2 \'read\':3','\'left\':4 \'plus\':2A \'read\':3A','*all plus',500,NULL,0,47,1,1),(502,'*all+*update','*all+*update',NULL,'Pointer',274,480,5741,'2012-12-05 11:16:24','2011-07-08 21:22:23',1,1,NULL,NULL,'\'updat\':2','\'anyon\':3 \'sign\':4 \'updat\':2A','*all plus',500,NULL,0,47,1,1),(503,'*all plus+*update','*all_plu+*update',NULL,'Pointer',475,480,5742,'2012-12-05 11:16:24','2011-07-08 21:22:23',1,1,NULL,NULL,'\'plus\':2 \'updat\':3','\'left\':4 \'plus\':2A \'updat\':3A','*all plus',500,NULL,0,47,1,1),(504,'*all+*delete','*all+*delete',NULL,'Pointer',274,481,5743,'2012-12-05 11:16:24','2011-07-08 21:22:23',1,1,NULL,NULL,'\'delet\':2','\'anyon\':3 \'delet\':2A \'sign\':4','*all plus',500,NULL,0,47,1,1),(505,'*all plus+*delete','*all_plu+*delete',NULL,'Pointer',475,481,5744,'2012-12-05 11:16:24','2011-07-08 21:22:23',1,1,NULL,NULL,'\'delet\':3 \'plus\':2','\'delet\':3A \'left\':4 \'plus\':2A','*all plus',500,NULL,0,47,1,1),(506,'*all+*comment','*all+*comment',NULL,'Pointer',274,482,5745,'2012-12-05 11:16:24','2011-07-08 21:22:23',1,1,NULL,NULL,'\'comment\':2','\'comment\':2A','*all plus',500,NULL,0,47,1,1),(508,'discussion+*right+*comment','discussion+*right+*comment',NULL,'Pointer',354,482,5747,'2012-12-05 11:16:24','2011-07-08 21:22:25',1,1,NULL,NULL,'\'comment\':3 \'discuss\':1 \'right\':2','\'anyon\':4 \'comment\':3A \'discuss\':1A \'right\':2A','*all plus',500,NULL,0,47,1,1),(509,'Default Layout+*self','default_layout+*self',NULL,'Set',314,264,5748,'2012-12-05 11:16:24','2011-07-08 21:22:27',1,1,NULL,NULL,'\'default\':1 \'layout\':2 \'self\':3','\'default\':1A \'layout\':2A \'name\':4 \'self\':3A,5','*all plus',500,NULL,0,259,1,1),(511,'Setting+*self+*update','setting+*self+*update',NULL,'Pointer',366,480,5750,'2012-12-05 11:16:24','2011-07-08 21:22:27',1,1,NULL,NULL,'\'self\':2 \'set\':1 \'updat\':3','\'administr\':4 \'self\':2A \'set\':1A \'updat\':3A','*all plus',500,NULL,0,47,1,1),(512,'Setting+*self+*delete','setting+*self+*delete',NULL,'Pointer',366,481,5751,'2012-12-05 11:16:24','2011-07-08 21:22:28',1,1,NULL,NULL,'\'delet\':3 \'self\':2 \'set\':1','\'administr\':4 \'delet\':3A \'self\':2A \'set\':1A','*all plus',500,NULL,0,47,1,1),(515,'Config+*self+*update','config+*self+*update',NULL,'Pointer',441,480,5754,'2012-12-05 11:16:24','2011-07-08 21:22:28',1,1,NULL,NULL,'\'config\':1 \'self\':2 \'updat\':3','\'administr\':4 \'config\':1A \'self\':2A \'updat\':3A','*all plus',500,NULL,0,47,1,1),(516,'Config+*self+*delete','config+*self+*delete',NULL,'Pointer',441,481,5755,'2012-12-05 11:16:24','2011-07-08 21:22:28',1,1,NULL,NULL,'\'config\':1 \'delet\':3 \'self\':2','\'administr\':4 \'config\':1A \'delet\':3A \'self\':2A','*all plus',500,NULL,0,47,1,1),(517,'Administrator links+*self','administrator_link+*self',NULL,'Set',151,264,5756,'2012-12-05 11:16:24','2011-07-08 21:22:28',1,1,NULL,NULL,'\'administr\':1 \'link\':2 \'self\':3','\'administr\':1A \'link\':2A \'name\':4 \'self\':3A,5','*all plus',518,NULL,0,259,1,1),(518,'Administrator links+*self+*read','administrator_link+*self+*read',NULL,'Pointer',517,479,5757,'2012-12-05 11:16:24','2011-07-08 21:22:28',1,1,NULL,NULL,'\'administr\':1 \'link\':2 \'read\':4 \'self\':3','\'administr\':1A,5 \'link\':2A \'read\':4A \'self\':3A','*all plus',518,NULL,0,47,1,1),(519,'Administrator links+*self+*delete','administrator_link+*self+*delete',NULL,'Pointer',517,481,5758,'2012-12-05 11:16:24','2011-07-08 21:22:28',1,1,NULL,NULL,'\'administr\':1 \'delet\':4 \'link\':2 \'self\':3','\'administr\':1A,5 \'delet\':4A \'link\':2A \'self\':3A','*all plus',518,NULL,0,47,1,1),(523,'Account Request+*type+*create','account_request+*type+*create',NULL,'Pointer',323,478,5765,'2012-12-05 11:16:24','2011-07-15 15:40:20',1,1,NULL,NULL,'\'account\':1 \'creat\':4 \'request\':2 \'type\':3','\'account\':1A \'anyon\':5 \'creat\':4A \'request\':2A \'type\':3A','*all plus',500,NULL,0,47,3,3),(524,'*comment+*right','*comment+*right',NULL,'Set',482,260,5768,'2012-12-05 11:16:24','2011-07-19 11:48:54',1,1,NULL,NULL,'\'comment\':1 \'right\':2','\'comment\':1A \'right\':2A,3 \'self\':4','*all plus',500,NULL,0,259,3,3),(525,'*comment+*right+*edit help','*comment+*right+*edit_help',NULL,'Basic',524,82,5797,'2012-12-05 11:16:24','2011-07-20 10:08:41',1,1,NULL,NULL,'\'comment\':1 \'edit\':3 \'help\':4 \'right\':2','\'add\':7 \'card\':10 \'comment\':1A,8 \'edit\':3A \'help\':4A \'right\':2A \'set\':13','*all plus',500,NULL,0,3,3,1),(526,'*create+*right','*create+*right',NULL,'Set',478,260,5770,'2012-12-05 11:16:24','2011-07-19 11:49:18',1,1,NULL,NULL,'\'creat\':1 \'right\':2','\'creat\':1A \'right\':2A,3 \'self\':4','*all plus',500,NULL,0,259,3,3),(527,'*create+*right+*edit help','*create+*right+*edit_help',NULL,'Basic',526,82,5793,'2012-12-05 11:16:24','2011-07-20 10:08:39',1,1,NULL,NULL,'\'creat\':1 \'edit\':3 \'help\':4 \'right\':2','\'add\':7 \'card\':8 \'creat\':1A \'edit\':3A \'help\':4A \'right\':2A \'set\':11','*all plus',500,NULL,0,3,3,1),(528,'*delete+*right','*delete+*right',NULL,'Set',481,260,5772,'2012-12-05 11:16:24','2011-07-19 11:49:45',1,1,NULL,NULL,'\'delet\':1 \'right\':2','\'delet\':1A \'right\':2A,3 \'self\':4','*all plus',500,NULL,0,259,3,3),(529,'*delete+*right+*edit help','*delete+*right+*edit_help',NULL,'Basic',528,82,5796,'2012-12-05 11:16:24','2011-07-20 10:08:41',1,1,NULL,NULL,'\'delet\':1 \'edit\':3 \'help\':4 \'right\':2','\'card\':8 \'delet\':1A \'edit\':3A \'help\':4A \'remov\':7 \'right\':2A \'set\':11','*all plus',500,NULL,0,3,3,1),(530,'*read+*right','*read+*right',NULL,'Set',479,260,5775,'2012-12-05 11:16:24','2011-07-19 11:50:19',1,1,NULL,NULL,'\'read\':1 \'right\':2','\'read\':1A \'right\':2A,3 \'self\':4','*all plus',500,NULL,0,259,3,3),(531,'*read+*right+*edit help','*read+*right+*edit_help',NULL,'Basic',530,82,5794,'2012-12-05 11:16:24','2011-07-20 10:08:40',1,1,NULL,NULL,'\'edit\':3 \'help\':4 \'read\':1 \'right\':2','\'card\':8 \'edit\':3A \'help\':4A \'read\':1A \'right\':2A \'set\':11 \'view\':7','*all plus',500,NULL,0,3,3,1),(532,'*update+*right','*update+*right',NULL,'Set',480,260,5777,'2012-12-05 11:16:24','2011-07-19 11:50:35',1,1,NULL,NULL,'\'right\':2 \'updat\':1','\'right\':2A,3 \'self\':4 \'updat\':1A','*all plus',500,NULL,0,259,3,3),(533,'*update+*right+*edit help','*update+*right+*edit_help',NULL,'Basic',532,82,5795,'2012-12-05 11:16:24','2011-07-20 10:08:40',1,1,NULL,NULL,'\'edit\':3 \'help\':4 \'right\':2 \'updat\':1','\'card\':8 \'edit\':3A,7 \'help\':4A \'right\':2A \'set\':11 \'updat\':1A','*all plus',500,NULL,0,3,3,1),(534,'*create+*right+*default','*create+*right+*default',NULL,'Pointer',526,318,5779,'2012-12-05 11:16:24','2011-07-20 10:08:39',1,1,NULL,NULL,'\'creat\':1 \'default\':3 \'right\':2','\'creat\':1A \'default\':3A \'right\':2A','*all plus',500,NULL,0,47,3,1),(535,'*create+*right+*options','*create+*right+*option',NULL,'Search',526,86,5780,'2012-12-05 11:16:24','2011-07-20 10:08:39',1,1,NULL,NULL,'\'creat\':1 \'option\':3 \'right\':2','\'creat\':1A \'extens\':4 \'option\':3A \'right\':2A \'type\':5 \'user\':6','*all plus',500,NULL,0,30,3,1),(536,'*read+*right+*default','*read+*right+*default',NULL,'Pointer',530,318,5781,'2012-12-05 11:16:24','2011-07-20 10:08:40',1,1,NULL,NULL,'\'default\':3 \'read\':1 \'right\':2','\'default\':3A \'read\':1A \'right\':2A','*all plus',500,NULL,0,47,3,1),(537,'*read+*right+*options','*read+*right+*option',NULL,'Search',530,86,5782,'2012-12-05 11:16:24','2011-07-20 10:08:40',1,1,NULL,NULL,'\'option\':3 \'read\':1 \'right\':2','\'extens\':4 \'option\':3A \'read\':1A \'right\':2A \'type\':5 \'user\':6','*all plus',500,NULL,0,30,3,1),(538,'*update+*right+*default','*update+*right+*default',NULL,'Pointer',532,318,5785,'2012-12-05 11:16:24','2011-07-20 10:08:40',1,1,NULL,NULL,'\'default\':3 \'right\':2 \'updat\':1','\'default\':3A \'right\':2A \'updat\':1A','*all plus',500,NULL,0,47,3,1),(539,'*update+*right+*options','*update+*right+*option',NULL,'Search',532,86,5786,'2012-12-05 11:16:24','2011-07-20 10:08:40',1,1,NULL,NULL,'\'option\':3 \'right\':2 \'updat\':1','\'extens\':4 \'option\':3A \'right\':2A \'type\':5 \'updat\':1A \'user\':6','*all plus',500,NULL,0,30,3,1),(540,'*delete+*right+*default','*delete+*right+*default',NULL,'Pointer',528,318,5787,'2012-12-05 11:16:24','2011-07-20 10:08:41',1,1,NULL,NULL,'\'default\':3 \'delet\':1 \'right\':2','\'default\':3A \'delet\':1A \'right\':2A','*all plus',500,NULL,0,47,3,1),(541,'*delete+*right+*options','*delete+*right+*option',NULL,'Search',528,86,5788,'2012-12-05 11:16:24','2011-07-20 10:08:41',1,1,NULL,NULL,'\'delet\':1 \'option\':3 \'right\':2','\'delet\':1A \'extens\':4 \'option\':3A \'right\':2A \'type\':5 \'user\':6','*all plus',500,NULL,0,30,3,1),(542,'*comment+*right+*default','*comment+*right+*default',NULL,'Pointer',524,318,5789,'2012-12-05 11:16:24','2011-07-20 10:08:41',1,1,NULL,NULL,'\'comment\':1 \'default\':3 \'right\':2','\'comment\':1A \'default\':3A \'right\':2A','*all plus',500,NULL,0,47,3,1),(543,'*comment+*right+*options','*comment+*right+*option',NULL,'Search',524,86,5790,'2012-12-05 11:16:24','2011-07-20 10:08:41',1,1,NULL,NULL,'\'comment\':1 \'option\':3 \'right\':2','\'comment\':1A \'extens\':4 \'option\':3A \'right\':2A \'type\':5 \'user\':6','*all plus',500,NULL,0,30,3,1),(544,'*css+*self','*css+*self',NULL,'Set',198,264,5929,'2012-12-05 11:16:24','2011-07-22 09:57:07',1,1,NULL,NULL,'\'css\':1 \'self\':2','\'css\':1A \'name\':3 \'self\':2A,4','*all plus',552,NULL,0,259,3,3),(545,'*css+*self+*edit help','*css+*self+*edit_help',NULL,'Basic',544,82,5935,'2012-12-05 11:16:24','2011-07-22 09:58:32',1,1,NULL,NULL,'\'css\':1 \'edit\':3 \'help\':4 \'self\':2','\'/wagn/skin|learn\':10 \'add\':5 \'css\':1A,7 \'custom\':6 \'edit\':3A \'help\':4A \'self\':2A \'skin\':13 \'wagn\':15 \'wagn.org\':9 \'wagn.org/wagn/skin\':8','*all plus',552,NULL,0,3,3,3),(546,'*tinyMCE+*self','*tiny_mce+*self',NULL,'Set',53,264,5938,'2012-12-05 11:16:24','2011-07-22 10:01:35',1,1,NULL,NULL,'\'self\':2 \'tinymc\':1','\'name\':3 \'self\':2A,4 \'tinymc\':1A','*all plus',500,NULL,0,259,3,3),(547,'*tinyMCE+*self+*edit help','*tiny_mce+*self+*edit_help',NULL,'Basic',546,82,5939,'2012-12-05 11:16:24','2011-07-22 10:01:36',1,1,NULL,NULL,'\'edit\':3 \'help\':4 \'self\':2 \'tinymc\':1','\'/wagn/tinymce|learn\':15 \'basic\':11 \'card\':12 \'configur\':5 \'custom\':18 \'default\':8 \'edit\':3A,20 \'editor\':9 \'help\':4A \'self\':2A \'tinymc\':1A,6 \'toolbar\':21 \'wagn.org\':14 \'wagn.org/wagn/tinymce\':13','*all plus',500,NULL,0,3,3,3),(548,'*head+*self','*head+*self',NULL,'Set',470,264,5951,'2012-12-05 11:16:24','2011-08-25 09:22:56',1,1,NULL,NULL,'\'head\':1 \'self\':2','\'head\':1A \'name\':3 \'self\':2A,4','*all plus',549,NULL,0,259,4,4),(549,'*head+*self+*read','*head+*self+*read',NULL,'Pointer',548,479,5952,'2012-12-05 11:16:24','2011-08-25 09:22:57',1,1,NULL,NULL,'\'head\':1 \'read\':3 \'self\':2','\'anyon\':4 \'head\':1A \'read\':3A \'self\':2A','*all plus',549,NULL,0,47,4,4),(550,'*foot+*self','*foot+*self',NULL,'Set',469,264,5953,'2012-12-05 11:16:24','2011-08-25 09:23:06',1,1,NULL,NULL,'\'foot\':1 \'self\':2','\'foot\':1A \'name\':3 \'self\':2A,4','*all plus',551,NULL,0,259,4,4),(551,'*foot+*self+*read','*foot+*self+*read',NULL,'Pointer',550,479,5954,'2012-12-05 11:16:24','2011-08-25 09:23:06',1,1,NULL,NULL,'\'foot\':1 \'read\':3 \'self\':2','\'anyon\':4 \'foot\':1A \'read\':3A \'self\':2A','*all plus',551,NULL,0,47,4,4),(552,'*css+*self+*read','*css+*self+*read',NULL,'Pointer',544,479,5955,'2012-12-05 11:16:24','2011-08-25 09:24:29',1,1,NULL,NULL,'\'css\':1 \'read\':3 \'self\':2','\'anyon\':4 \'css\':1A \'read\':3A \'self\':2A','*all plus',552,NULL,0,47,4,4),(553,'*version+*self','*version+*self',NULL,'Set',473,264,5956,'2012-12-05 11:16:24','2011-08-25 09:24:36',1,1,NULL,NULL,'\'self\':2 \'version\':1','\'name\':3 \'self\':2A,4 \'version\':1A','*all plus',554,NULL,0,259,4,4),(554,'*version+*self+*read','*version+*self+*read',NULL,'Pointer',553,479,5957,'2012-12-05 11:16:24','2011-08-25 09:24:37',1,1,NULL,NULL,'\'read\':3 \'self\':2 \'version\':1','\'anyon\':4 \'read\':3A \'self\':2A \'version\':1A','*all plus',554,NULL,0,47,4,4),(555,'*logo+*self','*logo+*self',NULL,'Set',79,264,5958,'2012-12-05 11:16:24','2011-08-25 09:25:01',1,1,NULL,NULL,'\'logo\':1 \'self\':2','\'logo\':1A \'name\':3 \'self\':2A,4','*all plus',556,NULL,0,259,4,4),(556,'*logo+*self+*read','*logo+*self+*read',NULL,'Pointer',555,479,5959,'2012-12-05 11:16:24','2011-08-25 09:25:01',1,1,NULL,NULL,'\'logo\':1 \'read\':3 \'self\':2','\'anyon\':4 \'logo\':1A \'read\':3A \'self\':2A','*all plus',556,NULL,0,47,4,4),(557,'*account links+*self','*account_link+*self',NULL,'Set',474,264,5960,'2012-12-05 11:16:24','2011-08-25 09:25:11',1,1,NULL,NULL,'\'account\':1 \'link\':2 \'self\':3','\'account\':1A \'link\':2A \'name\':4 \'self\':3A,5','*all plus',558,NULL,0,259,4,4),(558,'*account links+*self+*read','*account_link+*self+*read',NULL,'Pointer',557,479,5961,'2012-12-05 11:16:24','2011-08-25 09:25:11',1,1,NULL,NULL,'\'account\':1 \'link\':2 \'read\':4 \'self\':3','\'account\':1A \'anyon\':5 \'link\':2A \'read\':4A \'self\':3A','*all plus',558,NULL,0,47,4,4),(559,'*sidebar+*self+*read','*sidebar+*self+*read',NULL,'Pointer',315,479,5962,'2012-12-05 11:16:24','2011-08-25 09:25:30',1,1,NULL,NULL,'\'read\':3 \'self\':2 \'sidebar\':1','\'anyon\':4 \'read\':3A \'self\':2A \'sidebar\':1A','*all plus',559,NULL,0,47,4,4),(560,'*recent+*self','*recent+*self',NULL,'Set',465,264,5963,'2012-12-05 11:16:24','2011-08-25 09:25:39',1,1,NULL,NULL,'\'recent\':1 \'self\':2','\'name\':3 \'recent\':1A \'self\':2A,4','*all plus',561,NULL,0,259,4,4),(561,'*recent+*self+*read','*recent+*self+*read',NULL,'Pointer',560,479,5964,'2012-12-05 11:16:24','2011-08-25 09:25:39',1,1,NULL,NULL,'\'read\':3 \'recent\':1 \'self\':2','\'anyon\':4 \'read\':3A \'recent\':1A \'self\':2A','*all plus',561,NULL,0,47,4,4),(565,'*email','*email','email','Basic',NULL,NULL,6021,'2012-12-05 11:16:24','2012-01-14 01:47:22',1,1,NULL,NULL,NULL,NULL,'*all',500,NULL,0,3,1,1),(566,'*email+*right','*email+*right',NULL,'Set',565,260,6022,'2012-12-05 11:16:24','2012-01-14 01:47:25',1,1,NULL,NULL,NULL,NULL,'*all plus',500,NULL,0,259,1,1),(567,'*email+*right+*content','*email+*right+*content',NULL,'Basic',566,317,6023,'2012-12-05 11:16:24','2012-01-14 01:47:25',1,1,NULL,NULL,NULL,NULL,'*all plus',500,NULL,0,3,1,1),(568,'*email+*right+*read','*email+*right+*read',NULL,'Pointer',566,479,6024,'2012-12-05 11:16:24','2012-01-14 01:47:25',1,1,NULL,NULL,NULL,NULL,'*all plus',500,NULL,0,47,1,1),(569,'Layout','layout','layout_type','Cardtype',NULL,NULL,6027,'2012-12-05 11:16:24','2012-01-14 01:47:26',1,1,27,'Cardtype',NULL,NULL,'*all',500,NULL,0,5,1,1),(570,'Layout+*type','layout+*type',NULL,'Set',569,266,6028,'2012-12-05 11:16:24','2012-01-14 01:47:26',1,1,NULL,NULL,NULL,NULL,'*all plus',500,NULL,0,259,1,1),(571,'Layout+*type+*create','layout+*type+*create',NULL,'Pointer',570,478,6029,'2012-12-05 11:16:24','2012-01-14 01:47:26',1,1,NULL,NULL,NULL,NULL,'*all plus',500,NULL,0,47,1,1),(572,'Layout+*type+*update','layout+*type+*update',NULL,'Pointer',570,480,6030,'2012-12-05 11:16:24','2012-01-14 01:47:26',1,1,NULL,NULL,NULL,NULL,'*all plus',500,NULL,0,47,1,1),(573,'Layout+*type+*delete','layout+*type+*delete',NULL,'Pointer',570,481,6031,'2012-12-05 11:16:24','2012-01-14 01:47:26',1,1,NULL,NULL,NULL,NULL,'*all plus',500,NULL,0,47,1,1),(578,'*all plus+*default','*all_plu+*default',NULL,'Basic',475,318,6044,'2012-12-05 11:16:24','2012-04-18 20:26:21',1,1,NULL,NULL,NULL,NULL,'*all plus',500,NULL,0,3,4,4),(586,'*double click','*double_click','double_click',NULL,NULL,NULL,6052,'2012-12-05 11:16:24','2012-09-20 16:42:33',1,1,NULL,NULL,NULL,NULL,'*all',500,NULL,0,51,NULL,NULL),(587,'*roles+*right+*default','*role+*right+*default',NULL,NULL,353,318,6053,'2012-12-05 11:16:24','2012-09-20 16:42:34',1,1,NULL,NULL,NULL,NULL,'*all plus',500,NULL,0,47,NULL,NULL),(588,'*account+*right+*create','*account+*right+*create',NULL,NULL,330,478,6054,'2012-12-05 11:16:24','2012-09-20 16:42:34',1,1,NULL,NULL,NULL,NULL,'*all plus',500,NULL,0,47,NULL,NULL),(589,'Wagn Bot+*roles','wagn_bot+*role',NULL,NULL,1,96,6055,'2012-12-05 11:16:24','2012-09-20 16:42:34',1,1,NULL,NULL,NULL,NULL,'*all plus',500,NULL,0,47,NULL,NULL),(766,'Wagn Bot+*account','wagn_bot+*account',NULL,NULL,1,100,6262,'2012-12-05 11:16:24','2012-12-02 04:06:19',1,1,NULL,NULL,NULL,NULL,'*all plus',500,NULL,0,3,NULL,NULL),(767,'Anonymous+*account','anonymous+*account',NULL,NULL,15,100,6263,'2012-12-05 11:16:24','2012-12-02 04:06:20',1,1,NULL,NULL,NULL,NULL,'*all plus',500,NULL,0,3,NULL,NULL);
129
+ /*!40000 ALTER TABLE `cards` ENABLE KEYS */;
130
+ UNLOCK TABLES;
131
+
132
+ --
133
+ -- Table structure for table `cardtypes`
134
+ --
135
+
136
+ DROP TABLE IF EXISTS `cardtypes`;
137
+ /*!40101 SET @saved_cs_client = @@character_set_client */;
138
+ /*!40101 SET character_set_client = utf8 */;
139
+ CREATE TABLE `cardtypes` (
140
+ `id` int(11) NOT NULL AUTO_INCREMENT,
141
+ `class_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
142
+ `system` tinyint(1) DEFAULT NULL,
143
+ `card_id` int(11) DEFAULT NULL,
144
+ PRIMARY KEY (`id`),
145
+ UNIQUE KEY `cardtypes_class_name_uniq` (`class_name`)
146
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
147
+ /*!40101 SET character_set_client = @saved_cs_client */;
148
+
149
+ --
150
+ -- Dumping data for table `cardtypes`
151
+ --
152
+
153
+ LOCK TABLES `cardtypes` WRITE;
154
+ /*!40000 ALTER TABLE `cardtypes` DISABLE KEYS */;
155
+ /*!40000 ALTER TABLE `cardtypes` ENABLE KEYS */;
156
+ UNLOCK TABLES;
157
+
158
+ --
159
+ -- Table structure for table `multihost_mappings`
160
+ --
161
+
162
+ DROP TABLE IF EXISTS `multihost_mappings`;
163
+ /*!40101 SET @saved_cs_client = @@character_set_client */;
164
+ /*!40101 SET character_set_client = utf8 */;
165
+ CREATE TABLE `multihost_mappings` (
166
+ `id` int(11) NOT NULL AUTO_INCREMENT,
167
+ `requested_host` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
168
+ `canonical_host` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
169
+ `wagn_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
170
+ `created_at` datetime DEFAULT NULL,
171
+ `updated_at` datetime DEFAULT NULL,
172
+ PRIMARY KEY (`id`),
173
+ UNIQUE KEY `index_multihost_mappings_on_requested_host` (`requested_host`)
174
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
175
+ /*!40101 SET character_set_client = @saved_cs_client */;
176
+
177
+ --
178
+ -- Dumping data for table `multihost_mappings`
179
+ --
180
+
181
+ LOCK TABLES `multihost_mappings` WRITE;
182
+ /*!40000 ALTER TABLE `multihost_mappings` DISABLE KEYS */;
183
+ /*!40000 ALTER TABLE `multihost_mappings` ENABLE KEYS */;
184
+ UNLOCK TABLES;
185
+
186
+ --
187
+ -- Table structure for table `roles`
188
+ --
189
+
190
+ DROP TABLE IF EXISTS `roles`;
191
+ /*!40101 SET @saved_cs_client = @@character_set_client */;
192
+ /*!40101 SET character_set_client = utf8 */;
193
+ CREATE TABLE `roles` (
194
+ `id` int(11) NOT NULL AUTO_INCREMENT,
195
+ `codename` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
196
+ `tasks` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
197
+ PRIMARY KEY (`id`)
198
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
199
+ /*!40101 SET character_set_client = @saved_cs_client */;
200
+
201
+ --
202
+ -- Dumping data for table `roles`
203
+ --
204
+
205
+ LOCK TABLES `roles` WRITE;
206
+ /*!40000 ALTER TABLE `roles` DISABLE KEYS */;
207
+ /*!40000 ALTER TABLE `roles` ENABLE KEYS */;
208
+ UNLOCK TABLES;
209
+
210
+ --
211
+ -- Table structure for table `roles_users`
212
+ --
213
+
214
+ DROP TABLE IF EXISTS `roles_users`;
215
+ /*!40101 SET @saved_cs_client = @@character_set_client */;
216
+ /*!40101 SET character_set_client = utf8 */;
217
+ CREATE TABLE `roles_users` (
218
+ `role_id` int(11) NOT NULL,
219
+ `user_id` int(11) NOT NULL,
220
+ KEY `roles_users_role_id` (`role_id`),
221
+ KEY `roles_users_user_id` (`user_id`)
222
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
223
+ /*!40101 SET character_set_client = @saved_cs_client */;
224
+
225
+ --
226
+ -- Dumping data for table `roles_users`
227
+ --
228
+
229
+ LOCK TABLES `roles_users` WRITE;
230
+ /*!40000 ALTER TABLE `roles_users` DISABLE KEYS */;
231
+ /*!40000 ALTER TABLE `roles_users` ENABLE KEYS */;
232
+ UNLOCK TABLES;
233
+
234
+ --
235
+ -- Table structure for table `schema_migrations`
236
+ --
237
+
238
+ DROP TABLE IF EXISTS `schema_migrations`;
239
+ /*!40101 SET @saved_cs_client = @@character_set_client */;
240
+ /*!40101 SET character_set_client = utf8 */;
241
+ CREATE TABLE `schema_migrations` (
242
+ `version` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
243
+ UNIQUE KEY `unique_schema_migrations` (`version`)
244
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
245
+ /*!40101 SET character_set_client = @saved_cs_client */;
246
+
247
+ --
248
+ -- Dumping data for table `schema_migrations`
249
+ --
250
+
251
+ LOCK TABLES `schema_migrations` WRITE;
252
+ /*!40000 ALTER TABLE `schema_migrations` DISABLE KEYS */;
253
+ INSERT INTO `schema_migrations` VALUES ('20110511221913'),('20120105203350'),('20120112070100'),('20120112070120'),('20120112070150'),('20120116114524'),('20120118013232'),('20120118013233'),('20120327090000'),('20120327100000'),('20120812183334'),('20121111024904'),('20121111025347');
254
+ /*!40000 ALTER TABLE `schema_migrations` ENABLE KEYS */;
255
+ UNLOCK TABLES;
256
+
257
+ --
258
+ -- Table structure for table `sessions`
259
+ --
260
+
261
+ DROP TABLE IF EXISTS `sessions`;
262
+ /*!40101 SET @saved_cs_client = @@character_set_client */;
263
+ /*!40101 SET character_set_client = utf8 */;
264
+ CREATE TABLE `sessions` (
265
+ `id` int(11) NOT NULL AUTO_INCREMENT,
266
+ `session_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
267
+ `data` text COLLATE utf8_unicode_ci,
268
+ `updated_at` datetime DEFAULT NULL,
269
+ PRIMARY KEY (`id`),
270
+ KEY `sessions_session_id_index` (`session_id`)
271
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
272
+ /*!40101 SET character_set_client = @saved_cs_client */;
273
+
274
+ --
275
+ -- Dumping data for table `sessions`
276
+ --
277
+
278
+ LOCK TABLES `sessions` WRITE;
279
+ /*!40000 ALTER TABLE `sessions` DISABLE KEYS */;
280
+ /*!40000 ALTER TABLE `sessions` ENABLE KEYS */;
281
+ UNLOCK TABLES;
282
+
283
+ --
284
+ -- Table structure for table `users`
285
+ --
286
+
287
+ DROP TABLE IF EXISTS `users`;
288
+ /*!40101 SET @saved_cs_client = @@character_set_client */;
289
+ /*!40101 SET character_set_client = utf8 */;
290
+ CREATE TABLE `users` (
291
+ `id` int(11) NOT NULL AUTO_INCREMENT,
292
+ `login` varchar(40) COLLATE utf8_unicode_ci DEFAULT NULL,
293
+ `email` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
294
+ `crypted_password` varchar(40) COLLATE utf8_unicode_ci DEFAULT NULL,
295
+ `salt` varchar(42) COLLATE utf8_unicode_ci DEFAULT NULL,
296
+ `created_at` datetime DEFAULT NULL,
297
+ `updated_at` datetime DEFAULT NULL,
298
+ `password_reset_code` varchar(40) COLLATE utf8_unicode_ci DEFAULT NULL,
299
+ `status` varchar(255) COLLATE utf8_unicode_ci DEFAULT 'request',
300
+ `invite_sender_id` int(11) DEFAULT NULL,
301
+ `identity_url` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
302
+ `card_id` int(11) NOT NULL,
303
+ `account_id` int(11) NOT NULL,
304
+ PRIMARY KEY (`id`)
305
+ ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
306
+ /*!40101 SET character_set_client = @saved_cs_client */;
307
+
308
+ --
309
+ -- Dumping data for table `users`
310
+ --
311
+
312
+ LOCK TABLES `users` WRITE;
313
+ /*!40000 ALTER TABLE `users` DISABLE KEYS */;
314
+ INSERT INTO `users` VALUES (1,'wagbot','no-reply@wagn.org',NULL,NULL,'2012-12-05 11:16:24','2012-12-02 04:06:20',NULL,'system',1,NULL,1,766),(2,'anon',NULL,NULL,NULL,'2012-12-05 11:16:24','2012-12-02 04:06:20',NULL,'system',1,NULL,15,767);
315
+ /*!40000 ALTER TABLE `users` ENABLE KEYS */;
316
+ UNLOCK TABLES;
317
+ /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
318
+
319
+ /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
320
+ /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
321
+ /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
322
+ /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
323
+ /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
324
+ /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
325
+ /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
326
+
327
+ -- Dump completed on 2014-05-17 0:47:01
@@ -1,1953 +1,2149 @@
1
- ---
2
- card_references_001:
1
+ ---
2
+ card_references_001:
3
3
  id: 1
4
4
  referer_id: 100
5
5
  referee_key: user
6
6
  referee_id: 4
7
7
  ref_type: L
8
8
  present: 1
9
- card_references_002:
9
+ card_references_002:
10
10
  id: 2
11
11
  referer_id: 100
12
12
  referee_key: account_request+*type+by_create
13
13
  referee_id:
14
14
  ref_type: I
15
15
  present: 1
16
- card_references_003:
16
+ card_references_003:
17
17
  id: 3
18
18
  referer_id: 100
19
19
  referee_key: card_with_account
20
20
  referee_id: 101
21
21
  ref_type: I
22
22
  present: 1
23
- card_references_004:
23
+ card_references_004:
24
24
  id: 4
25
25
  referer_id: 558
26
26
  referee_key: anyone
27
27
  referee_id: 8
28
28
  ref_type: L
29
29
  present: 1
30
- card_references_005:
30
+ card_references_005:
31
31
  id: 15
32
32
  referer_id: 588
33
33
  referee_key: anyone_signed_in
34
34
  referee_id: 9
35
35
  ref_type: L
36
36
  present: 1
37
- card_references_006:
37
+ card_references_006:
38
38
  id: 19
39
39
  referer_id: 498
40
40
  referee_key: anyone_signed_in
41
41
  referee_id: 9
42
42
  ref_type: L
43
43
  present: 1
44
- card_references_007:
44
+ card_references_007:
45
45
  id: 20
46
46
  referer_id: 504
47
47
  referee_key: anyone_signed_in
48
48
  referee_id: 9
49
49
  ref_type: L
50
50
  present: 1
51
- card_references_008:
51
+ card_references_008:
52
52
  id: 21
53
53
  referer_id: 275
54
54
  referee_key: default_layout
55
55
  referee_id: 314
56
56
  ref_type: L
57
57
  present: 1
58
- card_references_009:
58
+ card_references_009:
59
59
  id: 22
60
60
  referer_id: 500
61
61
  referee_key: anyone
62
62
  referee_id: 8
63
63
  ref_type: L
64
64
  present: 1
65
- card_references_010:
65
+ card_references_010:
66
66
  id: 23
67
67
  referer_id: 502
68
68
  referee_key: anyone_signed_in
69
69
  referee_id: 9
70
70
  ref_type: L
71
71
  present: 1
72
- card_references_011:
73
- id: 42
74
- referer_id: 568
75
- referee_key: administrator
76
- referee_id: 10
77
- ref_type: L
78
- present: 1
79
- card_references_012:
72
+ card_references_011:
80
73
  id: 43
81
74
  referer_id: 551
82
75
  referee_key: anyone
83
76
  referee_id: 8
84
77
  ref_type: L
85
78
  present: 1
86
- card_references_013:
79
+ card_references_012:
87
80
  id: 44
88
81
  referer_id: 549
89
82
  referee_key: anyone
90
83
  referee_id: 8
91
84
  ref_type: L
92
85
  present: 1
93
- card_references_014:
86
+ card_references_013:
94
87
  id: 74
95
88
  referer_id: 461
96
89
  referee_key: radio
97
90
  referee_id:
98
91
  ref_type: L
99
92
  present: 0
100
- card_references_015:
93
+ card_references_014:
101
94
  id: 75
102
95
  referer_id: 461
103
96
  referee_key: checkbox
104
97
  referee_id:
105
98
  ref_type: L
106
99
  present: 0
107
- card_references_016:
100
+ card_references_015:
108
101
  id: 76
109
102
  referer_id: 461
110
103
  referee_key: select
111
104
  referee_id:
112
105
  ref_type: L
113
106
  present: 0
114
- card_references_017:
107
+ card_references_016:
115
108
  id: 77
116
109
  referer_id: 461
117
110
  referee_key: multiselect
118
111
  referee_id:
119
112
  ref_type: L
120
113
  present: 0
121
- card_references_018:
114
+ card_references_017:
122
115
  id: 78
123
116
  referer_id: 461
124
117
  referee_key: list
125
118
  referee_id:
126
119
  ref_type: L
127
120
  present: 0
128
- card_references_019:
121
+ card_references_018:
129
122
  id: 85
130
123
  referer_id: 556
131
124
  referee_key: anyone
132
125
  referee_id: 8
133
126
  ref_type: L
134
127
  present: 1
135
- card_references_020:
128
+ card_references_019:
136
129
  id: 116
137
130
  referer_id: 531
138
131
  referee_key: set
139
132
  referee_id: 259
140
133
  ref_type: L
141
134
  present: 1
142
- card_references_021:
135
+ card_references_020:
143
136
  id: 117
144
137
  referer_id: 561
145
138
  referee_key: anyone
146
139
  referee_id: 8
147
140
  ref_type: L
148
141
  present: 1
149
- card_references_022:
142
+ card_references_021:
150
143
  id: 135
151
144
  referer_id: 484
152
145
  referee_key: administrator
153
146
  referee_id: 10
154
147
  ref_type: L
155
148
  present: 1
156
- card_references_023:
149
+ card_references_022:
157
150
  id: 136
158
151
  referer_id: 493
159
152
  referee_key: administrator
160
153
  referee_id: 10
161
154
  ref_type: L
162
155
  present: 1
163
- card_references_024:
156
+ card_references_023:
164
157
  id: 137
165
158
  referer_id: 489
166
159
  referee_key: administrator
167
160
  referee_id: 10
168
161
  ref_type: L
169
162
  present: 1
170
- card_references_025:
163
+ card_references_024:
171
164
  id: 138
172
165
  referer_id: 368
173
166
  referee_key: "*send+*right+email_config"
174
167
  referee_id:
175
168
  ref_type: L
176
169
  present: 1
177
- card_references_026:
170
+ card_references_025:
178
171
  id: 142
179
172
  referer_id: 559
180
173
  referee_key: anyone
181
174
  referee_id: 8
182
175
  ref_type: L
183
176
  present: 1
184
- card_references_027:
177
+ card_references_026:
185
178
  id: 147
186
179
  referer_id: 483
187
180
  referee_key: administrator
188
181
  referee_id: 10
189
182
  ref_type: L
190
183
  present: 1
191
- card_references_028:
184
+ card_references_027:
192
185
  id: 148
193
186
  referer_id: 492
194
187
  referee_key: administrator
195
188
  referee_id: 10
196
189
  ref_type: L
197
190
  present: 1
198
- card_references_029:
191
+ card_references_028:
199
192
  id: 149
200
193
  referer_id: 488
201
194
  referee_key: administrator
202
195
  referee_id: 10
203
196
  ref_type: L
204
197
  present: 1
205
- card_references_030:
198
+ card_references_029:
206
199
  id: 160
207
200
  referer_id: 554
208
201
  referee_key: anyone
209
202
  referee_id: 8
210
203
  ref_type: L
211
204
  present: 1
212
- card_references_031:
205
+ card_references_030:
213
206
  id: 161
214
207
  referer_id: 496
215
208
  referee_key: anyone_signed_in
216
209
  referee_id: 9
217
210
  ref_type: L
218
211
  present: 1
219
- card_references_032:
212
+ card_references_031:
220
213
  id: 162
221
214
  referer_id: 497
222
215
  referee_key: anyone_signed_in
223
216
  referee_id: 9
224
217
  ref_type: L
225
218
  present: 1
226
- card_references_033:
219
+ card_references_032:
227
220
  id: 163
228
221
  referer_id: 219
229
222
  referee_key: "*watcher+*right+by_name"
230
223
  referee_id:
231
224
  ref_type: I
232
225
  present: 1
233
- card_references_034:
226
+ card_references_033:
234
227
  id: 166
235
228
  referer_id: 453
236
229
  referee_key: account_request+*self+*structure+description
237
230
  referee_id:
238
231
  ref_type: I
239
232
  present: 0
240
- card_references_035:
233
+ card_references_034:
241
234
  id: 167
242
235
  referer_id: 453
243
236
  referee_key: account_request+*self+*structure+*type+by_name
244
237
  referee_id:
245
238
  ref_type: I
246
239
  present: 1
247
- card_references_036:
240
+ card_references_035:
248
241
  id: 168
249
242
  referer_id: 523
250
243
  referee_key: anyone
251
244
  referee_id: 8
252
245
  ref_type: L
253
246
  present: 1
254
- card_references_037:
247
+ card_references_036:
255
248
  id: 171
256
249
  referer_id: 519
257
250
  referee_key: administrator
258
251
  referee_id: 10
259
252
  ref_type: L
260
253
  present: 1
261
- card_references_038:
254
+ card_references_037:
262
255
  id: 172
263
256
  referer_id: 518
264
257
  referee_key: administrator
265
258
  referee_id: 10
266
259
  ref_type: L
267
260
  present: 1
268
- card_references_039:
261
+ card_references_038:
269
262
  id: 174
270
263
  referer_id: 3
271
264
  referee_key: basic+description
272
265
  referee_id: 405
273
266
  ref_type: I
274
267
  present: 1
275
- card_references_040:
268
+ card_references_039:
276
269
  id: 175
277
270
  referer_id: 3
278
271
  referee_key: basic+*type+by_name
279
272
  referee_id:
280
273
  ref_type: I
281
274
  present: 1
282
- card_references_041:
275
+ card_references_040:
283
276
  id: 179
284
277
  referer_id: 5
285
278
  referee_key: cardtype+description
286
279
  referee_id: 180
287
280
  ref_type: I
288
281
  present: 1
289
- card_references_042:
282
+ card_references_041:
290
283
  id: 180
291
284
  referer_id: 5
292
285
  referee_key: cardtype+*type+by_name
293
286
  referee_id:
294
287
  ref_type: I
295
288
  present: 1
296
- card_references_043:
289
+ card_references_042:
297
290
  id: 186
298
291
  referer_id: 88
299
292
  referee_key: cardtype+*type+*structure+description
300
293
  referee_id:
301
294
  ref_type: I
302
295
  present: 0
303
- card_references_044:
296
+ card_references_043:
304
297
  id: 187
305
298
  referer_id: 88
306
299
  referee_key: cardtype+*type+*structure+*type+by_name
307
300
  referee_id:
308
301
  ref_type: I
309
302
  present: 1
310
- card_references_045:
303
+ card_references_044:
311
304
  id: 189
312
305
  referer_id: 487
313
306
  referee_key: administrator
314
307
  referee_id: 10
315
308
  ref_type: L
316
309
  present: 1
317
- card_references_046:
310
+ card_references_045:
318
311
  id: 190
319
312
  referer_id: 495
320
313
  referee_key: administrator
321
314
  referee_id: 10
322
315
  ref_type: L
323
316
  present: 1
324
- card_references_047:
317
+ card_references_046:
325
318
  id: 191
326
319
  referer_id: 491
327
320
  referee_key: administrator
328
321
  referee_id: 10
329
322
  ref_type: L
330
323
  present: 1
331
- card_references_048:
324
+ card_references_047:
332
325
  id: 228
333
326
  referer_id: 516
334
327
  referee_key: administrator
335
328
  referee_id: 10
336
329
  ref_type: L
337
330
  present: 1
338
- card_references_049:
331
+ card_references_048:
339
332
  id: 229
340
333
  referer_id: 515
341
334
  referee_key: administrator
342
335
  referee_id: 10
343
336
  ref_type: L
344
337
  present: 1
345
- card_references_050:
338
+ card_references_049:
346
339
  id: 233
347
340
  referer_id: 17
348
341
  referee_key: date+description
349
342
  referee_id: 409
350
343
  ref_type: I
351
344
  present: 1
352
- card_references_051:
345
+ card_references_050:
353
346
  id: 234
354
347
  referer_id: 17
355
348
  referee_key: date+*type+by_name
356
349
  referee_id:
357
350
  ref_type: I
358
351
  present: 1
359
- card_references_052:
352
+ card_references_051:
360
353
  id: 341
361
354
  referer_id: 508
362
355
  referee_key: anyone
363
356
  referee_id: 8
364
357
  ref_type: L
365
358
  present: 1
366
- card_references_053:
359
+ card_references_052:
367
360
  id: 342
368
361
  referer_id: 373
369
362
  referee_key: email_config+*right+*structure+*from
370
363
  referee_id:
371
364
  ref_type: I
372
365
  present: 0
373
- card_references_054:
366
+ card_references_053:
374
367
  id: 343
375
368
  referer_id: 373
376
369
  referee_key: email_config+*right+*structure+*to
377
370
  referee_id:
378
371
  ref_type: I
379
372
  present: 0
380
- card_references_055:
373
+ card_references_054:
381
374
  id: 344
382
375
  referer_id: 373
383
376
  referee_key: email_config+*right+*structure+*cc
384
377
  referee_id:
385
378
  ref_type: I
386
379
  present: 0
387
- card_references_056:
380
+ card_references_055:
388
381
  id: 345
389
382
  referer_id: 373
390
383
  referee_key: email_config+*right+*structure+*bcc
391
384
  referee_id:
392
385
  ref_type: I
393
386
  present: 0
394
- card_references_057:
387
+ card_references_056:
395
388
  id: 346
396
389
  referer_id: 373
397
390
  referee_key: email_config+*right+*structure+*subject
398
391
  referee_id:
399
392
  ref_type: I
400
393
  present: 0
401
- card_references_058:
394
+ card_references_057:
402
395
  id: 347
403
396
  referer_id: 373
404
397
  referee_key: email_config+*right+*structure+*message
405
398
  referee_id:
406
399
  ref_type: I
407
400
  present: 0
408
- card_references_059:
401
+ card_references_058:
409
402
  id: 348
410
403
  referer_id: 373
411
404
  referee_key: email_config+*right+*structure+*attach
412
405
  referee_id:
413
406
  ref_type: I
414
407
  present: 0
415
- card_references_060:
408
+ card_references_059:
416
409
  id: 362
417
410
  referer_id: 485
418
411
  referee_key: administrator
419
412
  referee_id: 10
420
413
  ref_type: L
421
414
  present: 1
422
- card_references_061:
415
+ card_references_060:
423
416
  id: 363
424
417
  referer_id: 494
425
418
  referee_key: administrator
426
419
  referee_id: 10
427
420
  ref_type: L
428
421
  present: 1
429
- card_references_062:
422
+ card_references_061:
430
423
  id: 364
431
424
  referer_id: 490
432
425
  referee_key: administrator
433
426
  referee_id: 10
434
427
  ref_type: L
435
428
  present: 1
436
- card_references_063:
429
+ card_references_062:
437
430
  id: 366
438
431
  referer_id: 19
439
432
  referee_key: image+description
440
433
  referee_id: 214
441
434
  ref_type: I
442
435
  present: 1
443
- card_references_064:
436
+ card_references_063:
444
437
  id: 367
445
438
  referer_id: 19
446
439
  referee_key: image+*type+by_name
447
440
  referee_id:
448
441
  ref_type: I
449
442
  present: 1
450
- card_references_065:
443
+ card_references_064:
451
444
  id: 381
452
445
  referer_id: 569
453
446
  referee_key: layout+description
454
447
  referee_id:
455
448
  ref_type: I
456
449
  present: 0
457
- card_references_066:
450
+ card_references_065:
458
451
  id: 382
459
452
  referer_id: 569
460
453
  referee_key: layout+*type+by_name
461
454
  referee_id:
462
455
  ref_type: I
463
456
  present: 1
464
- card_references_067:
457
+ card_references_066:
465
458
  id: 383
466
459
  referer_id: 571
467
460
  referee_key: administrator
468
461
  referee_id: 10
469
462
  ref_type: L
470
463
  present: 1
471
- card_references_068:
464
+ card_references_067:
472
465
  id: 384
473
466
  referer_id: 573
474
467
  referee_key: administrator
475
468
  referee_id: 10
476
469
  ref_type: L
477
470
  present: 1
478
- card_references_069:
471
+ card_references_068:
479
472
  id: 385
480
473
  referer_id: 572
481
474
  referee_key: administrator
482
475
  referee_id: 10
483
476
  ref_type: L
484
477
  present: 1
485
- card_references_070:
478
+ card_references_069:
486
479
  id: 421
487
480
  referer_id: 20
488
481
  referee_key: number+description
489
482
  referee_id: 406
490
483
  ref_type: I
491
484
  present: 1
492
- card_references_071:
485
+ card_references_070:
493
486
  id: 422
494
487
  referer_id: 20
495
488
  referee_key: number+*type+by_name
496
489
  referee_id:
497
490
  ref_type: I
498
491
  present: 1
499
- card_references_072:
492
+ card_references_071:
500
493
  id: 424
501
494
  referer_id: 52
502
495
  referee_key: phrase+description
503
496
  referee_id: 408
504
497
  ref_type: I
505
498
  present: 1
506
- card_references_073:
499
+ card_references_072:
507
500
  id: 425
508
501
  referer_id: 52
509
502
  referee_key: phrase+*type+by_name
510
503
  referee_id:
511
504
  ref_type: I
512
505
  present: 1
513
- card_references_074:
506
+ card_references_073:
514
507
  id: 427
515
508
  referer_id: 22
516
509
  referee_key: plain_text+description
517
510
  referee_id: 407
518
511
  ref_type: I
519
512
  present: 1
520
- card_references_075:
513
+ card_references_074:
521
514
  id: 428
522
515
  referer_id: 22
523
516
  referee_key: plain_text+*type+by_name
524
517
  referee_id:
525
518
  ref_type: I
526
519
  present: 1
527
- card_references_076:
520
+ card_references_075:
528
521
  id: 430
529
522
  referer_id: 47
530
523
  referee_key: pointer+description
531
524
  referee_id: 213
532
525
  ref_type: I
533
526
  present: 1
534
- card_references_077:
527
+ card_references_076:
535
528
  id: 431
536
529
  referer_id: 47
537
530
  referee_key: pointer+*type+by_name
538
531
  referee_id:
539
532
  ref_type: I
540
533
  present: 1
541
- card_references_078:
534
+ card_references_077:
542
535
  id: 435
543
536
  referer_id: 7
544
537
  referee_key: role+description
545
538
  referee_id: 225
546
539
  ref_type: I
547
540
  present: 1
548
- card_references_079:
541
+ card_references_078:
549
542
  id: 436
550
543
  referer_id: 7
551
544
  referee_key: role+*type+by_name
552
545
  referee_id:
553
546
  ref_type: I
554
547
  present: 1
555
- card_references_080:
548
+ card_references_079:
556
549
  id: 441
557
550
  referer_id: 322
558
551
  referee_key: role+*type+*structure+description
559
552
  referee_id:
560
553
  ref_type: I
561
554
  present: 0
562
- card_references_081:
555
+ card_references_080:
563
556
  id: 442
564
557
  referer_id: 322
565
558
  referee_key: role+*type+*structure+*member
566
559
  referee_id:
567
560
  ref_type: I
568
561
  present: 1
569
- card_references_082:
562
+ card_references_081:
570
563
  id: 444
571
564
  referer_id: 225
572
565
  referee_key: user
573
566
  referee_id: 4
574
567
  ref_type: L
575
568
  present: 1
576
- card_references_083:
569
+ card_references_082:
577
570
  id: 445
578
571
  referer_id: 30
579
572
  referee_key: search+description
580
573
  referee_id: 182
581
574
  ref_type: I
582
575
  present: 1
583
- card_references_084:
576
+ card_references_083:
584
577
  id: 446
585
578
  referer_id: 30
586
579
  referee_key: search+*type+by_name
587
580
  referee_id:
588
581
  ref_type: I
589
582
  present: 1
590
- card_references_085:
583
+ card_references_084:
591
584
  id: 448
592
585
  referer_id: 259
593
586
  referee_key: set+description
594
587
  referee_id: 297
595
588
  ref_type: I
596
589
  present: 1
597
- card_references_086:
590
+ card_references_085:
598
591
  id: 449
599
592
  referer_id: 259
600
593
  referee_key: set+*type+by_name
601
594
  referee_id:
602
595
  ref_type: I
603
596
  present: 1
604
- card_references_087:
597
+ card_references_086:
605
598
  id: 450
606
599
  referer_id: 456
607
600
  referee_key: set+*self+*structure+description
608
601
  referee_id:
609
602
  ref_type: I
610
603
  present: 0
611
- card_references_088:
604
+ card_references_087:
612
605
  id: 451
613
606
  referer_id: 456
614
607
  referee_key: set+*self+*structure+*type+by_name
615
608
  referee_id:
616
609
  ref_type: I
617
610
  present: 1
618
- card_references_089:
611
+ card_references_088:
619
612
  id: 467
620
613
  referer_id: 512
621
614
  referee_key: administrator
622
615
  referee_id: 10
623
616
  ref_type: L
624
617
  present: 1
625
- card_references_090:
618
+ card_references_089:
626
619
  id: 468
627
620
  referer_id: 511
628
621
  referee_key: administrator
629
622
  referee_id: 10
630
623
  ref_type: L
631
624
  present: 1
632
- card_references_091:
625
+ card_references_090:
633
626
  id: 596
634
627
  referer_id: 51
635
628
  referee_key: toggle+description
636
629
  referee_id: 212
637
630
  ref_type: I
638
631
  present: 1
639
- card_references_092:
632
+ card_references_091:
640
633
  id: 597
641
634
  referer_id: 51
642
635
  referee_key: toggle+*type+by_name
643
636
  referee_id:
644
637
  ref_type: I
645
638
  present: 1
646
- card_references_093:
639
+ card_references_092:
647
640
  id: 640
648
641
  referer_id: 4
649
642
  referee_key: user+description
650
643
  referee_id: 181
651
644
  ref_type: I
652
645
  present: 1
653
- card_references_094:
646
+ card_references_093:
654
647
  id: 641
655
648
  referer_id: 4
656
649
  referee_key: user+*type+by_name
657
650
  referee_id:
658
651
  ref_type: I
659
652
  present: 1
660
- card_references_095:
653
+ card_references_094:
661
654
  id: 645
662
655
  referer_id: 589
663
656
  referee_key: administrator
664
657
  referee_id: 10
665
658
  ref_type: L
666
659
  present: 1
667
- card_references_096:
660
+ card_references_095:
668
661
  id: 650
669
662
  referer_id: 18
670
663
  referee_key: file+description
671
664
  referee_id: 215
672
665
  ref_type: I
673
666
  present: 1
674
- card_references_097:
667
+ card_references_096:
675
668
  id: 651
676
669
  referer_id: 18
677
670
  referee_key: file+*type+by_name
678
671
  referee_id:
679
672
  ref_type: I
680
673
  present: 1
681
- card_references_098:
674
+ card_references_097:
682
675
  id: 652
683
676
  referer_id: 50
684
677
  referee_key: html+description
685
678
  referee_id: 202
686
679
  ref_type: I
687
680
  present: 1
688
- card_references_099:
681
+ card_references_098:
689
682
  id: 653
690
683
  referer_id: 50
691
684
  referee_key: html+*type+by_name
692
685
  referee_id:
693
686
  ref_type: I
694
687
  present: 1
695
- card_references_100:
696
- id: 654
697
- referer_id: 68
698
- referee_key: account_request
699
- referee_id: 12
700
- ref_type: L
701
- present: 1
702
- card_references_101:
688
+ card_references_099:
703
689
  id: 704
704
690
  referer_id: 101
705
691
  referee_key: "*head"
706
692
  referee_id: 470
707
693
  ref_type: I
708
694
  present: 1
709
- card_references_102:
695
+ card_references_100:
710
696
  id: 705
711
697
  referer_id: 101
712
698
  referee_key: "*navbox"
713
699
  referee_id: 471
714
700
  ref_type: I
715
701
  present: 1
716
- card_references_103:
702
+ card_references_101:
717
703
  id: 706
718
704
  referer_id: 101
719
705
  referee_key: "*account_link"
720
706
  referee_id: 474
721
707
  ref_type: I
722
708
  present: 1
723
- card_references_104:
709
+ card_references_102:
724
710
  id: 707
725
711
  referer_id: 101
726
712
  referee_key: "*sidebar"
727
713
  referee_id: 81
728
714
  ref_type: I
729
715
  present: 1
730
- card_references_105:
716
+ card_references_103:
731
717
  id: 708
732
718
  referer_id: 101
733
719
  referee_key: "*version"
734
720
  referee_id: 473
735
721
  ref_type: I
736
722
  present: 1
737
- card_references_106:
723
+ card_references_104:
738
724
  id: 714
739
725
  referer_id: 331
740
726
  referee_key: "*head"
741
727
  referee_id: 470
742
728
  ref_type: I
743
729
  present: 1
744
- card_references_107:
730
+ card_references_105:
745
731
  id: 715
746
732
  referer_id: 331
747
733
  referee_key: "*navbox"
748
734
  referee_id: 471
749
735
  ref_type: I
750
736
  present: 1
751
- card_references_108:
737
+ card_references_106:
752
738
  id: 716
753
739
  referer_id: 331
754
740
  referee_key: "*account_link"
755
741
  referee_id: 474
756
742
  ref_type: I
757
743
  present: 1
758
- card_references_109:
744
+ card_references_107:
759
745
  id: 717
760
746
  referer_id: 331
761
747
  referee_key: "*sidebar"
762
748
  referee_id: 81
763
749
  ref_type: I
764
750
  present: 1
765
- card_references_110:
751
+ card_references_108:
766
752
  id: 718
767
753
  referer_id: 331
768
754
  referee_key: "*version"
769
755
  referee_id: 473
770
756
  ref_type: I
771
757
  present: 1
772
- card_references_111:
758
+ card_references_109:
773
759
  id: 725
774
760
  referer_id: 308
775
761
  referee_key: "*account+*right"
776
762
  referee_id: 330
777
763
  ref_type: L
778
764
  present: 1
779
- card_references_112:
765
+ card_references_110:
780
766
  id: 726
781
767
  referer_id: 299
782
768
  referee_key: pointer
783
769
  referee_id: 47
784
770
  ref_type: L
785
771
  present: 1
786
- card_references_113:
772
+ card_references_111:
787
773
  id: 727
788
774
  referer_id: 301
789
775
  referee_key: pointer
790
776
  referee_id: 47
791
777
  ref_type: L
792
778
  present: 1
793
- card_references_114:
779
+ card_references_112:
794
780
  id: 728
795
781
  referer_id: 301
796
782
  referee_key: search
797
783
  referee_id: 30
798
784
  ref_type: L
799
785
  present: 1
800
- card_references_115:
786
+ card_references_113:
801
787
  id: 729
802
788
  referer_id: 254
803
789
  referee_key: pointer
804
790
  referee_id: 47
805
791
  ref_type: L
806
792
  present: 1
807
- card_references_116:
793
+ card_references_114:
808
794
  id: 730
809
795
  referer_id: 83
810
796
  referee_key: default_layout
811
797
  referee_id: 314
812
798
  ref_type: L
813
799
  present: 1
814
- card_references_117:
800
+ card_references_115:
815
801
  id: 736
816
802
  referer_id: 374
817
803
  referee_key: "*head"
818
804
  referee_id: 470
819
805
  ref_type: I
820
806
  present: 1
821
- card_references_118:
807
+ card_references_116:
822
808
  id: 737
823
809
  referer_id: 374
824
810
  referee_key: "*navbox"
825
811
  referee_id: 471
826
812
  ref_type: I
827
813
  present: 1
828
- card_references_119:
814
+ card_references_117:
829
815
  id: 738
830
816
  referer_id: 374
831
817
  referee_key: "*account_link"
832
818
  referee_id: 474
833
819
  ref_type: I
834
820
  present: 1
835
- card_references_120:
821
+ card_references_118:
836
822
  id: 739
837
823
  referer_id: 374
838
824
  referee_key: "*sidebar"
839
825
  referee_id: 81
840
826
  ref_type: I
841
827
  present: 1
842
- card_references_121:
828
+ card_references_119:
843
829
  id: 740
844
830
  referer_id: 374
845
831
  referee_key: "*version"
846
832
  referee_id: 473
847
833
  ref_type: I
848
834
  present: 1
849
- card_references_122:
835
+ card_references_120:
850
836
  id: 930
851
837
  referer_id: 785
852
838
  referee_key: "*created+*right"
853
839
  referee_id: 432
854
840
  ref_type: I
855
841
  present: 1
856
- card_references_123:
842
+ card_references_121:
857
843
  id: 931
858
844
  referer_id: 786
859
845
  referee_key: "*edited+*right"
860
846
  referee_id: 351
861
847
  ref_type: I
862
848
  present: 1
863
- card_references_124:
849
+ card_references_122:
864
850
  id: 932
865
851
  referer_id: 784
866
852
  referee_key: "*editor+*right"
867
853
  referee_id: 352
868
854
  ref_type: I
869
855
  present: 1
870
- card_references_125:
856
+ card_references_123:
871
857
  id: 933
872
858
  referer_id: 783
873
859
  referee_key: "*include+*right"
874
860
  referee_id: 347
875
861
  ref_type: I
876
862
  present: 1
877
- card_references_126:
863
+ card_references_124:
878
864
  id: 934
879
865
  referer_id: 780
880
866
  referee_key: "*included_by+*right"
881
867
  referee_id: 348
882
868
  ref_type: I
883
869
  present: 1
884
- card_references_127:
870
+ card_references_125:
885
871
  id: 935
886
872
  referer_id: 782
887
873
  referee_key: "*link_to+*right"
888
874
  referee_id: 346
889
875
  ref_type: I
890
876
  present: 1
891
- card_references_128:
877
+ card_references_126:
892
878
  id: 936
893
879
  referer_id: 779
894
880
  referee_key: "*linked_to_by+*right"
895
881
  referee_id: 345
896
882
  ref_type: I
897
883
  present: 1
898
- card_references_129:
884
+ card_references_127:
899
885
  id: 939
900
886
  referer_id: 777
901
887
  referee_key: "*mate+*right"
902
888
  referee_id: 349
903
889
  ref_type: I
904
890
  present: 1
905
- card_references_130:
891
+ card_references_128:
906
892
  id: 940
907
893
  referer_id: 777
908
894
  referee_key: "*mate+*right"
909
895
  referee_id: 349
910
896
  ref_type: I
911
897
  present: 1
912
- card_references_131:
898
+ card_references_129:
913
899
  id: 941
914
900
  referer_id: 781
915
901
  referee_key: "*refer_to+*right"
916
902
  referee_id: 446
917
903
  ref_type: I
918
904
  present: 1
919
- card_references_132:
905
+ card_references_130:
920
906
  id: 942
921
907
  referer_id: 778
922
908
  referee_key: "*referred_to_by+*right"
923
909
  referee_id: 449
924
910
  ref_type: I
925
911
  present: 1
926
- card_references_133:
912
+ card_references_131:
927
913
  id: 943
928
914
  referer_id: 776
929
915
  referee_key: "*child+*right"
930
916
  referee_id: 350
931
917
  ref_type: I
932
918
  present: 1
933
- card_references_134:
919
+ card_references_132:
934
920
  id: 944
935
921
  referer_id: 776
936
922
  referee_key: "*child+*right"
937
923
  referee_id: 350
938
924
  ref_type: I
939
925
  present: 1
940
- card_references_135:
926
+ card_references_133:
941
927
  id: 945
942
928
  referer_id: 319
943
929
  referee_key: "*head"
944
930
  referee_id: 470
945
931
  ref_type: I
946
932
  present: 1
947
- card_references_136:
933
+ card_references_134:
948
934
  id: 946
949
935
  referer_id: 319
950
936
  referee_key: "*navbox"
951
937
  referee_id: 471
952
938
  ref_type: I
953
939
  present: 1
954
- card_references_137:
940
+ card_references_135:
955
941
  id: 947
956
942
  referer_id: 319
957
943
  referee_key: "*account_link"
958
944
  referee_id: 474
959
945
  ref_type: I
960
946
  present: 1
961
- card_references_138:
947
+ card_references_136:
962
948
  id: 948
963
949
  referer_id: 319
964
950
  referee_key: "*sidebar"
965
951
  referee_id: 81
966
952
  ref_type: I
967
953
  present: 1
968
- card_references_139:
954
+ card_references_137:
969
955
  id: 949
970
956
  referer_id: 319
971
957
  referee_key: "*version"
972
958
  referee_id: 473
973
959
  ref_type: I
974
960
  present: 1
975
- card_references_140:
961
+ card_references_138:
976
962
  id: 984
977
963
  referer_id: 789
978
964
  referee_key: "*credit+image"
979
965
  referee_id: 790
980
966
  ref_type: I
981
967
  present: 1
982
- card_references_141:
968
+ card_references_139:
983
969
  id: 985
984
970
  referer_id: 789
985
971
  referee_key: "*version"
986
972
  referee_id: 473
987
973
  ref_type: I
988
974
  present: 1
989
- card_references_142:
975
+ card_references_140:
990
976
  id: 1076
991
977
  referer_id: 787
992
978
  referee_key: select
993
979
  referee_id:
994
980
  ref_type: L
995
981
  present: 0
996
- card_references_143:
982
+ card_references_141:
997
983
  id: 1255
998
984
  referer_id: 151
999
985
  referee_key: config
1000
986
  referee_id: 73
1001
987
  ref_type: L
1002
988
  present: 1
1003
- card_references_144:
989
+ card_references_142:
1004
990
  id: 1256
1005
991
  referer_id: 151
1006
992
  referee_key: "*account"
1007
993
  referee_id: 100
1008
994
  ref_type: L
1009
995
  present: 1
1010
- card_references_145:
996
+ card_references_143:
1011
997
  id: 1261
1012
998
  referer_id: 797
1013
999
  referee_key: administrator
1014
1000
  referee_id: 10
1015
1001
  ref_type: L
1016
1002
  present: 1
1017
- card_references_146:
1003
+ card_references_144:
1018
1004
  id: 1415
1019
1005
  referer_id: 81
1020
1006
  referee_key: menu
1021
1007
  referee_id: 85
1022
1008
  ref_type: I
1023
1009
  present: 1
1024
- card_references_147:
1010
+ card_references_145:
1025
1011
  id: 1416
1026
1012
  referer_id: 81
1027
1013
  referee_key: wagneer_menu
1028
1014
  referee_id: 795
1029
1015
  ref_type: I
1030
1016
  present: 1
1031
- card_references_148:
1017
+ card_references_146:
1032
1018
  id: 1417
1033
1019
  referer_id: 81
1034
1020
  referee_key: administrator_menu
1035
1021
  referee_id: 151
1036
1022
  ref_type: I
1037
1023
  present: 1
1038
- card_references_149:
1024
+ card_references_147:
1039
1025
  id: 1418
1040
1026
  referer_id: 81
1041
1027
  referee_key: "*credit"
1042
1028
  referee_id: 789
1043
1029
  ref_type: I
1044
1030
  present: 1
1045
- card_references_150:
1031
+ card_references_148:
1046
1032
  id: 1531
1047
1033
  referer_id: 942
1048
1034
  referee_key: css+description
1049
1035
  referee_id:
1050
1036
  ref_type: I
1051
1037
  present: 0
1052
- card_references_151:
1038
+ card_references_149:
1053
1039
  id: 1532
1054
1040
  referer_id: 942
1055
1041
  referee_key: css+*type+by_name
1056
1042
  referee_id:
1057
1043
  ref_type: I
1058
1044
  present: 1
1059
- card_references_152:
1045
+ card_references_150:
1060
1046
  id: 1533
1061
1047
  referer_id: 943
1062
1048
  referee_key: scss+description
1063
1049
  referee_id:
1064
1050
  ref_type: I
1065
1051
  present: 0
1066
- card_references_153:
1052
+ card_references_151:
1067
1053
  id: 1534
1068
1054
  referer_id: 943
1069
1055
  referee_key: scss+*type+by_name
1070
1056
  referee_id:
1071
1057
  ref_type: I
1072
1058
  present: 1
1073
- card_references_154:
1059
+ card_references_152:
1074
1060
  id: 1535
1075
1061
  referer_id: 944
1076
1062
  referee_key: skin+description
1077
1063
  referee_id:
1078
1064
  ref_type: I
1079
1065
  present: 0
1080
- card_references_155:
1066
+ card_references_153:
1081
1067
  id: 1536
1082
1068
  referer_id: 944
1083
1069
  referee_key: skin+*type+by_name
1084
1070
  referee_id:
1085
1071
  ref_type: I
1086
1072
  present: 1
1087
- card_references_156:
1073
+ card_references_154:
1088
1074
  id: 1537
1089
1075
  referer_id: 946
1090
1076
  referee_key: administrator
1091
1077
  referee_id: 10
1092
1078
  ref_type: L
1093
1079
  present: 1
1094
- card_references_157:
1080
+ card_references_155:
1095
1081
  id: 1538
1096
1082
  referer_id: 947
1097
1083
  referee_key: administrator
1098
1084
  referee_id: 10
1099
1085
  ref_type: L
1100
1086
  present: 1
1101
- card_references_158:
1087
+ card_references_156:
1102
1088
  id: 1539
1103
1089
  referer_id: 948
1104
1090
  referee_key: administrator
1105
1091
  referee_id: 10
1106
1092
  ref_type: L
1107
1093
  present: 1
1108
- card_references_159:
1094
+ card_references_157:
1109
1095
  id: 1540
1110
1096
  referer_id: 950
1111
1097
  referee_key: administrator
1112
1098
  referee_id: 10
1113
1099
  ref_type: L
1114
1100
  present: 1
1115
- card_references_160:
1101
+ card_references_158:
1116
1102
  id: 1541
1117
1103
  referer_id: 951
1118
1104
  referee_key: administrator
1119
1105
  referee_id: 10
1120
1106
  ref_type: L
1121
1107
  present: 1
1122
- card_references_161:
1108
+ card_references_159:
1123
1109
  id: 1542
1124
1110
  referer_id: 952
1125
1111
  referee_key: administrator
1126
1112
  referee_id: 10
1127
1113
  ref_type: L
1128
1114
  present: 1
1129
- card_references_162:
1115
+ card_references_160:
1130
1116
  id: 1543
1131
1117
  referer_id: 956
1132
1118
  referee_key: anyone
1133
1119
  referee_id: 8
1134
1120
  ref_type: L
1135
1121
  present: 1
1136
- card_references_163:
1122
+ card_references_161:
1137
1123
  id: 1544
1138
1124
  referer_id: 967
1139
1125
  referee_key: style_jquery_ui_smoothness
1140
1126
  referee_id: 960
1141
1127
  ref_type: L
1142
1128
  present: 1
1143
- card_references_164:
1129
+ card_references_162:
1144
1130
  id: 1545
1145
1131
  referer_id: 967
1146
1132
  referee_key: style_functional
1147
1133
  referee_id: 961
1148
1134
  ref_type: L
1149
1135
  present: 1
1150
- card_references_165:
1136
+ card_references_163:
1151
1137
  id: 1546
1152
1138
  referer_id: 967
1153
1139
  referee_key: style_standard
1154
1140
  referee_id: 962
1155
1141
  ref_type: L
1156
1142
  present: 1
1157
- card_references_166:
1143
+ card_references_164:
1158
1144
  id: 1547
1159
1145
  referer_id: 967
1160
1146
  referee_key: style_right_sidebar
1161
1147
  referee_id: 963
1162
1148
  ref_type: L
1163
1149
  present: 1
1164
- card_references_167:
1150
+ card_references_165:
1165
1151
  id: 1548
1166
1152
  referer_id: 967
1167
1153
  referee_key: style_common
1168
1154
  referee_id: 964
1169
1155
  ref_type: L
1170
1156
  present: 1
1171
- card_references_168:
1157
+ card_references_166:
1172
1158
  id: 1549
1173
1159
  referer_id: 968
1174
1160
  referee_key: simple_skin
1175
1161
  referee_id: 967
1176
1162
  ref_type: L
1177
1163
  present: 1
1178
- card_references_169:
1164
+ card_references_167:
1179
1165
  id: 1550
1180
1166
  referer_id: 968
1181
1167
  referee_key: style_classic_card
1182
1168
  referee_id: 965
1183
1169
  ref_type: L
1184
1170
  present: 1
1185
- card_references_170:
1171
+ card_references_168:
1186
1172
  id: 1551
1187
1173
  referer_id: 968
1188
1174
  referee_key: style_traditional
1189
1175
  referee_id: 966
1190
1176
  ref_type: L
1191
1177
  present: 1
1192
- card_references_171:
1193
- id: 1553
1178
+ card_references_169:
1179
+ id: 1590
1180
+ referer_id: 972
1181
+ referee_key: administrator
1182
+ referee_id: 10
1183
+ ref_type: L
1184
+ present: 1
1185
+ card_references_170:
1186
+ id: 1591
1187
+ referer_id: 973
1188
+ referee_key: administrator
1189
+ referee_id: 10
1190
+ ref_type: L
1191
+ present: 1
1192
+ card_references_171:
1193
+ id: 1592
1194
+ referer_id: 974
1195
+ referee_key: administrator
1196
+ referee_id: 10
1197
+ ref_type: L
1198
+ present: 1
1199
+ card_references_172:
1200
+ id: 1593
1201
+ referer_id: 109
1202
+ referee_key: "*title"
1203
+ referee_id: 55
1204
+ ref_type: I
1205
+ present: 1
1206
+ card_references_173:
1207
+ id: 1601
1208
+ referer_id: 314
1209
+ referee_key: "*head"
1210
+ referee_id: 470
1211
+ ref_type: I
1212
+ present: 1
1213
+ card_references_174:
1214
+ id: 1602
1215
+ referer_id: 314
1216
+ referee_key: "*navbox"
1217
+ referee_id: 471
1218
+ ref_type: I
1219
+ present: 1
1220
+ card_references_175:
1221
+ id: 1603
1222
+ referer_id: 314
1223
+ referee_key: "*account_link"
1224
+ referee_id: 474
1225
+ ref_type: I
1226
+ present: 1
1227
+ card_references_176:
1228
+ id: 1604
1229
+ referer_id: 314
1230
+ referee_key: "*sidebar"
1231
+ referee_id: 81
1232
+ ref_type: I
1233
+ present: 1
1234
+ card_references_177:
1235
+ id: 1610
1236
+ referer_id: 774
1237
+ referee_key: checkbox
1238
+ referee_id:
1239
+ ref_type: L
1240
+ present: 0
1241
+ card_references_178:
1242
+ id: 1619
1243
+ referer_id: 56
1244
+ referee_key: "*account+*right"
1245
+ referee_id: 330
1246
+ ref_type: L
1247
+ present: 1
1248
+ card_references_179:
1249
+ id: 1620
1250
+ referer_id: 56
1251
+ referee_key: "*invite+*subject"
1252
+ referee_id:
1253
+ ref_type: I
1254
+ present: 0
1255
+ card_references_180:
1256
+ id: 1621
1257
+ referer_id: 56
1258
+ referee_key: "*invite+*message"
1259
+ referee_id:
1260
+ ref_type: I
1261
+ present: 0
1262
+ card_references_181:
1263
+ id: 1622
1264
+ referer_id: 56
1265
+ referee_key: "*invite+*from"
1266
+ referee_id:
1267
+ ref_type: I
1268
+ present: 0
1269
+ card_references_182:
1270
+ id: 1623
1271
+ referer_id: 56
1272
+ referee_key: "*invite+*thank"
1273
+ referee_id: 62
1274
+ ref_type: I
1275
+ present: 1
1276
+ card_references_183:
1277
+ id: 1626
1278
+ referer_id: 969
1279
+ referee_key: classic_skin
1280
+ referee_id: 968
1281
+ ref_type: L
1282
+ present: 1
1283
+ card_references_184:
1284
+ id: 1628
1285
+ referer_id: 80
1286
+ referee_key: home+original
1287
+ referee_id: 801
1288
+ ref_type: I
1289
+ present: 1
1290
+ card_references_185:
1291
+ id: 1629
1292
+ referer_id: 69
1293
+ referee_key: "*title"
1294
+ referee_id: 55
1295
+ ref_type: I
1296
+ present: 1
1297
+ card_references_186:
1298
+ id: 1653
1299
+ referer_id: 983
1300
+ referee_key: administrator
1301
+ referee_id: 10
1302
+ ref_type: L
1303
+ present: 1
1304
+ card_references_187:
1305
+ id: 1654
1306
+ referer_id: 985
1307
+ referee_key: administrator
1308
+ referee_id: 10
1309
+ ref_type: L
1310
+ present: 1
1311
+ card_references_188:
1312
+ id: 1655
1313
+ referer_id: 987
1314
+ referee_key: administrator
1315
+ referee_id: 10
1316
+ ref_type: L
1317
+ present: 1
1318
+ card_references_189:
1319
+ id: 1656
1320
+ referer_id: 989
1321
+ referee_key: administrator
1322
+ referee_id: 10
1323
+ ref_type: L
1324
+ present: 1
1325
+ card_references_190:
1326
+ id: 1657
1327
+ referer_id: 568
1328
+ referee_key: administrator
1329
+ referee_id: 10
1330
+ ref_type: L
1331
+ present: 1
1332
+ card_references_191:
1333
+ id: 1658
1334
+ referer_id: 990
1335
+ referee_key: administrator
1336
+ referee_id: 10
1337
+ ref_type: L
1338
+ present: 1
1339
+ card_references_192:
1340
+ id: 1659
1341
+ referer_id: 994
1342
+ referee_key: anyone
1343
+ referee_id: 8
1344
+ ref_type: L
1345
+ present: 1
1346
+ card_references_193:
1347
+ id: 1660
1348
+ referer_id: 995
1349
+ referee_key: anyone
1350
+ referee_id: 8
1351
+ ref_type: L
1352
+ present: 1
1353
+ card_references_194:
1354
+ id: 1665
1355
+ referer_id: 68
1356
+ referee_key: sign_up
1357
+ referee_id: 12
1358
+ ref_type: L
1359
+ present: 1
1360
+ card_references_195:
1361
+ id: 1666
1194
1362
  referer_id: 73
1195
1363
  referee_key: "*title"
1196
1364
  referee_id: 55
1197
1365
  ref_type: I
1198
1366
  present: 1
1199
- card_references_172:
1200
- id: 1554
1367
+ card_references_196:
1368
+ id: 1667
1201
1369
  referer_id: 73
1202
1370
  referee_key: "*home"
1203
1371
  referee_id: 77
1204
1372
  ref_type: I
1205
1373
  present: 1
1206
- card_references_173:
1207
- id: 1555
1374
+ card_references_197:
1375
+ id: 1668
1208
1376
  referer_id: 73
1209
1377
  referee_key: "*logo"
1210
1378
  referee_id: 79
1211
1379
  ref_type: I
1212
1380
  present: 1
1213
- card_references_174:
1214
- id: 1556
1381
+ card_references_198:
1382
+ id: 1669
1215
1383
  referer_id: 73
1216
1384
  referee_key: "*all"
1217
1385
  referee_id: 274
1218
1386
  ref_type: I
1219
1387
  present: 1
1220
- card_references_175:
1221
- id: 1557
1388
+ card_references_199:
1389
+ id: 1670
1222
1390
  referer_id: 73
1223
1391
  referee_key: "*request"
1224
1392
  referee_id: 63
1225
1393
  ref_type: I
1226
1394
  present: 1
1227
- card_references_176:
1228
- id: 1558
1395
+ card_references_200:
1396
+ id: 1671
1229
1397
  referer_id: 73
1230
1398
  referee_key: "*signup"
1231
- referee_id: 66
1399
+ referee_id:
1232
1400
  ref_type: I
1233
- present: 1
1234
- card_references_177:
1235
- id: 1559
1401
+ present: 0
1402
+ card_references_201:
1403
+ id: 1672
1236
1404
  referer_id: 73
1237
1405
  referee_key: "*invite"
1238
1406
  referee_id: 56
1239
1407
  ref_type: I
1240
1408
  present: 1
1241
- card_references_178:
1242
- id: 1560
1409
+ card_references_202:
1410
+ id: 1673
1243
1411
  referer_id: 73
1244
1412
  referee_key: wagn_bot
1245
1413
  referee_id: 1
1246
1414
  ref_type: I
1247
1415
  present: 1
1248
- card_references_179:
1249
- id: 1561
1416
+ card_references_203:
1417
+ id: 1674
1250
1418
  referer_id: 73
1251
- referee_key: account_request
1419
+ referee_key: sign_up
1252
1420
  referee_id: 12
1253
1421
  ref_type: L
1254
1422
  present: 1
1255
- card_references_180:
1256
- id: 1562
1423
+ card_references_204:
1424
+ id: 1675
1257
1425
  referer_id: 73
1258
1426
  referee_key: user
1259
1427
  referee_id: 4
1260
1428
  ref_type: L
1261
1429
  present: 1
1262
- card_references_181:
1263
- id: 1563
1430
+ card_references_205:
1431
+ id: 1676
1264
1432
  referer_id: 73
1265
1433
  referee_key: "*sidebar"
1266
1434
  referee_id: 81
1267
1435
  ref_type: I
1268
1436
  present: 1
1269
- card_references_182:
1270
- id: 1564
1437
+ card_references_206:
1438
+ id: 1677
1271
1439
  referer_id: 73
1272
1440
  referee_key: "*tiny_mce"
1273
1441
  referee_id: 53
1274
1442
  ref_type: I
1275
1443
  present: 1
1276
- card_references_183:
1277
- id: 1565
1444
+ card_references_207:
1445
+ id: 1678
1278
1446
  referer_id: 73
1279
1447
  referee_key: "*favicon"
1280
1448
  referee_id: 103
1281
1449
  ref_type: I
1282
1450
  present: 1
1283
- card_references_184:
1284
- id: 1566
1451
+ card_references_208:
1452
+ id: 1679
1285
1453
  referer_id: 73
1286
1454
  referee_key: "*google_analytic_key"
1287
1455
  referee_id:
1288
1456
  ref_type: I
1289
1457
  present: 0
1290
- card_references_185:
1291
- id: 1590
1292
- referer_id: 972
1293
- referee_key: administrator
1294
- referee_id: 10
1295
- ref_type: L
1296
- present: 1
1297
- card_references_186:
1298
- id: 1591
1299
- referer_id: 973
1300
- referee_key: administrator
1301
- referee_id: 10
1302
- ref_type: L
1303
- present: 1
1304
- card_references_187:
1305
- id: 1592
1306
- referer_id: 974
1307
- referee_key: administrator
1308
- referee_id: 10
1309
- ref_type: L
1310
- present: 1
1311
- card_references_188:
1312
- id: 1593
1313
- referer_id: 109
1314
- referee_key: "*title"
1315
- referee_id: 55
1316
- ref_type: I
1317
- present: 1
1318
- card_references_189:
1319
- id: 1601
1320
- referer_id: 314
1321
- referee_key: "*head"
1322
- referee_id: 470
1323
- ref_type: I
1324
- present: 1
1325
- card_references_190:
1326
- id: 1602
1327
- referer_id: 314
1328
- referee_key: "*navbox"
1329
- referee_id: 471
1330
- ref_type: I
1331
- present: 1
1332
- card_references_191:
1333
- id: 1603
1334
- referer_id: 314
1335
- referee_key: "*account_link"
1336
- referee_id: 474
1337
- ref_type: I
1338
- present: 1
1339
- card_references_192:
1340
- id: 1604
1341
- referer_id: 314
1342
- referee_key: "*sidebar"
1343
- referee_id: 81
1344
- ref_type: I
1345
- present: 1
1346
- card_references_193:
1347
- id: 1610
1348
- referer_id: 774
1349
- referee_key: checkbox
1350
- referee_id:
1351
- ref_type: L
1352
- present: 0
1353
- card_references_194:
1354
- id: 1611
1458
+ card_references_209:
1459
+ id: 1680
1355
1460
  referer_id: 63
1356
1461
  referee_key: "*signup"
1357
- referee_id: 66
1462
+ referee_id:
1358
1463
  ref_type: L
1359
- present: 1
1360
- card_references_195:
1361
- id: 1612
1464
+ present: 0
1465
+ card_references_210:
1466
+ id: 1681
1362
1467
  referer_id: 63
1363
1468
  referee_key: "*request+*to"
1364
1469
  referee_id:
1365
1470
  ref_type: I
1366
1471
  present: 0
1367
- card_references_196:
1368
- id: 1613
1472
+ card_references_211:
1473
+ id: 1682
1369
1474
  referer_id: 63
1370
1475
  referee_key: "*request+*thank"
1371
1476
  referee_id: 108
1372
1477
  ref_type: I
1373
1478
  present: 1
1374
- card_references_197:
1375
- id: 1614
1479
+ card_references_212:
1480
+ id: 1683
1376
1481
  referer_id: 63
1377
- referee_key: account_request
1482
+ referee_key: sign_up
1378
1483
  referee_id: 12
1379
1484
  ref_type: L
1380
1485
  present: 1
1381
- card_references_198:
1382
- id: 1615
1486
+ card_references_213:
1487
+ id: 1684
1488
+ referer_id: 12
1489
+ referee_key: sign_up+description
1490
+ referee_id: 216
1491
+ ref_type: I
1492
+ present: 1
1493
+ card_references_214:
1494
+ id: 1685
1495
+ referer_id: 12
1496
+ referee_key: sign_up+*type+by_update
1497
+ referee_id:
1498
+ ref_type: I
1499
+ present: 1
1500
+ card_references_215:
1501
+ id: 1686
1383
1502
  referer_id: 66
1384
1503
  referee_key: "*account+*right"
1385
1504
  referee_id: 330
1386
1505
  ref_type: L
1387
1506
  present: 1
1388
- card_references_199:
1389
- id: 1616
1507
+ card_references_216:
1508
+ id: 1687
1390
1509
  referer_id: 66
1391
1510
  referee_key: "*signup+*subject"
1392
1511
  referee_id:
1393
1512
  ref_type: I
1394
1513
  present: 0
1395
- card_references_200:
1396
- id: 1617
1514
+ card_references_217:
1515
+ id: 1688
1397
1516
  referer_id: 66
1398
1517
  referee_key: "*signup+*message"
1399
1518
  referee_id:
1400
1519
  ref_type: I
1401
1520
  present: 0
1402
- card_references_201:
1403
- id: 1618
1521
+ card_references_218:
1522
+ id: 1689
1404
1523
  referer_id: 66
1405
- referee_key: "*signup+*thank"
1406
- referee_id: 67
1407
- ref_type: I
1408
- present: 1
1409
- card_references_202:
1410
- id: 1619
1411
- referer_id: 56
1412
- referee_key: "*account+*right"
1413
- referee_id: 330
1414
- ref_type: L
1415
- present: 1
1416
- card_references_203:
1417
- id: 1620
1418
- referer_id: 56
1419
- referee_key: "*invite+*subject"
1524
+ referee_key: sign_up_old+*thank
1420
1525
  referee_id:
1421
1526
  ref_type: I
1422
1527
  present: 0
1423
- card_references_204:
1424
- id: 1621
1425
- referer_id: 56
1426
- referee_key: "*invite+*message"
1528
+ card_references_219:
1529
+ id: 1690
1530
+ referer_id: 1003
1531
+ referee_key: java_script+description
1427
1532
  referee_id:
1428
1533
  ref_type: I
1429
1534
  present: 0
1430
- card_references_205:
1431
- id: 1622
1432
- referer_id: 56
1433
- referee_key: "*invite+*from"
1535
+ card_references_220:
1536
+ id: 1691
1537
+ referer_id: 1003
1538
+ referee_key: java_script+*type+by_name
1539
+ referee_id:
1540
+ ref_type: I
1541
+ present: 1
1542
+ card_references_221:
1543
+ id: 1692
1544
+ referer_id: 1004
1545
+ referee_key: coffee_script+description
1434
1546
  referee_id:
1435
1547
  ref_type: I
1436
1548
  present: 0
1437
- card_references_206:
1438
- id: 1623
1439
- referer_id: 56
1440
- referee_key: "*invite+*thank"
1441
- referee_id: 62
1549
+ card_references_222:
1550
+ id: 1693
1551
+ referer_id: 1004
1552
+ referee_key: coffee_script+*type+by_name
1553
+ referee_id:
1442
1554
  ref_type: I
1443
1555
  present: 1
1444
- card_references_207:
1445
- id: 1626
1446
- referer_id: 969
1447
- referee_key: classic_skin
1448
- referee_id: 968
1556
+ card_references_223:
1557
+ id: 1694
1558
+ referer_id: 1006
1559
+ referee_key: administrator
1560
+ referee_id: 10
1449
1561
  ref_type: L
1450
1562
  present: 1
1451
- card_references_208:
1452
- id: 1628
1453
- referer_id: 80
1454
- referee_key: home+original
1455
- referee_id: 801
1456
- ref_type: I
1563
+ card_references_224:
1564
+ id: 1695
1565
+ referer_id: 1007
1566
+ referee_key: administrator
1567
+ referee_id: 10
1568
+ ref_type: L
1457
1569
  present: 1
1458
- card_references_209:
1459
- id: 1629
1460
- referer_id: 69
1461
- referee_key: "*title"
1462
- referee_id: 55
1463
- ref_type: I
1570
+ card_references_225:
1571
+ id: 1696
1572
+ referer_id: 1008
1573
+ referee_key: administrator
1574
+ referee_id: 10
1575
+ ref_type: L
1464
1576
  present: 1
1465
- card_references_210:
1466
- id: 1651
1467
- referer_id: 12
1468
- referee_key: account_request+description
1469
- referee_id: 216
1470
- ref_type: I
1577
+ card_references_226:
1578
+ id: 1697
1579
+ referer_id: 1010
1580
+ referee_key: administrator
1581
+ referee_id: 10
1582
+ ref_type: L
1471
1583
  present: 1
1472
- card_references_211:
1473
- id: 1652
1474
- referer_id: 12
1475
- referee_key: account_request+*type+by_update
1584
+ card_references_227:
1585
+ id: 1698
1586
+ referer_id: 1011
1587
+ referee_key: administrator
1588
+ referee_id: 10
1589
+ ref_type: L
1590
+ present: 1
1591
+ card_references_228:
1592
+ id: 1699
1593
+ referer_id: 1012
1594
+ referee_key: administrator
1595
+ referee_id: 10
1596
+ ref_type: L
1597
+ present: 1
1598
+ card_references_229:
1599
+ id: 1700
1600
+ referer_id: 1016
1601
+ referee_key: anyone
1602
+ referee_id: 8
1603
+ ref_type: L
1604
+ present: 1
1605
+ card_references_230:
1606
+ id: 1701
1607
+ referer_id: 1018
1608
+ referee_key: list
1476
1609
  referee_id:
1477
- ref_type: I
1610
+ ref_type: L
1611
+ present: 0
1612
+ card_references_231:
1613
+ id: 1702
1614
+ referer_id: 1032
1615
+ referee_key: script_jquery
1616
+ referee_id: 1026
1617
+ ref_type: L
1478
1618
  present: 1
1479
- card_references_212:
1480
- id: 1653
1481
- referer_id: 982
1619
+ card_references_232:
1620
+ id: 1703
1621
+ referer_id: 1032
1622
+ referee_key: script_tinymce
1623
+ referee_id: 1027
1624
+ ref_type: L
1625
+ present: 1
1626
+ card_references_233:
1627
+ id: 1704
1628
+ referer_id: 1032
1629
+ referee_key: script_slot
1630
+ referee_id: 1028
1631
+ ref_type: L
1632
+ present: 1
1633
+ card_references_234:
1634
+ id: 1705
1635
+ referer_id: 1032
1636
+ referee_key: script_card_menu
1637
+ referee_id: 1029
1638
+ ref_type: L
1639
+ present: 1
1640
+ card_references_235:
1641
+ id: 1706
1642
+ referer_id: 1032
1643
+ referee_key: script_jquery_helper
1644
+ referee_id: 1030
1645
+ ref_type: L
1646
+ present: 1
1647
+ card_references_236:
1648
+ id: 1707
1649
+ referer_id: 1054
1482
1650
  referee_key: administrator
1483
1651
  referee_id: 10
1484
1652
  ref_type: L
1485
1653
  present: 1
1486
- card_references_213:
1487
- id: 1654
1488
- referer_id: 993
1654
+ card_references_237:
1655
+ id: 1708
1656
+ referer_id: 1068
1657
+ referee_key: sample_css
1658
+ referee_id: 1067
1659
+ ref_type: L
1660
+ present: 1
1661
+ card_references_238:
1662
+ id: 1709
1663
+ referer_id: 1070
1489
1664
  referee_key: sample_cardtype+description
1490
1665
  referee_id:
1491
1666
  ref_type: I
1492
1667
  present: 0
1493
- card_references_214:
1494
- id: 1655
1495
- referer_id: 993
1668
+ card_references_239:
1669
+ id: 1710
1670
+ referer_id: 1070
1496
1671
  referee_key: sample_cardtype+*type+by_name
1497
1672
  referee_id:
1498
1673
  ref_type: I
1499
1674
  present: 1
1500
- card_references_215:
1501
- id: 1656
1502
- referer_id: 1002
1675
+ card_references_240:
1676
+ id: 1711
1677
+ referer_id: 1072
1678
+ referee_key: sample_coffee_script
1679
+ referee_id: 1071
1680
+ ref_type: L
1681
+ present: 1
1682
+ card_references_241:
1683
+ id: 1712
1684
+ referer_id: 1079
1685
+ referee_key: sample_java_script
1686
+ referee_id: 1078
1687
+ ref_type: L
1688
+ present: 1
1689
+ card_references_242:
1690
+ id: 1713
1691
+ referer_id: 1085
1503
1692
  referee_key: sample_role+description
1504
1693
  referee_id:
1505
1694
  ref_type: I
1506
1695
  present: 0
1507
- card_references_216:
1508
- id: 1657
1509
- referer_id: 1002
1696
+ card_references_243:
1697
+ id: 1714
1698
+ referer_id: 1085
1510
1699
  referee_key: sample_role+*member
1511
1700
  referee_id:
1512
1701
  ref_type: I
1513
1702
  present: 1
1514
- card_references_217:
1515
- id: 1658
1516
- referer_id: 1013
1703
+ card_references_244:
1704
+ id: 1715
1705
+ referer_id: 1087
1706
+ referee_key: sample_scss
1707
+ referee_id: 1086
1708
+ ref_type: L
1709
+ present: 1
1710
+ card_references_245:
1711
+ id: 1716
1712
+ referer_id: 1115
1517
1713
  referee_key: r1+description
1518
1714
  referee_id:
1519
1715
  ref_type: I
1520
1716
  present: 0
1521
- card_references_218:
1522
- id: 1659
1523
- referer_id: 1013
1717
+ card_references_246:
1718
+ id: 1717
1719
+ referer_id: 1115
1524
1720
  referee_key: r1+*member
1525
1721
  referee_id:
1526
1722
  ref_type: I
1527
1723
  present: 1
1528
- card_references_219:
1529
- id: 1660
1530
- referer_id: 1014
1724
+ card_references_247:
1725
+ id: 1718
1726
+ referer_id: 1116
1531
1727
  referee_key: r2+description
1532
1728
  referee_id:
1533
1729
  ref_type: I
1534
1730
  present: 0
1535
- card_references_220:
1536
- id: 1661
1537
- referer_id: 1014
1731
+ card_references_248:
1732
+ id: 1719
1733
+ referer_id: 1116
1538
1734
  referee_key: r2+*member
1539
1735
  referee_id:
1540
1736
  ref_type: I
1541
1737
  present: 1
1542
- card_references_221:
1543
- id: 1662
1544
- referer_id: 1015
1738
+ card_references_249:
1739
+ id: 1720
1740
+ referer_id: 1117
1545
1741
  referee_key: r3+description
1546
1742
  referee_id:
1547
1743
  ref_type: I
1548
1744
  present: 0
1549
- card_references_222:
1550
- id: 1663
1551
- referer_id: 1015
1745
+ card_references_250:
1746
+ id: 1721
1747
+ referer_id: 1117
1552
1748
  referee_key: r3+*member
1553
1749
  referee_id:
1554
1750
  ref_type: I
1555
1751
  present: 1
1556
- card_references_223:
1557
- id: 1664
1558
- referer_id: 1016
1752
+ card_references_251:
1753
+ id: 1722
1754
+ referer_id: 1118
1559
1755
  referee_key: r4+description
1560
1756
  referee_id:
1561
1757
  ref_type: I
1562
1758
  present: 0
1563
- card_references_224:
1564
- id: 1665
1565
- referer_id: 1016
1759
+ card_references_252:
1760
+ id: 1723
1761
+ referer_id: 1118
1566
1762
  referee_key: r4+*member
1567
1763
  referee_id:
1568
1764
  ref_type: I
1569
1765
  present: 1
1570
- card_references_225:
1571
- id: 1666
1572
- referer_id: 1017
1766
+ card_references_253:
1767
+ id: 1724
1768
+ referer_id: 1119
1573
1769
  referee_key: r1
1574
- referee_id: 1013
1770
+ referee_id: 1115
1575
1771
  ref_type: L
1576
1772
  present: 1
1577
- card_references_226:
1578
- id: 1667
1579
- referer_id: 1017
1773
+ card_references_254:
1774
+ id: 1725
1775
+ referer_id: 1119
1580
1776
  referee_key: r2
1581
- referee_id: 1014
1777
+ referee_id: 1116
1582
1778
  ref_type: L
1583
1779
  present: 1
1584
- card_references_227:
1585
- id: 1668
1586
- referer_id: 1017
1780
+ card_references_255:
1781
+ id: 1726
1782
+ referer_id: 1119
1587
1783
  referee_key: r3
1588
- referee_id: 1015
1784
+ referee_id: 1117
1589
1785
  ref_type: L
1590
1786
  present: 1
1591
- card_references_228:
1592
- id: 1669
1593
- referer_id: 1018
1787
+ card_references_256:
1788
+ id: 1727
1789
+ referer_id: 1120
1594
1790
  referee_key: r1
1595
- referee_id: 1013
1791
+ referee_id: 1115
1596
1792
  ref_type: L
1597
1793
  present: 1
1598
- card_references_229:
1599
- id: 1670
1600
- referer_id: 1018
1794
+ card_references_257:
1795
+ id: 1728
1796
+ referer_id: 1120
1601
1797
  referee_key: r2
1602
- referee_id: 1014
1798
+ referee_id: 1116
1603
1799
  ref_type: L
1604
1800
  present: 1
1605
- card_references_230:
1606
- id: 1671
1607
- referer_id: 1018
1801
+ card_references_258:
1802
+ id: 1729
1803
+ referer_id: 1120
1608
1804
  referee_key: r4
1609
- referee_id: 1016
1805
+ referee_id: 1118
1610
1806
  ref_type: L
1611
1807
  present: 1
1612
- card_references_231:
1613
- id: 1672
1614
- referer_id: 1019
1808
+ card_references_259:
1809
+ id: 1730
1810
+ referer_id: 1121
1615
1811
  referee_key: r1
1616
- referee_id: 1013
1812
+ referee_id: 1115
1617
1813
  ref_type: L
1618
1814
  present: 1
1619
- card_references_232:
1620
- id: 1673
1621
- referer_id: 1019
1815
+ card_references_260:
1816
+ id: 1731
1817
+ referer_id: 1121
1622
1818
  referee_key: r4
1623
- referee_id: 1016
1819
+ referee_id: 1118
1624
1820
  ref_type: L
1625
1821
  present: 1
1626
- card_references_233:
1627
- id: 1674
1628
- referer_id: 1019
1822
+ card_references_261:
1823
+ id: 1732
1824
+ referer_id: 1121
1629
1825
  referee_key: administrator
1630
1826
  referee_id: 10
1631
1827
  ref_type: L
1632
1828
  present: 1
1633
- card_references_234:
1634
- id: 1675
1635
- referer_id: 1024
1829
+ card_references_262:
1830
+ id: 1733
1831
+ referer_id: 1126
1636
1832
  referee_key: z
1637
- referee_id: 1023
1833
+ referee_id: 1125
1638
1834
  ref_type: L
1639
1835
  present: 1
1640
- card_references_235:
1641
- id: 1676
1642
- referer_id: 1025
1836
+ card_references_263:
1837
+ id: 1734
1838
+ referer_id: 1127
1643
1839
  referee_key: z
1644
- referee_id: 1023
1840
+ referee_id: 1125
1645
1841
  ref_type: I
1646
1842
  present: 1
1647
- card_references_236:
1648
- id: 1677
1649
- referer_id: 1027
1843
+ card_references_264:
1844
+ id: 1735
1845
+ referer_id: 1129
1650
1846
  referee_key: a
1651
- referee_id: 1024
1847
+ referee_id: 1126
1652
1848
  ref_type: L
1653
1849
  present: 1
1654
- card_references_237:
1655
- id: 1678
1656
- referer_id: 1027
1850
+ card_references_265:
1851
+ id: 1736
1852
+ referer_id: 1129
1657
1853
  referee_key: a+b
1658
- referee_id: 1029
1854
+ referee_id: 1131
1659
1855
  ref_type: L
1660
1856
  present: 1
1661
- card_references_238:
1662
- id: 1679
1663
- referer_id: 1027
1857
+ card_references_266:
1858
+ id: 1737
1859
+ referer_id: 1129
1664
1860
  referee_key: t
1665
- referee_id: 1026
1861
+ referee_id: 1128
1666
1862
  ref_type: L
1667
1863
  present: 1
1668
- card_references_239:
1669
- id: 1680
1670
- referer_id: 1028
1864
+ card_references_267:
1865
+ id: 1738
1866
+ referer_id: 1130
1671
1867
  referee_key: b
1672
- referee_id: 1025
1868
+ referee_id: 1127
1673
1869
  ref_type: I
1674
1870
  present: 1
1675
- card_references_240:
1676
- id: 1681
1677
- referer_id: 1028
1871
+ card_references_268:
1872
+ id: 1739
1873
+ referer_id: 1130
1678
1874
  referee_key: a+b
1679
- referee_id: 1029
1875
+ referee_id: 1131
1680
1876
  ref_type: I
1681
1877
  present: 1
1682
- card_references_241:
1683
- id: 1682
1684
- referer_id: 1028
1878
+ card_references_269:
1879
+ id: 1740
1880
+ referer_id: 1130
1685
1881
  referee_key: a
1686
- referee_id: 1024
1882
+ referee_id: 1126
1687
1883
  ref_type: I
1688
1884
  present: 1
1689
- card_references_242:
1690
- id: 1683
1691
- referer_id: 1028
1885
+ card_references_270:
1886
+ id: 1741
1887
+ referer_id: 1130
1692
1888
  referee_key: t
1693
- referee_id: 1026
1889
+ referee_id: 1128
1694
1890
  ref_type: I
1695
1891
  present: 1
1696
- card_references_243:
1697
- id: 1684
1698
- referer_id: 1050
1892
+ card_references_271:
1893
+ id: 1742
1894
+ referer_id: 1152
1699
1895
  referee_key: cardtype_a+description
1700
1896
  referee_id:
1701
1897
  ref_type: I
1702
1898
  present: 0
1703
- card_references_244:
1704
- id: 1685
1705
- referer_id: 1050
1899
+ card_references_272:
1900
+ id: 1743
1901
+ referer_id: 1152
1706
1902
  referee_key: cardtype_a+*type+by_name
1707
1903
  referee_id:
1708
1904
  ref_type: I
1709
1905
  present: 1
1710
- card_references_245:
1711
- id: 1686
1712
- referer_id: 1051
1906
+ card_references_273:
1907
+ id: 1744
1908
+ referer_id: 1153
1713
1909
  referee_key: cardtype_b+description
1714
1910
  referee_id:
1715
1911
  ref_type: I
1716
1912
  present: 0
1717
- card_references_246:
1718
- id: 1687
1719
- referer_id: 1051
1913
+ card_references_274:
1914
+ id: 1745
1915
+ referer_id: 1153
1720
1916
  referee_key: cardtype_b+*type+by_name
1721
1917
  referee_id:
1722
1918
  ref_type: I
1723
1919
  present: 1
1724
- card_references_247:
1725
- id: 1688
1726
- referer_id: 1052
1920
+ card_references_275:
1921
+ id: 1746
1922
+ referer_id: 1154
1727
1923
  referee_key: cardtype_c+description
1728
1924
  referee_id:
1729
1925
  ref_type: I
1730
1926
  present: 0
1731
- card_references_248:
1732
- id: 1689
1733
- referer_id: 1052
1927
+ card_references_276:
1928
+ id: 1747
1929
+ referer_id: 1154
1734
1930
  referee_key: cardtype_c+*type+by_name
1735
1931
  referee_id:
1736
1932
  ref_type: I
1737
1933
  present: 1
1738
- card_references_249:
1739
- id: 1690
1740
- referer_id: 1053
1934
+ card_references_277:
1935
+ id: 1748
1936
+ referer_id: 1155
1741
1937
  referee_key: cardtype_d+description
1742
1938
  referee_id:
1743
1939
  ref_type: I
1744
1940
  present: 0
1745
- card_references_250:
1746
- id: 1691
1747
- referer_id: 1053
1941
+ card_references_278:
1942
+ id: 1749
1943
+ referer_id: 1155
1748
1944
  referee_key: cardtype_d+*type+by_name
1749
1945
  referee_id:
1750
1946
  ref_type: I
1751
1947
  present: 1
1752
- card_references_251:
1753
- id: 1692
1754
- referer_id: 1054
1948
+ card_references_279:
1949
+ id: 1750
1950
+ referer_id: 1156
1755
1951
  referee_key: cardtype_e+description
1756
1952
  referee_id:
1757
1953
  ref_type: I
1758
1954
  present: 0
1759
- card_references_252:
1760
- id: 1693
1761
- referer_id: 1054
1955
+ card_references_280:
1956
+ id: 1751
1957
+ referer_id: 1156
1762
1958
  referee_key: cardtype_e+*type+by_name
1763
1959
  referee_id:
1764
1960
  ref_type: I
1765
1961
  present: 1
1766
- card_references_253:
1767
- id: 1694
1768
- referer_id: 1055
1962
+ card_references_281:
1963
+ id: 1752
1964
+ referer_id: 1157
1769
1965
  referee_key: cardtype_f+description
1770
1966
  referee_id:
1771
1967
  ref_type: I
1772
1968
  present: 0
1773
- card_references_254:
1774
- id: 1695
1775
- referer_id: 1055
1969
+ card_references_282:
1970
+ id: 1753
1971
+ referer_id: 1157
1776
1972
  referee_key: cardtype_f+*type+by_name
1777
1973
  referee_id:
1778
1974
  ref_type: I
1779
1975
  present: 1
1780
- card_references_255:
1781
- id: 1696
1782
- referer_id: 1064
1976
+ card_references_283:
1977
+ id: 1754
1978
+ referer_id: 1166
1783
1979
  referee_key: user_form+description
1784
1980
  referee_id:
1785
1981
  ref_type: I
1786
1982
  present: 0
1787
- card_references_256:
1788
- id: 1697
1789
- referer_id: 1064
1983
+ card_references_284:
1984
+ id: 1755
1985
+ referer_id: 1166
1790
1986
  referee_key: user_form+*type+by_name
1791
1987
  referee_id:
1792
1988
  ref_type: I
1793
1989
  present: 1
1794
- card_references_257:
1795
- id: 1698
1796
- referer_id: 1066
1990
+ card_references_285:
1991
+ id: 1756
1992
+ referer_id: 1168
1797
1993
  referee_key: user_form+*type+*structure+name
1798
1994
  referee_id:
1799
1995
  ref_type: I
1800
1996
  present: 0
1801
- card_references_258:
1802
- id: 1699
1803
- referer_id: 1066
1997
+ card_references_286:
1998
+ id: 1757
1999
+ referer_id: 1168
1804
2000
  referee_key: user_form+*type+*structure+age
1805
2001
  referee_id:
1806
2002
  ref_type: I
1807
2003
  present: 0
1808
- card_references_259:
1809
- id: 1700
1810
- referer_id: 1066
2004
+ card_references_287:
2005
+ id: 1758
2006
+ referer_id: 1168
1811
2007
  referee_key: user_form+*type+*structure+description
1812
2008
  referee_id:
1813
2009
  ref_type: I
1814
2010
  present: 0
1815
- card_references_260:
1816
- id: 1701
1817
- referer_id: 1071
2011
+ card_references_288:
2012
+ id: 1759
2013
+ referer_id: 1173
1818
2014
  referee_key: r1
1819
- referee_id: 1013
2015
+ referee_id: 1115
1820
2016
  ref_type: L
1821
2017
  present: 1
1822
- card_references_261:
1823
- id: 1702
1824
- referer_id: 1072
2018
+ card_references_289:
2019
+ id: 1760
2020
+ referer_id: 1174
1825
2021
  referee_key: book+description
1826
2022
  referee_id:
1827
2023
  ref_type: I
1828
2024
  present: 0
1829
- card_references_262:
1830
- id: 1703
1831
- referer_id: 1072
2025
+ card_references_290:
2026
+ id: 1761
2027
+ referer_id: 1174
1832
2028
  referee_key: book+*type+by_name
1833
2029
  referee_id:
1834
2030
  ref_type: I
1835
2031
  present: 1
1836
- card_references_263:
1837
- id: 1704
1838
- referer_id: 1074
2032
+ card_references_291:
2033
+ id: 1762
2034
+ referer_id: 1176
1839
2035
  referee_key: book+*type+*structure+author
1840
2036
  referee_id:
1841
2037
  ref_type: I
1842
2038
  present: 0
1843
- card_references_264:
1844
- id: 1705
1845
- referer_id: 1074
2039
+ card_references_292:
2040
+ id: 1763
2041
+ referer_id: 1176
1846
2042
  referee_key: book+*type+*structure+illustrator
1847
2043
  referee_id:
1848
2044
  ref_type: I
1849
2045
  present: 0
1850
- card_references_265:
1851
- id: 1706
1852
- referer_id: 1075
2046
+ card_references_293:
2047
+ id: 1764
2048
+ referer_id: 1177
1853
2049
  referee_key: iliad+author
1854
2050
  referee_id:
1855
2051
  ref_type: I
1856
2052
  present: 0
1857
- card_references_266:
1858
- id: 1707
1859
- referer_id: 1075
2053
+ card_references_294:
2054
+ id: 1765
2055
+ referer_id: 1177
1860
2056
  referee_key: iliad+illustrator
1861
2057
  referee_id:
1862
2058
  ref_type: I
1863
2059
  present: 0
1864
- card_references_267:
1865
- id: 1708
1866
- referer_id: 1081
2060
+ card_references_295:
2061
+ id: 1766
2062
+ referer_id: 1193
1867
2063
  referee_key: sara
1868
- referee_id: 1078
2064
+ referee_id: 1185
1869
2065
  ref_type: L
1870
2066
  present: 1
1871
- card_references_268:
1872
- id: 1709
1873
- referer_id: 1083
2067
+ card_references_296:
2068
+ id: 1767
2069
+ referer_id: 1195
1874
2070
  referee_key: sara
1875
- referee_id: 1078
2071
+ referee_id: 1185
1876
2072
  ref_type: L
1877
2073
  present: 1
1878
- card_references_269:
1879
- id: 1710
1880
- referer_id: 1083
2074
+ card_references_297:
2075
+ id: 1768
2076
+ referer_id: 1195
1881
2077
  referee_key: john
1882
- referee_id: 1076
2078
+ referee_id: 1178
1883
2079
  ref_type: L
1884
2080
  present: 1
1885
- card_references_270:
1886
- id: 1711
1887
- referer_id: 1084
2081
+ card_references_298:
2082
+ id: 1769
2083
+ referer_id: 1196
1888
2084
  referee_key: john_watching+her
1889
- referee_id: 1087
2085
+ referee_id: 1199
1890
2086
  ref_type: I
1891
2087
  present: 1
1892
- card_references_271:
1893
- id: 1712
1894
- referer_id: 1085
2088
+ card_references_299:
2089
+ id: 1770
2090
+ referer_id: 1197
1895
2091
  referee_key: john
1896
- referee_id: 1076
2092
+ referee_id: 1178
1897
2093
  ref_type: L
1898
2094
  present: 1
1899
- card_references_272:
1900
- id: 1713
1901
- referer_id: 1089
2095
+ card_references_300:
2096
+ id: 1771
2097
+ referer_id: 1201
1902
2098
  referee_key: optic+description
1903
2099
  referee_id:
1904
2100
  ref_type: I
1905
2101
  present: 0
1906
- card_references_273:
1907
- id: 1714
1908
- referer_id: 1089
2102
+ card_references_301:
2103
+ id: 1772
2104
+ referer_id: 1201
1909
2105
  referee_key: optic+*type+by_name
1910
2106
  referee_id:
1911
2107
  ref_type: I
1912
2108
  present: 1
1913
- card_references_274:
1914
- id: 1715
1915
- referer_id: 1090
2109
+ card_references_302:
2110
+ id: 1773
2111
+ referer_id: 1202
1916
2112
  referee_key: sara
1917
- referee_id: 1078
2113
+ referee_id: 1185
1918
2114
  ref_type: L
1919
2115
  present: 1
1920
- card_references_275:
1921
- id: 1716
1922
- referer_id: 1091
2116
+ card_references_303:
2117
+ id: 1774
2118
+ referer_id: 1203
1923
2119
  referee_key: sunglass+tint
1924
- referee_id: 1093
2120
+ referee_id: 1205
1925
2121
  ref_type: I
1926
2122
  present: 1
1927
- card_references_276:
1928
- id: 1717
1929
- referer_id: 1096
2123
+ card_references_304:
2124
+ id: 1775
2125
+ referer_id: 1208
1930
2126
  referee_key: fruit+description
1931
2127
  referee_id:
1932
2128
  ref_type: I
1933
2129
  present: 0
1934
- card_references_277:
1935
- id: 1718
1936
- referer_id: 1096
2130
+ card_references_305:
2131
+ id: 1776
2132
+ referer_id: 1208
1937
2133
  referee_key: fruit+*type+by_name
1938
2134
  referee_id:
1939
2135
  ref_type: I
1940
2136
  present: 1
1941
- card_references_278:
1942
- id: 1719
1943
- referer_id: 1098
2137
+ card_references_306:
2138
+ id: 1777
2139
+ referer_id: 1210
1944
2140
  referee_key: anyone
1945
2141
  referee_id: 8
1946
2142
  ref_type: L
1947
2143
  present: 1
1948
- card_references_279:
1949
- id: 1720
1950
- referer_id: 1099
2144
+ card_references_307:
2145
+ id: 1778
2146
+ referer_id: 1211
1951
2147
  referee_key: administrator
1952
2148
  referee_id: 10
1953
2149
  ref_type: L