enju_grid 0.1.0.pre1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (341) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +8 -0
  4. data/Rakefile +47 -0
  5. data/app/views/layouts/manifestations.html.erb +28 -0
  6. data/app/views/manifestations/_manifestation.html.erb +6 -0
  7. data/app/views/manifestations/index.html.erb +125 -0
  8. data/config/routes.rb +2 -0
  9. data/lib/enju_grid/engine.rb +6 -0
  10. data/lib/enju_grid/version.rb +3 -0
  11. data/lib/enju_grid.rb +5 -0
  12. data/lib/tasks/enju_grid_tasks.rake +4 -0
  13. data/spec/dummy/README.rdoc +261 -0
  14. data/spec/dummy/Rakefile +7 -0
  15. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  16. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  17. data/spec/dummy/app/controllers/application_controller.rb +8 -0
  18. data/spec/dummy/app/helpers/application_helper.rb +8 -0
  19. data/spec/dummy/app/models/ability.rb +201 -0
  20. data/spec/dummy/app/models/user.rb +9 -0
  21. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  22. data/spec/dummy/app/views/page/403.html.erb +9 -0
  23. data/spec/dummy/app/views/page/403.mobile.erb +5 -0
  24. data/spec/dummy/app/views/page/403.xml.erb +4 -0
  25. data/spec/dummy/app/views/page/404.html.erb +9 -0
  26. data/spec/dummy/app/views/page/404.mobile.erb +5 -0
  27. data/spec/dummy/app/views/page/404.xml.erb +4 -0
  28. data/spec/dummy/app/views/page/_footer.html.erb +4 -0
  29. data/spec/dummy/app/views/page/_header.html.erb +2 -0
  30. data/spec/dummy/app/views/page/_include.html.erb +4 -0
  31. data/spec/dummy/app/views/page/_menu.html.erb +2 -0
  32. data/spec/dummy/app/views/page/_select_locale.html.erb +2 -0
  33. data/spec/dummy/config/application.rb +64 -0
  34. data/spec/dummy/config/application.yml +42 -0
  35. data/spec/dummy/config/boot.rb +10 -0
  36. data/spec/dummy/config/database.yml +25 -0
  37. data/spec/dummy/config/environment.rb +5 -0
  38. data/spec/dummy/config/environments/development.rb +37 -0
  39. data/spec/dummy/config/environments/production.rb +67 -0
  40. data/spec/dummy/config/environments/test.rb +38 -0
  41. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  42. data/spec/dummy/config/initializers/devise.rb +207 -0
  43. data/spec/dummy/config/initializers/inflections.rb +18 -0
  44. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  45. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  46. data/spec/dummy/config/initializers/session_store.rb +8 -0
  47. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  48. data/spec/dummy/config/locales/en.yml +5 -0
  49. data/spec/dummy/config/routes.rb +60 -0
  50. data/spec/dummy/config.ru +4 -0
  51. data/spec/dummy/db/migrate/001_create_agents.rb +50 -0
  52. data/spec/dummy/db/migrate/002_devise_create_users.rb +46 -0
  53. data/spec/dummy/db/migrate/005_create_manifestations.rb +43 -0
  54. data/spec/dummy/db/migrate/006_create_items.rb +21 -0
  55. data/spec/dummy/db/migrate/012_create_owns.rb +12 -0
  56. data/spec/dummy/db/migrate/015_create_creates.rb +12 -0
  57. data/spec/dummy/db/migrate/029_create_subjects.rb +27 -0
  58. data/spec/dummy/db/migrate/032_create_checkins.rb +17 -0
  59. data/spec/dummy/db/migrate/033_create_checkouts.rb +25 -0
  60. data/spec/dummy/db/migrate/035_create_reserves.rb +26 -0
  61. data/spec/dummy/db/migrate/041_create_roles.rb +13 -0
  62. data/spec/dummy/db/migrate/047_create_produces.rb +12 -0
  63. data/spec/dummy/db/migrate/055_create_bookmarks.rb +22 -0
  64. data/spec/dummy/db/migrate/059_create_libraries.rb +28 -0
  65. data/spec/dummy/db/migrate/069_create_shelves.rb +15 -0
  66. data/spec/dummy/db/migrate/073_create_carrier_types.rb +11 -0
  67. data/spec/dummy/db/migrate/077_create_user_groups.rb +12 -0
  68. data/spec/dummy/db/migrate/080_create_library_groups.rb +17 -0
  69. data/spec/dummy/db/migrate/112_create_frequencies.rb +12 -0
  70. data/spec/dummy/db/migrate/117_create_form_of_works.rb +12 -0
  71. data/spec/dummy/db/migrate/120_create_baskets.rb +12 -0
  72. data/spec/dummy/db/migrate/121_create_checked_items.rb +17 -0
  73. data/spec/dummy/db/migrate/124_create_bookstores.rb +17 -0
  74. data/spec/dummy/db/migrate/125_create_donates.rb +12 -0
  75. data/spec/dummy/db/migrate/127_create_use_restrictions.rb +16 -0
  76. data/spec/dummy/db/migrate/129_create_item_has_use_restrictions.rb +16 -0
  77. data/spec/dummy/db/migrate/130_create_request_status_types.rb +12 -0
  78. data/spec/dummy/db/migrate/131_create_request_types.rb +12 -0
  79. data/spec/dummy/db/migrate/132_create_circulation_statuses.rb +16 -0
  80. data/spec/dummy/db/migrate/133_create_agent_merges.rb +15 -0
  81. data/spec/dummy/db/migrate/134_create_agent_merge_lists.rb +13 -0
  82. data/spec/dummy/db/migrate/142_create_classifications.rb +19 -0
  83. data/spec/dummy/db/migrate/144_create_classification_types.rb +16 -0
  84. data/spec/dummy/db/migrate/145_create_subject_heading_types.rb +16 -0
  85. data/spec/dummy/db/migrate/146_create_subject_types.rb +16 -0
  86. data/spec/dummy/db/migrate/20080830154109_create_realizes.rb +13 -0
  87. data/spec/dummy/db/migrate/20080830172106_create_exemplifies.rb +13 -0
  88. data/spec/dummy/db/migrate/20080905191442_create_agent_types.rb +12 -0
  89. data/spec/dummy/db/migrate/20081006090811_create_subscriptions.rb +17 -0
  90. data/spec/dummy/db/migrate/20081006093246_create_subscribes.rb +14 -0
  91. data/spec/dummy/db/migrate/20081023092436_create_search_engines.rb +17 -0
  92. data/spec/dummy/db/migrate/20081025083323_create_countries.rb +28 -0
  93. data/spec/dummy/db/migrate/20081025083905_create_languages.rb +23 -0
  94. data/spec/dummy/db/migrate/20081027150907_create_picture_files.rb +15 -0
  95. data/spec/dummy/db/migrate/20081028083142_create_agent_import_files.rb +20 -0
  96. data/spec/dummy/db/migrate/20081028083208_create_resource_import_files.rb +20 -0
  97. data/spec/dummy/db/migrate/20081030023412_create_checkout_types.rb +17 -0
  98. data/spec/dummy/db/migrate/20081030023518_create_user_group_has_checkout_types.rb +25 -0
  99. data/spec/dummy/db/migrate/20081030023615_create_carrier_type_has_checkout_types.rb +18 -0
  100. data/spec/dummy/db/migrate/20081212075554_create_checkout_stat_has_manifestations.rb +17 -0
  101. data/spec/dummy/db/migrate/20081212080038_create_manifestation_checkout_stats.rb +15 -0
  102. data/spec/dummy/db/migrate/20081212151614_create_bookmark_stats.rb +13 -0
  103. data/spec/dummy/db/migrate/20081212151820_create_bookmark_stat_has_manifestations.rb +13 -0
  104. data/spec/dummy/db/migrate/20081215094302_create_user_checkout_stats.rb +15 -0
  105. data/spec/dummy/db/migrate/20081215094955_create_checkout_stat_has_users.rb +17 -0
  106. data/spec/dummy/db/migrate/20081216190517_create_reserve_stat_has_manifestations.rb +17 -0
  107. data/spec/dummy/db/migrate/20081216190724_create_manifestation_reserve_stats.rb +15 -0
  108. data/spec/dummy/db/migrate/20081220023628_create_user_reserve_stats.rb +15 -0
  109. data/spec/dummy/db/migrate/20081220034117_create_reserve_stat_has_users.rb +17 -0
  110. data/spec/dummy/db/migrate/20090321130448_add_completed_at_to_user_checkout_stat.rb +23 -0
  111. data/spec/dummy/db/migrate/20090705133942_add_attachments_picture_to_picture_file.rb +15 -0
  112. data/spec/dummy/db/migrate/20090705212043_add_attachments_attachment_to_manifestation.rb +15 -0
  113. data/spec/dummy/db/migrate/20090720091106_create_medium_of_performances.rb +12 -0
  114. data/spec/dummy/db/migrate/20090720091429_create_content_types.rb +12 -0
  115. data/spec/dummy/db/migrate/20090812151902_create_agent_relationship_types.rb +12 -0
  116. data/spec/dummy/db/migrate/20090831220301_create_lending_policies.rb +21 -0
  117. data/spec/dummy/db/migrate/20091012101112_add_dcndl_schema.rb +27 -0
  118. data/spec/dummy/db/migrate/20091025080447_create_licenses.rb +12 -0
  119. data/spec/dummy/db/migrate/20091202124834_create_versions.rb +18 -0
  120. data/spec/dummy/db/migrate/20091214131723_create_series_statements.rb +13 -0
  121. data/spec/dummy/db/migrate/20100129142347_create_import_requests.rb +14 -0
  122. data/spec/dummy/db/migrate/20100211105551_add_admin_networks_to_library_group.rb +9 -0
  123. data/spec/dummy/db/migrate/20100222124420_add_allow_bookmark_external_url_to_library_group.rb +9 -0
  124. data/spec/dummy/db/migrate/20100223121519_rename_series_statement_title_to_original_title.rb +13 -0
  125. data/spec/dummy/db/migrate/20100314190054_add_opening_hour_to_library.rb +9 -0
  126. data/spec/dummy/db/migrate/20100321235924_add_series_statement_identifier_to_series_statement.rb +10 -0
  127. data/spec/dummy/db/migrate/20100525124311_create_manifestation_relationships.rb +13 -0
  128. data/spec/dummy/db/migrate/20100525171356_acts_as_taggable_on_migration.rb +30 -0
  129. data/spec/dummy/db/migrate/20100606065209_create_user_has_roles.rb +12 -0
  130. data/spec/dummy/db/migrate/20100606073747_create_agent_relationships.rb +13 -0
  131. data/spec/dummy/db/migrate/20100607044753_create_manifestation_relationship_types.rb +12 -0
  132. data/spec/dummy/db/migrate/20100814091104_add_position_to_agent_relationship.rb +11 -0
  133. data/spec/dummy/db/migrate/20100925043847_create_resource_import_results.rb +15 -0
  134. data/spec/dummy/db/migrate/20100925074559_create_agent_import_results.rb +11 -0
  135. data/spec/dummy/db/migrate/20101212070145_add_acquired_at_to_item.rb +9 -0
  136. data/spec/dummy/db/migrate/20110222073537_add_url_to_library_group.rb +9 -0
  137. data/spec/dummy/db/migrate/20110301035123_add_pub_date_to_manifestation.rb +9 -0
  138. data/spec/dummy/db/migrate/20110301121550_add_birth_date_and_death_date_to_agent.rb +11 -0
  139. data/spec/dummy/db/migrate/20110301134521_add_expire_date_to_reserve.rb +9 -0
  140. data/spec/dummy/db/migrate/20110318183304_add_valid_period_for_new_user_to_user_group.rb +11 -0
  141. data/spec/dummy/db/migrate/20110328130826_add_current_checkout_count_to_user_group_has_checkout_type.rb +9 -0
  142. data/spec/dummy/db/migrate/20110603184217_add_edit_mode_to_resource_import_file.rb +9 -0
  143. data/spec/dummy/db/migrate/20110619064807_add_edition_string_to_manifestation.rb +9 -0
  144. data/spec/dummy/db/migrate/20110620173525_add_bookstore_id_to_item.rb +11 -0
  145. data/spec/dummy/db/migrate/20110621093332_remove_expire_date_from_reserve.rb +9 -0
  146. data/spec/dummy/db/migrate/20110627034940_create_series_statement_merge_lists.rb +9 -0
  147. data/spec/dummy/db/migrate/20110627035057_create_series_statement_merges.rb +12 -0
  148. data/spec/dummy/db/migrate/20110627122938_add_number_of_day_to_notify_overdue_to_user_group.rb +13 -0
  149. data/spec/dummy/db/migrate/20110913120629_add_lft_and_rgt_to_classification.rb +11 -0
  150. data/spec/dummy/db/migrate/20110916091020_add_volume_number_to_manifestation.rb +13 -0
  151. data/spec/dummy/db/migrate/20110916103953_add_manifestaiton_id_to_series_statement.rb +10 -0
  152. data/spec/dummy/db/migrate/20110918162329_add_note_to_series_statement.rb +9 -0
  153. data/spec/dummy/db/migrate/20111124110059_create_create_types.rb +12 -0
  154. data/spec/dummy/db/migrate/20111124110319_create_realize_types.rb +12 -0
  155. data/spec/dummy/db/migrate/20111124110355_create_produce_types.rb +12 -0
  156. data/spec/dummy/db/migrate/20111124112131_add_create_type_to_create.rb +7 -0
  157. data/spec/dummy/db/migrate/20111217234412_add_save_checkout_history_to_user.rb +5 -0
  158. data/spec/dummy/db/migrate/20111218002349_add_checkout_icalendar_token_to_user.rb +6 -0
  159. data/spec/dummy/db/migrate/20111231145823_add_share_bookmarks_to_user.rb +5 -0
  160. data/spec/dummy/db/migrate/20120105074911_add_isil_to_library.rb +5 -0
  161. data/spec/dummy/db/migrate/20120125152919_add_title_subseries_transcription_to_series_statement.rb +6 -0
  162. data/spec/dummy/db/migrate/20120129014038_create_budget_types.rb +12 -0
  163. data/spec/dummy/db/migrate/20120129020544_add_budget_type_id_to_item.rb +6 -0
  164. data/spec/dummy/db/migrate/20120319120638_add_content_type_id_to_manifestation.rb +6 -0
  165. data/spec/dummy/db/migrate/20120319173203_create_accepts.rb +14 -0
  166. data/spec/dummy/db/migrate/20120406020752_add_url_to_subject.rb +5 -0
  167. data/spec/dummy/db/migrate/20120410104851_add_year_of_publication_to_manifestation.rb +5 -0
  168. data/spec/dummy/db/migrate/20120413072700_add_picture_meta_to_picture_file.rb +5 -0
  169. data/spec/dummy/db/migrate/20120413100352_add_fingerprint_to_picture_file.rb +5 -0
  170. data/spec/dummy/db/migrate/20120413161340_add_fingerprint_to_resource_import_file.rb +5 -0
  171. data/spec/dummy/db/migrate/20120413161403_add_fingerprint_to_agent_import_file.rb +5 -0
  172. data/spec/dummy/db/migrate/20120413170705_add_error_message_to_resource_import_file.rb +5 -0
  173. data/spec/dummy/db/migrate/20120413170720_add_error_message_to_agent_import_file.rb +5 -0
  174. data/spec/dummy/db/migrate/20120415164821_add_attachment_meta_to_manifestation.rb +5 -0
  175. data/spec/dummy/db/migrate/20120418081407_add_month_of_publication_to_manifestation.rb +5 -0
  176. data/spec/dummy/db/migrate/20120424103932_add_librarian_id_to_checked_item.rb +5 -0
  177. data/spec/dummy/db/migrate/20120510140958_add_closed_to_shelf.rb +5 -0
  178. data/spec/dummy/db/migrate/20120511072422_add_agent_identifier_to_agent.rb +6 -0
  179. data/spec/dummy/db/migrate/20120602141129_add_edit_mode_to_agent_import_file.rb +5 -0
  180. data/spec/dummy/db/migrate/20121116031206_add_fulltext_content_to_manifestation.rb +5 -0
  181. data/spec/dummy/db/migrate/20130221154434_add_additional_attributes_to_user.rb +16 -0
  182. data/spec/dummy/db/migrate/20130303124821_add_retained_at_to_reserve.rb +5 -0
  183. data/spec/dummy/db/migrate/20130304015019_add_postponed_at_to_reserve.rb +5 -0
  184. data/spec/dummy/db/migrate/20130412083556_add_latitude_and_longitude_to_library.rb +6 -0
  185. data/spec/dummy/db/migrate/20130416054135_add_circulation_status_id_to_item.rb +8 -0
  186. data/spec/dummy/db/migrate/20130421093852_add_periodical_to_manifestation.rb +5 -0
  187. data/spec/dummy/db/migrate/20130421155019_add_creator_string_to_series_statement.rb +7 -0
  188. data/spec/dummy/db/migrate/20130421164124_add_series_master_to_series_statement.rb +5 -0
  189. data/spec/dummy/db/migrate/20130429020822_add_root_manifestation_id_to_series_statement.rb +6 -0
  190. data/spec/dummy/db/migrate/20130504133816_add_manifestation_id_to_subject.rb +6 -0
  191. data/spec/dummy/db/migrate/20130504143515_add_manifestation_id_to_classification.rb +6 -0
  192. data/spec/dummy/db/migrate/20130504195916_add_subject_heading_type_id_to_subject.rb +5 -0
  193. data/spec/dummy/db/migrate/20130506175303_create_identifier_types.rb +12 -0
  194. data/spec/dummy/db/migrate/20130506175834_create_identifiers.rb +15 -0
  195. data/spec/dummy/db/migrate/20130509185724_add_statement_of_responsibility_to_manifestation.rb +5 -0
  196. data/spec/dummy/db/migrate/20130519065638_add_lock_version_to_reserve.rb +5 -0
  197. data/spec/dummy/db/migrate/20130519065837_add_lock_version_to_checkin.rb +5 -0
  198. data/spec/dummy/db/migrate/20140110122216_create_user_import_files.rb +18 -0
  199. data/spec/dummy/db/migrate/20140110131010_create_user_import_results.rb +11 -0
  200. data/spec/dummy/db/migrate/20140122054321_create_profiles.rb +20 -0
  201. data/spec/dummy/db/migrate/20140518050147_create_reserve_transitions.rb +14 -0
  202. data/spec/dummy/db/migrate/20140519170214_create_resource_import_file_transitions.rb +18 -0
  203. data/spec/dummy/db/migrate/20140519171220_create_import_request_transitions.rb +18 -0
  204. data/spec/dummy/db/migrate/20140524020735_create_agent_import_file_transitions.rb +18 -0
  205. data/spec/dummy/db/migrate/20140524074813_create_user_import_file_transitions.rb +18 -0
  206. data/spec/dummy/db/migrate/20140524135607_create_bookmark_stat_transitions.rb +14 -0
  207. data/spec/dummy/db/migrate/20140524142813_add_taggings_count_to_tag.rb +5 -0
  208. data/spec/dummy/db/migrate/20140528045518_create_user_checkout_stat_transitions.rb +14 -0
  209. data/spec/dummy/db/migrate/20140528045539_create_user_reserve_stat_transitions.rb +14 -0
  210. data/spec/dummy/db/migrate/20140528045600_create_manifestation_checkout_stat_transitions.rb +14 -0
  211. data/spec/dummy/db/migrate/20140528045617_create_manifestation_reserve_stat_transitions.rb +14 -0
  212. data/spec/dummy/db/migrate/20140610123439_drop_email_unique_constraint_enju_leaf_rc10.rb +11 -0
  213. data/spec/dummy/db/migrate/20140614065404_create_resource_export_files.rb +11 -0
  214. data/spec/dummy/db/migrate/20140614141500_create_resource_export_file_transitions.rb +18 -0
  215. data/spec/dummy/db/migrate/20140628072217_add_user_encoding_to_user_import_file.rb +5 -0
  216. data/spec/dummy/db/migrate/20140628073524_add_user_encoding_to_agent_import_file.rb +5 -0
  217. data/spec/dummy/db/migrate/20140628073535_add_user_encoding_to_resource_import_file.rb +5 -0
  218. data/spec/dummy/db/migrate/20140709113413_create_user_export_files.rb +11 -0
  219. data/spec/dummy/db/migrate/20140709113905_create_user_export_file_transitions.rb +18 -0
  220. data/spec/dummy/db/migrate/20140720140916_add_binding_item_identifier_to_item.rb +8 -0
  221. data/spec/dummy/db/migrate/20140720170714_add_default_library_id_to_user_import_file.rb +5 -0
  222. data/spec/dummy/db/migrate/20140720170735_add_default_user_group_id_to_user_import_file.rb +5 -0
  223. data/spec/dummy/db/migrate/20140721151416_add_default_shelf_id_to_resource_import_file.rb +5 -0
  224. data/spec/dummy/db/migrate/20140802082007_add_manifestation_id_to_item.rb +6 -0
  225. data/spec/dummy/db/migrate/20140810061942_add_user_id_to_user_checkout_stat.rb +12 -0
  226. data/spec/dummy/db/migrate/20140810091231_add_checkout_icalendar_token_to_profile.rb +6 -0
  227. data/spec/dummy/db/migrate/20140810091417_add_save_checkout_history_to_profile.rb +5 -0
  228. data/spec/dummy/db/migrate/20140811031145_add_expired_at_to_profile.rb +5 -0
  229. data/spec/dummy/db/migrate/20140812093836_add_share_bookmarks_to_profile.rb +5 -0
  230. data/spec/dummy/db/migrate/20140813182425_add_publication_place_to_manifestation.rb +5 -0
  231. data/spec/dummy/db/migrate/20140821151023_create_colors.rb +14 -0
  232. data/spec/dummy/db/migrate/20140822114527_add_error_message_to_resource_import_result.rb +5 -0
  233. data/spec/dummy/db/migrate/20140823083524_add_extent_to_manifestation.rb +5 -0
  234. data/spec/dummy/db/migrate/20140823094847_add_dimensions_to_manifestation.rb +5 -0
  235. data/spec/dummy/db/migrate/20140823095740_rename_manifestation_periodical_to_serial.rb +9 -0
  236. data/spec/dummy/db/migrate/20141003181336_add_full_name_transcription_to_profile.rb +5 -0
  237. data/spec/dummy/db/migrate/20141003182825_add_date_of_birth_to_profile.rb +5 -0
  238. data/spec/dummy/db/migrate/20150117111136_add_foreign_key_to_items_referencing_manifestations.rb +5 -0
  239. data/spec/dummy/db/migrate/20150221063719_add_settings_to_library_group.rb +5 -0
  240. data/spec/dummy/db/migrate/20150421023923_create_identities.rb +15 -0
  241. data/spec/dummy/db/migrate/20150506105356_add_error_message_to_user_import_result.rb +5 -0
  242. data/spec/dummy/db/migrate/20150923173139_add_url_to_classification.rb +5 -0
  243. data/spec/dummy/db/migrate/20150924115059_create_withdraws.rb +13 -0
  244. data/spec/dummy/db/migrate/20150925092505_add_label_to_classification.rb +5 -0
  245. data/spec/dummy/db/schema.rb +1451 -0
  246. data/spec/dummy/public/404.html +26 -0
  247. data/spec/dummy/public/422.html +26 -0
  248. data/spec/dummy/public/500.html +25 -0
  249. data/spec/dummy/public/favicon.ico +0 -0
  250. data/spec/dummy/script/rails +6 -0
  251. data/spec/factories/agent.rb +13 -0
  252. data/spec/factories/agent_relationship.rb +6 -0
  253. data/spec/factories/agent_relationship_type.rb +5 -0
  254. data/spec/factories/agent_type.rb +5 -0
  255. data/spec/factories/basket.rb +5 -0
  256. data/spec/factories/carrier_type.rb +5 -0
  257. data/spec/factories/content_type.rb +5 -0
  258. data/spec/factories/country.rb +8 -0
  259. data/spec/factories/create.rb +6 -0
  260. data/spec/factories/create_types.rb +9 -0
  261. data/spec/factories/donate.rb +6 -0
  262. data/spec/factories/exemplify.rb +6 -0
  263. data/spec/factories/extent.rb +5 -0
  264. data/spec/factories/form_of_work.rb +5 -0
  265. data/spec/factories/frequency.rb +5 -0
  266. data/spec/factories/import_request.rb +5 -0
  267. data/spec/factories/item.rb +7 -0
  268. data/spec/factories/language.rb +8 -0
  269. data/spec/factories/library.rb +13 -0
  270. data/spec/factories/license.rb +5 -0
  271. data/spec/factories/manifestation.rb +6 -0
  272. data/spec/factories/manifestation_relationship.rb +6 -0
  273. data/spec/factories/manifestation_relationship_type.rb +5 -0
  274. data/spec/factories/medium_of_performance.rb +5 -0
  275. data/spec/factories/own.rb +6 -0
  276. data/spec/factories/produce.rb +6 -0
  277. data/spec/factories/produce_types.rb +9 -0
  278. data/spec/factories/profile.rb +10 -0
  279. data/spec/factories/realize.rb +6 -0
  280. data/spec/factories/realize_types.rb +9 -0
  281. data/spec/factories/series_has_manifestation.rb +6 -0
  282. data/spec/factories/series_statement.rb +5 -0
  283. data/spec/factories/series_statement_relationship.rb +8 -0
  284. data/spec/factories/user.rb +46 -0
  285. data/spec/fixtures/agent_relationship_types.yml +34 -0
  286. data/spec/fixtures/agent_relationships.yml +25 -0
  287. data/spec/fixtures/agent_types.yml +35 -0
  288. data/spec/fixtures/agents.yml +327 -0
  289. data/spec/fixtures/baskets.yml +80 -0
  290. data/spec/fixtures/bookstores.yml +107 -0
  291. data/spec/fixtures/budget_types.yml +29 -0
  292. data/spec/fixtures/carrier_types.yml +51 -0
  293. data/spec/fixtures/content_types.yml +36 -0
  294. data/spec/fixtures/countries.yml +2059 -0
  295. data/spec/fixtures/create_types.yml +47 -0
  296. data/spec/fixtures/creates.yml +64 -0
  297. data/spec/fixtures/donates.yml +31 -0
  298. data/spec/fixtures/exemplifies.yml +160 -0
  299. data/spec/fixtures/form_of_works.yml +39 -0
  300. data/spec/fixtures/frequencies.yml +85 -0
  301. data/spec/fixtures/identifier_types.yml +36 -0
  302. data/spec/fixtures/identifiers.yml +113 -0
  303. data/spec/fixtures/import_requests.yml +24 -0
  304. data/spec/fixtures/items.yml +283 -0
  305. data/spec/fixtures/languages.yml +1901 -0
  306. data/spec/fixtures/libraries.yml +102 -0
  307. data/spec/fixtures/library_groups.yml +31 -0
  308. data/spec/fixtures/licenses.yml +29 -0
  309. data/spec/fixtures/manifestation_relationship_types.yml +29 -0
  310. data/spec/fixtures/manifestation_relationships.yml +30 -0
  311. data/spec/fixtures/manifestations.yml +1881 -0
  312. data/spec/fixtures/medium_of_performances.yml +29 -0
  313. data/spec/fixtures/owns.yml +26 -0
  314. data/spec/fixtures/picture_files.yml +63 -0
  315. data/spec/fixtures/produce_types.yml +31 -0
  316. data/spec/fixtures/produces.yml +148 -0
  317. data/spec/fixtures/profiles.yml +98 -0
  318. data/spec/fixtures/realize_types.yml +39 -0
  319. data/spec/fixtures/realizes.yml +85 -0
  320. data/spec/fixtures/request_status_types.yml +63 -0
  321. data/spec/fixtures/request_types.yml +55 -0
  322. data/spec/fixtures/reserve_transitions.yml +88 -0
  323. data/spec/fixtures/resource_import_files.yml +43 -0
  324. data/spec/fixtures/resource_import_results.yml +29 -0
  325. data/spec/fixtures/roles.yml +21 -0
  326. data/spec/fixtures/series_statements.yml +56 -0
  327. data/spec/fixtures/shelves.yml +47 -0
  328. data/spec/fixtures/user_groups.yml +51 -0
  329. data/spec/fixtures/user_has_roles.yml +41 -0
  330. data/spec/fixtures/users.yml +51 -0
  331. data/spec/spec_helper.rb +51 -0
  332. data/spec/support/controller_macros.rb +46 -0
  333. data/spec/support/devise.rb +4 -0
  334. data/spec/views/manifestations/index.html.erb_spec.rb +34 -0
  335. data/spec/views/manifestations/show.html.erb_spec.rb +18 -0
  336. data/vendor/assets/stylesheets/images/ajax-loader.gif +0 -0
  337. data/vendor/assets/stylesheets/images/icons-18-black.png +0 -0
  338. data/vendor/assets/stylesheets/images/icons-18-white.png +0 -0
  339. data/vendor/assets/stylesheets/images/icons-36-black.png +0 -0
  340. data/vendor/assets/stylesheets/images/icons-36-white.png +0 -0
  341. metadata +873 -0
@@ -0,0 +1,2059 @@
1
+ ---
2
+ country_00001:
3
+ position: 1
4
+ name: unknown
5
+ display_name: unknown
6
+ numeric_3: "000"
7
+ id: 1
8
+ note:
9
+ alpha_2: "000"
10
+ alpha_3: "000"
11
+ country_00171:
12
+ position: 171
13
+ name: Saint Helena
14
+ display_name: Saint Helena
15
+ numeric_3: "654"
16
+ id: 171
17
+ note:
18
+ alpha_2: SH
19
+ alpha_3: SHN
20
+ country_00038:
21
+ position: 38
22
+ name: Cayman Islands
23
+ display_name: Cayman Islands
24
+ numeric_3: "136"
25
+ id: 38
26
+ note:
27
+ alpha_2: KY
28
+ alpha_3: CYM
29
+ country_00064:
30
+ position: 64
31
+ name: Ethiopia
32
+ display_name: Ethiopia
33
+ numeric_3: "231"
34
+ id: 64
35
+ note:
36
+ alpha_2: ET
37
+ alpha_3: ETH
38
+ country_00091:
39
+ position: 91
40
+ name: Hungary
41
+ display_name: Hungary
42
+ numeric_3: "348"
43
+ id: 91
44
+ note:
45
+ alpha_2: HU
46
+ alpha_3: HUN
47
+ country_00119:
48
+ position: 119
49
+ name: Macao
50
+ display_name: Macao
51
+ numeric_3: "446"
52
+ id: 119
53
+ note:
54
+ alpha_2: MO
55
+ alpha_3: MAC
56
+ country_00145:
57
+ position: 145
58
+ name: New Caledonia
59
+ display_name: New Caledonia
60
+ numeric_3: "540"
61
+ id: 145
62
+ note:
63
+ alpha_2: NC
64
+ alpha_3: NCL
65
+ country_00226:
66
+ position: 226
67
+ name: Zambia
68
+ display_name: Zambia
69
+ numeric_3: "894"
70
+ id: 226
71
+ note:
72
+ alpha_2: ZM
73
+ alpha_3: ZMB
74
+ country_00039:
75
+ position: 39
76
+ name: Central African Republic
77
+ display_name: Central African Republic
78
+ numeric_3: "140"
79
+ id: 39
80
+ note:
81
+ alpha_2: CF
82
+ alpha_3: CAF
83
+ country_00065:
84
+ position: 65
85
+ name: Falkland Islands (Malvinas)
86
+ display_name: Falkland Islands (Malvinas)
87
+ numeric_3: "238"
88
+ id: 65
89
+ note:
90
+ alpha_2: FK
91
+ alpha_3: FLK
92
+ country_00146:
93
+ position: 146
94
+ name: New Zealand
95
+ display_name: New Zealand
96
+ numeric_3: "554"
97
+ id: 146
98
+ note:
99
+ alpha_2: NZ
100
+ alpha_3: NZL
101
+ country_00172:
102
+ position: 172
103
+ name: Saint Kitts and Nevis
104
+ display_name: Saint Kitts and Nevis
105
+ numeric_3: "659"
106
+ id: 172
107
+ note:
108
+ alpha_2: KN
109
+ alpha_3: KNA
110
+ country_00227:
111
+ position: 227
112
+ name: Zimbabwe
113
+ display_name: Zimbabwe
114
+ numeric_3: "716"
115
+ id: 227
116
+ note:
117
+ alpha_2: ZW
118
+ alpha_3: ZWE
119
+ country_00066:
120
+ position: 66
121
+ name: Faroe Islands
122
+ display_name: Faroe Islands
123
+ numeric_3: "234"
124
+ id: 66
125
+ note:
126
+ alpha_2: FO
127
+ alpha_3: FRO
128
+ country_00092:
129
+ position: 92
130
+ name: Iceland
131
+ display_name: Iceland
132
+ numeric_3: "352"
133
+ id: 92
134
+ note:
135
+ alpha_2: IS
136
+ alpha_3: ISL
137
+ country_00147:
138
+ position: 147
139
+ name: Nicaragua
140
+ display_name: Nicaragua
141
+ numeric_3: "558"
142
+ id: 147
143
+ note:
144
+ alpha_2: NI
145
+ alpha_3: NIC
146
+ country_00173:
147
+ position: 173
148
+ name: Saint Lucia
149
+ display_name: Saint Lucia
150
+ numeric_3: "662"
151
+ id: 173
152
+ note:
153
+ alpha_2: LC
154
+ alpha_3: LCA
155
+ country_00067:
156
+ position: 67
157
+ name: Fiji
158
+ display_name: Fiji
159
+ numeric_3: "242"
160
+ id: 67
161
+ note:
162
+ alpha_2: FJ
163
+ alpha_3: FJI
164
+ country_00093:
165
+ position: 93
166
+ name: India
167
+ display_name: India
168
+ numeric_3: "356"
169
+ id: 93
170
+ note:
171
+ alpha_2: IN
172
+ alpha_3: IND
173
+ country_00148:
174
+ position: 148
175
+ name: Niger
176
+ display_name: Niger
177
+ numeric_3: "562"
178
+ id: 148
179
+ note:
180
+ alpha_2: NE
181
+ alpha_3: NER
182
+ country_00174:
183
+ position: 174
184
+ name: Saint Pierre and Miquelon
185
+ display_name: Saint Pierre and Miquelon
186
+ numeric_3: "666"
187
+ id: 174
188
+ note:
189
+ alpha_2: PM
190
+ alpha_3: SPM
191
+ country_00068:
192
+ position: 68
193
+ name: Finland
194
+ display_name: Finland
195
+ numeric_3: "246"
196
+ id: 68
197
+ note:
198
+ alpha_2: FI
199
+ alpha_3: FIN
200
+ country_00094:
201
+ position: 94
202
+ name: Indonesia
203
+ display_name: Indonesia
204
+ numeric_3: "360"
205
+ id: 94
206
+ note:
207
+ alpha_2: ID
208
+ alpha_3: IDN
209
+ country_00149:
210
+ position: 149
211
+ name: Nigeria
212
+ display_name: Nigeria
213
+ numeric_3: "566"
214
+ id: 149
215
+ note:
216
+ alpha_2: NG
217
+ alpha_3: NGA
218
+ country_00175:
219
+ position: 175
220
+ name: Saint Vincent and the Grenadines
221
+ display_name: Saint Vincent and the Grenadines
222
+ numeric_3: "670"
223
+ id: 175
224
+ note:
225
+ alpha_2: VC
226
+ alpha_3: VCT
227
+ country_00069:
228
+ position: 69
229
+ name: France
230
+ display_name: France
231
+ numeric_3: "250"
232
+ id: 69
233
+ note:
234
+ alpha_2: FR
235
+ alpha_3: FRA
236
+ country_00095:
237
+ position: 95
238
+ name: Iran, Islamic Republic of
239
+ display_name: Iran, Islamic Republic of
240
+ numeric_3: "364"
241
+ id: 95
242
+ note:
243
+ alpha_2: IR
244
+ alpha_3: IRN
245
+ country_00176:
246
+ position: 176
247
+ name: Samoa
248
+ display_name: Samoa
249
+ numeric_3: "882"
250
+ id: 176
251
+ note:
252
+ alpha_2: WS
253
+ alpha_3: WSM
254
+ country_00096:
255
+ position: 96
256
+ name: Iraq
257
+ display_name: Iraq
258
+ numeric_3: "368"
259
+ id: 96
260
+ note:
261
+ alpha_2: IQ
262
+ alpha_3: IRQ
263
+ country_00177:
264
+ position: 177
265
+ name: San Marino
266
+ display_name: San Marino
267
+ numeric_3: "674"
268
+ id: 177
269
+ note:
270
+ alpha_2: SM
271
+ alpha_3: SMR
272
+ country_00097:
273
+ position: 97
274
+ name: Ireland
275
+ display_name: Ireland
276
+ numeric_3: "372"
277
+ id: 97
278
+ note:
279
+ alpha_2: IE
280
+ alpha_3: IRL
281
+ country_00178:
282
+ position: 178
283
+ name: Sao Tome and Principe
284
+ display_name: Sao Tome and Principe
285
+ numeric_3: "678"
286
+ id: 178
287
+ note:
288
+ alpha_2: ST
289
+ alpha_3: STP
290
+ country_00098:
291
+ position: 98
292
+ name: Israel
293
+ display_name: Israel
294
+ numeric_3: "376"
295
+ id: 98
296
+ note:
297
+ alpha_2: IL
298
+ alpha_3: ISR
299
+ country_00179:
300
+ position: 179
301
+ name: Saudi Arabia
302
+ display_name: Saudi Arabia
303
+ numeric_3: "682"
304
+ id: 179
305
+ note:
306
+ alpha_2: SA
307
+ alpha_3: SAU
308
+ country_00099:
309
+ position: 99
310
+ name: Italy
311
+ display_name: Italy
312
+ numeric_3: "380"
313
+ id: 99
314
+ note:
315
+ alpha_2: IT
316
+ alpha_3: ITA
317
+ country_00100:
318
+ position: 100
319
+ name: Jamaica
320
+ display_name: Jamaica
321
+ numeric_3: "388"
322
+ id: 100
323
+ note:
324
+ alpha_2: JM
325
+ alpha_3: JAM
326
+ country_00020:
327
+ position: 20
328
+ name: Belarus
329
+ display_name: Belarus
330
+ numeric_3: "112"
331
+ id: 20
332
+ note:
333
+ alpha_2: BY
334
+ alpha_3: BLR
335
+ country_00101:
336
+ position: 101
337
+ name: Japan
338
+ display_name: Japan
339
+ numeric_3: "392"
340
+ id: 101
341
+ note:
342
+ alpha_2: JP
343
+ alpha_3: JPN
344
+ country_00021:
345
+ position: 21
346
+ name: Belgium
347
+ display_name: Belgium
348
+ numeric_3: "046"
349
+ id: 21
350
+ note:
351
+ alpha_2: BE
352
+ alpha_3: BEL
353
+ country_00102:
354
+ position: 102
355
+ name: Jordan
356
+ display_name: Jordan
357
+ numeric_3: "400"
358
+ id: 102
359
+ note:
360
+ alpha_2: JO
361
+ alpha_3: JOR
362
+ country_00022:
363
+ position: 22
364
+ name: Belize
365
+ display_name: Belize
366
+ numeric_3: 084
367
+ id: 22
368
+ note:
369
+ alpha_2: BZ
370
+ alpha_3: BLZ
371
+ country_00103:
372
+ position: 103
373
+ name: Kazakhstan
374
+ display_name: Kazakhstan
375
+ numeric_3: "398"
376
+ id: 103
377
+ note:
378
+ alpha_2: KZ
379
+ alpha_3: KAZ
380
+ country_00210:
381
+ position: 210
382
+ name: Tuvalu
383
+ display_name: Tuvalu
384
+ numeric_3: "798"
385
+ id: 210
386
+ note:
387
+ alpha_2: TV
388
+ alpha_3: TUV
389
+ country_00104:
390
+ position: 104
391
+ name: Kenya
392
+ display_name: Kenya
393
+ numeric_3: "404"
394
+ id: 104
395
+ note:
396
+ alpha_2: KE
397
+ alpha_3: KEN
398
+ country_00130:
399
+ position: 130
400
+ name: Mauritius
401
+ display_name: Mauritius
402
+ numeric_3: "480"
403
+ id: 130
404
+ note:
405
+ alpha_2: MU
406
+ alpha_3: MUS
407
+ country_00211:
408
+ position: 211
409
+ name: Uganda
410
+ display_name: Uganda
411
+ numeric_3: "800"
412
+ id: 211
413
+ note:
414
+ alpha_2: UG
415
+ alpha_3: UGA
416
+ country_00023:
417
+ position: 23
418
+ name: Benin
419
+ display_name: Benin
420
+ numeric_3: "204"
421
+ id: 23
422
+ note:
423
+ alpha_2: BJ
424
+ alpha_3: BEN
425
+ country_00050:
426
+ position: 50
427
+ name: Croatia
428
+ display_name: Croatia
429
+ numeric_3: "191"
430
+ id: 50
431
+ note:
432
+ alpha_2: HR
433
+ alpha_3: HRV
434
+ country_00105:
435
+ position: 105
436
+ name: Kiribati
437
+ display_name: Kiribati
438
+ numeric_3: "296"
439
+ id: 105
440
+ note:
441
+ alpha_2: KI
442
+ alpha_3: KIR
443
+ country_00131:
444
+ position: 131
445
+ name: Mexico
446
+ display_name: Mexico
447
+ numeric_3: "484"
448
+ id: 131
449
+ note:
450
+ alpha_2: MX
451
+ alpha_3: MEX
452
+ country_00212:
453
+ position: 212
454
+ name: Ukraine
455
+ display_name: Ukraine
456
+ numeric_3: "804"
457
+ id: 212
458
+ note:
459
+ alpha_2: UA
460
+ alpha_3: UKR
461
+ country_00024:
462
+ position: 24
463
+ name: Bermuda
464
+ display_name: Bermuda
465
+ numeric_3: "048"
466
+ id: 24
467
+ note:
468
+ alpha_2: BM
469
+ alpha_3: BMU
470
+ country_00106:
471
+ position: 106
472
+ name: Korea, Democratic People\'s Republic of
473
+ display_name: Korea, Democratic People\'s Republic of
474
+ numeric_3: "408"
475
+ id: 106
476
+ note:
477
+ alpha_2: KP
478
+ alpha_3: PRK
479
+ country_00132:
480
+ position: 132
481
+ name: Micronesia, Federated States of
482
+ display_name: Micronesia, Federated States of
483
+ numeric_3: "583"
484
+ id: 132
485
+ note:
486
+ alpha_2: FM
487
+ alpha_3: FSM
488
+ country_00213:
489
+ position: 213
490
+ name: United Arab Emirates
491
+ display_name: United Arab Emirates
492
+ numeric_3: "784"
493
+ id: 213
494
+ note:
495
+ alpha_2: AE
496
+ alpha_3: ARE
497
+ country_00025:
498
+ position: 25
499
+ name: Bhutan
500
+ display_name: Bhutan
501
+ numeric_3: "052"
502
+ id: 25
503
+ note:
504
+ alpha_2: BT
505
+ alpha_3: BTN
506
+ country_00051:
507
+ position: 51
508
+ name: Cuba
509
+ display_name: Cuba
510
+ numeric_3: "192"
511
+ id: 51
512
+ note:
513
+ alpha_2: CU
514
+ alpha_3: CUB
515
+ country_00107:
516
+ position: 107
517
+ name: Korea, Republic of
518
+ display_name: Korea, Republic of
519
+ numeric_3: "410"
520
+ id: 107
521
+ note:
522
+ alpha_2: KR
523
+ alpha_3: KOR
524
+ country_00133:
525
+ position: 133
526
+ name: Moldova, Republic of
527
+ display_name: Moldova, Republic of
528
+ numeric_3: "498"
529
+ id: 133
530
+ note:
531
+ alpha_2: MD
532
+ alpha_3: MDA
533
+ country_00214:
534
+ position: 214
535
+ name: United Kingdom
536
+ display_name: United Kingdom
537
+ numeric_3: "826"
538
+ id: 214
539
+ note:
540
+ alpha_2: GB
541
+ alpha_3: GBR
542
+ country_00026:
543
+ position: 26
544
+ name: Bolivia
545
+ display_name: Bolivia
546
+ numeric_3: 068
547
+ id: 26
548
+ note:
549
+ alpha_2: BO
550
+ alpha_3: BOL
551
+ country_00052:
552
+ position: 52
553
+ name: Cyprus
554
+ display_name: Cyprus
555
+ numeric_3: "196"
556
+ id: 52
557
+ note:
558
+ alpha_2: CY
559
+ alpha_3: CYP
560
+ country_00108:
561
+ position: 108
562
+ name: Kuwait
563
+ display_name: Kuwait
564
+ numeric_3: "414"
565
+ id: 108
566
+ note:
567
+ alpha_2: KW
568
+ alpha_3: KWT
569
+ country_00134:
570
+ position: 134
571
+ name: Monaco
572
+ display_name: Monaco
573
+ numeric_3: "492"
574
+ id: 134
575
+ note:
576
+ alpha_2: MC
577
+ alpha_3: MCO
578
+ country_00160:
579
+ position: 160
580
+ name: Peru
581
+ display_name: Peru
582
+ numeric_3: "604"
583
+ id: 160
584
+ note:
585
+ alpha_2: PE
586
+ alpha_3: PER
587
+ country_00215:
588
+ position: 215
589
+ name: United States
590
+ display_name: United States
591
+ numeric_3: "840"
592
+ id: 215
593
+ note:
594
+ alpha_2: US
595
+ alpha_3: USA
596
+ country_00027:
597
+ position: 27
598
+ name: Bosnia and Herzegovina
599
+ display_name: Bosnia and Herzegovina
600
+ numeric_3: "056"
601
+ id: 27
602
+ note:
603
+ alpha_2: BA
604
+ alpha_3: BIH
605
+ country_00053:
606
+ position: 53
607
+ name: Czech Republic
608
+ display_name: Czech Republic
609
+ numeric_3: "203"
610
+ id: 53
611
+ note:
612
+ alpha_2: CZ
613
+ alpha_3: CZE
614
+ country_00080:
615
+ position: 80
616
+ name: Grenada
617
+ display_name: Grenada
618
+ numeric_3: "308"
619
+ id: 80
620
+ note:
621
+ alpha_2: GD
622
+ alpha_3: GRD
623
+ country_00135:
624
+ position: 135
625
+ name: Mongolia
626
+ display_name: Mongolia
627
+ numeric_3: "496"
628
+ id: 135
629
+ note:
630
+ alpha_2: MN
631
+ alpha_3: MNG
632
+ country_00161:
633
+ position: 161
634
+ name: Philippines
635
+ display_name: Philippines
636
+ numeric_3: "608"
637
+ id: 161
638
+ note:
639
+ alpha_2: PH
640
+ alpha_3: PHL
641
+ country_00216:
642
+ position: 216
643
+ name: Uruguay
644
+ display_name: Uruguay
645
+ numeric_3: "858"
646
+ id: 216
647
+ note:
648
+ alpha_2: UY
649
+ alpha_3: URY
650
+ country_00028:
651
+ position: 28
652
+ name: Botswana
653
+ display_name: Botswana
654
+ numeric_3: "058"
655
+ id: 28
656
+ note:
657
+ alpha_2: BW
658
+ alpha_3: BWA
659
+ country_00054:
660
+ position: 54
661
+ name: Denmark
662
+ display_name: Denmark
663
+ numeric_3: "208"
664
+ id: 54
665
+ note:
666
+ alpha_2: DK
667
+ alpha_3: DNK
668
+ country_00109:
669
+ position: 109
670
+ name: Kyrgyzstan
671
+ display_name: Kyrgyzstan
672
+ numeric_3: "417"
673
+ id: 109
674
+ note:
675
+ alpha_2: KG
676
+ alpha_3: KGZ
677
+ country_00136:
678
+ position: 136
679
+ name: Montserrat
680
+ display_name: Montserrat
681
+ numeric_3: "500"
682
+ id: 136
683
+ note:
684
+ alpha_2: MS
685
+ alpha_3: MSR
686
+ country_00162:
687
+ position: 162
688
+ name: Pitcairn
689
+ display_name: Pitcairn
690
+ numeric_3: "612"
691
+ id: 162
692
+ note:
693
+ alpha_2: PN
694
+ alpha_3: PCN
695
+ country_00217:
696
+ position: 217
697
+ name: Uzbekistan
698
+ display_name: Uzbekistan
699
+ numeric_3: "860"
700
+ id: 217
701
+ note:
702
+ alpha_2: UZ
703
+ alpha_3: UZB
704
+ country_00029:
705
+ position: 29
706
+ name: Brazil
707
+ display_name: Brazil
708
+ numeric_3: "062"
709
+ id: 29
710
+ note:
711
+ alpha_2: BR
712
+ alpha_3: BRA
713
+ country_00055:
714
+ position: 55
715
+ name: Djibouti
716
+ display_name: Djibouti
717
+ numeric_3: "262"
718
+ id: 55
719
+ note:
720
+ alpha_2: DJ
721
+ alpha_3: DJI
722
+ country_00081:
723
+ position: 81
724
+ name: Guadeloupe
725
+ display_name: Guadeloupe
726
+ numeric_3: "312"
727
+ id: 81
728
+ note:
729
+ alpha_2: GP
730
+ alpha_3: GLP
731
+ country_00163:
732
+ position: 163
733
+ name: Poland
734
+ display_name: Poland
735
+ numeric_3: "616"
736
+ id: 163
737
+ note:
738
+ alpha_2: PL
739
+ alpha_3: POL
740
+ country_00190:
741
+ position: 190
742
+ name: Sri Lanka
743
+ display_name: Sri Lanka
744
+ numeric_3: "144"
745
+ id: 190
746
+ note:
747
+ alpha_2: LK
748
+ alpha_3: LKA
749
+ country_00218:
750
+ position: 218
751
+ name: Vanuatu
752
+ display_name: Vanuatu
753
+ numeric_3: "548"
754
+ id: 218
755
+ note:
756
+ alpha_2: VU
757
+ alpha_3: VUT
758
+ country_00056:
759
+ position: 56
760
+ name: Dominica
761
+ display_name: Dominica
762
+ numeric_3: "212"
763
+ id: 56
764
+ note:
765
+ alpha_2: DM
766
+ alpha_3: DMA
767
+ country_00082:
768
+ position: 82
769
+ name: Guam
770
+ display_name: Guam
771
+ numeric_3: "316"
772
+ id: 82
773
+ note:
774
+ alpha_2: GU
775
+ alpha_3: GUM
776
+ country_00137:
777
+ position: 137
778
+ name: Morocco
779
+ display_name: Morocco
780
+ numeric_3: "504"
781
+ id: 137
782
+ note:
783
+ alpha_2: MA
784
+ alpha_3: MAR
785
+ country_00164:
786
+ position: 164
787
+ name: Portugal
788
+ display_name: Portugal
789
+ numeric_3: "620"
790
+ id: 164
791
+ note:
792
+ alpha_2: PT
793
+ alpha_3: PRT
794
+ country_00219:
795
+ position: 219
796
+ name: Venezuela
797
+ display_name: Venezuela
798
+ numeric_3: "862"
799
+ id: 219
800
+ note:
801
+ alpha_2: VE
802
+ alpha_3: VEN
803
+ country_00057:
804
+ position: 57
805
+ name: Dominican Republic
806
+ display_name: Dominican Republic
807
+ numeric_3: "214"
808
+ id: 57
809
+ note:
810
+ alpha_2: DO
811
+ alpha_3: DOM
812
+ country_00083:
813
+ position: 83
814
+ name: Guatemala
815
+ display_name: Guatemala
816
+ numeric_3: "320"
817
+ id: 83
818
+ note:
819
+ alpha_2: GT
820
+ alpha_3: GTM
821
+ country_00138:
822
+ position: 138
823
+ name: Mozambique
824
+ display_name: Mozambique
825
+ numeric_3: "508"
826
+ id: 138
827
+ note:
828
+ alpha_2: MZ
829
+ alpha_3: MOZ
830
+ country_00191:
831
+ position: 191
832
+ name: Sudan
833
+ display_name: Sudan
834
+ numeric_3: "736"
835
+ id: 191
836
+ note:
837
+ alpha_2: SD
838
+ alpha_3: SDN
839
+ country_00058:
840
+ position: 58
841
+ name: Ecuador
842
+ display_name: Ecuador
843
+ numeric_3: "218"
844
+ id: 58
845
+ note:
846
+ alpha_2: EC
847
+ alpha_3: ECU
848
+ country_00084:
849
+ position: 84
850
+ name: Guinea
851
+ display_name: Guinea
852
+ numeric_3: "324"
853
+ id: 84
854
+ note:
855
+ alpha_2: GN
856
+ alpha_3: GIN
857
+ country_00139:
858
+ position: 139
859
+ name: Myanmar
860
+ display_name: Myanmar
861
+ numeric_3: "104"
862
+ id: 139
863
+ note:
864
+ alpha_2: MM
865
+ alpha_3: MMR
866
+ country_00165:
867
+ position: 165
868
+ name: Puerto Rico
869
+ display_name: Puerto Rico
870
+ numeric_3: "630"
871
+ id: 165
872
+ note:
873
+ alpha_2: PR
874
+ alpha_3: PRI
875
+ country_00192:
876
+ position: 192
877
+ name: Suriname
878
+ display_name: Suriname
879
+ numeric_3: "740"
880
+ id: 192
881
+ note:
882
+ alpha_2: SR
883
+ alpha_3: SUR
884
+ country_00059:
885
+ position: 59
886
+ name: Egypt
887
+ display_name: Egypt
888
+ numeric_3: "818"
889
+ id: 59
890
+ note:
891
+ alpha_2: EG
892
+ alpha_3: EGY
893
+ country_00085:
894
+ position: 85
895
+ name: Guinea-Bissau
896
+ display_name: Guinea-Bissau
897
+ numeric_3: "624"
898
+ id: 85
899
+ note:
900
+ alpha_2: GW
901
+ alpha_3: GNB
902
+ country_00166:
903
+ position: 166
904
+ name: Qatar
905
+ display_name: Qatar
906
+ numeric_3: "634"
907
+ id: 166
908
+ note:
909
+ alpha_2: QA
910
+ alpha_3: QAT
911
+ country_00086:
912
+ position: 86
913
+ name: Guyana
914
+ display_name: Guyana
915
+ numeric_3: "328"
916
+ id: 86
917
+ note:
918
+ alpha_2: GY
919
+ alpha_3: GUY
920
+ country_00167:
921
+ position: 167
922
+ name: Reunion
923
+ display_name: Reunion
924
+ numeric_3: "638"
925
+ id: 167
926
+ note:
927
+ alpha_2: RE
928
+ alpha_3: REU
929
+ country_00193:
930
+ position: 193
931
+ name: Svalbard and Jan Mayen
932
+ display_name: Svalbard and Jan Mayen
933
+ numeric_3: "744"
934
+ id: 193
935
+ note:
936
+ alpha_2: SJ
937
+ alpha_3: SJM
938
+ country_00087:
939
+ position: 87
940
+ name: Haiti
941
+ display_name: Haiti
942
+ numeric_3: "332"
943
+ id: 87
944
+ note:
945
+ alpha_2: HT
946
+ alpha_3: HTI
947
+ country_00168:
948
+ position: 168
949
+ name: Romania
950
+ display_name: Romania
951
+ numeric_3: "642"
952
+ id: 168
953
+ note:
954
+ alpha_2: RO
955
+ alpha_3: ROM
956
+ country_00194:
957
+ position: 194
958
+ name: Swaziland
959
+ display_name: Swaziland
960
+ numeric_3: "748"
961
+ id: 194
962
+ note:
963
+ alpha_2: SZ
964
+ alpha_3: SWZ
965
+ country_00088:
966
+ position: 88
967
+ name: Holy See (Vatican City State)
968
+ display_name: Holy See (Vatican City State)
969
+ numeric_3: "336"
970
+ id: 88
971
+ note:
972
+ alpha_2: VA
973
+ alpha_3: VAT
974
+ country_00169:
975
+ position: 169
976
+ name: Russian Federation
977
+ display_name: Russian Federation
978
+ numeric_3: "643"
979
+ id: 169
980
+ note:
981
+ alpha_2: RU
982
+ alpha_3: RUS
983
+ country_00195:
984
+ position: 195
985
+ name: Sweden
986
+ display_name: Sweden
987
+ numeric_3: "752"
988
+ id: 195
989
+ note:
990
+ alpha_2: SE
991
+ alpha_3: SWE
992
+ country_00089:
993
+ position: 89
994
+ name: Honduras
995
+ display_name: Honduras
996
+ numeric_3: "340"
997
+ id: 89
998
+ note:
999
+ alpha_2: HN
1000
+ alpha_3: HND
1001
+ country_00196:
1002
+ position: 196
1003
+ name: Switzerland
1004
+ display_name: Switzerland
1005
+ numeric_3: "756"
1006
+ id: 196
1007
+ note:
1008
+ alpha_2: CH
1009
+ alpha_3: CHE
1010
+ country_00197:
1011
+ position: 197
1012
+ name: Syrian Arab Republic
1013
+ display_name: Syrian Arab Republic
1014
+ numeric_3: "760"
1015
+ id: 197
1016
+ note:
1017
+ alpha_2: SY
1018
+ alpha_3: SYR
1019
+ country_00198:
1020
+ position: 198
1021
+ name: Taiwan, Province of China
1022
+ display_name: Taiwan, Province of China
1023
+ numeric_3: "158"
1024
+ id: 198
1025
+ note:
1026
+ alpha_2: TW
1027
+ alpha_3: TWN
1028
+ country_00199:
1029
+ position: 199
1030
+ name: Tajikistan
1031
+ display_name: Tajikistan
1032
+ numeric_3: "762"
1033
+ id: 199
1034
+ note:
1035
+ alpha_2: TJ
1036
+ alpha_3: TJK
1037
+ country_00010:
1038
+ position: 10
1039
+ name: Argentina
1040
+ display_name: Argentina
1041
+ numeric_3: "026"
1042
+ id: 10
1043
+ note:
1044
+ alpha_2: AR
1045
+ alpha_3: ARG
1046
+ country_00011:
1047
+ position: 11
1048
+ name: Armenia
1049
+ display_name: Armenia
1050
+ numeric_3: "041"
1051
+ id: 11
1052
+ note:
1053
+ alpha_2: AM
1054
+ alpha_3: ARM
1055
+ country_00012:
1056
+ position: 12
1057
+ name: Aruba
1058
+ display_name: Aruba
1059
+ numeric_3: "533"
1060
+ id: 12
1061
+ note:
1062
+ alpha_2: AW
1063
+ alpha_3: ABW
1064
+ country_00200:
1065
+ position: 200
1066
+ name: Tanzania, United Republic of
1067
+ display_name: Tanzania, United Republic of
1068
+ numeric_3: "834"
1069
+ id: 200
1070
+ note:
1071
+ alpha_2: TZ
1072
+ alpha_3: TZA
1073
+ country_00013:
1074
+ position: 13
1075
+ name: Australia
1076
+ display_name: Australia
1077
+ numeric_3: "030"
1078
+ id: 13
1079
+ note:
1080
+ alpha_2: AU
1081
+ alpha_3: AUS
1082
+ country_00120:
1083
+ position: 120
1084
+ name: Macedonia, the Former Yugoslav Republic of
1085
+ display_name: Macedonia, the Former Yugoslav Republic of
1086
+ numeric_3: "807"
1087
+ id: 120
1088
+ note:
1089
+ alpha_2: MK
1090
+ alpha_3: MKD
1091
+ country_00201:
1092
+ position: 201
1093
+ name: Thailand
1094
+ display_name: Thailand
1095
+ numeric_3: "764"
1096
+ id: 201
1097
+ note:
1098
+ alpha_2: TH
1099
+ alpha_3: THA
1100
+ country_00014:
1101
+ position: 14
1102
+ name: Austria
1103
+ display_name: Austria
1104
+ numeric_3: "032"
1105
+ id: 14
1106
+ note:
1107
+ alpha_2: AT
1108
+ alpha_3: AUT
1109
+ country_00040:
1110
+ position: 40
1111
+ name: Chad
1112
+ display_name: Chad
1113
+ numeric_3: "148"
1114
+ id: 40
1115
+ note:
1116
+ alpha_2: TD
1117
+ alpha_3: TCD
1118
+ country_00121:
1119
+ position: 121
1120
+ name: Madagascar
1121
+ display_name: Madagascar
1122
+ numeric_3: "450"
1123
+ id: 121
1124
+ note:
1125
+ alpha_2: MG
1126
+ alpha_3: MDG
1127
+ country_00202:
1128
+ position: 202
1129
+ name: Togo
1130
+ display_name: Togo
1131
+ numeric_3: "768"
1132
+ id: 202
1133
+ note:
1134
+ alpha_2: TG
1135
+ alpha_3: TGO
1136
+ country_00015:
1137
+ position: 15
1138
+ name: Azerbaijan
1139
+ display_name: Azerbaijan
1140
+ numeric_3: "025"
1141
+ id: 15
1142
+ note:
1143
+ alpha_2: AZ
1144
+ alpha_3: AZE
1145
+ country_00041:
1146
+ position: 41
1147
+ name: Chile
1148
+ display_name: Chile
1149
+ numeric_3: "152"
1150
+ id: 41
1151
+ note:
1152
+ alpha_2: CL
1153
+ alpha_3: CHL
1154
+ country_00122:
1155
+ position: 122
1156
+ name: Malawi
1157
+ display_name: Malawi
1158
+ numeric_3: "454"
1159
+ id: 122
1160
+ note:
1161
+ alpha_2: MW
1162
+ alpha_3: MWI
1163
+ country_00203:
1164
+ position: 203
1165
+ name: Tokelau
1166
+ display_name: Tokelau
1167
+ numeric_3: "772"
1168
+ id: 203
1169
+ note:
1170
+ alpha_2: TK
1171
+ alpha_3: TKL
1172
+ country_00016:
1173
+ position: 16
1174
+ name: Bahamas
1175
+ display_name: Bahamas
1176
+ numeric_3: "036"
1177
+ id: 16
1178
+ note:
1179
+ alpha_2: BS
1180
+ alpha_3: BHS
1181
+ country_00042:
1182
+ position: 42
1183
+ name: China
1184
+ display_name: China
1185
+ numeric_3: "156"
1186
+ id: 42
1187
+ note:
1188
+ alpha_2: CN
1189
+ alpha_3: CHN
1190
+ country_00123:
1191
+ position: 123
1192
+ name: Malaysia
1193
+ display_name: Malaysia
1194
+ numeric_3: "458"
1195
+ id: 123
1196
+ note:
1197
+ alpha_2: MY
1198
+ alpha_3: MYS
1199
+ country_00204:
1200
+ position: 204
1201
+ name: Tonga
1202
+ display_name: Tonga
1203
+ numeric_3: "776"
1204
+ id: 204
1205
+ note:
1206
+ alpha_2: TO
1207
+ alpha_3: TON
1208
+ country_00017:
1209
+ position: 17
1210
+ name: Bahrain
1211
+ display_name: Bahrain
1212
+ numeric_3: 048
1213
+ id: 17
1214
+ note:
1215
+ alpha_2: BH
1216
+ alpha_3: BHR
1217
+ country_00043:
1218
+ position: 43
1219
+ name: Colombia
1220
+ display_name: Colombia
1221
+ numeric_3: "170"
1222
+ id: 43
1223
+ note:
1224
+ alpha_2: CO
1225
+ alpha_3: COL
1226
+ country_00124:
1227
+ position: 124
1228
+ name: Maldives
1229
+ display_name: Maldives
1230
+ numeric_3: "462"
1231
+ id: 124
1232
+ note:
1233
+ alpha_2: MV
1234
+ alpha_3: MDV
1235
+ country_00150:
1236
+ position: 150
1237
+ name: Niue
1238
+ display_name: Niue
1239
+ numeric_3: "570"
1240
+ id: 150
1241
+ note:
1242
+ alpha_2: NU
1243
+ alpha_3: NIU
1244
+ country_00205:
1245
+ position: 205
1246
+ name: Trinidad and Tobago
1247
+ display_name: Trinidad and Tobago
1248
+ numeric_3: "780"
1249
+ id: 205
1250
+ note:
1251
+ alpha_2: TT
1252
+ alpha_3: TTO
1253
+ country_00018:
1254
+ position: 18
1255
+ name: Bangladesh
1256
+ display_name: Bangladesh
1257
+ numeric_3: "040"
1258
+ id: 18
1259
+ note:
1260
+ alpha_2: BD
1261
+ alpha_3: BGD
1262
+ country_00044:
1263
+ position: 44
1264
+ name: Comoros
1265
+ display_name: Comoros
1266
+ numeric_3: "174"
1267
+ id: 44
1268
+ note:
1269
+ alpha_2: KM
1270
+ alpha_3: COM
1271
+ country_00070:
1272
+ position: 70
1273
+ name: French Guiana
1274
+ display_name: French Guiana
1275
+ numeric_3: "254"
1276
+ id: 70
1277
+ note:
1278
+ alpha_2: GF
1279
+ alpha_3: GUF
1280
+ country_00125:
1281
+ position: 125
1282
+ name: Mali
1283
+ display_name: Mali
1284
+ numeric_3: "466"
1285
+ id: 125
1286
+ note:
1287
+ alpha_2: ML
1288
+ alpha_3: MLI
1289
+ country_00151:
1290
+ position: 151
1291
+ name: Norfolk Island
1292
+ display_name: Norfolk Island
1293
+ numeric_3: "574"
1294
+ id: 151
1295
+ note:
1296
+ alpha_2: NF
1297
+ alpha_3: NFK
1298
+ country_00206:
1299
+ position: 206
1300
+ name: Tunisia
1301
+ display_name: Tunisia
1302
+ numeric_3: "788"
1303
+ id: 206
1304
+ note:
1305
+ alpha_2: TN
1306
+ alpha_3: TUN
1307
+ country_00019:
1308
+ position: 19
1309
+ name: Barbados
1310
+ display_name: Barbados
1311
+ numeric_3: "042"
1312
+ id: 19
1313
+ note:
1314
+ alpha_2: BB
1315
+ alpha_3: BRB
1316
+ country_00045:
1317
+ position: 45
1318
+ name: Congo
1319
+ display_name: Congo
1320
+ numeric_3: "178"
1321
+ id: 45
1322
+ note:
1323
+ alpha_2: CG
1324
+ alpha_3: COG
1325
+ country_00071:
1326
+ position: 71
1327
+ name: French Polynesia
1328
+ display_name: French Polynesia
1329
+ numeric_3: "258"
1330
+ id: 71
1331
+ note:
1332
+ alpha_2: PF
1333
+ alpha_3: PYF
1334
+ country_00126:
1335
+ position: 126
1336
+ name: Malta
1337
+ display_name: Malta
1338
+ numeric_3: "470"
1339
+ id: 126
1340
+ note:
1341
+ alpha_2: MT
1342
+ alpha_3: MLT
1343
+ country_00152:
1344
+ position: 152
1345
+ name: Northern Mariana Islands
1346
+ display_name: Northern Mariana Islands
1347
+ numeric_3: "580"
1348
+ id: 152
1349
+ note:
1350
+ alpha_2: MP
1351
+ alpha_3: MNP
1352
+ country_00207:
1353
+ position: 207
1354
+ name: Turkey
1355
+ display_name: Turkey
1356
+ numeric_3: "792"
1357
+ id: 207
1358
+ note:
1359
+ alpha_2: TR
1360
+ alpha_3: TUR
1361
+ country_00046:
1362
+ position: 46
1363
+ name: Congo, the Democratic Republic of the
1364
+ display_name: Congo, the Democratic Republic of the
1365
+ numeric_3: "180"
1366
+ id: 46
1367
+ note:
1368
+ alpha_2: CD
1369
+ alpha_3: COD
1370
+ country_00072:
1371
+ position: 72
1372
+ name: Gabon
1373
+ display_name: Gabon
1374
+ numeric_3: "266"
1375
+ id: 72
1376
+ note:
1377
+ alpha_2: GA
1378
+ alpha_3: GAB
1379
+ country_00127:
1380
+ position: 127
1381
+ name: Marshall Islands
1382
+ display_name: Marshall Islands
1383
+ numeric_3: "584"
1384
+ id: 127
1385
+ note:
1386
+ alpha_2: MH
1387
+ alpha_3: MHL
1388
+ country_00153:
1389
+ position: 153
1390
+ name: Norway
1391
+ display_name: Norway
1392
+ numeric_3: "578"
1393
+ id: 153
1394
+ note:
1395
+ alpha_2: f
1396
+ alpha_3: NOR
1397
+ country_00208:
1398
+ position: 208
1399
+ name: Turkmenistan
1400
+ display_name: Turkmenistan
1401
+ numeric_3: "795"
1402
+ id: 208
1403
+ note:
1404
+ alpha_2: TM
1405
+ alpha_3: TKM
1406
+ country_00047:
1407
+ position: 47
1408
+ name: Cook Islands
1409
+ display_name: Cook Islands
1410
+ numeric_3: "184"
1411
+ id: 47
1412
+ note:
1413
+ alpha_2: CK
1414
+ alpha_3: COK
1415
+ country_00073:
1416
+ position: 73
1417
+ name: Gambia
1418
+ display_name: Gambia
1419
+ numeric_3: "270"
1420
+ id: 73
1421
+ note:
1422
+ alpha_2: GM
1423
+ alpha_3: GMB
1424
+ country_00128:
1425
+ position: 128
1426
+ name: Martinique
1427
+ display_name: Martinique
1428
+ numeric_3: "474"
1429
+ id: 128
1430
+ note:
1431
+ alpha_2: MQ
1432
+ alpha_3: MTQ
1433
+ country_00154:
1434
+ position: 154
1435
+ name: Oman
1436
+ display_name: Oman
1437
+ numeric_3: "512"
1438
+ id: 154
1439
+ note:
1440
+ alpha_2: OM
1441
+ alpha_3: OMN
1442
+ country_00180:
1443
+ position: 180
1444
+ name: Senegal
1445
+ display_name: Senegal
1446
+ numeric_3: "686"
1447
+ id: 180
1448
+ note:
1449
+ alpha_2: SN
1450
+ alpha_3: SEN
1451
+ country_00209:
1452
+ position: 209
1453
+ name: Turks and Caicos Islands
1454
+ display_name: Turks and Caicos Islands
1455
+ numeric_3: "796"
1456
+ id: 209
1457
+ note:
1458
+ alpha_2: TC
1459
+ alpha_3: TCA
1460
+ country_00048:
1461
+ position: 48
1462
+ name: Costa Rica
1463
+ display_name: Costa Rica
1464
+ numeric_3: "188"
1465
+ id: 48
1466
+ note:
1467
+ alpha_2: CR
1468
+ alpha_3: CRI
1469
+ country_00074:
1470
+ position: 74
1471
+ name: Georgia
1472
+ display_name: Georgia
1473
+ numeric_3: "268"
1474
+ id: 74
1475
+ note:
1476
+ alpha_2: GE
1477
+ alpha_3: GEO
1478
+ country_00129:
1479
+ position: 129
1480
+ name: Mauritania
1481
+ display_name: Mauritania
1482
+ numeric_3: "478"
1483
+ id: 129
1484
+ note:
1485
+ alpha_2: MR
1486
+ alpha_3: MRT
1487
+ country_00155:
1488
+ position: 155
1489
+ name: Pakistan
1490
+ display_name: Pakistan
1491
+ numeric_3: "586"
1492
+ id: 155
1493
+ note:
1494
+ alpha_2: PK
1495
+ alpha_3: PAK
1496
+ country_00181:
1497
+ position: 181
1498
+ name: Seychelles
1499
+ display_name: Seychelles
1500
+ numeric_3: "690"
1501
+ id: 181
1502
+ note:
1503
+ alpha_2: SC
1504
+ alpha_3: SYC
1505
+ country_00049:
1506
+ position: 49
1507
+ name: Cote D\'Ivoire
1508
+ display_name: Cote D\'Ivoire
1509
+ numeric_3: "384"
1510
+ id: 49
1511
+ note:
1512
+ alpha_2: CI
1513
+ alpha_3: CIV
1514
+ country_00075:
1515
+ position: 75
1516
+ name: Germany
1517
+ display_name: Germany
1518
+ numeric_3: "276"
1519
+ id: 75
1520
+ note:
1521
+ alpha_2: DE
1522
+ alpha_3: DEU
1523
+ country_00156:
1524
+ position: 156
1525
+ name: Palau
1526
+ display_name: Palau
1527
+ numeric_3: "585"
1528
+ id: 156
1529
+ note:
1530
+ alpha_2: PW
1531
+ alpha_3: PLW
1532
+ country_00182:
1533
+ position: 182
1534
+ name: Sierra Leone
1535
+ display_name: Sierra Leone
1536
+ numeric_3: "694"
1537
+ id: 182
1538
+ note:
1539
+ alpha_2: SL
1540
+ alpha_3: SLE
1541
+ country_00076:
1542
+ position: 76
1543
+ name: Ghana
1544
+ display_name: Ghana
1545
+ numeric_3: "288"
1546
+ id: 76
1547
+ note:
1548
+ alpha_2: GH
1549
+ alpha_3: GHA
1550
+ country_00157:
1551
+ position: 157
1552
+ name: Panama
1553
+ display_name: Panama
1554
+ numeric_3: "591"
1555
+ id: 157
1556
+ note:
1557
+ alpha_2: PA
1558
+ alpha_3: PAN
1559
+ country_00183:
1560
+ position: 183
1561
+ name: Singapore
1562
+ display_name: Singapore
1563
+ numeric_3: "702"
1564
+ id: 183
1565
+ note:
1566
+ alpha_2: SG
1567
+ alpha_3: SGP
1568
+ country_00077:
1569
+ position: 77
1570
+ name: Gibraltar
1571
+ display_name: Gibraltar
1572
+ numeric_3: "292"
1573
+ id: 77
1574
+ note:
1575
+ alpha_2: GI
1576
+ alpha_3: GIB
1577
+ country_00158:
1578
+ position: 158
1579
+ name: Papua New Guinea
1580
+ display_name: Papua New Guinea
1581
+ numeric_3: "598"
1582
+ id: 158
1583
+ note:
1584
+ alpha_2: PG
1585
+ alpha_3: PNG
1586
+ country_00184:
1587
+ position: 184
1588
+ name: Slovakia
1589
+ display_name: Slovakia
1590
+ numeric_3: "703"
1591
+ id: 184
1592
+ note:
1593
+ alpha_2: SK
1594
+ alpha_3: SVK
1595
+ country_00078:
1596
+ position: 78
1597
+ name: Greece
1598
+ display_name: Greece
1599
+ numeric_3: "300"
1600
+ id: 78
1601
+ note:
1602
+ alpha_2: GR
1603
+ alpha_3: GRC
1604
+ country_00159:
1605
+ position: 159
1606
+ name: Paraguay
1607
+ display_name: Paraguay
1608
+ numeric_3: "600"
1609
+ id: 159
1610
+ note:
1611
+ alpha_2: PY
1612
+ alpha_3: PRY
1613
+ country_00185:
1614
+ position: 185
1615
+ name: Slovenia
1616
+ display_name: Slovenia
1617
+ numeric_3: "705"
1618
+ id: 185
1619
+ note:
1620
+ alpha_2: SI
1621
+ alpha_3: SVN
1622
+ country_00079:
1623
+ position: 79
1624
+ name: Greenland
1625
+ display_name: Greenland
1626
+ numeric_3: "304"
1627
+ id: 79
1628
+ note:
1629
+ alpha_2: GL
1630
+ alpha_3: GRL
1631
+ country_00186:
1632
+ position: 186
1633
+ name: Solomon Islands
1634
+ display_name: Solomon Islands
1635
+ numeric_3: 090
1636
+ id: 186
1637
+ note:
1638
+ alpha_2: SB
1639
+ alpha_3: SLB
1640
+ country_00187:
1641
+ position: 187
1642
+ name: Somalia
1643
+ display_name: Somalia
1644
+ numeric_3: "706"
1645
+ id: 187
1646
+ note:
1647
+ alpha_2: SO
1648
+ alpha_3: SOM
1649
+ country_00188:
1650
+ position: 188
1651
+ name: South Africa
1652
+ display_name: South Africa
1653
+ numeric_3: "710"
1654
+ id: 188
1655
+ note:
1656
+ alpha_2: ZA
1657
+ alpha_3: ZAF
1658
+ country_00189:
1659
+ position: 189
1660
+ name: Spain
1661
+ display_name: Spain
1662
+ numeric_3: "724"
1663
+ id: 189
1664
+ note:
1665
+ alpha_2: ES
1666
+ alpha_3: ESP
1667
+ country_00002:
1668
+ position: 2
1669
+ name: Afghanistan
1670
+ display_name: Afghanistan
1671
+ numeric_3: "004"
1672
+ id: 2
1673
+ note:
1674
+ alpha_2: AF
1675
+ alpha_3: AFG
1676
+ country_00003:
1677
+ position: 3
1678
+ name: Albania
1679
+ display_name: Albania
1680
+ numeric_3: 008
1681
+ id: 3
1682
+ note:
1683
+ alpha_2: AL
1684
+ alpha_3: ALB
1685
+ country_00110:
1686
+ position: 110
1687
+ name: Lao People\'s Democratic Republic
1688
+ display_name: Lao People\'s Democratic Republic
1689
+ numeric_3: "418"
1690
+ id: 110
1691
+ note:
1692
+ alpha_2: LA
1693
+ alpha_3: LAO
1694
+ country_00004:
1695
+ position: 4
1696
+ name: Algeria
1697
+ display_name: Algeria
1698
+ numeric_3: "010"
1699
+ id: 4
1700
+ note:
1701
+ alpha_2: DZ
1702
+ alpha_3: DZA
1703
+ country_00030:
1704
+ position: 30
1705
+ name: Brunei Darussalam
1706
+ display_name: Brunei Darussalam
1707
+ numeric_3: 096
1708
+ id: 30
1709
+ note:
1710
+ alpha_2: BN
1711
+ alpha_3: BRN
1712
+ country_00111:
1713
+ position: 111
1714
+ name: Latvia
1715
+ display_name: Latvia
1716
+ numeric_3: "428"
1717
+ id: 111
1718
+ note:
1719
+ alpha_2: LV
1720
+ alpha_3: LVA
1721
+ country_00005:
1722
+ position: 5
1723
+ name: American Samoa
1724
+ display_name: American Samoa
1725
+ numeric_3: "014"
1726
+ id: 5
1727
+ note:
1728
+ alpha_2: AS
1729
+ alpha_3: ASM
1730
+ country_00031:
1731
+ position: 31
1732
+ name: Bulgaria
1733
+ display_name: Bulgaria
1734
+ numeric_3: "100"
1735
+ id: 31
1736
+ note:
1737
+ alpha_2: BG
1738
+ alpha_3: BGR
1739
+ country_00112:
1740
+ position: 112
1741
+ name: Lebanon
1742
+ display_name: Lebanon
1743
+ numeric_3: "422"
1744
+ id: 112
1745
+ note:
1746
+ alpha_2: LB
1747
+ alpha_3: LBN
1748
+ country_00006:
1749
+ position: 6
1750
+ name: Andorra
1751
+ display_name: Andorra
1752
+ numeric_3: "016"
1753
+ id: 6
1754
+ note:
1755
+ alpha_2: AD
1756
+ alpha_3: AND
1757
+ country_00032:
1758
+ position: 32
1759
+ name: Burkina Faso
1760
+ display_name: Burkina Faso
1761
+ numeric_3: "854"
1762
+ id: 32
1763
+ note:
1764
+ alpha_2: BF
1765
+ alpha_3: BFA
1766
+ country_00113:
1767
+ position: 113
1768
+ name: Lesotho
1769
+ display_name: Lesotho
1770
+ numeric_3: "426"
1771
+ id: 113
1772
+ note:
1773
+ alpha_2: LS
1774
+ alpha_3: LSO
1775
+ country_00220:
1776
+ position: 220
1777
+ name: Viet Nam
1778
+ display_name: Viet Nam
1779
+ numeric_3: "704"
1780
+ id: 220
1781
+ note:
1782
+ alpha_2: VN
1783
+ alpha_3: VNM
1784
+ country_00007:
1785
+ position: 7
1786
+ name: Angola
1787
+ display_name: Angola
1788
+ numeric_3: "020"
1789
+ id: 7
1790
+ note:
1791
+ alpha_2: AO
1792
+ alpha_3: AGO
1793
+ country_00033:
1794
+ position: 33
1795
+ name: Burundi
1796
+ display_name: Burundi
1797
+ numeric_3: "108"
1798
+ id: 33
1799
+ note:
1800
+ alpha_2: BI
1801
+ alpha_3: BDI
1802
+ country_00114:
1803
+ position: 114
1804
+ name: Liberia
1805
+ display_name: Liberia
1806
+ numeric_3: "430"
1807
+ id: 114
1808
+ note:
1809
+ alpha_2: LR
1810
+ alpha_3: LBR
1811
+ country_00140:
1812
+ position: 140
1813
+ name: Namibia
1814
+ display_name: Namibia
1815
+ numeric_3: "516"
1816
+ id: 140
1817
+ note:
1818
+ alpha_2: NA
1819
+ alpha_3: NAM
1820
+ country_00221:
1821
+ position: 221
1822
+ name: Virgin Islands, British
1823
+ display_name: Virgin Islands, British
1824
+ numeric_3: 092
1825
+ id: 221
1826
+ note:
1827
+ alpha_2: VG
1828
+ alpha_3: VGB
1829
+ country_00008:
1830
+ position: 8
1831
+ name: Anguilla
1832
+ display_name: Anguilla
1833
+ numeric_3: "660"
1834
+ id: 8
1835
+ note:
1836
+ alpha_2: AI
1837
+ alpha_3: AIA
1838
+ country_00034:
1839
+ position: 34
1840
+ name: Cambodia
1841
+ display_name: Cambodia
1842
+ numeric_3: "116"
1843
+ id: 34
1844
+ note:
1845
+ alpha_2: KH
1846
+ alpha_3: KHM
1847
+ country_00060:
1848
+ position: 60
1849
+ name: El Salvador
1850
+ display_name: El Salvador
1851
+ numeric_3: "222"
1852
+ id: 60
1853
+ note:
1854
+ alpha_2: SV
1855
+ alpha_3: SLV
1856
+ country_00115:
1857
+ position: 115
1858
+ name: Libyan Arab Jamahiriya
1859
+ display_name: Libyan Arab Jamahiriya
1860
+ numeric_3: "434"
1861
+ id: 115
1862
+ note:
1863
+ alpha_2: LY
1864
+ alpha_3: LBY
1865
+ country_00141:
1866
+ position: 141
1867
+ name: Nauru
1868
+ display_name: Nauru
1869
+ numeric_3: "520"
1870
+ id: 141
1871
+ note:
1872
+ alpha_2: NR
1873
+ alpha_3: NRU
1874
+ country_00222:
1875
+ position: 222
1876
+ name: Virgin Islands, U.S.
1877
+ display_name: Virgin Islands, U.S.
1878
+ numeric_3: "850"
1879
+ id: 222
1880
+ note:
1881
+ alpha_2: VI
1882
+ alpha_3: VIR
1883
+ country_00009:
1884
+ position: 9
1885
+ name: Antigua and Barbuda
1886
+ display_name: Antigua and Barbuda
1887
+ numeric_3: 028
1888
+ id: 9
1889
+ note:
1890
+ alpha_2: AG
1891
+ alpha_3: ATG
1892
+ country_00035:
1893
+ position: 35
1894
+ name: Cameroon
1895
+ display_name: Cameroon
1896
+ numeric_3: "120"
1897
+ id: 35
1898
+ note:
1899
+ alpha_2: CM
1900
+ alpha_3: CMR
1901
+ country_00061:
1902
+ position: 61
1903
+ name: Equatorial Guinea
1904
+ display_name: Equatorial Guinea
1905
+ numeric_3: "226"
1906
+ id: 61
1907
+ note:
1908
+ alpha_2: GQ
1909
+ alpha_3: GNQ
1910
+ country_00116:
1911
+ position: 116
1912
+ name: Liechtenstein
1913
+ display_name: Liechtenstein
1914
+ numeric_3: "438"
1915
+ id: 116
1916
+ note:
1917
+ alpha_2: LI
1918
+ alpha_3: LIE
1919
+ country_00142:
1920
+ position: 142
1921
+ name: Nepal
1922
+ display_name: Nepal
1923
+ numeric_3: "524"
1924
+ id: 142
1925
+ note:
1926
+ alpha_2: NP
1927
+ alpha_3: NPL
1928
+ country_00223:
1929
+ position: 223
1930
+ name: Wallis and Futuna
1931
+ display_name: Wallis and Futuna
1932
+ numeric_3: "876"
1933
+ id: 223
1934
+ note:
1935
+ alpha_2: WF
1936
+ alpha_3: WLF
1937
+ country_00036:
1938
+ position: 36
1939
+ name: Canada
1940
+ display_name: Canada
1941
+ numeric_3: "124"
1942
+ id: 36
1943
+ note:
1944
+ alpha_2: CA
1945
+ alpha_3: CAN
1946
+ country_00062:
1947
+ position: 62
1948
+ name: Eritrea
1949
+ display_name: Eritrea
1950
+ numeric_3: "232"
1951
+ id: 62
1952
+ note:
1953
+ alpha_2: ER
1954
+ alpha_3: ERI
1955
+ country_00117:
1956
+ position: 117
1957
+ name: Lithuania
1958
+ display_name: Lithuania
1959
+ numeric_3: "440"
1960
+ id: 117
1961
+ note:
1962
+ alpha_2: LT
1963
+ alpha_3: LTU
1964
+ country_00143:
1965
+ position: 143
1966
+ name: Netherlands
1967
+ display_name: Netherlands
1968
+ numeric_3: "528"
1969
+ id: 143
1970
+ note:
1971
+ alpha_2: NL
1972
+ alpha_3: NLD
1973
+ country_00224:
1974
+ position: 224
1975
+ name: Western Sahara
1976
+ display_name: Western Sahara
1977
+ numeric_3: "732"
1978
+ id: 224
1979
+ note:
1980
+ alpha_2: EH
1981
+ alpha_3: ESH
1982
+ country_00225:
1983
+ position: 225
1984
+ name: Yemen
1985
+ display_name: Yemen
1986
+ numeric_3: "887"
1987
+ id: 225
1988
+ note:
1989
+ alpha_2: YE
1990
+ alpha_3: YEM
1991
+ country_00118:
1992
+ position: 118
1993
+ name: Luxembourg
1994
+ display_name: Luxembourg
1995
+ numeric_3: "442"
1996
+ id: 118
1997
+ note:
1998
+ alpha_2: LU
1999
+ alpha_3: LUX
2000
+ country_00090:
2001
+ position: 90
2002
+ name: Hong Kong
2003
+ display_name: Hong Kong
2004
+ numeric_3: "344"
2005
+ id: 90
2006
+ note:
2007
+ alpha_2: HK
2008
+ alpha_3: HKG
2009
+ country_00037:
2010
+ position: 37
2011
+ name: Cape Verde
2012
+ display_name: Cape Verde
2013
+ numeric_3: "132"
2014
+ id: 37
2015
+ note:
2016
+ alpha_2: CV
2017
+ alpha_3: CPV
2018
+ country_00063:
2019
+ position: 63
2020
+ name: Estonia
2021
+ display_name: Estonia
2022
+ numeric_3: "233"
2023
+ id: 63
2024
+ note:
2025
+ alpha_2: EE
2026
+ alpha_3: EST
2027
+ country_00144:
2028
+ position: 144
2029
+ name: Netherlands Antilles
2030
+ display_name: Netherlands Antilles
2031
+ numeric_3: "530"
2032
+ id: 144
2033
+ note:
2034
+ alpha_2: AN
2035
+ alpha_3: ANT
2036
+ country_00170:
2037
+ position: 170
2038
+ name: Rwanda
2039
+ display_name: Rwanda
2040
+ numeric_3: "646"
2041
+ id: 170
2042
+ note:
2043
+ alpha_2: RW
2044
+ alpha_3: RWA
2045
+
2046
+ # == Schema Information
2047
+ #
2048
+ # Table name: countries
2049
+ #
2050
+ # id :integer not null, primary key
2051
+ # name :string(255) not null
2052
+ # display_name :text
2053
+ # alpha_2 :string(255)
2054
+ # alpha_3 :string(255)
2055
+ # numeric_3 :string(255)
2056
+ # note :text
2057
+ # position :integer
2058
+ #
2059
+